Lines Matching refs:settings

189 	BMessage settings('BeMl');
190 settings.AddRect("MailWindowSize", fMailWindowFrame);
196 settings.AddString("FontFamily", fontFamily);
197 settings.AddString("FontStyle", fontStyle);
198 settings.AddFloat("FontSize", fContentFont.Size());
200 settings.AddBool("WordWrapMode", fWrapMode);
201 settings.AddBool("AutoMarkRead", fAutoMarkRead);
202 settings.AddString("SignatureText", fSignature);
203 settings.AddInt32("CharacterSet", fMailCharacterSet);
204 settings.AddInt8("ShowButtonBar", fShowButtonBar);
205 settings.AddInt32("UseAccountFrom", fUseAccountFrom);
206 settings.AddBool("ColoredQuotes", fColoredQuotes);
207 settings.AddString("ReplyPreamble", fReplyPreamble);
208 settings.AddBool("AttachAttributes", fAttachAttributes);
209 settings.AddBool("WarnAboutUnencodableCharacters",
211 settings.AddBool("StartWithSpellCheck", fStartWithSpellCheckOn);
218 status = settings.Flatten(&file);
220 // replace original settings file
252 BMessage settings;
253 status = settings.Unflatten(&file);
254 if (status < B_OK || settings.what != 'BeMl')
258 if (settings.FindRect("MailWindowSize", &rect) == B_OK)
264 if (settings.FindString("FontFamily", &fontFamily) == B_OK) {
266 if (settings.FindString("FontStyle", &fontStyle) == B_OK) {
268 if (settings.FindFloat("FontSize", &size) == B_OK) {
281 fWrapMode = settings.GetBool("WordWrapMode", fWrapMode);
282 fAutoMarkRead = settings.GetBool("AutoMarkRead", fAutoMarkRead);
285 if (settings.FindString("SignatureText", &string) == B_OK)
288 if (settings.FindInt32("CharacterSet", &int32Value) == B_OK)
297 fShowButtonBar = settings.GetInt8("ShowButtonBar", fShowButtonBar);
299 if (settings.FindInt32("UseAccountFrom", &int32Value) == B_OK)
305 fColoredQuotes = settings.GetBool("ColoredQuotes", fColoredQuotes);
307 if (settings.FindString("ReplyPreamble", &string) == B_OK)
310 fAttachAttributes = settings.GetBool("AttachAttributes", fAttachAttributes);
311 fWarnAboutUnencodableCharacters = settings.GetBool(
313 fStartWithSpellCheckOn = settings.GetBool("StartWithSpellCheck",