Symbol: FindView
headers/os/interface/Bitmap.h
106
BView* FindView(const char* viewName) const;
headers/os/interface/Bitmap.h
107
BView* FindView(BPoint point) const;
headers/os/interface/View.h
212
BView* FindView(const char* name) const;
headers/os/interface/Window.h
153
BView* FindView(const char* viewName) const;
headers/os/interface/Window.h
154
BView* FindView(BPoint) const;
src/add-ons/mail_daemon/inbound_filters/match_header/ConfigView.cpp
85
if (BControl* control = (BControl*)fFileControl->FindView("select_file"))
src/add-ons/mail_daemon/inbound_filters/notifier/NotifierConfigView.cpp
106
if ((field = dynamic_cast<BMenuField *>(FindView("notify"))) == NULL)
src/add-ons/mail_daemon/inbound_filters/notifier/NotifierConfigView.cpp
65
if ((field = dynamic_cast<BMenuField *>(FindView("notify"))) == NULL)
src/add-ons/mail_daemon/inbound_filters/notifier/NotifierConfigView.cpp
82
if ((field = dynamic_cast<BMenuField *>(FindView("notify"))) != NULL) {
src/add-ons/mail_daemon/inbound_filters/notifier/NotifierConfigView.cpp
97
if (BMenuField *field = dynamic_cast<BMenuField *>(FindView("notify")))
src/add-ons/mail_daemon/inbound_protocols/imap/ConfigView.cpp
68
((BControl*)(FindView("leave_mail_on_server")))->SetValue(B_CONTROL_ON);
src/add-ons/mail_daemon/inbound_protocols/imap/ConfigView.cpp
69
((BControl*)(FindView("leave_mail_on_server")))->Hide();
src/add-ons/mail_daemon/outbound_protocols/smtp/ConfigView.cpp
55
BTextControl* control = (BTextControl*)FindView("host");
src/add-ons/translators/wonderbrush/WonderBrushView.cpp
121
view = window->FindView("Background");
src/add-ons/translators/wonderbrush/WonderBrushView.cpp
128
view = window->FindView("Info" B_UTF8_ELLIPSIS);
src/apps/cortex/InfoView/InfoWindow.cpp
114
FindView("InfoView")->GetPreferredSize(&width, &height);
src/apps/cortex/ParameterView/ParameterWindow.cpp
279
ParameterContainerView *view = dynamic_cast<ParameterContainerView *>(FindView("ParameterContainerView"));
src/apps/deskbar/BarApp.cpp
151
fStatusViewMessenger = BMessenger(fBarWindow->FindView("BarView"));
src/apps/diskprobe/ProbeWindow.cpp
47
if (BView* view = FindView("dataView"))
src/apps/expander/DirectoryFilePanel.cpp
69
BView* cancel = background->FindView("cancel button");
src/apps/icon-o-matic/MainWindow.cpp
611
BMenuBar* bar = static_cast<BMenuBar*>(FindView("main menu"));
src/apps/icon-o-matic/gui/SavePanel.cpp
113
BView *poseview = background->FindView("PoseView");
src/apps/icon-o-matic/gui/SavePanel.cpp
115
BView *countvw = (BView *)background->FindView("CountVw");
src/apps/icon-o-matic/gui/SavePanel.cpp
142
BButton *insert = (BButton *)background->FindView("default button");
src/apps/icon-o-matic/gui/SavePanel.cpp
84
background->FindView("cancel button"));
src/apps/icon-o-matic/gui/SavePanel.cpp
85
BView* textview = background->FindView("text view");
src/apps/mail/FindWindow.cpp
91
BView* focus = window->FindView("m_content");
src/apps/mediaconverter/MediaConverterWindow.cpp
386
= fSaveFilePanel->Window()->ChildAt(0)->FindView(
src/apps/networkstatus/NetworkStatus.cpp
190
BView* view = window->FindView(kDeskbarItemName);
src/apps/powerstatus/PowerStatus.cpp
169
BView* view = window->FindView(kDeskbarItemName);
src/apps/powerstatus/PowerStatusView.cpp
514
BView* view = window->FindView("Status");
src/apps/pulse/PrefsWindow.cpp
112
ConfigView *deskbar = (ConfigView *)FindView(
src/apps/resedit/MiscEditors.cpp
138
BView *view = FindView("scrollView");
src/apps/stylededit/StyledEditApp.cpp
100
= dynamic_cast<BMenuBar*>(fOpenPanel->Window()->FindView("MenuBar"));
src/apps/stylededit/StyledEditWindow.cpp
911
fSavePanel->Window()->FindView("MenuBar"));
src/apps/sudoku/SudokuView.cpp
587
BView *dragger = FindView("_dragger_");
src/bin/mail_utils/spamdbm.cpp
5424
MainViewPntr = FindView ("ClassificationChoicesView");
src/kits/interface/Alert.cpp
139
fTextView = (BTextView*)FindView("_tv_");
src/kits/interface/Alert.cpp
144
TAlertView* view = (TAlertView*)FindView("_master_");
src/kits/interface/Bitmap.cpp
932
return fWindow != NULL ? fWindow->FindView(viewName) : NULL;
src/kits/interface/Bitmap.cpp
944
return fWindow != NULL ? fWindow->FindView(point) : NULL;
src/kits/interface/ColorControl.cpp
114
fRedText = (BTextControl*)FindView("_red");
src/kits/interface/ColorControl.cpp
115
fGreenText = (BTextControl*)FindView("_green");
src/kits/interface/ColorControl.cpp
116
fBlueText = (BTextControl*)FindView("_blue");
src/kits/interface/MenuField.cpp
1246
fMenuBar = (BMenuBar*)FindView("_mc_mb_");
src/kits/interface/ScrollBar.cpp
942
BView* target = Window()->FindView(targetName);
src/kits/interface/SeparatorView.cpp
86
fLabelView = FindView(label);
src/kits/interface/Shelf.cpp
1435
dragger = dynamic_cast<BDragger *>(replicant->FindView("_dragger_"));
src/kits/interface/TextControl.cpp
1114
fText = static_cast<BPrivate::_BTextInput_*>(FindView("_input_"));
src/kits/interface/View.cpp
5113
BView* view = child->FindView(name);
src/kits/interface/View.cpp
5282
child = FindView(name);
src/kits/interface/Window.cpp
1861
return fTopView->FindView(viewName);
src/kits/tracker/FilePanel.cpp
130
fWindow->FindView("PoseView")->ResizeBy(1, 1);
src/kits/tracker/FilePanel.cpp
131
fWindow->FindView("PoseView")->ResizeBy(-1, -1);
src/kits/tracker/FilePanelPriv.cpp
1175
BButton* button = dynamic_cast<BButton*>(FindView("cancel button"));
src/kits/tracker/FilePanelPriv.cpp
1193
BButton* button = dynamic_cast<BButton*>(FindView("default button"));
src/kits/tracker/FilePanelPriv.cpp
1205
button = dynamic_cast<BButton*>(FindView("cancel button"));
src/kits/tracker/FilePanelPriv.cpp
1221
BTextControl* textControl = dynamic_cast<BTextControl*>(FindView("text view"));
src/kits/tracker/FilePanelPriv.cpp
1257
BButton* button = dynamic_cast<BButton*>(FindView("default button"));
src/kits/tracker/FilePanelPriv.cpp
607
BButton* button = dynamic_cast<BButton*>(FindView("default button"));
src/kits/tracker/FilePanelPriv.cpp
612
= dynamic_cast<BTextControl*>(FindView("text view"));
src/kits/tracker/FindPanel.cpp
1349
= dynamic_cast<BTextControl*>(FindView("TextControl"));
src/kits/tracker/FindPanel.cpp
1354
textControl = dynamic_cast<BTextControl*>(FindView(title.String()));
src/kits/tracker/FindPanel.cpp
1360
BButton* button = dynamic_cast<BButton*>(FindView("remove button"));
src/kits/tracker/FindPanel.cpp
1364
button = dynamic_cast<BButton*>(FindView("add button"));
src/kits/tracker/FindPanel.cpp
1889
view = view->FindView(name);
src/kits/tracker/FindPanel.cpp
2082
FindView("TextControl"));
src/kits/tracker/FindPanel.cpp
2131
= dynamic_cast<BTextControl*>(FindView("TextControl"));
src/kits/tracker/FindPanel.cpp
2187
= dynamic_cast<BTextControl*>(FindView("TextControl"));
src/kits/tracker/FindPanel.cpp
2198
= dynamic_cast<BTextControl*>(FindView("TextControl"));
src/kits/tracker/FindPanel.cpp
2665
BBox* box = dynamic_cast<BBox*>(FindView("Box"));
src/kits/tracker/FindPanel.cpp
2709
BBox* box = dynamic_cast<BBox*>(FindView("Box"));
src/kits/tracker/FindPanel.cpp
2716
BGridView* grid = dynamic_cast<BGridView*>(box->FindView("AttrFields"));
src/kits/tracker/FindPanel.cpp
2735
box->FindView("remove button"));
src/kits/tracker/FindPanel.cpp
2789
BButton* button = dynamic_cast<BButton*>(FindView("remove button"));
src/kits/tracker/FindPanel.cpp
2902
FindView("TextControl"));
src/kits/tracker/FindPanel.cpp
3042
FindView("TextControl"));
src/kits/tracker/FindPanel.cpp
3056
BView* view = FindView(focusedView.String());
src/kits/tracker/FindPanel.cpp
3089
BBox* box = dynamic_cast<BBox*>(FindView("Box"));
src/kits/tracker/FindPanel.cpp
3133
BView* view = FindView("add button");
src/kits/tracker/FindPanel.cpp
3139
view = FindView("remove button");
src/kits/tracker/FindPanel.cpp
3145
view = FindView("TextControl");
src/kits/tracker/FindPanel.cpp
3156
BView* menuFieldSpacer = FindView("MimeTypeMenuSpacer");
src/kits/tracker/FindPanel.cpp
3157
BMenuField* menuField = dynamic_cast<BMenuField*>(FindView("MimeTypeMenu"));
src/kits/tracker/FindPanel.cpp
552
= dynamic_cast<BTextControl*>(FindView("TextControl"));
src/kits/tracker/Pose.cpp
731
BView* border_view = poseView->FindView("BorderView");
src/kits/tracker/PoseView.cpp
5851
BView* view = Window()->FindView("MenuBar");
src/kits/tracker/PoseView.cpp
5853
view = view->FindView("DraggableContainerIcon");
src/kits/tracker/Tests.cpp
173
BView* view = target->FindView("iconView");
src/kits/tracker/Tests.cpp
231
BView* view = target->FindView("iconView");
src/kits/tracker/TextWidget.cpp
344
BView* scrollView = view->FindView("BorderView");
src/kits/tracker/TextWidget.cpp
347
scrollView->FindView("WidgetTextView"));
src/kits/tracker/TextWidget.cpp
376
BView* scrollView = view->FindView("BorderView");
src/kits/tracker/TextWidget.cpp
379
scrollView->FindView("WidgetTextView"));
src/kits/tracker/TextWidget.cpp
570
BView* scrollView = view->FindView("BorderView");
src/kits/tracker/TextWidget.cpp
575
BTextView* textView = dynamic_cast<BTextView*>(scrollView->FindView("WidgetTextView"));
src/kits/tracker/TextWidget.cpp
626
BTextView* text = dynamic_cast<BTextView*>(view->FindView("WidgetTextView"));
src/kits/tracker/infowindow/HeaderView.cpp
651
static_cast<BWindow*>(filter->Looper())->FindView("header"));
src/kits/tracker/infowindow/InfoWindow.cpp
465
BTabView* tabView = (BTabView*)FindView("tabs");
src/preferences/backgrounds/ImageFilePanel.cpp
57
= background->FindView("PoseView")->ResizingMode();
src/preferences/backgrounds/ImageFilePanel.cpp
59
= background->FindView("CountVw")->ResizingMode();
src/preferences/backgrounds/ImageFilePanel.cpp
61
= background->FindView("VScrollBar")->ResizingMode();
src/preferences/backgrounds/ImageFilePanel.cpp
63
= background->FindView("HScrollBar")->ResizingMode();
src/preferences/backgrounds/ImageFilePanel.cpp
65
background->FindView("PoseView")
src/preferences/backgrounds/ImageFilePanel.cpp
67
background->FindView("CountVw")
src/preferences/backgrounds/ImageFilePanel.cpp
69
background->FindView("VScrollBar")
src/preferences/backgrounds/ImageFilePanel.cpp
71
background->FindView("HScrollBar")
src/preferences/backgrounds/ImageFilePanel.cpp
74
background->FindView("PoseView")->SetResizingMode(poseViewResizingMode);
src/preferences/backgrounds/ImageFilePanel.cpp
75
background->FindView("CountVw")->SetResizingMode(countVwResizingMode);
src/preferences/backgrounds/ImageFilePanel.cpp
76
background->FindView("VScrollBar")
src/preferences/backgrounds/ImageFilePanel.cpp
78
background->FindView("HScrollBar")
src/preferences/input/InputKeyboard.cpp
102
slider = (BSlider*)FindView("delay_until_key_repeat");
src/preferences/input/InputKeyboard.cpp
143
slider = (BSlider*)FindView("delay_until_key_repeat");
src/preferences/input/InputKeyboard.cpp
59
BSlider* slider = (BSlider*)FindView("key_repeat_rate");
src/preferences/input/InputKeyboard.cpp
63
slider = (BSlider*)FindView("delay_until_key_repeat");
src/preferences/input/InputKeyboard.cpp
81
slider = (BSlider*)FindView("key_repeat_rate");
src/preferences/input/InputKeyboard.cpp
85
slider = (BSlider*)FindView("delay_until_key_repeat");
src/preferences/input/InputKeyboard.cpp
98
slider = (BSlider*)FindView("key_repeat_rate");
src/preferences/mail/AutoConfigView.cpp
505
authField = (BMenuField*)view->FindView("auth_method");
src/preferences/mail/AutoConfigView.cpp
506
sslField = (BMenuField*)view->FindView("flavor");
src/preferences/sounds/HWindow.cpp
139
= dynamic_cast<BMenuField*>(FindView("filemenu"));
src/preferences/sounds/HWindow.cpp
174
= dynamic_cast<BMenuField*>(FindView("filemenu"));
src/preferences/sounds/HWindow.cpp
232
= dynamic_cast<BMenuField*>(FindView("filemenu"));
src/preferences/sounds/HWindow.cpp
366
BButton* stop = dynamic_cast<BButton*>(FindView("stop"));
src/preferences/sounds/HWindow.cpp
384
BMenuField* menufield = dynamic_cast<BMenuField*>(FindView("filemenu"));
src/preferences/sounds/SoundFilePanel.cpp
44
BView* cancel = Window()->FindView("cancel button");
src/servers/mail/ErrorLogWindow.cpp
239
BTextView *view = static_cast<BTextView *>(FindView("error_display"));
src/servers/mail/ErrorLogWindow.cpp
256
BTextView *view = static_cast<BTextView *>(FindView("error_display"));
src/tests/kits/interface/bshelf/Container/ContainerWindow.cpp
152
fContainerView = (BView *)FindView("ContainerView");
src/tests/kits/interface/bshelf/Container/ContainerWindow.cpp
22
fRemoveButton = (BButton *)FindView("RemoveButton" );
src/tests/kits/interface/bshelf/Container/ContainerWindow.cpp
23
fTestButton = (BButton *)FindView("TestButton" );
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
628
fMainBox = (BBox *)FindView("MainBox"); // Pointer to MainBox
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
631
fReplicantList = (BListView *) FindView("ReplicantList");
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
632
fLibraryList = (BListView *) FindView("LibraryList");
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
634
fDeleteRep = (BButton *) FindView("DeleteButton");
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
635
fCopyRep = (BButton *) FindView("CopyButton");
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
636
fUnloadLib = (BButton *) FindView("UnloadButton");
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
638
BScrollView *libScrollView = (BScrollView *)FindView("LibraryScroll");
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
643
BScrollView *repScrollView = (BScrollView *)FindView("ReplicantScroll");
src/tests/servers/app/find_view/FindView.cpp
39
BView* view = Window()->FindView(where);
src/tests/servers/app/inverse_clipping/main.cpp
267
while ((rotate = window->FindView("rotate")) != NULL) {