Lines Matching refs:scrollView

21 	CocoaScrollBox *scrollView;
23 scrollView = (CocoaScrollBox*)(GWEN_Widget_GetImplData(w, COCOA_DIALOG_WIDGET_CONTENT));
24 assert(scrollView);
34 NSRect frame = [scrollView frame];
36 [scrollView setFrame:frame];
41 NSRect frame = [scrollView frame];
43 [scrollView setFrame:frame];
64 CocoaScrollBox *scrollView;
66 scrollView = (CocoaScrollBox*)(GWEN_Widget_GetImplData(w, COCOA_DIALOG_WIDGET_CONTENT));
67 assert(scrollView);
77 return [scrollView frame].size.width;
80 return [scrollView frame].size.height;
99 CocoaScrollBox *scrollView;
101 scrollView = (CocoaScrollBox*)(GWEN_Widget_GetImplData(w, COCOA_DIALOG_WIDGET_CONTENT));
102 assert(scrollView);
118 CocoaScrollBox *scrollView;
120 scrollView = (CocoaScrollBox*)(GWEN_Widget_GetImplData(w, COCOA_DIALOG_WIDGET_CONTENT));
121 assert(scrollView);
135 CocoaScrollBox *scrollView;
139 scrollView=(CocoaScrollBox*)(GWEN_Widget_GetImplData(w, COCOA_DIALOG_WIDGET_REAL));
140 assert(scrollView);
147 [scrollView setLayoutedDocumentView:childView];
157 CocoaScrollBox *scrollView;
169scrollView = [[[CocoaScrollBox alloc] initWithFrame:NSMakeRect(0.0, 0.0, 100.0, 100.0)] autoreleas…
170 [scrollView setHasVerticalScroller:YES];
171 [scrollView setHasHorizontalScroller:YES];
172 [scrollView setAutohidesScrollers:NO];
173 if (flags & GWEN_WIDGET_FLAGS_FILLX) scrollView.fillX = YES;
174 if (flags & GWEN_WIDGET_FLAGS_FILLY) scrollView.fillY = YES;
176 GWEN_Widget_SetImplData(w, COCOA_DIALOG_WIDGET_REAL, (void*) scrollView);
177 GWEN_Widget_SetImplData(w, COCOA_DIALOG_WIDGET_CONTENT, (void*) scrollView);