home *** CD-ROM | disk | FTP | other *** search
- gAutoCompleteOptions = max(
- zstring_width(zstring: '$$$/Dialogs/AFPrefs/AutoCompleteOff'),
- zstring_width(zstring: '$$$/Dialogs/AFPrefs/AutoCompleteBasic'),
- zstring_width(zstring: '$$$/Dialogs/AFPrefs/AutoCompleteAdvanced'));
-
- dialog(name: '$$$/Dialogs/AFPrefs', margin_height: 0, margin_width: 0)
- {
- view(align_children: align_left, dwidth: gPrefsPanelWidth)
- {
- cluster(name: '$$$/Dialogs/AFPrefs/General', dwidth: gPrefsPanelWidth, align_children: align_left)
- {
- check_box(item_id: 'auto', name: '$$$/Dialogs/AFPrefs/Auto');
- check_box(item_id: 'focs', name: '$$$/Dialogs/AFPrefs/Focus');
- check_box(item_id: 'cval', name: '$$$/Dialogs/AFPrefs/CacheValues');
- check_box(item_id: 'oflw', name: '$$$/Dialogs/AFPrefs/Overflow');
- check_box(item_id: 'appr', name: '$$$/Dialogs/AFPrefs/ShowAppearance');
- }
- cluster(name: '$$$/Dialogs/AFPrefs/FormsDisplay', dwidth: gPrefsPanelWidth)
- {
- view(align_children: align_left)
- {
- check_box(item_id: 'bgcr', name: '$$$/Dialogs/AFPrefs/ShowBackgroundColor');
- view(align_children: align_row)
- {
- gap();
- static_text(item_id: 'txtc', name: '$$$/Dialogs/AFPrefs/BackgroundColor');
- button(item_id: 'col1', picture: true, height: 20, width: 22);
- }
- }
- }
- cluster(name: '$$$/Dialogs/AFPrefs/AutoComplete', dwidth: gPrefsPanelWidth, align_children: align_left)
- {
- popup(item_id: 'acpu', width: gAutoCompleteOptions + 10);
- view(align_children: align_left, margin_width: gCheckBoxWidth + gGap, margin_height: 0, alignment: align_fill)
- {
- check_box(item_id: 'acc4', name: '$$$/Dialogs/AFPrefs/StoreNumerical');
- }
- button(item_id: 'acb1', name: '$$$/Dialogs/AFPrefs/EditListButton');
- edit_text(item_id:'acst', height: gStaticTextHeight * 6, alignment: align_fill, multiline: true, readonly: true);
- }
- }
- }
-