Symbol: fPrefs
src/apps/people/PeopleApp.cpp
200
delete fPrefs;
src/apps/people/PeopleApp.cpp
360
if (fPrefs != NULL) {
src/apps/people/PeopleApp.cpp
361
fPrefs->Seek(0, 0);
src/apps/people/PeopleApp.cpp
362
fPrefs->Write(&leftTop, sizeof(BPoint));
src/apps/people/PeopleApp.cpp
89
fPrefs = new BFile(&entry, B_READ_WRITE);
src/apps/people/PeopleApp.cpp
90
if (fPrefs->InitCheck() == B_NO_ERROR) {
src/apps/people/PeopleApp.cpp
91
fPrefs->Read(&pos, sizeof(BPoint));
src/apps/people/PeopleApp.cpp
96
fPrefs = new BFile();
src/apps/people/PeopleApp.cpp
97
if (dir.CreateFile("People_data", fPrefs) != B_OK) {
src/apps/people/PeopleApp.cpp
98
delete fPrefs;
src/apps/people/PeopleApp.cpp
99
fPrefs = NULL;
src/apps/people/PeopleApp.h
53
BFile* fPrefs;
src/apps/pulse/CPUButton.cpp
334
UpdateColors(pulseapp->fPrefs->normal_bar_color);
src/apps/pulse/ConfigView.cpp
113
fColorControl->SetValue(fPrefs->mini_active_color);
src/apps/pulse/ConfigView.cpp
138
snprintf(temp, sizeof(temp), "%d", fPrefs->deskbar_icon_width);
src/apps/pulse/ConfigView.cpp
157
fColorControl->SetValue(fPrefs->deskbar_active_color);
src/apps/pulse/ConfigView.cpp
236
fPrefs->normal_fade_colors = fade_colors;
src/apps/pulse/ConfigView.cpp
237
fPrefs->normal_bar_color = bar_color;
src/apps/pulse/ConfigView.cpp
244
fColorControl->SetValue(fPrefs->mini_active_color);
src/apps/pulse/ConfigView.cpp
247
fColorControl->SetValue(fPrefs->mini_idle_color);
src/apps/pulse/ConfigView.cpp
250
fColorControl->SetValue(fPrefs->mini_frame_color);
src/apps/pulse/ConfigView.cpp
255
fPrefs->mini_active_color = color;
src/apps/pulse/ConfigView.cpp
257
fPrefs->mini_idle_color = color;
src/apps/pulse/ConfigView.cpp
259
fPrefs->mini_frame_color = color;
src/apps/pulse/ConfigView.cpp
261
message->AddInt32("active_color", fPrefs->mini_active_color);
src/apps/pulse/ConfigView.cpp
262
message->AddInt32("idle_color", fPrefs->mini_idle_color);
src/apps/pulse/ConfigView.cpp
263
message->AddInt32("frame_color", fPrefs->mini_frame_color);
src/apps/pulse/ConfigView.cpp
268
fColorControl->SetValue(fPrefs->deskbar_active_color);
src/apps/pulse/ConfigView.cpp
271
fColorControl->SetValue(fPrefs->deskbar_idle_color);
src/apps/pulse/ConfigView.cpp
274
fColorControl->SetValue(fPrefs->deskbar_frame_color);
src/apps/pulse/ConfigView.cpp
282
fPrefs->deskbar_active_color = color;
src/apps/pulse/ConfigView.cpp
284
fPrefs->deskbar_idle_color = color;
src/apps/pulse/ConfigView.cpp
286
fPrefs->deskbar_frame_color = color;
src/apps/pulse/ConfigView.cpp
288
message->AddInt32("active_color", fPrefs->deskbar_active_color);
src/apps/pulse/ConfigView.cpp
289
message->AddInt32("idle_color", fPrefs->deskbar_idle_color);
src/apps/pulse/ConfigView.cpp
290
message->AddInt32("frame_color", fPrefs->deskbar_frame_color);
src/apps/pulse/ConfigView.cpp
323
fPrefs->deskbar_icon_width = width;
src/apps/pulse/ConfigView.cpp
338
fPrefs->mini_active_color = DEFAULT_MINI_ACTIVE_COLOR;
src/apps/pulse/ConfigView.cpp
339
fPrefs->mini_idle_color = DEFAULT_MINI_IDLE_COLOR;
src/apps/pulse/ConfigView.cpp
340
fPrefs->mini_frame_color = DEFAULT_MINI_FRAME_COLOR;
src/apps/pulse/ConfigView.cpp
354
fPrefs->deskbar_active_color = DEFAULT_DESKBAR_ACTIVE_COLOR;
src/apps/pulse/ConfigView.cpp
355
fPrefs->deskbar_idle_color = DEFAULT_DESKBAR_IDLE_COLOR;
src/apps/pulse/ConfigView.cpp
356
fPrefs->deskbar_frame_color = DEFAULT_DESKBAR_FRAME_COLOR;
src/apps/pulse/ConfigView.cpp
61
fPrefs(prefs),
src/apps/pulse/ConfigView.cpp
90
fColorControl->SetValue(fPrefs->normal_bar_color);
src/apps/pulse/ConfigView.cpp
91
fFadeCheckBox->SetValue(fPrefs->normal_fade_colors);
src/apps/pulse/ConfigView.h
46
Prefs* fPrefs;
src/apps/pulse/PrefsWindow.cpp
98
fPrefs->prefs_window_rect = Frame();
src/apps/pulse/PrefsWindow.cpp
99
fPrefs->Save();
src/apps/pulse/PrefsWindow.h
32
Prefs* fPrefs;
src/apps/pulse/ProgressBar.cpp
70
Prefs *prefs = ((PulseApp *)be_app)->fPrefs;
src/apps/pulse/PulseApp.cpp
105
fPrefs->window_mode = DESKBAR_MODE;
src/apps/pulse/PulseApp.cpp
107
fPrefs->deskbar_active_color = activecolor;
src/apps/pulse/PulseApp.cpp
109
fPrefs->deskbar_idle_color = idlecolor;
src/apps/pulse/PulseApp.cpp
111
fPrefs->deskbar_frame_color = framecolor;
src/apps/pulse/PulseApp.cpp
113
fPrefs->window_mode = MINI_WINDOW_MODE;
src/apps/pulse/PulseApp.cpp
115
fPrefs->mini_active_color = activecolor;
src/apps/pulse/PulseApp.cpp
117
fPrefs->mini_idle_color = idlecolor;
src/apps/pulse/PulseApp.cpp
119
fPrefs->mini_frame_color = framecolor;
src/apps/pulse/PulseApp.cpp
121
fPrefs->window_mode = NORMAL_WINDOW_MODE;
src/apps/pulse/PulseApp.cpp
123
fPrefs->Save();
src/apps/pulse/PulseApp.cpp
142
if (fPrefs->window_mode == MINI_WINDOW_MODE)
src/apps/pulse/PulseApp.cpp
143
pulseWindow = new PulseWindow(fPrefs->mini_window_rect);
src/apps/pulse/PulseApp.cpp
145
pulseWindow = new PulseWindow(fPrefs->normal_window_rect);
src/apps/pulse/PulseApp.cpp
154
fPrefs->Save();
src/apps/pulse/PulseApp.cpp
156
delete fPrefs;
src/apps/pulse/PulseApp.cpp
186
fPrefsWindow = new PrefsWindow(pulseapp->fPrefs->prefs_window_rect,
src/apps/pulse/PulseApp.cpp
188
pulseapp->fPrefs);
src/apps/pulse/PulseApp.cpp
309
int width = pulseapp->fPrefs->deskbar_icon_width;
src/apps/pulse/PulseApp.cpp
312
pulseapp->fPrefs->deskbar_icon_width = min_width;
src/apps/pulse/PulseApp.cpp
39
fPrefs(new Prefs()),
src/apps/pulse/PulseApp.cpp
89
fPrefs->deskbar_icon_width = atoi(optarg);
src/apps/pulse/PulseApp.cpp
90
if (fPrefs->deskbar_icon_width < GetMinimumViewWidth())
src/apps/pulse/PulseApp.cpp
91
fPrefs->deskbar_icon_width = GetMinimumViewWidth();
src/apps/pulse/PulseApp.cpp
92
else if (fPrefs->deskbar_icon_width > 50) fPrefs->deskbar_icon_width = 50;
src/apps/pulse/PulseApp.h
35
Prefs* fPrefs;
src/apps/pulse/PulseWindow.cpp
125
pulseapp->fPrefs->mini_window_rect = Frame();
src/apps/pulse/PulseWindow.cpp
126
pulseapp->fPrefs->window_mode = NORMAL_WINDOW_MODE;
src/apps/pulse/PulseWindow.cpp
127
pulseapp->fPrefs->Save();
src/apps/pulse/PulseWindow.cpp
136
MoveTo(pulseapp->fPrefs->normal_window_rect.left,
src/apps/pulse/PulseWindow.cpp
137
pulseapp->fPrefs->normal_window_rect.top);
src/apps/pulse/PulseWindow.cpp
144
pulseapp->fPrefs->normal_window_rect = Frame();
src/apps/pulse/PulseWindow.cpp
145
pulseapp->fPrefs->window_mode = MINI_WINDOW_MODE;
src/apps/pulse/PulseWindow.cpp
146
pulseapp->fPrefs->Save();
src/apps/pulse/PulseWindow.cpp
155
ResizeTo(pulseapp->fPrefs->mini_window_rect.IntegerWidth(),
src/apps/pulse/PulseWindow.cpp
156
pulseapp->fPrefs->mini_window_rect.IntegerHeight());
src/apps/pulse/PulseWindow.cpp
157
MoveTo(pulseapp->fPrefs->mini_window_rect.left,
src/apps/pulse/PulseWindow.cpp
158
pulseapp->fPrefs->mini_window_rect.top);
src/apps/pulse/PulseWindow.cpp
166
pulseapp->fPrefs->window_mode = DESKBAR_MODE;
src/apps/pulse/PulseWindow.cpp
43
pulseapp->fPrefs);
src/apps/pulse/PulseWindow.cpp
46
fMode = pulseapp->fPrefs->window_mode;
src/apps/pulse/PulseWindow.cpp
67
pulseapp->fPrefs->normal_window_rect = Frame();
src/apps/pulse/PulseWindow.cpp
69
pulseapp->fPrefs->mini_window_rect = Frame();
src/tests/kits/interface/bshelf/Container/ContainerWindow.cpp
164
fPrefs = new TPreferences ("XContainer/preferences"); // name of prefs-file
src/tests/kits/interface/bshelf/Container/ContainerWindow.cpp
165
if (fPrefs -> InitCheck() != B_OK) // if no prefs-> create new
src/tests/kits/interface/bshelf/Container/ContainerWindow.cpp
168
fPrefs -> SetRect ("WindowFrame", windFrame );
src/tests/kits/interface/bshelf/Container/ContainerWindow.cpp
171
err = (fPrefs -> FindRect ("WindowFrame", &windFrame) );
src/tests/kits/interface/bshelf/Container/ContainerWindow.cpp
183
fPrefs -> SetRect ("WindowFrame", Frame() );
src/tests/kits/interface/bshelf/Container/ContainerWindow.cpp
34
if (fPrefs != NULL) delete fPrefs; // now prefs are saved
src/tests/kits/interface/bshelf/Container/ContainerWindow.h
40
TPreferences *fPrefs;
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
656
fPrefs = new TPreferences ("XShelfInspector/preferences"); // Name des Prefs-Files
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
657
if (fPrefs -> InitCheck() != B_OK) // falls keine Prefs -> erzeugen
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
660
fPrefs -> SetRect ("WindowFrame", windFrame );
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
663
fPrefs -> SetInt32 ("TargetShelf", targetShelf );
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
666
err = (fPrefs -> FindRect ("WindowFrame", &windFrame) );
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
67
if (fPrefs != NULL) delete fPrefs; // now prefs are saved
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
673
err = (fPrefs -> FindInt32 ("TargetShelf", &targetShelf ) );
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
686
fPrefs -> SetRect ("WindowFrame", Frame() );
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.cpp
691
fPrefs -> SetInt32("TargetShelf", targetShelf);
src/tests/kits/interface/bshelf/ShelfInspector/InfoWindow.h
68
TPreferences *fPrefs;