Searched refs:fSettings (Results 26 - 50 of 240) sorted by last modified time

12345678910

/haiku/src/apps/webpositive/
H A DBrowserApp.cpp76 fSettings(NULL),
129 delete fSettings;
210 fSettings = new SettingsMessage(B_USER_SETTINGS_DIRECTORY,
213 fLastWindowFrame = fSettings->GetValue("window frame", fLastWindowFrame);
215 BRect downloadWindowFrame = fSettings->GetValue("downloads window frame",
217 BRect settingsWindowFrame = fSettings->GetValue("settings window frame",
219 BRect consoleWindowFrame = fSettings->GetValue("console window frame",
221 BRect cookieWindowFrame = fSettings->GetValue("cookie window frame",
223 bool showDownloads = fSettings->GetValue("show downloads", false);
226 fSettings);
[all...]
H A DBrowserApp.h80 SettingsMessage* fSettings; member in class:BrowserApp
/haiku/src/add-ons/translators/tiff/
H A DTIFFTranslator.cpp647 uint32 compression = fSettings->SetGetInt32(TIFF_SETTING_COMPRESSION);
H A DTIFFView.h62 TranslatorSettings* fSettings; member in class:TIFFView
/haiku/src/add-ons/translators/png/
H A DPNGView.cpp33 fSettings = settings;
56 if (fSettings->SetGetInt32(PNG_SETTING_INTERLACE) == PNG_INTERLACE_NONE)
61 if (fSettings->SetGetInt32(PNG_SETTING_INTERLACE) == PNG_INTERLACE_ADAM7)
92 fSettings->Release();
123 fSettings->SetGetInt32(PNG_SETTING_INTERLACE, &option);
124 fSettings->SaveSettings();
/haiku/src/apps/bootmanager/
H A DLegacyBootMenu.cpp100 BMessage& fSettings; member in class:PartitionRecorder
224 fSettings(settings),
276 fSettings.AddMessage("partition", &message);
/haiku/src/preferences/backgrounds/
H A DBackgroundsView.cpp295 if (fSettings.FindPoint("pos", &point) == B_OK) {
778 if (fSettings.ReplacePoint("pos", point) != B_OK)
779 fSettings.AddPoint("pos", point);
787 if (fSettings.ReplaceString("paneldir", path.Path()) != B_OK)
788 fSettings.AddString("paneldir", path.Path());
793 if (fSettings.ReplaceString("folderpaneldir", path.Path()) != B_OK)
794 fSettings.AddString("folderpaneldir", path.Path());
796 fSettings.RemoveName("recentfolder");
798 fSettings.AddString("recentfolder", fPathList.ItemAt(i)->Path());
801 fSettings
[all...]
/haiku/src/add-ons/translators/webp/
H A DConfigView.cpp57 fSettings(settings)
101 if (fSettings->SetGetInt32(WEBP_SETTING_PRESET) == preset->id)
115 fQualitySlider->SetValue(fSettings->SetGetInt32(WEBP_SETTING_QUALITY));
123 fMethodSlider->SetValue(fSettings->SetGetInt32(WEBP_SETTING_METHOD));
127 if (fSettings->SetGetBool(WEBP_SETTING_PREPROCESSING))
155 fSettings->Release();
210 fSettings->SetGetBool(maps[i].name, &boolValue);
214 fSettings->SetGetInt32(maps[i].name, &value);
217 fSettings->SaveSettings();
/haiku/src/add-ons/translators/sgi/
H A DSGIView.cpp77 fSettings(settings)
82 fSettings->SetGetInt32(SGI_SETTING_COMPRESSION);
138 fSettings->Release();
156 fSettings->SetGetInt32(SGI_SETTING_COMPRESSION, &value);
157 fSettings->SaveSettings();
/haiku/src/add-ons/translators/jpeg2000/
H A DJPEG2000Translator.cpp561 fSettings(settings)
566 if (fSettings->SetGetBool(JP2_SET_GRAY8_AS_B_RGB32))
579 fSettings->Release();
599 fSettings->SetGetBool(JP2_SET_GRAY8_AS_B_RGB32, &boolValue);
600 fSettings->SaveSettings();
618 fSettings(settings)
625 fQualitySlider->SetValue(fSettings->SetGetInt32(JP2_SET_QUALITY));
630 if (fSettings->SetGetBool(JP2_SET_GRAY1_AS_B_RGB24))
636 if (fSettings->SetGetBool(JP2_SET_JPC))
650 fSettings
[all...]
/haiku/src/add-ons/translators/jpeg/
H A DJPEGTranslator.cpp420 fSettings(settings)
426 if (fSettings->SetGetBool(JPEG_SET_ALWAYS_RGB32, NULL))
432 if (fSettings->SetGetBool(JPEG_SET_PHOTOSHOP_CMYK, NULL))
438 if (fSettings->SetGetBool(JPEG_SET_SHOWREADWARNING, NULL))
452 fSettings->Release();
476 fSettings->SetGetBool(JPEG_SET_ALWAYS_RGB32, &boolValue);
477 fSettings->SaveSettings();
486 fSettings->SetGetBool(JPEG_SET_PHOTOSHOP_CMYK, &boolValue);
487 fSettings->SaveSettings();
496 fSettings
[all...]
/haiku/src/add-ons/translators/hvif/
H A DHVIFView.cpp28 fSettings(settings)
52 int32 renderSize = fSettings->SetGetInt32(HVIF_SETTING_RENDER_SIZE);
78 fSettings->Release();
100 fSettings->SetGetInt32(HVIF_SETTING_RENDER_SIZE, &value);
101 fSettings->SaveSettings();
/haiku/src/add-ons/translators/avif/
H A DConfigView.cpp46 fSettings(settings)
82 fSettings->SetGetBool(AVIF_SETTING_LOSSLESS, &lossless);
100 if (fSettings->SetGetInt32(AVIF_SETTING_PIXEL_FORMAT) == pixelFormats[i])
117 fQualitySlider->SetValue(fSettings->SetGetInt32(AVIF_SETTING_QUALITY));
128 fSpeedSlider->SetValue(fSettings->SetGetInt32(AVIF_SETTING_SPEED));
139 fSettings->SetGetInt32(AVIF_SETTING_TILES_HORIZONTAL));
150 fSettings->SetGetInt32(AVIF_SETTING_TILES_VERTICAL));
179 fSettings->Release();
239 fSettings->SetGetBool(maps[i].name, &boolValue);
245 fSettings
[all...]
/haiku/src/add-ons/input_server/devices/mouse/
H A DMouseInputDevice.cpp143 mouse_settings fSettings; member in class:MouseDevice
188 fSettings.map.button[i] = B_MOUSE_BUTTON(i + 1);
558 if (get_mouse_map(&fSettings.map) != B_OK)
562 = ioctl(fDevice, MS_SET_MAP, &fSettings.map) == B_OK;
565 if (get_click_speed(&fSettings.click_speed) == B_OK) {
567 fTouchpadMovementMaker.click_speed = fSettings.click_speed;
568 ioctl(fDevice, MS_SET_CLICKSPEED, &fSettings.click_speed);
572 if (get_mouse_speed(fDeviceRef.name, &fSettings.accel.speed) != B_OK)
575 if (get_mouse_acceleration(fDeviceRef.name, &fSettings.accel.accel_factor) != B_OK)
580 accel.speed = fSettings
[all...]
H A Dmovement_maker.h32 touchpad_settings fSettings; member in class:MovementMaker
H A Dmovement_maker.cpp40 fSettings = settings;
61 if (fSettings.scroll_xstepsize <= 0)
62 fSettings.scroll_xstepsize = 1;
63 if (fSettings.scroll_ystepsize <= 0)
64 fSettings.scroll_ystepsize = 1;
85 _ComputeAcceleration(fSettings.scroll_acceleration);
87 if (fSettings.scroll_xstepsize > 0) {
90 stepsX = make_small(scrolling_x / fSettings.scroll_xstepsize);
92 scrolling_x -= stepsX * fSettings.scroll_xstepsize;
98 if (fSettings
[all...]
/haiku/src/preferences/input/
H A DInputTouchpadPref.cpp32 fStartSettings = fSettings;
47 fSettings = fStartSettings;
55 msg.AddBool("scroll_twofinger", fSettings.scroll_twofinger);
57 "scroll_twofinger_horizontal", fSettings.scroll_twofinger_horizontal);
58 msg.AddFloat("scroll_rightrange", fSettings.scroll_rightrange);
59 msg.AddFloat("scroll_bottomrange", fSettings.scroll_bottomrange);
60 msg.AddInt16("scroll_xstepsize", fSettings.scroll_xstepsize);
61 msg.AddInt16("scroll_ystepsize", fSettings.scroll_ystepsize);
62 msg.AddInt8("scroll_acceleration", fSettings.scroll_acceleration);
63 msg.AddInt8("tapgesture_sensibility", fSettings
[all...]
H A DKeyboardSettings.cpp22 if (get_key_repeat_rate(&fSettings.key_repeat_rate) != B_OK)
23 fSettings.key_repeat_rate = kb_default_key_repeat_rate;
25 if (get_key_repeat_delay(&fSettings.key_repeat_delay) != B_OK)
26 fSettings.key_repeat_delay = kb_default_key_repeat_delay;
28 fOriginalSettings = fSettings;
42 fSettings.key_repeat_rate = rate;
51 fSettings.key_repeat_delay = delay;
74 return fSettings.key_repeat_delay != kb_default_key_repeat_delay
75 || fSettings.key_repeat_rate != kb_default_key_repeat_rate;
H A DMouseSettings.cpp39 fOriginalSettings = fSettings;
48 fSettings(settings)
64 fOriginalSettings = fSettings;
92 if (get_mouse_map(&fSettings.map) != B_OK)
94 if (get_click_speed(&fSettings.click_speed) != B_OK)
96 if (get_mouse_speed(fName, &fSettings.accel.speed) != B_OK)
98 if (get_mouse_acceleration(fName, &fSettings.accel.accel_factor) != B_OK)
100 if (get_mouse_type(fName, &fSettings.type) != B_OK)
123 file.Read((void*)&fSettings, sizeof(mouse_settings));
137 printf("type:\t\t%" B_PRId32 " button mouse\n", fSettings
[all...]
/haiku/src/preferences/filetypes/
H A DFileTypes.cpp77 Settings fSettings; member in class:FileTypes
264 BWindow* window = new ApplicationTypeWindow(fSettings.Message(), entry);
267 // instead of the initial frame that's stored in fSettings.
335 fSettings.UpdateFrom(message);
340 fTypesWindow = new FileTypesWindow(fSettings.Message());
361 fSettings.Message());
466 if (fSettings.Message().FindRect("app_type_initial_frame", &initFrame) == B_OK)
472 if (fSettings.Message().FindRect("app_type_initial_frame", &initFrame) == B_OK)
479 fSettings.UpdateFrom(&update);
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerSettings.cpp72 temp = fSettings.AttenuateOutput;
82 fSettings.AttenuateOutput = yesno;
93 temp = fSettings.UseBalanceControl;
103 fSettings.UseBalanceControl = yesno;
114 temp = fSettings.AllowOutputChannelRemapping;
124 fSettings.AllowOutputChannelRemapping = yesno;
135 temp = fSettings.AllowInputChannelRemapping;
145 fSettings.AllowInputChannelRemapping = yesno;
156 temp = fSettings.InputGainControls;
166 fSettings
[all...]
H A DMixerSettings.h85 volatile settings fSettings; member in class:MixerSettings
/haiku/src/preferences/network/
H A DServiceView.h49 BNetworkSettings& fSettings; member in class:ServiceView
H A DServiceView.cpp36 fSettings(settings)
125 return fSettings.Service(fName).IsRunning();
138 fSettings.AddService(service);
145 fSettings.RemoveService(fName);
/haiku/src/apps/expander/
H A DExpanderApp.h47 ExpanderSettings fSettings; member in class:ExpanderApp

Completed in 116 milliseconds

12345678910