xref: /haiku/src/apps/mail/Prefs.h (revision 21258e2674226d6aa732321b6f8494841895af5f)
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 
51 struct EncodingItem {
52 			char*				name;
53 			uint32				flavor;
54 };
55 
56 extern const EncodingItem kEncodings[];
57 
58 
59 class TPrefsWindow : public BWindow {
60 public:
61 								TPrefsWindow(BPoint leftTop, BFont* font,
62 									int32* level, bool* warp,
63 									bool* attachAttributes, bool* cquotes,
64 									int32* account, int32* replyTo,
65 									char** preamble, char** sig,
66 									uint32* encoding, bool* warnUnencodable,
67 									bool* spellCheckStartOn,
68 									bool* autoMarkRead, uint8* buttonBar);
69 	virtual						~TPrefsWindow();
70 
71 	virtual	void				MessageReceived(BMessage* message);
72 
73 private:
74 			BPopUpMenu*			_BuildFontMenu(BFont*);
75 			BPopUpMenu*			_BuildLevelMenu(int32);
76 			BPopUpMenu*			_BuildAccountMenu(int32);
77 			BPopUpMenu*			_BuildReplyToMenu(int32);
78 			BMenu*				_BuildReplyPreambleMenu();
79 			BPopUpMenu*			_BuildSignatureMenu(char*);
80 			BPopUpMenu*			_BuildSizeMenu(BFont*);
81 			BPopUpMenu*			_BuildWrapMenu(bool);
82 			BPopUpMenu*			_BuildAttachAttributesMenu(bool);
83 			BPopUpMenu*			_BuildColoredQuotesMenu(bool quote);
84 			BPopUpMenu*			_BuildEncodingMenu(uint32 encoding);
85 			BPopUpMenu*			_BuildWarnUnencodableMenu(
86 									bool warnUnencodable);
87 			BPopUpMenu*			_BuildSpellCheckStartOnMenu(
88 									bool spellCheckStartOn);
89 			BPopUpMenu*			_BuildAutoMarkReadMenu(
90 									bool autoMarkRead);
91 			BPopUpMenu*			_BuildButtonBarMenu(uint8 show);
92 
93 			BPopUpMenu*			_BuildBoolMenu(uint32 msg,
94 									const char* boolItem, bool isTrue);
95 
96 			bool*				fNewWrap;
97 			bool				fWrap;
98 			bool*				fNewAttachAttributes;
99 			bool				fAttachAttributes;
100 			uint8*				fNewButtonBar;
101 			uint8				fButtonBar;
102 			bool*				fNewColoredQuotes;
103 			bool				fColoredQuotes;
104 			int32*				fNewAccount;
105 			int32				fAccount;
106 			int32*				fNewReplyTo;
107 			int32				fReplyTo;
108 
109 			char**				fNewPreamble;
110 
111 			char**				fNewSignature;
112 			char*				fSignature;
113 			BFont*				fNewFont;
114 			BFont				fFont;
115 			uint32*				fNewEncoding;
116 			uint32				fEncoding;
117 			bool*				fNewWarnUnencodable;
118 			bool				fWarnUnencodable;
119 			bool*				fNewSpellCheckStartOn;
120 			bool				fSpellCheckStartOn;
121 			bool*				fNewAutoMarkRead;
122 			bool				fAutoMarkRead;
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 			BPopUpMenu*			fAutoMarkReadMenu;
141 };
142 
143 #endif	/* _PREFS_H */
144 
145