Symbol: fPanel
headers/private/mail/FileConfigView.h
42
BFilePanel* fPanel;
headers/private/print/PrintPanel.h
81
BGroupView* fPanel;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
208
fPanel = new(std::nothrow) AuthenticationPanel();
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
209
status_t error = (fPanel ? B_OK : B_NO_MEMORY);
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
216
cancelled = fPanel->GetAuthentication(fServer.GetString(),
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
221
fPanel = NULL;
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
241
if (fPanel)
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
242
fPanel->Cancel();
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationServer.cpp
253
AuthenticationPanel* fPanel;
src/add-ons/kernel/file_systems/netfs/authentication_server/Panel.cpp
31
fPanel->Cancel();
src/add-ons/kernel/file_systems/netfs/authentication_server/Panel.cpp
42
Panel* fPanel;
src/apps/drivesetup/AbstractParametersPanel.cpp
57
fPanel->Cancel();
src/apps/drivesetup/AbstractParametersPanel.cpp
69
AbstractParametersPanel* fPanel;
src/apps/icon-o-matic/generic/gui/panel/Panel.cpp
37
fPanel->Cancel();
src/apps/icon-o-matic/generic/gui/panel/Panel.cpp
48
Panel* fPanel;
src/apps/launchbox/Panel.cpp
37
fPanel->Cancel();
src/apps/launchbox/Panel.cpp
48
Panel* fPanel;
src/apps/mail/Content.cpp
1603
if (fPanel)
src/apps/mail/Content.cpp
1604
fPanel->SetEnclosure(enclosure);
src/apps/mail/Content.cpp
1606
fPanel = new TSavePanel(enclosure, this);
src/apps/mail/Content.cpp
1607
fPanel->Window()->Show();
src/apps/mail/Content.cpp
801
fPanel(NULL),
src/apps/mail/Content.cpp
847
delete fPanel;
src/apps/mail/Content.h
229
TSavePanel *fPanel;
src/apps/mail/MailWindow.cpp
1651
if (!fPanel) {
src/apps/mail/MailWindow.cpp
1654
fPanel = new BFilePanel(B_OPEN_PANEL, &me, &fOpenFolder, false,
src/apps/mail/MailWindow.cpp
1656
} else if (!fPanel->Window()->IsHidden()) {
src/apps/mail/MailWindow.cpp
1657
fPanel->Window()->Activate();
src/apps/mail/MailWindow.cpp
1660
if (fPanel->Window()->IsHidden())
src/apps/mail/MailWindow.cpp
1661
fPanel->Window()->Show();
src/apps/mail/MailWindow.cpp
197
fPanel(NULL),
src/apps/mail/MailWindow.cpp
766
delete fPanel;
src/apps/mail/MailWindow.h
155
BFilePanel* fPanel;
src/apps/people/PersonWindow.cpp
323
delete fPanel;
src/apps/people/PersonWindow.cpp
375
if (fPanel == NULL) {
src/apps/people/PersonWindow.cpp
377
fPanel = new BFilePanel(B_SAVE_PANEL, &target);
src/apps/people/PersonWindow.cpp
389
fPanel->SetPanelDirectory(&entry);
src/apps/people/PersonWindow.cpp
393
if (fPanel->Window()->Lock()) {
src/apps/people/PersonWindow.cpp
394
fPanel->SetSaveText(name);
src/apps/people/PersonWindow.cpp
395
if (fPanel->Window()->IsHidden())
src/apps/people/PersonWindow.cpp
396
fPanel->Window()->Show();
src/apps/people/PersonWindow.cpp
398
fPanel->Window()->Activate();
src/apps/people/PersonWindow.cpp
399
fPanel->Window()->Unlock();
src/apps/people/PersonWindow.cpp
53
fPanel(NULL),
src/apps/people/PersonWindow.h
59
BFilePanel* fPanel;
src/bin/filepanel.cpp
195
BFilePanel *fPanel = new BFilePanel(fpMode, NULL, NULL, nodeFlavour,
src/bin/filepanel.cpp
199
fPanel->SetPanelDirectory(openAt);
src/bin/filepanel.cpp
201
fPanel->Window()->SetTitle(windowTitle);
src/bin/filepanel.cpp
203
fPanel->SetSaveText(defaultName);
src/bin/filepanel.cpp
205
fPanel->Show();
src/kits/mail/FileConfigView.cpp
51
fPanel = new BFilePanel(B_OPEN_PANEL, NULL, NULL, flavors, false);
src/kits/mail/FileConfigView.cpp
57
delete fPanel;
src/kits/mail/FileConfigView.cpp
65
fPanel->SetTarget(this);
src/kits/mail/FileConfigView.cpp
75
fPanel->Hide();
src/kits/mail/FileConfigView.cpp
79
fPanel->SetPanelDirectory(path.Path());
src/kits/mail/FileConfigView.cpp
81
fPanel->Show();
src/kits/print/PrintPanel.cpp
109
return fPanel->ChildAt(0);
src/kits/print/PrintPanel.cpp
122
fPanel->AddChild(panel);
src/kits/print/PrintPanel.cpp
134
return fPanel->RemoveChild(child);
src/kits/print/PrintPanel.cpp
51
, fPanel(new BGroupView)
src/kits/print/PrintPanel.cpp
62
.Add(fPanel)
src/preferences/backgrounds/BackgroundsView.cpp
259
delete fPanel;
src/preferences/backgrounds/BackgroundsView.cpp
284
fPanel = new ImageFilePanel(B_OPEN_PANEL, &messenger, &ref,
src/preferences/backgrounds/BackgroundsView.cpp
286
fPanel->SetButtonLabel(B_DEFAULT_BUTTON, B_TRANSLATE("Select"));
src/preferences/backgrounds/BackgroundsView.cpp
381
fPanel->Show();
src/preferences/backgrounds/BackgroundsView.cpp
389
if (pointer == fPanel) {
src/preferences/backgrounds/BackgroundsView.cpp
786
fPanel->GetPanelDirectory(&ref);
src/preferences/backgrounds/BackgroundsView.cpp
831
fPanel->SetPanelDirectory(settingStr.String());
src/preferences/backgrounds/BackgroundsView.h
155
ImageFilePanel* fPanel;
src/tests/kits/game/simple_game_sound_test/SimpleSoundTest.cpp
152
delete fPanel;
src/tests/kits/game/simple_game_sound_test/SimpleSoundTest.cpp
199
if (!fPanel) fPanel = new BFilePanel(B_OPEN_PANEL, &be_app_messenger);
src/tests/kits/game/simple_game_sound_test/SimpleSoundTest.cpp
201
fPanel->Show();
src/tests/kits/game/simple_game_sound_test/SimpleSoundTest.h
60
BFilePanel * fPanel;