source: oup/current/Tool_TxmpReplace.dfm@ 44

Last change on this file since 44 was 43, checked in by alloc, 18 years ago

DevTree 0.33a.

File size: 4.1 KB
Line 
1object Form_TxmpReplace: TForm_TxmpReplace
2 Left = 0
3 Top = 0
4 BorderStyle = bsSingle
5 Caption = 'TXMP Replacer'
6 ClientHeight = 428
7 ClientWidth = 394
8 Color = clBtnFace
9 Font.Charset = DEFAULT_CHARSET
10 Font.Color = clWindowText
11 Font.Height = -11
12 Font.Name = 'Tahoma'
13 Font.Style = []
14 FormStyle = fsMDIChild
15 OldCreateOrder = False
16 Visible = True
17 WindowState = wsMaximized
18 OnClose = FormClose
19 OnCreate = FormCreate
20 PixelsPerInch = 96
21 TextHeight = 13
22 object panel_12: TPanel
23 Left = 0
24 Top = 0
25 Width = 394
26 Height = 349
27 Align = alClient
28 BevelOuter = bvNone
29 TabOrder = 0
30 object Splitter1: TSplitter
31 Left = 280
32 Top = 0
33 Width = 8
34 Height = 349
35 AutoSnap = False
36 Beveled = True
37 MinSize = 150
38 ExplicitLeft = 200
39 end
40 object group_txmpselect: TGroupBox
41 Left = 0
42 Top = 0
43 Width = 280
44 Height = 349
45 Align = alLeft
46 Caption = '1. Select TXMP to replace'
47 TabOrder = 0
48 object splitter_txmp: TSplitter
49 Left = 2
50 Top = 190
51 Width = 276
52 Height = 8
53 Cursor = crVSplit
54 Align = alTop
55 AutoSnap = False
56 Beveled = True
57 MinSize = 60
58 ExplicitWidth = 196
59 end
60 object image_txmppreview: TImage
61 Left = 2
62 Top = 198
63 Width = 276
64 Height = 119
65 Align = alClient
66 ExplicitWidth = 196
67 end
68 object list_txmp: TListBox
69 Left = 2
70 Top = 15
71 Width = 276
72 Height = 175
73 Align = alTop
74 ItemHeight = 13
75 TabOrder = 0
76 OnClick = list_txmpClick
77 OnMouseDown = list_txmpMouseDown
78 end
79 object panel_txmppreview: TPanel
80 Left = 2
81 Top = 317
82 Width = 276
83 Height = 30
84 Align = alBottom
85 BevelOuter = bvNone
86 TabOrder = 1
87 object btn_save: TButton
88 Left = 2
89 Top = 2
90 Width = 111
91 Height = 25
92 Caption = 'Save TXMP-Picture'
93 TabOrder = 0
94 OnClick = btn_saveClick
95 end
96 end
97 end
98 object group_bmpselect: TGroupBox
99 Left = 288
100 Top = 0
101 Width = 106
102 Height = 349
103 Align = alClient
104 Caption = '2. Open BMP to replace with'
105 Enabled = False
106 TabOrder = 1
107 object image_bmppreview: TImage
108 Left = 2
109 Top = 45
110 Width = 102
111 Height = 302
112 Align = alClient
113 ExplicitWidth = 182
114 end
115 object panel_load: TPanel
116 Left = 2
117 Top = 15
118 Width = 102
119 Height = 30
120 Align = alTop
121 BevelOuter = bvNone
122 TabOrder = 0
123 object btn_load: TButton
124 Left = 2
125 Top = 2
126 Width = 121
127 Height = 25
128 Caption = 'Load BMP ...'
129 TabOrder = 0
130 OnClick = btn_loadClick
131 end
132 end
133 end
134 end
135 object group_options: TGroupBox
136 Left = 0
137 Top = 349
138 Width = 394
139 Height = 79
140 Align = alBottom
141 Caption = '3. Options && Replace'
142 Enabled = False
143 TabOrder = 1
144 object btn_replace: TButton
145 Left = 4
146 Top = 50
147 Width = 157
148 Height = 25
149 Caption = 'Replace'
150 TabOrder = 0
151 OnClick = btn_replaceClick
152 end
153 object check_transparency: TCheckBox
154 Left = 8
155 Top = 16
156 Width = 105
157 Height = 17
158 Caption = 'Transparency'
159 TabOrder = 1
160 end
161 object check_fading: TCheckBox
162 Left = 8
163 Top = 32
164 Width = 105
165 Height = 17
166 Caption = 'MIP Mapping'
167 TabOrder = 2
168 end
169 end
170 object opend: TOpenDialog
171 Filter = '24bit Bitmap (*.bmp)|*.bmp'
172 Options = [ofPathMustExist, ofFileMustExist, ofEnableSizing]
173 Left = 352
174 Top = 16
175 end
176 object saved: TSaveDialog
177 DefaultExt = 'bmp'
178 Filter = 'Windows Bitmap (*.bmp)|*.bmp'
179 Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofEnableSizing]
180 Left = 104
181 Top = 320
182 end
183end
Note: See TracBrowser for help on using the repository browser.