Searched refs:prefs (Results 1 - 15 of 15) sorted by relevance

/haiku/src/add-ons/screen_savers/gravity/
H A Dmain.cpp11 instantiate_screen_saver(BMessage* prefs, image_id imageID) argument
13 return new Gravity(prefs, imageID);
H A DGravity.cpp24 Gravity::Gravity(BMessage* prefs, image_id imageID) argument
26 BScreenSaver(prefs, imageID),
32 if (prefs->IsEmpty()) {
36 if (prefs->FindInt32("ParticleCount", &Config.ParticleCount) != B_OK)
39 if (prefs->FindInt32("ShadeID", &Config.ShadeID) != B_OK)
46 Gravity::SaveState(BMessage* prefs) const
48 prefs->AddInt32("ParticleCount", Config.ParticleCount);
49 prefs->AddInt32("ShadeID", Config.ShadeID);
H A DGravity.h32 Gravity(BMessage* prefs, image_id imageID);
34 status_t SaveState(BMessage* prefs) const;
/haiku/src/apps/pulse/
H A DDeskbarPulseView.cpp36 prefs = NULL;
53 prefs = new Prefs();
54 active_color.red = (prefs->deskbar_active_color & 0xff000000) >> 24;
55 active_color.green = (prefs->deskbar_active_color & 0x00ff0000) >> 16;
56 active_color.blue = (prefs->deskbar_active_color & 0x0000ff00) >> 8;
58 idle_color.red = (prefs->deskbar_idle_color & 0xff000000) >> 24;
59 idle_color.green = (prefs->deskbar_idle_color & 0x00ff0000) >> 16;
60 idle_color.blue = (prefs->deskbar_idle_color & 0x0000ff00) >> 8;
62 frame_color.red = (prefs->deskbar_frame_color & 0xff000000) >> 24;
63 frame_color.green = (prefs
[all...]
H A DPrefsWindow.h23 PrefsWindow(BRect rect, const char *name, BMessenger *messenger, Prefs *prefs);
H A DMiniPulseView.h19 MiniPulseView(BRect rect, const char *name, Prefs *prefs);
H A DMiniPulseView.cpp20 MiniPulseView::MiniPulseView(BRect rect, const char *name, Prefs *prefs) : argument
35 active_color.red = (prefs->mini_active_color & 0xff000000) >> 24;
36 active_color.green = (prefs->mini_active_color & 0x00ff0000) >> 16;
37 active_color.blue = (prefs->mini_active_color & 0x0000ff00) >> 8;
39 idle_color.red = (prefs->mini_idle_color & 0xff000000) >> 24;
40 idle_color.green = (prefs->mini_idle_color & 0x00ff0000) >> 16;
41 idle_color.blue = (prefs->mini_idle_color & 0x0000ff00) >> 8;
43 frame_color.red = (prefs->mini_frame_color & 0xff000000) >> 24;
44 frame_color.green = (prefs->mini_frame_color & 0x00ff0000) >> 16;
45 frame_color.blue = (prefs
[all...]
H A DDeskbarPulseView.h37 Prefs *prefs; member in class:DeskbarPulseView
H A DPrefsWindow.cpp30 BMessenger *messenger, Prefs *prefs)
34 fPrefs(prefs)
52 PRV_NORMAL_CHANGE_COLOR, fTarget, prefs);
56 PRV_MINI_CHANGE_COLOR, fTarget, prefs);
60 PRV_DESKBAR_CHANGE_COLOR, fTarget, prefs);
29 PrefsWindow(BRect frame, const char *name, BMessenger *messenger, Prefs *prefs) argument
H A DConfigView.h33 BMessenger& target, Prefs *prefs);
H A DCPUButton.cpp328 Prefs *prefs = new Prefs(); local
329 UpdateColors(prefs->normal_bar_color);
330 delete prefs;
H A DProgressBar.cpp70 Prefs *prefs = ((PulseApp *)be_app)->fPrefs; local
71 UpdateColors(prefs->normal_bar_color, prefs->normal_fade_colors);
H A DConfigView.cpp53 A single class for all three prefs views, needs to be
57 Prefs *prefs)
61 fPrefs(prefs),
56 ConfigView(BRect rect, const char *name, uint32 mode, BMessenger& target, Prefs *prefs) argument
/haiku/src/apps/deskbar/
H A DBarApp.cpp201 BMessage prefs; local
202 prefs.AddBool("vertical", fSettings.vertical);
203 prefs.AddBool("left", fSettings.left);
204 prefs.AddBool("top", fSettings.top);
205 prefs.AddInt32("state", fSettings.state);
206 prefs.AddFloat("width", fSettings.width);
207 prefs.AddPoint("switcherLoc", fSettings.switcherLoc);
208 prefs.AddBool("showClock", fSettings.showClock);
210 prefs.AddBool("trackerAlwaysFirst", fSettings.trackerAlwaysFirst);
211 prefs
233 BMessage prefs; local
316 BMessage prefs; local
[all...]
/haiku/src/add-ons/translators/gif/
H A DGIFSave.cpp592 if (prefs->usedithering) {
596 if (prefs->interlaced && x == width - 1) {

Completed in 223 milliseconds