xref: /haiku/src/apps/mail/Prefs.h (revision f75a7bf508f3156d63a14f8fd77c5e0ca4d08c42)
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, int32 *level, bool *warp,
67 			bool *attachAttributes, bool *cquotes, uint32 *account,
68 			int32 *replyTo, char **preamble, char **sig, uint32 *encoding,
69 			bool *warnUnencodable, bool *spellCheckStartOn, uint8 *buttonBar);
70 		~TPrefsWindow();
71 
72 		virtual void MessageReceived(BMessage *message);
73 
74 	private:
75 		BPopUpMenu *BuildFontMenu(BFont*);
76 		BPopUpMenu *BuildLevelMenu(int32);
77 		BPopUpMenu *BuildAccountMenu(uint32);
78 		BPopUpMenu *BuildReplyToMenu(int32);
79 		BMenu *BuildReplyPreambleMenu();
80 		BPopUpMenu *BuildSignatureMenu(char*);
81 		BPopUpMenu *BuildSizeMenu(BFont*);
82 		BPopUpMenu *BuildWrapMenu(bool);
83 		BPopUpMenu *BuildAttachAttributesMenu(bool);
84 		BPopUpMenu *BuildColoredQuotesMenu(bool quote);
85 		BPopUpMenu *BuildEncodingMenu(uint32 encoding);
86 		BPopUpMenu *BuildWarnUnencodableMenu(bool warnUnencodable);
87 		BPopUpMenu *BuildSpellCheckStartOnMenu(bool spellCheckStartOn);
88 		BPopUpMenu *BuildButtonBarMenu(uint8 show);
89 
90 		BPopUpMenu *BuildBoolMenu(uint32 msg, const char *boolItem, bool isTrue);
91 
92 		bool	fWrap;
93 		bool	*fNewWrap;
94 		bool	fAttachAttributes;
95 		bool	*fNewAttachAttributes;
96 		uint8	fButtonBar;
97 		uint8	*fNewButtonBar;
98 		bool	fColoredQuotes, *fNewColoredQuotes;
99 		uint32	fAccount;
100 		uint32	*fNewAccount;
101 		int32	fReplyTo;
102 		int32	*fNewReplyTo;
103 		char	**fNewPreamble;
104 		char	*fSignature;
105 		char	**fNewSignature;
106 		BFont	fFont;
107 		BFont	*fNewFont;
108 		uint32	fEncoding;
109 		uint32	*fNewEncoding;
110 		bool	fWarnUnencodable;
111 		bool	*fNewWarnUnencodable;
112 		bool	fSpellCheckStartOn;
113 		bool	*fNewSpellCheckStartOn;
114 		BButton	*fRevert;
115 
116 		BPopUpMenu *fFontMenu;
117 		BPopUpMenu *fSizeMenu;
118 		BPopUpMenu *fWrapMenu, *fColoredQuotesMenu;
119 		BPopUpMenu *fAttachAttributesMenu;
120 		BPopUpMenu *fAccountMenu, *fReplyToMenu;
121 		BMenu *fReplyPreambleMenu;
122 		BTextControl *fReplyPreamble;
123 		BPopUpMenu *fSignatureMenu;
124 		BPopUpMenu *fEncodingMenu;
125 		BPopUpMenu *fWarnUnencodableMenu;
126 		BPopUpMenu *fSpellCheckStartOnMenu;
127 		BPopUpMenu *fButtonBarMenu;
128 };
129 
130 #endif	/* _PREFS_H */
131