home *** CD-ROM | disk | FTP | other *** search
- #include "ObjEPref.txt"
-
- #define kEncodingLabel "Encoding"
- #define kEncoding1 "HTML - Perform HTML encoding"
- #define kEncoding2 "Break - HTML encoding/replace returns"
- #define kEncoding3 "URL - Perform URL encoding"
- #define kEncoding4 "Raw - Don't perform any encoding"
- #define kLit2567 "Encodes any character in the element that may be special if you don't want to use its special meaning in HTML."
- #define kLit2568 "Click to perform HTML encoding and replace soft returns with a <br> element (line break) tag."
- #define kLit2569 "Encodes any character in the element that might be special if you don't want to use its special meaning in a URL."
- #define kLit2570 "Click so that no encoding scheme is used."
-
- Margin(10, 10, 10, 10, TabDialogBack)
- VList(UseParWidth)
- {
- Label(kEncodingLabel, Single, Height = 140, kStaticFont, UseParWidth)
- HList()
- {
- StdHSpace;
- VList()
- {
- WidowRadioButton(kEncoding1, obj.encoding, 0, Height = 30, kPlainFont, EH kLit2567);
- WidowRadioButton(kEncoding2, obj.encoding, 1, Height = 30, kPlainFont, EH kLit2568);
- WidowRadioButton(kEncoding3, obj.encoding, 2, Height = 30, kPlainFont, EH kLit2569);
- WidowRadioButton(kEncoding4, obj.encoding, 3, Height = 30, kPlainFont, EH kLit2570);
- }
- }
- }