home *** CD-ROM | disk | FTP | other *** search
- #include "ObjEPref.txt"
-
- #define kLit1 "Cookie Name"
- #define kEncodingLabel "Encoding"
- #define kEncoding1 "Raw - Don't perform any encoding"
- #define kEncoding2 "URL - Perform URL encoding"
- #define kLit2517 "Name must be fewer than 1024 characters and specified as 'field:fieldname' or a text constant."
- #define kLit2518 "Click so that no encoding scheme is used."
- #define kLit2519 "Encodes any character in the element that might be special if you don't want to use its special meaning in a URL."
-
- Margin(10, 10, 10, 10, TabDialogBack)
- VList(UseParWidth)
- {
- StaticText( kLit1, Width = UseParent, kStaticFont);
- StdVSpace;
- EditText(obj.cookiename, Label = "", LabelAlignment=Left, LabelWidth=0, kEditFont, UseParWidth, StdFlags, EH kLit2517);
- StdVSpace;
- StdVSpace;
- Label(kEncodingLabel, Single, Height = 80, kStaticFont, UseParWidth)
- HList()
- {
- StdHSpace;
- VList()
- {
- WidowRadioButton(kEncoding1, obj.encoding, 0, Height = 30, kPlainFont, EH kLit2518);
- WidowRadioButton(kEncoding2, obj.encoding, 1, Height = 30, kPlainFont, EH kLit2519);
- }
- }
- }