summaryrefslogtreecommitdiffhomepage
path: root/data/shatter/Screens/ModConfigDlg.frm
blob: 5d5aeb5d88939ca46cb48a941b508324ed92f18b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
FORM

// +--------------------------------------------------------------------+
//  Project:   STARSHATTER
//  File:      ModConfigDlg.frm
//
//  John DiCamillo
//  Copyright © 1997-2002. All Rights Reserved.
// +--------------------------------------------------------------------+

form: {
   rect:       (0, 0, 640, 480),
   screen_width:  640,
   screen_height: 480,

   base_color: (  0,   0,   0),
   back_color: (  0,   0,   0),
   fore_color: (255, 255, 255),
   font:       GUI,

   texture:    "Demo_640.pcx",

   defctrl: {
      base_color: (  0,   0,   0),
      back_color: ( 62, 106, 151),
      fore_color: (255, 255, 255),
      font:       GUI,
      bevel_width: 4,
      bevel_depth: 128,
      border: true,
      border_color: (0,0,0)
   },

   ctrl: {
      id:            100,
      type:          label,
      rect:          (0, 120, 640, 20),
      text:          "MOD Configuration",
      transparent:   true,
      align:         center
   }

   ctrl: {
      id:            101,
      type:          label,
      rect:          (70, 140, 240, 20),
      text:          "Disabled Mods",
      transparent:   true,
      align:         center
   }

   ctrl: {
      id:            102,
      type:          label,
      rect:          (330, 140, 240, 20),
      text:          "Enabled Mods",
      transparent:   true,
      align:         center
   }

   ctrl: {
      id:            201,
      type:          list,
      rect:          (70, 170, 240, 180),
      back_color:    (21, 21, 21),
      font:          GUIsmall,
      style:         0x02,
      scroll_bar:    2,

      column:     {
         title:   Disabled,
         width:   218,
         align:   left,
         sort:    0 }
   },

   ctrl: {
      id:            202,
      type:          list,
      rect:          (330, 170, 240, 180),
      back_color:    (21, 21, 21),
      font:          GUIsmall,
      style:         0x02,
      scroll_bar:    2,

      column:     {
         title:   Enabled,
         width:   218,
         align:   left,
         sort:    0 }
   },


   ctrl: {
      id:            301,
      type:          button,
      rect:          (70, 360, 130, 25),
      text:          "Enable"
   },

   ctrl: {
      id:            302,
      type:          button,
      rect:          (330, 360, 130, 25),
      text:          "Disable"
   },

   ctrl: {
      id:            303,
      type:          button,
      rect:          (515, 360, 26, 25),
      text:          "^",
      font:          GUIsmall
   },

   ctrl: {
      id:            304,
      type:          button,
      rect:          (545, 360, 26, 25),
      text:          "v",
      font:          GUIsmall
   },

   ctrl: {
      id:            1,
      type:          button,
      rect:          (300, 420, 130, 25),
      text:          "Accept"
   },

   ctrl: {
      id:            2,
      type:          button,
      rect:          (440, 420, 130, 25),
      text:          "Cancel"
   }
}