home *** CD-ROM | disk | FTP | other *** search
- #include "ObjEPref.txt"
- #define kEncodingLabel "Encoding"
- #define kEncoding1 "HTML - Perform HTML encoding"
- #define kEncoding2 "URL - Perform URL encoding"
- #define kEncoding3 "Raw - Don't perform any encoding"
- #define kLit2576 "Encodes any character in the element that may be special if you don't want to use its special meaning in HTML."
- #define kLit2577 "Encodes any character in the element that might be special if you don't want to use its special meaning in a URL."
- #define kLit2578 "Click so that no encoding scheme is used."
-
- Margin(10, 10, 10, 10, TabDialogBack)
- VList(UseParWidth)
- {
- Label(kEncodingLabel, Single, Height = 110, kStaticFont, UseParWidth)
- HList()
- {
- StdHSpace;
- VList()
- {
- WidowRadioButton(kEncoding1, obj.encoding, 0, Height = 30, kPlainFont, EH kLit2576);
- WidowRadioButton(kEncoding2, obj.encoding, 1, Height = 30, kPlainFont, EH kLit2577);
- WidowRadioButton(kEncoding3, obj.encoding, 2, Height = 30, kPlainFont, EH kLit2578);
- }
- }
- }