xref: /haiku/src/apps/mail/Prefs.h (revision adb0d19d561947362090081e81d90dde59142026)
1 /*
2 Open Tracker License
3 
4 Terms and Conditions
5 
6 Copyright (c) 1991-2001, Be Incorporated. All rights reserved.
7 
8 Permission is hereby granted, free of charge, to any person obtaining a copy of
9 this software and associated documentation files (the "Software"), to deal in
10 the Software without restriction, including without limitation the rights to
11 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
12 of the Software, and to permit persons to whom the Software is furnished to do
13 so, subject to the following conditions:
14 
15 The above copyright notice and this permission notice applies to all licensees
16 and shall be included in all copies or substantial portions of the Software.
17 
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF TITLE, MERCHANTABILITY,
20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 BE INCORPORATED BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION
23 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 
25 Except as contained in this notice, the name of Be Incorporated shall not be
26 used in advertising or otherwise to promote the sale, use or other dealings in
27 this Software without prior written authorization from Be Incorporated.
28 
29 BeMail(TM), Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered trademarks
30 of Be Incorporated in the United States and other countries. Other brand product
31 names are registered trademarks or trademarks of their respective holders.
32 All rights reserved.
33 */
34 #ifndef _PREFS_H
35 #define _PREFS_H
36 
37 
38 #include <Font.h>
39 #include <Window.h>
40 
41 class BButton;
42 class BMenu;
43 class BPopUpMenu;
44 class BTextControl;
45 
46 
47 #define ACCOUNT_USE_DEFAULT	0
48 #define ACCOUNT_FROM_MAIL	1
49 
50 #define	PREF_WIDTH			340
51 #define PREF_HEIGHT			330
52 
53 #define SIG_NONE			MDR_DIALECT_CHOICE ("None", "無し")
54 #define SIG_RANDOM			MDR_DIALECT_CHOICE ("Random", "自動選択")
55 
56 struct EncodingItem {
57 			char*				name;
58 			uint32				flavor;
59 };
60 
61 extern const EncodingItem kEncodings[];
62 
63 
64 class TPrefsWindow : public BWindow {
65 public:
66 								TPrefsWindow(BRect rect, BFont* font,
67 									int32* level, bool* warp,
68 									bool* attachAttributes, bool* cquotes,
69 									uint32* account, int32* replyTo,
70 									char** preamble, char** sig,
71 									uint32* encoding, bool* warnUnencodable,
72 									bool* spellCheckStartOn, uint8* buttonBar);
73 	virtual						~TPrefsWindow();
74 
75 	virtual	void				MessageReceived(BMessage* message);
76 
77 private:
78 			BPopUpMenu*			_BuildFontMenu(BFont*);
79 			BPopUpMenu*			_BuildLevelMenu(int32);
80 			BPopUpMenu*			_BuildAccountMenu(uint32);
81 			BPopUpMenu*			_BuildReplyToMenu(int32);
82 			BMenu*				_BuildReplyPreambleMenu();
83 			BPopUpMenu*			_BuildSignatureMenu(char*);
84 			BPopUpMenu*			_BuildSizeMenu(BFont*);
85 			BPopUpMenu*			_BuildWrapMenu(bool);
86 			BPopUpMenu*			_BuildAttachAttributesMenu(bool);
87 			BPopUpMenu*			_BuildColoredQuotesMenu(bool quote);
88 			BPopUpMenu*			_BuildEncodingMenu(uint32 encoding);
89 			BPopUpMenu*			_BuildWarnUnencodableMenu(
90 									bool warnUnencodable);
91 			BPopUpMenu*			_BuildSpellCheckStartOnMenu(
92 									bool spellCheckStartOn);
93 			BPopUpMenu*			_BuildButtonBarMenu(uint8 show);
94 
95 			BPopUpMenu*			_BuildBoolMenu(uint32 msg,
96 									const char* boolItem, bool isTrue);
97 
98 			bool*				fNewWrap;
99 			bool				fWrap;
100 			bool*				fNewAttachAttributes;
101 			bool				fAttachAttributes;
102 			uint8*				fNewButtonBar;
103 			uint8				fButtonBar;
104 			bool*				fNewColoredQuotes;
105 			bool				fColoredQuotes;
106 			uint32*				fNewAccount;
107 			uint32				fAccount;
108 			int32*				fNewReplyTo;
109 			int32				fReplyTo;
110 
111 			char**				fNewPreamble;
112 
113 			char**				fNewSignature;
114 			char*				fSignature;
115 			BFont*				fNewFont;
116 			BFont				fFont;
117 			uint32*				fNewEncoding;
118 			uint32				fEncoding;
119 			bool*				fNewWarnUnencodable;
120 			bool				fWarnUnencodable;
121 			bool*				fNewSpellCheckStartOn;
122 			bool				fSpellCheckStartOn;
123 
124 			BButton*			fRevert;
125 
126 			BPopUpMenu*			fFontMenu;
127 			BPopUpMenu*			fSizeMenu;
128 			BPopUpMenu*			fWrapMenu;
129 			BPopUpMenu*			fColoredQuotesMenu;
130 			BPopUpMenu*			fAttachAttributesMenu;
131 			BPopUpMenu*			fAccountMenu;
132 			BPopUpMenu*			fReplyToMenu;
133 			BMenu*				fReplyPreambleMenu;
134 			BTextControl*		fReplyPreamble;
135 			BPopUpMenu*			fSignatureMenu;
136 			BPopUpMenu*			fEncodingMenu;
137 			BPopUpMenu*			fWarnUnencodableMenu;
138 			BPopUpMenu*			fSpellCheckStartOnMenu;
139 			BPopUpMenu*			fButtonBarMenu;
140 };
141 
142 #endif	/* _PREFS_H */
143