source: oup/releases/0.27a/Unit7_txmpreplace.dfm @ 26

Last change on this file since 26 was 26, checked in by alloc, 17 years ago
File size: 4.3 KB
Line 
1object Form7: TForm7
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  OnActivate = FormActivate
19  OnClose = FormClose
20  OnResize = FormResize
21  PixelsPerInch = 96
22  TextHeight = 13
23  object panel_12: TPanel
24    Left = 0
25    Top = 0
26    Width = 394
27    Height = 349
28    Align = alClient
29    BevelOuter = bvNone
30    TabOrder = 0
31    object Splitter1: TSplitter
32      Left = 200
33      Top = 0
34      Width = 8
35      Height = 349
36      AutoSnap = False
37      Beveled = True
38      MinSize = 150
39    end
40    object group_txmpselect: TGroupBox
41      Left = 0
42      Top = 0
43      Width = 200
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 = 196
52        Height = 8
53        Cursor = crVSplit
54        Align = alTop
55        AutoSnap = False
56        Beveled = True
57        MinSize = 60
58      end
59      object image_txmppreview: TImage
60        Left = 2
61        Top = 198
62        Width = 196
63        Height = 119
64        Align = alClient
65      end
66      object list_txmp: TListBox
67        Left = 2
68        Top = 15
69        Width = 196
70        Height = 175
71        Align = alTop
72        ItemHeight = 13
73        TabOrder = 0
74        OnClick = list_txmpClick
75      end
76      object panel_txmppreview: TPanel
77        Left = 2
78        Top = 317
79        Width = 196
80        Height = 30
81        Align = alBottom
82        BevelOuter = bvNone
83        TabOrder = 1
84        object btn_save: TButton
85          Left = 2
86          Top = 2
87          Width = 111
88          Height = 25
89          Caption = 'Save TXMP-Picture'
90          TabOrder = 0
91          OnClick = btn_saveClick
92        end
93      end
94    end
95    object group_bmpselect: TGroupBox
96      Left = 208
97      Top = 0
98      Width = 186
99      Height = 349
100      Align = alClient
101      Caption = '2. Open BMP to replace with'
102      Enabled = False
103      TabOrder = 1
104      object image_bmppreview: TImage
105        Left = 2
106        Top = 45
107        Width = 182
108        Height = 302
109        Align = alClient
110      end
111      object panel_load: TPanel
112        Left = 2
113        Top = 15
114        Width = 182
115        Height = 30
116        Align = alTop
117        BevelOuter = bvNone
118        TabOrder = 0
119        object btn_load: TButton
120          Left = 2
121          Top = 2
122          Width = 121
123          Height = 25
124          Caption = 'Load BMP ...'
125          TabOrder = 0
126          OnClick = btn_loadClick
127        end
128      end
129    end
130  end
131  object group_options: TGroupBox
132    Left = 0
133    Top = 349
134    Width = 394
135    Height = 79
136    Align = alBottom
137    Caption = '3. Options && Replace'
138    Enabled = False
139    TabOrder = 1
140    object btn_replace: TButton
141      Left = 4
142      Top = 50
143      Width = 157
144      Height = 25
145      Caption = 'Replace'
146      TabOrder = 0
147      OnClick = btn_replaceClick
148    end
149    object check_transparency: TCheckBox
150      Left = 8
151      Top = 16
152      Width = 105
153      Height = 17
154      Caption = 'Transparency'
155      TabOrder = 1
156    end
157    object check_fading: TCheckBox
158      Left = 8
159      Top = 32
160      Width = 105
161      Height = 17
162      Caption = 'MIP Mapping'
163      TabOrder = 2
164    end
165    object check_32bit: TCheckBox
166      Left = 112
167      Top = 16
168      Width = 105
169      Height = 17
170      Hint = 'Import bitmap as 32bit image (to prevent from quality loss)'
171      Caption = '32bit'
172      ParentShowHint = False
173      ShowHint = True
174      TabOrder = 3
175    end
176  end
177  object opend: TOpenDialog
178    Filter = '24bit Bitmap (*.bmp)|*.bmp'
179    Options = [ofPathMustExist, ofFileMustExist, ofEnableSizing]
180    Left = 352
181    Top = 16
182  end
183  object saved: TSaveDialog
184    DefaultExt = 'bmp'
185    Filter = 'Windows Bitmap (*.bmp)|*.bmp'
186    Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofEnableSizing]
187    Left = 104
188    Top = 320
189  end
190end
Note: See TracBrowser for help on using the repository browser.