extended TListView example from Darius

git-svn-id: trunk@8214 -
This commit is contained in:
mattias 2005-11-22 19:02:20 +00:00
parent 5683555b5b
commit 6ade560b7d
5 changed files with 416 additions and 350 deletions

1
.gitattributes vendored
View File

@ -737,6 +737,7 @@ examples/lazintfimage/mainunit1.lrs svneol=native#text/pascal
examples/lazintfimage/mainunit1.pas svneol=native#text/pascal
examples/listboxtest.lpi svneol=native#text/plain
examples/listboxtest.pp svneol=native#text/pascal
examples/listview/listview.lpi svneol=native#text/plain
examples/listview/listview.lpr svneol=native#text/pascal
examples/listview/testform.lfm svneol=native#text/plain
examples/listview/testform.lrs svneol=native#text/pascal

View File

@ -0,0 +1,137 @@
<?xml version="1.0"?>
<CONFIG>
<ProjectOptions>
<PathDelim Value="\"/>
<Version Value="5"/>
<General>
<MainUnit Value="0"/>
<IconPath Value="./"/>
<TargetFileExt Value=".exe"/>
<ActiveEditorIndexAtStart Value="2"/>
</General>
<LazDoc Paths=""/>
<Units Count="4">
<Unit0>
<CursorPos X="28" Y="11"/>
<EditorIndex Value="0"/>
<Filename Value="listview.lpr"/>
<IsPartOfProject Value="True"/>
<Loaded Value="True"/>
<TopLine Value="1"/>
<UnitName Value="listview"/>
<UsageCount Value="20"/>
</Unit0>
<Unit1>
<CursorPos X="17" Y="11"/>
<Filename Value="unit1.pas"/>
<ComponentName Value="Form1"/>
<ResourceFilename Value="unit1.lrs"/>
<TopLine Value="1"/>
<UnitName Value="Unit1"/>
<UsageCount Value="20"/>
</Unit1>
<Unit2>
<CursorPos X="15" Y="88"/>
<EditorIndex Value="1"/>
<Filename Value="testform.pp"/>
<ComponentName Value="Form1"/>
<HasResources Value="True"/>
<IsPartOfProject Value="True"/>
<Loaded Value="True"/>
<ResourceFilename Value="testform.lrs"/>
<TopLine Value="67"/>
<UnitName Value="testform"/>
<UsageCount Value="20"/>
</Unit2>
<Unit3>
<CursorPos X="1" Y="1130"/>
<EditorIndex Value="2"/>
<Filename Value="C:\lazarus\lcl\include\imglist.inc"/>
<Loaded Value="True"/>
<TopLine Value="1109"/>
<UsageCount Value="10"/>
</Unit3>
</Units>
<PublishOptions>
<Version Value="2"/>
<IgnoreBinaries Value="False"/>
<IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/>
<ExcludeFileFilter Value="*.(bak|ppu|ppw|o|so);*~;backup"/>
</PublishOptions>
<RunParams>
<local>
<FormatVersion Value="1"/>
<LaunchingApplication PathPlusParams="/usr/X11R6/bin/xterm -T 'Lazarus Run Output' -e $(LazarusDir)/tools/runwait.sh $(TargetCmdLine)"/>
</local>
</RunParams>
<RequiredPackages Count="1">
<Item1>
<PackageName Value="LCL"/>
</Item1>
</RequiredPackages>
<JumpHistory Count="1" HistoryIndex="0">
<Position1>
<Filename Value="testform.pp"/>
<Caret Line="88" Column="15" TopLine="67"/>
</Position1>
</JumpHistory>
</ProjectOptions>
<CompilerOptions>
<Version Value="5"/>
<PathDelim Value="\"/>
<SearchPaths>
<SrcPath Value="$(LazarusDir)\lcl\;$(LazarusDir)\lcl\interfaces\$(LCLWidgetType)\"/>
</SearchPaths>
<CodeGeneration>
<Generate Value="Faster"/>
</CodeGeneration>
<Linking>
<Options>
<Win32>
<GraphicApplication Value="True"/>
</Win32>
</Options>
</Linking>
<Other>
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>
<Debugging>
<BreakPoints Count="3">
<Item1>
<Source Value="C:\lazarus\components\synedit\synedit.pp"/>
<Line Value="2767"/>
</Item1>
<Item2>
<Source Value="C:\Datamodeler\contrib\jedimath\Source\JmFit.pas"/>
<Line Value="134"/>
</Item2>
<Item3>
<Source Value="C:\Datamodeler\contrib\jedimath\Source\JmFit.pas"/>
<Line Value="147"/>
</Item3>
</BreakPoints>
<Watches Count="4">
<Item1>
<Expression Value="tmp"/>
</Item1>
<Item2>
<Expression Value="Path"/>
</Item2>
<Item3>
<Expression Value="CaseNameRow"/>
</Item3>
<Item4>
<Expression Value="col"/>
</Item4>
</Watches>
<Exceptions Count="2">
<Item1>
<Name Value="ECodetoolError"/>
</Item1>
<Item2>
<Name Value="EFOpenError"/>
</Item2>
</Exceptions>
</Debugging>
</CONFIG>

View File

@ -3,9 +3,9 @@ program listview;
{$mode objfpc}{$H+}
uses
Interfaces,
testform,
Forms, Unit1;
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, testform;
begin
Application.Initialize;

View File

@ -1,8 +1,9 @@
object Form1: TForm1
ActiveControl = CheckBox3
Caption = 'Listview test'
ClientHeight = 299
ClientWidth = 627
PixelsPerInch = 108
PixelsPerInch = 96
HorzScrollBar.Page = 626
VertScrollBar.Page = 298
Left = 356
@ -11,7 +12,6 @@ object Form1: TForm1
Width = 627
object Notebook1: TNotebook
Anchors = [akTop, akRight]
BorderSpacing.OnChange = nil
PageIndex = 0
Left = 433
Height = 280
@ -19,61 +19,49 @@ object Form1: TForm1
Width = 184
object Page3: TPage
Caption = 'LV'
ClientWidth = 180
ClientHeight = 250
Left = 2
Height = 250
Top = 28
Width = 180
ClientWidth = 176
ClientHeight = 254
Height = 254
Width = 176
object Label11: TLabel
BorderSpacing.OnChange = nil
Caption = 'Scrollbars'
ParentColor = True
Left = 6
Height = 17
Height = 14
Top = 60
Width = 65
Width = 47
end
object Label12: TLabel
BorderSpacing.OnChange = nil
Caption = 'SortColumn'
ParentColor = True
Left = 6
Height = 17
Height = 14
Top = 122
Width = 65
Width = 56
end
object Label13: TLabel
BorderSpacing.OnChange = nil
Caption = 'SortType'
ParentColor = True
Left = 6
Height = 17
Height = 14
Top = 154
Width = 65
Width = 45
end
object Label14: TLabel
BorderSpacing.OnChange = nil
Caption = 'ViewStyle'
ParentColor = True
Left = 6
Height = 17
Height = 14
Top = 186
Width = 65
Width = 47
end
object CheckBox3: TCheckBox
BorderSpacing.OnChange = nil
Caption = 'Multiselect'
OnChange = CheckBox3Change
OnClick = CheckBox3Click
TabOrder = 0
Left = 6
Height = 23
Height = 13
Top = 4
Width = 90
Width = 70
end
object ComboBox2: TComboBox
BorderSpacing.OnChange = nil
Items.Strings = (
'ssNone'
'ssHorizontal'
@ -90,12 +78,11 @@ object Form1: TForm1
TabOrder = 1
Text = 'ssAutoBoth'
Left = 77
Height = 25
Height = 21
Top = 52
Width = 95
end
object Edit11: TEdit
BorderSpacing.OnChange = nil
OnChange = Edit11Change
TabOrder = 2
Text = '0'
@ -105,7 +92,6 @@ object Form1: TForm1
Width = 80
end
object ComboBox3: TComboBox
BorderSpacing.OnChange = nil
Items.Strings = (
'stNone'
'stData'
@ -119,12 +105,11 @@ object Form1: TForm1
TabOrder = 3
Text = 'stNone'
Left = 77
Height = 25
Height = 21
Top = 146
Width = 95
end
object ComboBox4: TComboBox
BorderSpacing.OnChange = nil
Items.Strings = (
'vsIcon'
'vsSmallIcon'
@ -138,79 +123,67 @@ object Form1: TForm1
TabOrder = 4
Text = 'vsReport'
Left = 78
Height = 25
Height = 21
Top = 178
Width = 95
end
object CheckBox4: TCheckBox
BorderSpacing.OnChange = nil
Caption = 'RowSelect'
OnClick = CheckBox4Click
TabOrder = 5
Left = 6
Height = 23
Height = 13
Top = 28
Width = 90
Width = 72
end
object CheckBox5: TCheckBox
BorderSpacing.OnChange = nil
Caption = 'ShowColumnHeaders'
Checked = True
OnClick = CheckBox5Click
State = cbChecked
TabOrder = 6
Left = 6
Height = 23
Height = 13
Top = 84
Width = 139
Width = 122
end
end
object Page1: TPage
Caption = 'Items'
ClientWidth = 180
ClientHeight = 250
Left = 2
Height = 250
Top = 28
Width = 180
ClientWidth = 176
ClientHeight = 254
Height = 254
Width = 176
object Label6: TLabel
BorderSpacing.OnChange = nil
Caption = 'Index'
ParentColor = True
Left = 6
Height = 17
Top = 4
Width = 65
end
object Label7: TLabel
BorderSpacing.OnChange = nil
Caption = 'SubIndex'
ParentColor = True
Left = 94
Height = 17
Top = 4
Width = 65
end
object Label9: TLabel
BorderSpacing.OnChange = nil
Caption = 'Text'
ParentColor = True
Left = 6
Height = 17
Top = 116
Width = 65
end
object Label10: TLabel
BorderSpacing.OnChange = nil
Caption = 'ImageIndex'
ParentColor = True
Left = 94
Height = 17
Top = 116
Width = 65
end
object Button1: TButton
BorderSpacing.OnChange = nil
BorderSpacing.InnerBorder = 2
Caption = 'Insert'
OnClick = Button1Click
TabOrder = 0
@ -220,7 +193,7 @@ object Form1: TForm1
Width = 75
end
object Button2: TButton
BorderSpacing.OnChange = nil
BorderSpacing.InnerBorder = 2
Caption = 'Delete'
OnClick = Button2Click
TabOrder = 1
@ -230,7 +203,7 @@ object Form1: TForm1
Width = 75
end
object Button5: TButton
BorderSpacing.OnChange = nil
BorderSpacing.InnerBorder = 2
Caption = 'Select'
OnClick = Button5Click
TabOrder = 2
@ -240,7 +213,7 @@ object Form1: TForm1
Width = 75
end
object Button6: TButton
BorderSpacing.OnChange = nil
BorderSpacing.InnerBorder = 2
Caption = 'Focus'
OnClick = Button6Click
TabOrder = 3
@ -250,7 +223,6 @@ object Form1: TForm1
Width = 75
end
object Edit1: TEdit
BorderSpacing.OnChange = nil
OnChange = Edit1Change
TabOrder = 4
Text = '0'
@ -260,7 +232,6 @@ object Form1: TForm1
Width = 80
end
object Edit4: TEdit
BorderSpacing.OnChange = nil
OnChange = Edit4Change
TabOrder = 5
Text = 'Edit4'
@ -270,7 +241,6 @@ object Form1: TForm1
Width = 80
end
object Edit5: TEdit
BorderSpacing.OnChange = nil
OnChange = Edit5Change
TabOrder = 6
Text = '0'
@ -280,7 +250,6 @@ object Form1: TForm1
Width = 80
end
object Edit10: TEdit
BorderSpacing.OnChange = nil
OnChange = Edit10Change
TabOrder = 7
Text = '-1'
@ -292,68 +261,54 @@ object Form1: TForm1
end
object Page2: TPage
Caption = 'Columns'
ClientWidth = 180
ClientHeight = 250
Left = 2
Height = 250
Top = 28
Width = 180
ClientWidth = 176
ClientHeight = 254
Height = 254
Width = 176
object Label1: TLabel
BorderSpacing.OnChange = nil
Caption = 'Caption'
ParentColor = True
Left = 6
Height = 17
Top = 84
Width = 65
end
object Label2: TLabel
BorderSpacing.OnChange = nil
Caption = 'Width'
ParentColor = True
Left = 94
Height = 17
Top = 84
Width = 65
end
object Label3: TLabel
BorderSpacing.OnChange = nil
Caption = 'Minwidth'
ParentColor = True
Left = 6
Height = 17
Top = 132
Width = 65
end
object Label4: TLabel
BorderSpacing.OnChange = nil
Caption = 'Maxwidth'
ParentColor = True
Left = 94
Height = 17
Top = 132
Width = 65
end
object Label5: TLabel
BorderSpacing.OnChange = nil
Caption = 'Image'
ParentColor = True
Left = 6
Height = 17
Top = 179
Width = 65
end
object Label8: TLabel
BorderSpacing.OnChange = nil
Caption = 'Index'
ParentColor = True
Left = 6
Height = 17
Top = 4
Width = 65
end
object Button3: TButton
BorderSpacing.OnChange = nil
BorderSpacing.InnerBorder = 2
Caption = 'Insert'
OnClick = Button3Click
TabOrder = 0
@ -363,7 +318,7 @@ object Form1: TForm1
Width = 75
end
object Button4: TButton
BorderSpacing.OnChange = nil
BorderSpacing.InnerBorder = 2
Caption = 'Delete'
OnClick = Button4Click
TabOrder = 1
@ -373,7 +328,6 @@ object Form1: TForm1
Width = 75
end
object Edit2: TEdit
BorderSpacing.OnChange = nil
OnChange = Edit2Change
TabOrder = 2
Text = '0'
@ -383,7 +337,6 @@ object Form1: TForm1
Width = 80
end
object Edit3: TEdit
BorderSpacing.OnChange = nil
OnChange = Edit3Change
TabOrder = 3
Text = 'Edit3'
@ -393,7 +346,6 @@ object Form1: TForm1
Width = 80
end
object Edit6: TEdit
BorderSpacing.OnChange = nil
OnChange = Edit6Change
TabOrder = 4
Text = '0'
@ -403,7 +355,6 @@ object Form1: TForm1
Width = 80
end
object Edit7: TEdit
BorderSpacing.OnChange = nil
OnChange = Edit7Change
TabOrder = 7
Text = '0'
@ -413,7 +364,6 @@ object Form1: TForm1
Width = 80
end
object Edit8: TEdit
BorderSpacing.OnChange = nil
OnChange = Edit8Change
TabOrder = 9
Text = '0'
@ -423,7 +373,6 @@ object Form1: TForm1
Width = 80
end
object CheckBox1: TCheckBox
BorderSpacing.OnChange = nil
Caption = 'Visible'
OnClick = CheckBox1Click
TabOrder = 5
@ -433,7 +382,6 @@ object Form1: TForm1
Width = 80
end
object Edit9: TEdit
BorderSpacing.OnChange = nil
TabOrder = 6
Text = '-1'
Left = 6
@ -442,7 +390,6 @@ object Form1: TForm1
Width = 80
end
object ComboBox1: TComboBox
BorderSpacing.OnChange = nil
Items.Strings = (
'taLeftJustify'
'taRightJustify'
@ -453,12 +400,11 @@ object Form1: TForm1
ParentCtl3D = False
TabOrder = 8
Left = 94
Height = 25
Height = 21
Top = 191
Width = 80
end
object CheckBox2: TCheckBox
BorderSpacing.OnChange = nil
Caption = 'Autosize'
OnClick = CheckBox2Click
TabOrder = 10
@ -471,7 +417,6 @@ object Form1: TForm1
end
object ListView1: TListView
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.OnChange = nil
BorderWidth = 2
Columns = <
item

View File

@ -1,258 +1,241 @@
{ This is an automatically generated lazarus resource file }
LazarusResources.Add('TForm1','FORMDATA',[
'TPF0'#6'TForm1'#5'Form1'#7'Caption'#6#13'Listview test'#12'ClientHeight'#3'+'
+#1#11'ClientWidth'#3's'#2#13'PixelsPerInch'#2'l'#18'HorzScrollBar.Page'#3'r'
+#2#18'VertScrollBar.Page'#3'*'#1#4'Left'#3'd'#1#6'Height'#3'+'#1#3'Top'#3#150
+#0#5'Width'#3's'#2#0#9'TNotebook'#9'Notebook1'#7'Anchors'#11#5'akTop'#7'akRi'
+'ght'#0#22'BorderSpacing.OnChange'#13#9'PageIndex'#2#0#4'Left'#3#177#1#6'Hei'
+'ght'#3#24#1#3'Top'#2#8#5'Width'#3#184#0#0#5'TPage'#5'Page3'#7'Caption'#6#2
+'LV'#11'ClientWidth'#3#180#0#12'ClientHeight'#3#250#0#4'Left'#2#2#6'Height'#3
+#250#0#3'Top'#2#28#5'Width'#3#180#0#0#6'TLabel'#7'Label11'#22'BorderSpacing.'
+'OnChange'#13#7'Caption'#6#10'Scrollbars'#11'ParentColor'#9#4'Left'#2#6#6'He'
+'ight'#2#17#3'Top'#2'<'#5'Width'#2'A'#0#0#6'TLabel'#7'Label12'#22'BorderSpac'
+'ing.OnChange'#13#7'Caption'#6#10'SortColumn'#11'ParentColor'#9#4'Left'#2#6#6
+'Height'#2#17#3'Top'#2'z'#5'Width'#2'A'#0#0#6'TLabel'#7'Label13'#22'BorderSp'
+'acing.OnChange'#13#7'Caption'#6#8'SortType'#11'ParentColor'#9#4'Left'#2#6#6
+'Height'#2#17#3'Top'#3#154#0#5'Width'#2'A'#0#0#6'TLabel'#7'Label14'#22'Borde'
+'rSpacing.OnChange'#13#7'Caption'#6#9'ViewStyle'#11'ParentColor'#9#4'Left'#2
+#6#6'Height'#2#17#3'Top'#3#186#0#5'Width'#2'A'#0#0#9'TCheckBox'#9'CheckBox3'
+#22'BorderSpacing.OnChange'#13#7'Caption'#6#11'Multiselect'#8'OnChange'#7#15
+'CheckBox3Change'#7'OnClick'#7#14'CheckBox3Click'#8'TabOrder'#2#0#4'Left'#2#6
+#6'Height'#2#23#3'Top'#2#4#5'Width'#2'Z'#0#0#9'TComboBox'#9'ComboBox2'#22'Bo'
+'rderSpacing.OnChange'#13#13'Items.Strings'#1#6#6'ssNone'#6#12'ssHorizontal'
+#6#10'ssVertical'#6#6'ssBoth'#6#16'ssAutoHorizontal'#6#14'ssAutoVertical'#6
+#10'ssAutoBoth'#0#9'ItemIndex'#2#6#9'MaxLength'#2#0#8'OnChange'#7#15'ComboBo'
+'x2Change'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#1#4'Text'#6#10'ssAuto'
+'Both'#4'Left'#2'M'#6'Height'#2#25#3'Top'#2'4'#5'Width'#2'_'#0#0#5'TEdit'#6
+'Edit11'#22'BorderSpacing.OnChange'#13#8'OnChange'#7#12'Edit11Change'#8'TabO'
+'rder'#2#2#4'Text'#6#1'0'#4'Left'#2'N'#6'Height'#2#23#3'Top'#2't'#5'Width'#2
+'P'#0#0#9'TComboBox'#9'ComboBox3'#22'BorderSpacing.OnChange'#13#13'Items.Str'
+'ings'#1#6#6'stNone'#6#6'stData'#6#6'stText'#6#6'stBoth'#0#9'ItemIndex'#2#0#9
+'MaxLength'#2#0#8'OnChange'#7#15'ComboBox3Change'#5'Style'#7#14'csDropDownLi'
+'st'#8'TabOrder'#2#3#4'Text'#6#6'stNone'#4'Left'#2'M'#6'Height'#2#25#3'Top'#3
+#146#0#5'Width'#2'_'#0#0#9'TComboBox'#9'ComboBox4'#22'BorderSpacing.OnChange'
+#13#13'Items.Strings'#1#6#6'vsIcon'#6#11'vsSmallIcon'#6#6'vsList'#6#8'vsRepo'
+'rt'#0#9'ItemIndex'#2#3#9'MaxLength'#2#0#8'OnChange'#7#15'ComboBox4Change'#5
+'Style'#7#14'csDropDownList'#8'TabOrder'#2#4#4'Text'#6#8'vsReport'#4'Left'#2
+'N'#6'Height'#2#25#3'Top'#3#178#0#5'Width'#2'_'#0#0#9'TCheckBox'#9'CheckBox4'
+#22'BorderSpacing.OnChange'#13#7'Caption'#6#9'RowSelect'#7'OnClick'#7#14'Che'
+'ckBox4Click'#8'TabOrder'#2#5#4'Left'#2#6#6'Height'#2#23#3'Top'#2#28#5'Width'
+#2'Z'#0#0#9'TCheckBox'#9'CheckBox5'#22'BorderSpacing.OnChange'#13#7'Caption'
+#6#17'ShowColumnHeaders'#7'Checked'#9#7'OnClick'#7#14'CheckBox5Click'#5'Stat'
+'e'#7#9'cbChecked'#8'TabOrder'#2#6#4'Left'#2#6#6'Height'#2#23#3'Top'#2'T'#5
+'Width'#3#139#0#0#0#0#5'TPage'#5'Page1'#7'Caption'#6#5'Items'#11'ClientWidth'
+#3#180#0#12'ClientHeight'#3#250#0#4'Left'#2#2#6'Height'#3#250#0#3'Top'#2#28#5
+'Width'#3#180#0#0#6'TLabel'#6'Label6'#22'BorderSpacing.OnChange'#13#7'Captio'
+'n'#6#5'Index'#11'ParentColor'#9#4'Left'#2#6#6'Height'#2#17#3'Top'#2#4#5'Wid'
+'th'#2'A'#0#0#6'TLabel'#6'Label7'#22'BorderSpacing.OnChange'#13#7'Caption'#6
+#8'SubIndex'#11'ParentColor'#9#4'Left'#2'^'#6'Height'#2#17#3'Top'#2#4#5'Widt'
+'h'#2'A'#0#0#6'TLabel'#6'Label9'#22'BorderSpacing.OnChange'#13#7'Caption'#6#4
+'Text'#11'ParentColor'#9#4'Left'#2#6#6'Height'#2#17#3'Top'#2't'#5'Width'#2'A'
+#0#0#6'TLabel'#7'Label10'#22'BorderSpacing.OnChange'#13#7'Caption'#6#10'Imag'
+'eIndex'#11'ParentColor'#9#4'Left'#2'^'#6'Height'#2#17#3'Top'#2't'#5'Width'#2
+'A'#0#0#7'TButton'#7'Button1'#22'BorderSpacing.OnChange'#13#7'Caption'#6#6'I'
+'nsert'#7'OnClick'#7#12'Button1Click'#8'TabOrder'#2#0#4'Left'#2#6#6'Height'#2
+#25#3'Top'#2'4'#5'Width'#2'K'#0#0#7'TButton'#7'Button2'#22'BorderSpacing.OnC'
+'hange'#13#7'Caption'#6#6'Delete'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2
+#1#4'Left'#2'^'#6'Height'#2#25#3'Top'#2'4'#5'Width'#2'K'#0#0#7'TButton'#7'Bu'
+'tton5'#22'BorderSpacing.OnChange'#13#7'Caption'#6#6'Select'#7'OnClick'#7#12
+'Button5Click'#8'TabOrder'#2#2#4'Left'#2#6#6'Height'#2#25#3'Top'#2'T'#5'Widt'
+'h'#2'K'#0#0#7'TButton'#7'Button6'#22'BorderSpacing.OnChange'#13#7'Caption'#6
+#5'Focus'#7'OnClick'#7#12'Button6Click'#8'TabOrder'#2#3#4'Left'#2'^'#6'Heigh'
+'t'#2#25#3'Top'#2'T'#5'Width'#2'K'#0#0#5'TEdit'#5'Edit1'#22'BorderSpacing.On'
+'Change'#13#8'OnChange'#7#11'Edit1Change'#8'TabOrder'#2#4#4'Text'#6#1'0'#4'L'
+'eft'#2#6#6'Height'#2#23#3'Top'#2#20#5'Width'#2'P'#0#0#5'TEdit'#5'Edit4'#22
+'BorderSpacing.OnChange'#13#8'OnChange'#7#11'Edit4Change'#8'TabOrder'#2#5#4
+'Text'#6#5'Edit4'#4'Left'#2#6#6'Height'#2#23#3'Top'#3#132#0#5'Width'#2'P'#0#0
,#5'TEdit'#5'Edit5'#22'BorderSpacing.OnChange'#13#8'OnChange'#7#11'Edit5Chang'
+'e'#8'TabOrder'#2#6#4'Text'#6#1'0'#4'Left'#2'^'#6'Height'#2#23#3'Top'#2#20#5
+'Width'#2'P'#0#0#5'TEdit'#6'Edit10'#22'BorderSpacing.OnChange'#13#8'OnChange'
+#7#12'Edit10Change'#8'TabOrder'#2#7#4'Text'#6#2'-1'#4'Left'#2'^'#6'Height'#2
+#23#3'Top'#3#132#0#5'Width'#2'P'#0#0#0#5'TPage'#5'Page2'#7'Caption'#6#7'Colu'
+'mns'#11'ClientWidth'#3#180#0#12'ClientHeight'#3#250#0#4'Left'#2#2#6'Height'
+#3#250#0#3'Top'#2#28#5'Width'#3#180#0#0#6'TLabel'#6'Label1'#22'BorderSpacing'
+'.OnChange'#13#7'Caption'#6#7'Caption'#11'ParentColor'#9#4'Left'#2#6#6'Heigh'
+'t'#2#17#3'Top'#2'T'#5'Width'#2'A'#0#0#6'TLabel'#6'Label2'#22'BorderSpacing.'
+'OnChange'#13#7'Caption'#6#5'Width'#11'ParentColor'#9#4'Left'#2'^'#6'Height'
+#2#17#3'Top'#2'T'#5'Width'#2'A'#0#0#6'TLabel'#6'Label3'#22'BorderSpacing.OnC'
+'hange'#13#7'Caption'#6#8'Minwidth'#11'ParentColor'#9#4'Left'#2#6#6'Height'#2
+#17#3'Top'#3#132#0#5'Width'#2'A'#0#0#6'TLabel'#6'Label4'#22'BorderSpacing.On'
+'Change'#13#7'Caption'#6#8'Maxwidth'#11'ParentColor'#9#4'Left'#2'^'#6'Height'
+#2#17#3'Top'#3#132#0#5'Width'#2'A'#0#0#6'TLabel'#6'Label5'#22'BorderSpacing.'
+'OnChange'#13#7'Caption'#6#5'Image'#11'ParentColor'#9#4'Left'#2#6#6'Height'#2
+#17#3'Top'#3#179#0#5'Width'#2'A'#0#0#6'TLabel'#6'Label8'#22'BorderSpacing.On'
+'Change'#13#7'Caption'#6#5'Index'#11'ParentColor'#9#4'Left'#2#6#6'Height'#2
+#17#3'Top'#2#4#5'Width'#2'A'#0#0#7'TButton'#7'Button3'#22'BorderSpacing.OnCh'
+'ange'#13#7'Caption'#6#6'Insert'#7'OnClick'#7#12'Button3Click'#8'TabOrder'#2
+#0#4'Left'#2#6#6'Height'#2#25#3'Top'#2'4'#5'Width'#2'K'#0#0#7'TButton'#7'But'
+'ton4'#22'BorderSpacing.OnChange'#13#7'Caption'#6#6'Delete'#7'OnClick'#7#12
+'Button4Click'#8'TabOrder'#2#1#4'Left'#2'^'#6'Height'#2#25#3'Top'#2'4'#5'Wid'
+'th'#2'K'#0#0#5'TEdit'#5'Edit2'#22'BorderSpacing.OnChange'#13#8'OnChange'#7
+#11'Edit2Change'#8'TabOrder'#2#2#4'Text'#6#1'0'#4'Left'#2#6#6'Height'#2#23#3
+'Top'#2#20#5'Width'#2'P'#0#0#5'TEdit'#5'Edit3'#22'BorderSpacing.OnChange'#13
+#8'OnChange'#7#11'Edit3Change'#8'TabOrder'#2#3#4'Text'#6#5'Edit3'#4'Left'#2#6
+#6'Height'#2#23#3'Top'#2'd'#5'Width'#2'P'#0#0#5'TEdit'#5'Edit6'#22'BorderSpa'
+'cing.OnChange'#13#8'OnChange'#7#11'Edit6Change'#8'TabOrder'#2#4#4'Text'#6#1
+'0'#4'Left'#2'^'#6'Height'#2#23#3'Top'#2'd'#5'Width'#2'P'#0#0#5'TEdit'#5'Edi'
+'t7'#22'BorderSpacing.OnChange'#13#8'OnChange'#7#11'Edit7Change'#8'TabOrder'
+#2#7#4'Text'#6#1'0'#4'Left'#2#6#6'Height'#2#23#3'Top'#3#148#0#5'Width'#2'P'#0
+#0#5'TEdit'#5'Edit8'#22'BorderSpacing.OnChange'#13#8'OnChange'#7#11'Edit8Cha'
+'nge'#8'TabOrder'#2#9#4'Text'#6#1'0'#4'Left'#2'^'#6'Height'#2#23#3'Top'#3#148
+#0#5'Width'#2'P'#0#0#9'TCheckBox'#9'CheckBox1'#22'BorderSpacing.OnChange'#13
+#7'Caption'#6#7'Visible'#7'OnClick'#7#14'CheckBox1Click'#8'TabOrder'#2#5#4'L'
+'eft'#2#6#6'Height'#2#20#3'Top'#3#220#0#5'Width'#2'P'#0#0#5'TEdit'#5'Edit9'
+#22'BorderSpacing.OnChange'#13#8'TabOrder'#2#6#4'Text'#6#2'-1'#4'Left'#2#6#6
+'Height'#2#23#3'Top'#3#193#0#5'Width'#2'P'#0#0#9'TComboBox'#9'ComboBox1'#22
+'BorderSpacing.OnChange'#13#13'Items.Strings'#1#6#13'taLeftJustify'#6#14'taR'
+'ightJustify'#6#8'taCenter'#0#9'MaxLength'#2#0#8'OnChange'#7#15'ComboBox1Cha'
+'nge'#11'ParentCtl3D'#8#8'TabOrder'#2#8#4'Left'#2'^'#6'Height'#2#25#3'Top'#3
+#191#0#5'Width'#2'P'#0#0#9'TCheckBox'#9'CheckBox2'#22'BorderSpacing.OnChange'
+#13#7'Caption'#6#8'Autosize'#7'OnClick'#7#14'CheckBox2Click'#8'TabOrder'#2#10
+#4'Left'#2'^'#6'Height'#2#20#3'Top'#3#220#0#5'Width'#2'P'#0#0#0#0#9'TListVie'
+'w'#9'ListView1'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#22
+'BorderSpacing.OnChange'#13#11'BorderWidth'#2#2#7'Columns'#14#1#7'Caption'#6
+#3'One'#0#1#7'Caption'#6#3'Two'#0#0#10'Items.Data'#10'P'#0#0#0'R'#254#255#255
+#2#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#2#0#0#0#0#0#0#0#5'New 1'#5
+'Sub 1'#5'Sub 2'#255#255#255#255#255#255#255#255#255#255#255#255#0#0#0#0#0#0
+#0#0#5'New 2'#255#255#255#255#255#255#255#255#10'ScrollBars'#7#10'ssAutoBoth'
+#11'SmallImages'#7#10'ImageList1'#9'ViewStyle'#7#8'vsReport'#8'OnChange'#7#15
+'ListView1Change'#7'OnClick'#7#14'ListView1Click'#13'OnColumnClick'#7#20'Lis'
+'tView1ColumnClick'#12'OnSelectItem'#7#19'ListView1SelectItem'#4'Left'#2#8#6
+'Height'#3#24#1#3'Top'#2#8#5'Width'#3#161#1#0#0#10'TImageList'#10'ImageList1'
+#8'OnChange'#7#16'ImageList1Change'#4'left'#3#243#0#3'top'#3#253#1#6'Bitmap'
+#10#211#28#0#0'li'#4#0#0#0#16#0#0#0#16#0#0#0'%'#11#0#0'/* XPM */'#10'static '
+'char * btn_newform_xpm[] = {'#10'"15 13 147 2",'#10'" '#9'c None",'#10'". '
+#9'c #8D8E93",'#10'"+ '#9'c #7D8391",'#10'"@ '#9'c #798194",'#10'"# '#9'c #8'
+'0889D",'#10'"$ '#9'c #7C849B",'#10'"% '#9'c #747A94",'#10'"& '#9'c #8085A2"'
+','#10'"* '#9'c #7B80A0",'#10'"= '#9'c #7F84A2",'#10'"- '#9'c #7E81A0",'#10
+'"; '#9'c #7D819C",'#10'"> '#9'c #7A7C93",'#10'", '#9'c #818495",'#10'"'' '#9
+'c #797B88",'#10'") '#9'c #868992",'#10'"! '#9'c #7C7B8D",'#10'"~ '#9'c #F9F'
+'9FF",'#10'"{ '#9'c #870013",'#10'"] '#9'c #AE0013",'#10'"^ '#9'c #D30013",'
,#10'"/ '#9'c #FCF4FF",'#10'"( '#9'c #FEFAFF",'#10'"_ '#9'c #00000E",'#10'": '
+#9'c #858496",'#10'"< '#9'c #0A0627",'#10'"[ '#9'c #86868E",'#10'"} '#9'c #F'
+'7F9FF",'#10'"| '#9'c #F9FCFF",'#10'"1 '#9'c #FBFBFF",'#10'"2 '#9'c #FBFAFF"'
+','#10'"3 '#9'c #EEEDFF",'#10'"4 '#9'c #F8F5FF",'#10'"5 '#9'c #FAF8FF",'#10
+'"6 '#9'c #FBF7FF",'#10'"7 '#9'c #FEFBFF",'#10'"8 '#9'c #FEFCFF",'#10'"9 '#9
+'c #05040C",'#10'"0 '#9'c #838486",'#10'"a '#9'c #FCFFFF",'#10'"b '#9'c #F2F'
+'7FA",'#10'"c '#9'c #C6CBCE",'#10'"d '#9'c #F3F9F9",'#10'"e '#9'c #C3C7C6",'
+#10'"f '#9'c #C0C5C1",'#10'"g '#9'c #FCFFFD",'#10'"h '#9'c #C3C5C4",'#10'"i '
+#9'c #FEFFFF",'#10'"j '#9'c #CACBCD",'#10'"k '#9'c #F6F7FB",'#10'"l '#9'c #C'
+'CCBD1",'#10'"m '#9'c #010008",'#10'"n '#9'c #848685",'#10'"o '#9'c #F8FCFB"'
+','#10'"p '#9'c #C5CAC6",'#10'"q '#9'c #FCFFFB",'#10'"r '#9'c #D0D6CC",'#10
+'"s '#9'c #EFF3E5",'#10'"t '#9'c #C6CABB",'#10'"u '#9'c #F8FCEB",'#10'"v '#9
+'c #C8CCBB",'#10'"w '#9'c #FAFCEE",'#10'"x '#9'c #D0D2C7",'#10'"y '#9'c #FAF'
+'BF6",'#10'"z '#9'c #C1C1C3",'#10'"A '#9'c #FBF8FF",'#10'"B '#9'c #02000D",'
+#10'"C '#9'c #868686",'#10'"D '#9'c #FBFDFA",'#10'"E '#9'c #FEFFFB",'#10'"F '
+#9'c #C6C9C2",'#10'"G '#9'c #FCFFF4",'#10'"H '#9'c #C9CDBF",'#10'"I '#9'c #F'
+'EFFF1",'#10'"J '#9'c #BEC3AF",'#10'"K '#9'c #FEFFEF",'#10'"L '#9'c #CBCEBD"'
+','#10'"M '#9'c #F6F8EB",'#10'"N '#9'c #CACBC3",'#10'"O '#9'c #FFFFFD",'#10
+'"P '#9'c #C6C4C9",'#10'"Q '#9'c #010009",'#10'"R '#9'c #FFFFFF",'#10'"S '#9
+'c #C2C2C0",'#10'"T '#9'c #C7C7C5",'#10'"U '#9'c #FDFEF9",'#10'"V '#9'c #C4C'
+'5C0",'#10'"W '#9'c #FBFCF6",'#10'"X '#9'c #C9CAC4",'#10'"Y '#9'c #FFFFFA",'
+#10'"Z '#9'c #C1C2BC",'#10'"` '#9'c #C6C5C0",'#10'" .'#9'c #010000",'#10'"..'
+#9'c #828282",'#10'"+.'#9'c #FCFCFC",'#10'"@.'#9'c #C2C2C2",'#10'"#.'#9'c #F'
+'8F8F8",'#10'"$.'#9'c #C3C3C3",'#10'"%.'#9'c #CECECE",'#10'"&.'#9'c #F9F9F9"'
+','#10'"*.'#9'c #BEBEBC",'#10'"=.'#9'c #BEBDB9",'#10'"-.'#9'c #C4C4BC",'#10
+'";.'#9'c #060600",'#10'">.'#9'c #858585",'#10'",.'#9'c #B3B3B5",'#10'"''.'#9
+'c #D3D3D3",'#10'").'#9'c #C0C0BE",'#10'"!.'#9'c #FAFAF8",'#10'"~.'#9'c #CAC'
+'AC8",'#10'"{.'#9'c #C4C4C2",'#10'"].'#9'c #000000",'#10'"^.'#9'c #848484",'
+#10'"/.'#9'c #C4C4C6",'#10'"(.'#9'c #F5F5F7",'#10'"_.'#9'c #CBCBCD",'#10'":.'
+#9'c #F7F7F9",'#10'"<.'#9'c #CDCDCF",'#10'"[.'#9'c #F8F8FA",'#10'"}.'#9'c #C'
+'8C8CA",'#10'"|.'#9'c #D4D4D4",'#10'"1.'#9'c #808080",'#10'"2.'#9'c #F9F9FB"'
+','#10'"3.'#9'c #CAC9CE",'#10'"4.'#9'c #FFFEFF",'#10'"5.'#9'c #C6C5CD",'#10
+'"6.'#9'c #FFFDFF",'#10'"7.'#9'c #C9C7D4",'#10'"8.'#9'c #F7F5FF",'#10'"9.'#9
+'c #CDCBD8",'#10'"0.'#9'c #C9C8D0",'#10'"a.'#9'c #F7F6FC",'#10'"b.'#9'c #C5C'
+'5C7",'#10'"c.'#9'c #F4F6F3",'#10'"d.'#9'c #000200",'#10'"e.'#9'c #949494",'
+#10'"f.'#9'c #060606",'#10'"g.'#9'c #000002",'#10'"h.'#9'c #040308",'#10'"i.'
+#9'c #000005",'#10'"j.'#9'c #000007",'#10'"k.'#9'c #000009",'#10'"l.'#9'c #0'
+'4020F",'#10'"m.'#9'c #08070F",'#10'"n.'#9'c #020204",'#10'"o.'#9'c #0D0F0C"'
+','#10'"p.'#9'c #000100",'#10'". + @ # $ % & * = - ; > , '' ) ",'#10'"! ~ { '
+'{ { { { ] ] ^ ^ / ^ ( _ ",'#10'": { { { { ] ] ] ^ ^ ^ ^ ^ < _ ",'#10'"[ } |'
+' 1 1 2 3 2 4 5 6 7 8 8 9 ",'#10'"0 a b c d e a f g h i j k l m ",'#10'"n o '
+'p q r s t u v w x y z A B ",'#10'"C D E F G H I J K L M N O P Q ",'#10'"C R'
+' S O T U V W X Y Z Y ` Y .",'#10'"..+.R @.#.$.R %.&.*.O =.Y -.;.",'#10'">.'
+'R ,.R ''.R ).O T !.~.O {.!.].",'#10'"^.R R /.(./.R _.:.<.[.}.R |.].",'#10'"'
+'1.2.3.4.5.6.7.8.9.6.0.a.b.c.d.",'#10'"e.f.g.h.i.j.k.l.k.k.m.i.n.o.p."};'#10
+'8'#2#0#0'/* XPM */'#10'static char * btn_newunit_xpm[] = {'#10'"11 13 21 1"'
+','#10'" '#9'c None",'#10'".'#9'c #000000",'#10'"+'#9'c #0C0C0C",'#10'"@'#9
+'c #FEFEFE",'#10'"#'#9'c #FFFFFF",'#10'"$'#9'c #FAFAFA",'#10'"%'#9'c #070707'
+'",'#10'"&'#9'c #F3F3F3",'#10'"*'#9'c #FCFCFC",'#10'"='#9'c #020202",'#10'"-'
+#9'c #090909",'#10'";'#9'c #F8F8F8",'#10'">'#9'c #010101",'#10'",'#9'c #FBFB'
+'FB",'#10'"'''#9'c #F0F0F0",'#10'")'#9'c #FDFDFD",'#10'"!'#9'c #F7F7F7",'#10
+'"~'#9'c #030303",'#10'"{'#9'c #0A0A0A",'#10'"]'#9'c #050505",'#10'"^'#9'c #'
+'040404",'#10'"..+..+.. ",'#10'".@###$#%. ",'#10'".@##@#&.#. ",'#10'".@##'
+'#*@=..-",'#10'".@##;###$#.",'#10'".@###;$###>",'#10'".@##,@#''),.",'#10'".@'
+'####!###=",'#10'".@###$)#,).",'#10'"~!###,##);%",'#10'">#!#)#)###.",'#10'">'
+',#,##!$),+",'#10'"{..=~..+].^"};'#10#27#9#0#0'/* XPM */'#10'static char * b'
+'tn_openfile_xpm[] = {'#10'"18 18 97 2",'#10'" '#9'c None",'#10'". '#9'c #0'
+'00000",'#10'"+ '#9'c #4E331B",'#10'"@ '#9'c #E5A566",'#10'"# '#9'c #FED39A"'
+','#10'"$ '#9'c #FEC585",'#10'"% '#9'c #FDC587",'#10'"& '#9'c #FEC282",'#10
+'"* '#9'c #F8AC62",'#10'"= '#9'c #FEC88A",'#10'"- '#9'c #53504D",'#10'"; '#9
+'c #55524F",'#10'"> '#9'c #5C5A57",'#10'", '#9'c #54514E",'#10'"'' '#9'c #56'
+'5350",'#10'") '#9'c #C4864E",'#10'"! '#9'c #524F4C",'#10'"~ '#9'c #F5F5F5",'
+#10'"{ '#9'c #ECECEC",'#10'"] '#9'c #E4E4E4",'#10'"^ '#9'c #DCDCDC",'#10'"/ '
+#9'c #D4D4D4",'#10'"( '#9'c #CBCBCB",'#10'"_ '#9'c #C4C4C4",'#10'": '#9'c #B'
,'CBCBC",'#10'"< '#9'c #B5B5B5",'#10'"[ '#9'c #B3B3B3",'#10'"} '#9'c #303030"'
+','#10'"| '#9'c #4A3119",'#10'"1 '#9'c #DBDBDB",'#10'"2 '#9'c #DFDFDE",'#10
+'"3 '#9'c #E8E8E7",'#10'"4 '#9'c #E6E6E4",'#10'"5 '#9'c #D2D2D1",'#10'"6 '#9
+'c #C7C7C6",'#10'"7 '#9'c #BABAB9",'#10'"8 '#9'c #ADADAC",'#10'"9 '#9'c #A0A'
+'09F",'#10'"0 '#9'c #949493",'#10'"a '#9'c #494948",'#10'"b '#9'c #B77D44",'
+#10'"c '#9'c #53514E",'#10'"d '#9'c #DADADA",'#10'"e '#9'c #DBDBDA",'#10'"f '
+#9'c #E1E1E0",'#10'"g '#9'c #DDDDDC",'#10'"h '#9'c #D6D6D5",'#10'"i '#9'c #C'
+'BCBCA",'#10'"j '#9'c #C1C1C0",'#10'"k '#9'c #B6B6B5",'#10'"l '#9'c #A9A9A8"'
+','#10'"m '#9'c #686867",'#10'"n '#9'c #222221",'#10'"o '#9'c #493018",'#10
+'"p '#9'c #CDCDCD",'#10'"q '#9'c #CACAC9",'#10'"r '#9'c #D5D5D4",'#10'"s '#9
+'c #D2D2D0",'#10'"t '#9'c #CCCCCB",'#10'"u '#9'c #C2C2C1",'#10'"v '#9'c #B9B'
+'9B8",'#10'"w '#9'c #AFAFAE",'#10'"x '#9'c #A2A2A1",'#10'"y '#9'c #959594",'
+#10'"z '#9'c #CECECE",'#10'"A '#9'c #BEBEBC",'#10'"B '#9'c #C4C4C2",'#10'"C '
+#9'c #C6C6C5",'#10'"D '#9'c #C3C3C2",'#10'"E '#9'c #BFBFBE",'#10'"F '#9'c #A'
+'EAEAD",'#10'"G '#9'c #A5A5A4",'#10'"H '#9'c #9E9E9D",'#10'"I '#9'c #6F6F6E"'
+','#10'"J '#9'c #121212",'#10'"K '#9'c #BDBDBD",'#10'"L '#9'c #A6A6A5",'#10
+'"M '#9'c #AAAAA8",'#10'"N '#9'c #ADADAB",'#10'"O '#9'c #AEAEAC",'#10'"P '#9
+'c #ABABAA",'#10'"Q '#9'c #A7A7A6",'#10'"R '#9'c #A1A1A0",'#10'"S '#9'c #9A9'
+'A99",'#10'"T '#9'c #949492",'#10'"U '#9'c #8D8D8B",'#10'"V '#9'c #232323",'
+#10'"W '#9'c #4A4A4A",'#10'"X '#9'c #4A4A49",'#10'"Y '#9'c #4C4C4B",'#10'"Z '
+#9'c #4C4C4C",'#10'"` '#9'c #4B4B4A",'#10'" .'#9'c #464646",'#10'"..'#9'c #4'
+'34343",'#10'"+.'#9'c #414140",'#10'"@.'#9'c #343433",'#10'"#.'#9'c #1F1F1E"'
+','#10'" . . . . ",'#10'" . . . . . . '
+' . ",'#10'" . . . . . ",'#10'" '
+' . . . ",'#10'" . . . . ",'#10
+'" + + + + ",'#10'"+ @ # $ @ + + + + + + + '
+' ",'#10'"+ # % & * * * * * * * * . ",'#10'"+ = & + - - ; > ,'
+' , '' '' , . . . ",'#10'"+ & ) ! ~ ~ { ] ^ / ( _ : < [ } ",'#10'"+ '
+'& | 1 2 3 4 2 5 6 7 8 9 0 a ",'#10'"+ b c d e f g h i j k l 9 m n '
+' ",'#10'"+ o p q r r s t u v w x y a ",'#10'"+ '' z A B C D E k F'
+' G H I J ",'#10'"+ K L M N O P Q R S T U a ",'#10'"V W X '
+'Y Z Y ` a ...+.@.#. ",'#10'" "'
+','#10'" "};'#10'='#6#0#0'/* XPM */'#10's'
+'tatic char * color_xpm[] = {'#10'"20 20 71 1",'#10'" '#9'c None",'#10'".'#9
+'c #BEC1BB",'#10'"+'#9'c #BEC2BB",'#10'"@'#9'c #BEC1BA",'#10'"#'#9'c #BFC2BB'
+'",'#10'"$'#9'c #A9ACA6",'#10'"%'#9'c #7F817C",'#10'"&'#9'c #000222",'#10'"*'
+#9'c #010545",'#10'"='#9'c #020546",'#10'"-'#9'c #01032E",'#10'";'#9'c #1013'
+'3D",'#10'">'#9'c #1F277B",'#10'",'#9'c #142C3B",'#10'"'''#9'c #1F4359",'#10
+'")'#9'c #1E4258",'#10'"!'#9'c #0F212C",'#10'"~'#9'c #030A8B",'#10'"{'#9'c #'
+'040B8C",'#10'"]'#9'c #02075D",'#10'"^'#9'c #20277B",'#10'"/'#9'c #3F4EF6",'
+#10'"('#9'c #295976",'#10'"_'#9'c #3E86B2",'#10'":'#9'c #3D85B1",'#10'"<'#9
+'c #01043E",'#10'"['#9'c #151A52",'#10'"}'#9'c #2A34A4",'#10'"|'#9'c #1B3B4F'
+'",'#10'"1'#9'c #051B17",'#10'"2'#9'c #0A362E",'#10'"3'#9'c #06241F",'#10'"4'
+#9'c #011D11",'#10'"5'#9'c #023B21",'#10'"6'#9'c #023B22",'#10'"7'#9'c #044E'
+'24",'#10'"8'#9'c #077637",'#10'"9'#9'c #033B1B",'#10'"0'#9'c #09362E",'#10
+'"a'#9'c #136C5C",'#10'"b'#9'c #146D5D",'#10'"c'#9'c #0D483E",'#10'"d'#9'c #'
+'037643",'#10'"e'#9'c #099D49",'#10'"f'#9'c #0EED6E",'#10'"g'#9'c #0DEC6D",'
+#10'"h'#9'c #146C5C",'#10'"i'#9'c #146C5D",'#10'"j'#9'c #044F24",'#10'"k'#9
+'c #48520A",'#10'"l'#9'c #90A515",'#10'"m'#9'c #606E0E",'#10'"n'#9'c #522E02'
+'",'#10'"o'#9'c #A55D05",'#10'"p'#9'c #5C140B",'#10'"q'#9'c #8B1E10",'#10'"r'
+#9'c #450F08",'#10'"s'#9'c #6C7C0F",'#10'"t'#9'c #D8F81F",'#10'"u'#9'c #D9F9'
+'20",'#10'"v'#9'c #90A615",'#10'"w'#9'c #7C4604",'#10'"x'#9'c #F88C08",'#10
+'"y'#9'c #D12E19",'#10'"z'#9'c #D02D18",'#10'"A'#9'c #68170C",'#10'"B'#9'c #'
+'363E08",'#10'"C'#9'c #6C7C10",'#10'"D'#9'c #48530A",'#10'"E'#9'c #3E2302",'
+#10'"F'#9'c #340B06",'#10'".+.@####@@@@@@#@@@@@",'#10'".$%%%%%%%%%%%%%%%%$@"'
+','#10'".%&*==-;>>>>;,''))!%@",'#10'".%*~{{]^////^(_::''%@",'#10'".%*~{{]^//'
+'//^(_::''%@",'#10'".%*~{{]^////^(_::''%@",'#10'".%-]]]<[}}}}[|(((,%@",'#10
+'"+%1222345565478889%@",'#10'".%0abbc6dddd6efgg8%@",'#10'".%0abbc6dddd6efgg8'
+'%@",'#10'"+%0hibc6dddd6efgg8%@",'#10'"+%0abbc6dddd6efgg8%@",'#10'".%1222346'
+'6664j8889%@",'#10'".%klllmnoooonpqqqr%@",'#10'"+%stuuvwxxxxwqyzzA%@",'#10'"'
+'#%stuuvwxxxxwqyzzA%@",'#10'".%stuuvwxxxxwqyzzA%@",'#10'"+%BCCCDEwwwwErAAAF%'
+'@",'#10'"+$%%%%%%%%%%%%%%%%$@",'#10'".#.@####@@@@@@#@@@@@"};'#10#0#0#0
'TPF0'#6'TForm1'#5'Form1'#13'ActiveControl'#7#9'CheckBox3'#7'Caption'#6#13'Li'
+'stview test'#12'ClientHeight'#3'+'#1#11'ClientWidth'#3's'#2#13'PixelsPerInc'
+'h'#2'`'#18'HorzScrollBar.Page'#3'r'#2#18'VertScrollBar.Page'#3'*'#1#4'Left'
+#3'd'#1#6'Height'#3'+'#1#3'Top'#3#150#0#5'Width'#3's'#2#0#9'TNotebook'#9'Not'
+'ebook1'#7'Anchors'#11#5'akTop'#7'akRight'#0#9'PageIndex'#2#0#4'Left'#3#177#1
+#6'Height'#3#24#1#3'Top'#2#8#5'Width'#3#184#0#0#5'TPage'#5'Page3'#7'Caption'
+#6#2'LV'#11'ClientWidth'#3#176#0#12'ClientHeight'#3#254#0#6'Height'#3#254#0#5
+'Width'#3#176#0#0#6'TLabel'#7'Label11'#7'Caption'#6#10'Scrollbars'#4'Left'#2
+#6#6'Height'#2#14#3'Top'#2'<'#5'Width'#2'/'#0#0#6'TLabel'#7'Label12'#7'Capti'
+'on'#6#10'SortColumn'#4'Left'#2#6#6'Height'#2#14#3'Top'#2'z'#5'Width'#2'8'#0
+#0#6'TLabel'#7'Label13'#7'Caption'#6#8'SortType'#4'Left'#2#6#6'Height'#2#14#3
+'Top'#3#154#0#5'Width'#2'-'#0#0#6'TLabel'#7'Label14'#7'Caption'#6#9'ViewStyl'
+'e'#4'Left'#2#6#6'Height'#2#14#3'Top'#3#186#0#5'Width'#2'/'#0#0#9'TCheckBox'
+#9'CheckBox3'#7'Caption'#6#11'Multiselect'#8'OnChange'#7#15'CheckBox3Change'
+#7'OnClick'#7#14'CheckBox3Click'#8'TabOrder'#2#0#4'Left'#2#6#6'Height'#2#13#3
+'Top'#2#4#5'Width'#2'F'#0#0#9'TComboBox'#9'ComboBox2'#13'Items.Strings'#1#6#6
+'ssNone'#6#12'ssHorizontal'#6#10'ssVertical'#6#6'ssBoth'#6#16'ssAutoHorizont'
+'al'#6#14'ssAutoVertical'#6#10'ssAutoBoth'#0#9'ItemIndex'#2#6#9'MaxLength'#2
+#0#8'OnChange'#7#15'ComboBox2Change'#5'Style'#7#14'csDropDownList'#8'TabOrde'
+'r'#2#1#4'Text'#6#10'ssAutoBoth'#4'Left'#2'M'#6'Height'#2#21#3'Top'#2'4'#5'W'
+'idth'#2'_'#0#0#5'TEdit'#6'Edit11'#8'OnChange'#7#12'Edit11Change'#8'TabOrder'
+#2#2#4'Text'#6#1'0'#4'Left'#2'N'#6'Height'#2#23#3'Top'#2't'#5'Width'#2'P'#0#0
+#9'TComboBox'#9'ComboBox3'#13'Items.Strings'#1#6#6'stNone'#6#6'stData'#6#6's'
+'tText'#6#6'stBoth'#0#9'ItemIndex'#2#0#9'MaxLength'#2#0#8'OnChange'#7#15'Com'
+'boBox3Change'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#3#4'Text'#6#6'stN'
+'one'#4'Left'#2'M'#6'Height'#2#21#3'Top'#3#146#0#5'Width'#2'_'#0#0#9'TComboB'
+'ox'#9'ComboBox4'#13'Items.Strings'#1#6#6'vsIcon'#6#11'vsSmallIcon'#6#6'vsLi'
+'st'#6#8'vsReport'#0#9'ItemIndex'#2#3#9'MaxLength'#2#0#8'OnChange'#7#15'Comb'
+'oBox4Change'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#4#4'Text'#6#8'vsRe'
+'port'#4'Left'#2'N'#6'Height'#2#21#3'Top'#3#178#0#5'Width'#2'_'#0#0#9'TCheck'
+'Box'#9'CheckBox4'#7'Caption'#6#9'RowSelect'#7'OnClick'#7#14'CheckBox4Click'
+#8'TabOrder'#2#5#4'Left'#2#6#6'Height'#2#13#3'Top'#2#28#5'Width'#2'H'#0#0#9
+'TCheckBox'#9'CheckBox5'#7'Caption'#6#17'ShowColumnHeaders'#7'Checked'#9#7'O'
+'nClick'#7#14'CheckBox5Click'#5'State'#7#9'cbChecked'#8'TabOrder'#2#6#4'Left'
+#2#6#6'Height'#2#13#3'Top'#2'T'#5'Width'#2'z'#0#0#0#5'TPage'#5'Page1'#7'Capt'
+'ion'#6#5'Items'#11'ClientWidth'#3#176#0#12'ClientHeight'#3#254#0#6'Height'#3
+#254#0#5'Width'#3#176#0#0#6'TLabel'#6'Label6'#7'Caption'#6#5'Index'#4'Left'#2
+#6#6'Height'#2#17#3'Top'#2#4#5'Width'#2'A'#0#0#6'TLabel'#6'Label7'#7'Caption'
+#6#8'SubIndex'#4'Left'#2'^'#6'Height'#2#17#3'Top'#2#4#5'Width'#2'A'#0#0#6'TL'
+'abel'#6'Label9'#7'Caption'#6#4'Text'#4'Left'#2#6#6'Height'#2#17#3'Top'#2't'
+#5'Width'#2'A'#0#0#6'TLabel'#7'Label10'#7'Caption'#6#10'ImageIndex'#4'Left'#2
+'^'#6'Height'#2#17#3'Top'#2't'#5'Width'#2'A'#0#0#7'TButton'#7'Button1'#25'Bo'
+'rderSpacing.InnerBorder'#2#2#7'Caption'#6#6'Insert'#7'OnClick'#7#12'Button1'
+'Click'#8'TabOrder'#2#0#4'Left'#2#6#6'Height'#2#25#3'Top'#2'4'#5'Width'#2'K'
+#0#0#7'TButton'#7'Button2'#25'BorderSpacing.InnerBorder'#2#2#7'Caption'#6#6
+'Delete'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#1#4'Left'#2'^'#6'Height'
+#2#25#3'Top'#2'4'#5'Width'#2'K'#0#0#7'TButton'#7'Button5'#25'BorderSpacing.I'
+'nnerBorder'#2#2#7'Caption'#6#6'Select'#7'OnClick'#7#12'Button5Click'#8'TabO'
+'rder'#2#2#4'Left'#2#6#6'Height'#2#25#3'Top'#2'T'#5'Width'#2'K'#0#0#7'TButto'
+'n'#7'Button6'#25'BorderSpacing.InnerBorder'#2#2#7'Caption'#6#5'Focus'#7'OnC'
+'lick'#7#12'Button6Click'#8'TabOrder'#2#3#4'Left'#2'^'#6'Height'#2#25#3'Top'
+#2'T'#5'Width'#2'K'#0#0#5'TEdit'#5'Edit1'#8'OnChange'#7#11'Edit1Change'#8'Ta'
+'bOrder'#2#4#4'Text'#6#1'0'#4'Left'#2#6#6'Height'#2#23#3'Top'#2#20#5'Width'#2
+'P'#0#0#5'TEdit'#5'Edit4'#8'OnChange'#7#11'Edit4Change'#8'TabOrder'#2#5#4'Te'
+'xt'#6#5'Edit4'#4'Left'#2#6#6'Height'#2#23#3'Top'#3#132#0#5'Width'#2'P'#0#0#5
+'TEdit'#5'Edit5'#8'OnChange'#7#11'Edit5Change'#8'TabOrder'#2#6#4'Text'#6#1'0'
+#4'Left'#2'^'#6'Height'#2#23#3'Top'#2#20#5'Width'#2'P'#0#0#5'TEdit'#6'Edit10'
+#8'OnChange'#7#12'Edit10Change'#8'TabOrder'#2#7#4'Text'#6#2'-1'#4'Left'#2'^'
+#6'Height'#2#23#3'Top'#3#132#0#5'Width'#2'P'#0#0#0#5'TPage'#5'Page2'#7'Capti'
+'on'#6#7'Columns'#11'ClientWidth'#3#176#0#12'ClientHeight'#3#254#0#6'Height'
+#3#254#0#5'Width'#3#176#0#0#6'TLabel'#6'Label1'#7'Caption'#6#7'Caption'#4'Le'
+'ft'#2#6#6'Height'#2#17#3'Top'#2'T'#5'Width'#2'A'#0#0#6'TLabel'#6'Label2'#7
+'Caption'#6#5'Width'#4'Left'#2'^'#6'Height'#2#17#3'Top'#2'T'#5'Width'#2'A'#0
+#0#6'TLabel'#6'Label3'#7'Caption'#6#8'Minwidth'#4'Left'#2#6#6'Height'#2#17#3
,'Top'#3#132#0#5'Width'#2'A'#0#0#6'TLabel'#6'Label4'#7'Caption'#6#8'Maxwidth'
+#4'Left'#2'^'#6'Height'#2#17#3'Top'#3#132#0#5'Width'#2'A'#0#0#6'TLabel'#6'La'
+'bel5'#7'Caption'#6#5'Image'#4'Left'#2#6#6'Height'#2#17#3'Top'#3#179#0#5'Wid'
+'th'#2'A'#0#0#6'TLabel'#6'Label8'#7'Caption'#6#5'Index'#4'Left'#2#6#6'Height'
+#2#17#3'Top'#2#4#5'Width'#2'A'#0#0#7'TButton'#7'Button3'#25'BorderSpacing.In'
+'nerBorder'#2#2#7'Caption'#6#6'Insert'#7'OnClick'#7#12'Button3Click'#8'TabOr'
+'der'#2#0#4'Left'#2#6#6'Height'#2#25#3'Top'#2'4'#5'Width'#2'K'#0#0#7'TButton'
+#7'Button4'#25'BorderSpacing.InnerBorder'#2#2#7'Caption'#6#6'Delete'#7'OnCli'
+'ck'#7#12'Button4Click'#8'TabOrder'#2#1#4'Left'#2'^'#6'Height'#2#25#3'Top'#2
+'4'#5'Width'#2'K'#0#0#5'TEdit'#5'Edit2'#8'OnChange'#7#11'Edit2Change'#8'TabO'
+'rder'#2#2#4'Text'#6#1'0'#4'Left'#2#6#6'Height'#2#23#3'Top'#2#20#5'Width'#2
+'P'#0#0#5'TEdit'#5'Edit3'#8'OnChange'#7#11'Edit3Change'#8'TabOrder'#2#3#4'Te'
+'xt'#6#5'Edit3'#4'Left'#2#6#6'Height'#2#23#3'Top'#2'd'#5'Width'#2'P'#0#0#5'T'
+'Edit'#5'Edit6'#8'OnChange'#7#11'Edit6Change'#8'TabOrder'#2#4#4'Text'#6#1'0'
+#4'Left'#2'^'#6'Height'#2#23#3'Top'#2'd'#5'Width'#2'P'#0#0#5'TEdit'#5'Edit7'
+#8'OnChange'#7#11'Edit7Change'#8'TabOrder'#2#7#4'Text'#6#1'0'#4'Left'#2#6#6
+'Height'#2#23#3'Top'#3#148#0#5'Width'#2'P'#0#0#5'TEdit'#5'Edit8'#8'OnChange'
+#7#11'Edit8Change'#8'TabOrder'#2#9#4'Text'#6#1'0'#4'Left'#2'^'#6'Height'#2#23
+#3'Top'#3#148#0#5'Width'#2'P'#0#0#9'TCheckBox'#9'CheckBox1'#7'Caption'#6#7'V'
+'isible'#7'OnClick'#7#14'CheckBox1Click'#8'TabOrder'#2#5#4'Left'#2#6#6'Heigh'
+'t'#2#20#3'Top'#3#220#0#5'Width'#2'P'#0#0#5'TEdit'#5'Edit9'#8'TabOrder'#2#6#4
+'Text'#6#2'-1'#4'Left'#2#6#6'Height'#2#23#3'Top'#3#193#0#5'Width'#2'P'#0#0#9
+'TComboBox'#9'ComboBox1'#13'Items.Strings'#1#6#13'taLeftJustify'#6#14'taRigh'
+'tJustify'#6#8'taCenter'#0#9'MaxLength'#2#0#8'OnChange'#7#15'ComboBox1Change'
+#11'ParentCtl3D'#8#8'TabOrder'#2#8#4'Left'#2'^'#6'Height'#2#21#3'Top'#3#191#0
+#5'Width'#2'P'#0#0#9'TCheckBox'#9'CheckBox2'#7'Caption'#6#8'Autosize'#7'OnCl'
+'ick'#7#14'CheckBox2Click'#8'TabOrder'#2#10#4'Left'#2'^'#6'Height'#2#20#3'To'
+'p'#3#220#0#5'Width'#2'P'#0#0#0#0#9'TListView'#9'ListView1'#7'Anchors'#11#5
+'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#11'BorderWidth'#2#2#7'Columns'#14
+#1#7'Caption'#6#3'One'#0#1#7'Caption'#6#3'Two'#0#0#10'Items.Data'#10'P'#0#0#0
+'R'#254#255#255#2#0#0#0#0#0#0#0#255#255#255#255#255#255#255#255#2#0#0#0#0#0#0
+#0#5'New 1'#5'Sub 1'#5'Sub 2'#255#255#255#255#255#255#255#255#255#255#255#255
+#0#0#0#0#0#0#0#0#5'New 2'#255#255#255#255#255#255#255#255#10'ScrollBars'#7#10
+'ssAutoBoth'#11'SmallImages'#7#10'ImageList1'#9'ViewStyle'#7#8'vsReport'#8'O'
+'nChange'#7#15'ListView1Change'#7'OnClick'#7#14'ListView1Click'#13'OnColumnC'
+'lick'#7#20'ListView1ColumnClick'#12'OnSelectItem'#7#19'ListView1SelectItem'
+#4'Left'#2#8#6'Height'#3#24#1#3'Top'#2#8#5'Width'#3#161#1#0#0#10'TImageList'
+#10'ImageList1'#8'OnChange'#7#16'ImageList1Change'#4'left'#3#243#0#3'top'#3
+#253#1#6'Bitmap'#10#211#28#0#0'li'#4#0#0#0#16#0#0#0#16#0#0#0'%'#11#0#0'/* XP'
+'M */'#10'static char * btn_newform_xpm[] = {'#10'"15 13 147 2",'#10'" '#9
+'c None",'#10'". '#9'c #8D8E93",'#10'"+ '#9'c #7D8391",'#10'"@ '#9'c #798194'
+'",'#10'"# '#9'c #80889D",'#10'"$ '#9'c #7C849B",'#10'"% '#9'c #747A94",'#10
+'"& '#9'c #8085A2",'#10'"* '#9'c #7B80A0",'#10'"= '#9'c #7F84A2",'#10'"- '#9
+'c #7E81A0",'#10'"; '#9'c #7D819C",'#10'"> '#9'c #7A7C93",'#10'", '#9'c #818'
+'495",'#10'"'' '#9'c #797B88",'#10'") '#9'c #868992",'#10'"! '#9'c #7C7B8D",'
+#10'"~ '#9'c #F9F9FF",'#10'"{ '#9'c #870013",'#10'"] '#9'c #AE0013",'#10'"^ '
+#9'c #D30013",'#10'"/ '#9'c #FCF4FF",'#10'"( '#9'c #FEFAFF",'#10'"_ '#9'c #0'
+'0000E",'#10'": '#9'c #858496",'#10'"< '#9'c #0A0627",'#10'"[ '#9'c #86868E"'
+','#10'"} '#9'c #F7F9FF",'#10'"| '#9'c #F9FCFF",'#10'"1 '#9'c #FBFBFF",'#10
+'"2 '#9'c #FBFAFF",'#10'"3 '#9'c #EEEDFF",'#10'"4 '#9'c #F8F5FF",'#10'"5 '#9
+'c #FAF8FF",'#10'"6 '#9'c #FBF7FF",'#10'"7 '#9'c #FEFBFF",'#10'"8 '#9'c #FEF'
+'CFF",'#10'"9 '#9'c #05040C",'#10'"0 '#9'c #838486",'#10'"a '#9'c #FCFFFF",'
+#10'"b '#9'c #F2F7FA",'#10'"c '#9'c #C6CBCE",'#10'"d '#9'c #F3F9F9",'#10'"e '
+#9'c #C3C7C6",'#10'"f '#9'c #C0C5C1",'#10'"g '#9'c #FCFFFD",'#10'"h '#9'c #C'
+'3C5C4",'#10'"i '#9'c #FEFFFF",'#10'"j '#9'c #CACBCD",'#10'"k '#9'c #F6F7FB"'
+','#10'"l '#9'c #CCCBD1",'#10'"m '#9'c #010008",'#10'"n '#9'c #848685",'#10
+'"o '#9'c #F8FCFB",'#10'"p '#9'c #C5CAC6",'#10'"q '#9'c #FCFFFB",'#10'"r '#9
+'c #D0D6CC",'#10'"s '#9'c #EFF3E5",'#10'"t '#9'c #C6CABB",'#10'"u '#9'c #F8F'
+'CEB",'#10'"v '#9'c #C8CCBB",'#10'"w '#9'c #FAFCEE",'#10'"x '#9'c #D0D2C7",'
+#10'"y '#9'c #FAFBF6",'#10'"z '#9'c #C1C1C3",'#10'"A '#9'c #FBF8FF",'#10'"B '
+#9'c #02000D",'#10'"C '#9'c #868686",'#10'"D '#9'c #FBFDFA",'#10'"E '#9'c #F'
+'EFFFB",'#10'"F '#9'c #C6C9C2",'#10'"G '#9'c #FCFFF4",'#10'"H '#9'c #C9CDBF"'
+','#10'"I '#9'c #FEFFF1",'#10'"J '#9'c #BEC3AF",'#10'"K '#9'c #FEFFEF",'#10
+'"L '#9'c #CBCEBD",'#10'"M '#9'c #F6F8EB",'#10'"N '#9'c #CACBC3",'#10'"O '#9
,'c #FFFFFD",'#10'"P '#9'c #C6C4C9",'#10'"Q '#9'c #010009",'#10'"R '#9'c #FFF'
+'FFF",'#10'"S '#9'c #C2C2C0",'#10'"T '#9'c #C7C7C5",'#10'"U '#9'c #FDFEF9",'
+#10'"V '#9'c #C4C5C0",'#10'"W '#9'c #FBFCF6",'#10'"X '#9'c #C9CAC4",'#10'"Y '
+#9'c #FFFFFA",'#10'"Z '#9'c #C1C2BC",'#10'"` '#9'c #C6C5C0",'#10'" .'#9'c #0'
+'10000",'#10'"..'#9'c #828282",'#10'"+.'#9'c #FCFCFC",'#10'"@.'#9'c #C2C2C2"'
+','#10'"#.'#9'c #F8F8F8",'#10'"$.'#9'c #C3C3C3",'#10'"%.'#9'c #CECECE",'#10
+'"&.'#9'c #F9F9F9",'#10'"*.'#9'c #BEBEBC",'#10'"=.'#9'c #BEBDB9",'#10'"-.'#9
+'c #C4C4BC",'#10'";.'#9'c #060600",'#10'">.'#9'c #858585",'#10'",.'#9'c #B3B'
+'3B5",'#10'"''.'#9'c #D3D3D3",'#10'").'#9'c #C0C0BE",'#10'"!.'#9'c #FAFAF8",'
+#10'"~.'#9'c #CACAC8",'#10'"{.'#9'c #C4C4C2",'#10'"].'#9'c #000000",'#10'"^.'
+#9'c #848484",'#10'"/.'#9'c #C4C4C6",'#10'"(.'#9'c #F5F5F7",'#10'"_.'#9'c #C'
+'BCBCD",'#10'":.'#9'c #F7F7F9",'#10'"<.'#9'c #CDCDCF",'#10'"[.'#9'c #F8F8FA"'
+','#10'"}.'#9'c #C8C8CA",'#10'"|.'#9'c #D4D4D4",'#10'"1.'#9'c #808080",'#10
+'"2.'#9'c #F9F9FB",'#10'"3.'#9'c #CAC9CE",'#10'"4.'#9'c #FFFEFF",'#10'"5.'#9
+'c #C6C5CD",'#10'"6.'#9'c #FFFDFF",'#10'"7.'#9'c #C9C7D4",'#10'"8.'#9'c #F7F'
+'5FF",'#10'"9.'#9'c #CDCBD8",'#10'"0.'#9'c #C9C8D0",'#10'"a.'#9'c #F7F6FC",'
+#10'"b.'#9'c #C5C5C7",'#10'"c.'#9'c #F4F6F3",'#10'"d.'#9'c #000200",'#10'"e.'
+#9'c #949494",'#10'"f.'#9'c #060606",'#10'"g.'#9'c #000002",'#10'"h.'#9'c #0'
+'40308",'#10'"i.'#9'c #000005",'#10'"j.'#9'c #000007",'#10'"k.'#9'c #000009"'
+','#10'"l.'#9'c #04020F",'#10'"m.'#9'c #08070F",'#10'"n.'#9'c #020204",'#10
+'"o.'#9'c #0D0F0C",'#10'"p.'#9'c #000100",'#10'". + @ # $ % & * = - ; > , '''
+' ) ",'#10'"! ~ { { { { { ] ] ^ ^ / ^ ( _ ",'#10'": { { { { ] ] ] ^ ^ ^ ^ ^ '
+'< _ ",'#10'"[ } | 1 1 2 3 2 4 5 6 7 8 8 9 ",'#10'"0 a b c d e a f g h i j k'
+' l m ",'#10'"n o p q r s t u v w x y z A B ",'#10'"C D E F G H I J K L M N '
+'O P Q ",'#10'"C R S O T U V W X Y Z Y ` Y .",'#10'"..+.R @.#.$.R %.&.*.O ='
+'.Y -.;.",'#10'">.R ,.R ''.R ).O T !.~.O {.!.].",'#10'"^.R R /.(./.R _.:.<.['
+'.}.R |.].",'#10'"1.2.3.4.5.6.7.8.9.6.0.a.b.c.d.",'#10'"e.f.g.h.i.j.k.l.k.k.'
+'m.i.n.o.p."};'#10'8'#2#0#0'/* XPM */'#10'static char * btn_newunit_xpm[] = '
+'{'#10'"11 13 21 1",'#10'" '#9'c None",'#10'".'#9'c #000000",'#10'"+'#9'c #0'
+'C0C0C",'#10'"@'#9'c #FEFEFE",'#10'"#'#9'c #FFFFFF",'#10'"$'#9'c #FAFAFA",'
+#10'"%'#9'c #070707",'#10'"&'#9'c #F3F3F3",'#10'"*'#9'c #FCFCFC",'#10'"='#9
+'c #020202",'#10'"-'#9'c #090909",'#10'";'#9'c #F8F8F8",'#10'">'#9'c #010101'
+'",'#10'",'#9'c #FBFBFB",'#10'"'''#9'c #F0F0F0",'#10'")'#9'c #FDFDFD",'#10'"'
+'!'#9'c #F7F7F7",'#10'"~'#9'c #030303",'#10'"{'#9'c #0A0A0A",'#10'"]'#9'c #0'
+'50505",'#10'"^'#9'c #040404",'#10'"..+..+.. ",'#10'".@###$#%. ",'#10'".@'
+'##@#&.#. ",'#10'".@###*@=..-",'#10'".@##;###$#.",'#10'".@###;$###>",'#10'".'
+'@##,@#''),.",'#10'".@####!###=",'#10'".@###$)#,).",'#10'"~!###,##);%",'#10
+'">#!#)#)###.",'#10'">,#,##!$),+",'#10'"{..=~..+].^"};'#10#27#9#0#0'/* XPM *'
+'/'#10'static char * btn_openfile_xpm[] = {'#10'"18 18 97 2",'#10'" '#9'c N'
+'one",'#10'". '#9'c #000000",'#10'"+ '#9'c #4E331B",'#10'"@ '#9'c #E5A566",'
+#10'"# '#9'c #FED39A",'#10'"$ '#9'c #FEC585",'#10'"% '#9'c #FDC587",'#10'"& '
+#9'c #FEC282",'#10'"* '#9'c #F8AC62",'#10'"= '#9'c #FEC88A",'#10'"- '#9'c #5'
+'3504D",'#10'"; '#9'c #55524F",'#10'"> '#9'c #5C5A57",'#10'", '#9'c #54514E"'
+','#10'"'' '#9'c #565350",'#10'") '#9'c #C4864E",'#10'"! '#9'c #524F4C",'#10
+'"~ '#9'c #F5F5F5",'#10'"{ '#9'c #ECECEC",'#10'"] '#9'c #E4E4E4",'#10'"^ '#9
+'c #DCDCDC",'#10'"/ '#9'c #D4D4D4",'#10'"( '#9'c #CBCBCB",'#10'"_ '#9'c #C4C'
+'4C4",'#10'": '#9'c #BCBCBC",'#10'"< '#9'c #B5B5B5",'#10'"[ '#9'c #B3B3B3",'
+#10'"} '#9'c #303030",'#10'"| '#9'c #4A3119",'#10'"1 '#9'c #DBDBDB",'#10'"2 '
+#9'c #DFDFDE",'#10'"3 '#9'c #E8E8E7",'#10'"4 '#9'c #E6E6E4",'#10'"5 '#9'c #D'
+'2D2D1",'#10'"6 '#9'c #C7C7C6",'#10'"7 '#9'c #BABAB9",'#10'"8 '#9'c #ADADAC"'
+','#10'"9 '#9'c #A0A09F",'#10'"0 '#9'c #949493",'#10'"a '#9'c #494948",'#10
+'"b '#9'c #B77D44",'#10'"c '#9'c #53514E",'#10'"d '#9'c #DADADA",'#10'"e '#9
+'c #DBDBDA",'#10'"f '#9'c #E1E1E0",'#10'"g '#9'c #DDDDDC",'#10'"h '#9'c #D6D'
+'6D5",'#10'"i '#9'c #CBCBCA",'#10'"j '#9'c #C1C1C0",'#10'"k '#9'c #B6B6B5",'
+#10'"l '#9'c #A9A9A8",'#10'"m '#9'c #686867",'#10'"n '#9'c #222221",'#10'"o '
+#9'c #493018",'#10'"p '#9'c #CDCDCD",'#10'"q '#9'c #CACAC9",'#10'"r '#9'c #D'
+'5D5D4",'#10'"s '#9'c #D2D2D0",'#10'"t '#9'c #CCCCCB",'#10'"u '#9'c #C2C2C1"'
+','#10'"v '#9'c #B9B9B8",'#10'"w '#9'c #AFAFAE",'#10'"x '#9'c #A2A2A1",'#10
+'"y '#9'c #959594",'#10'"z '#9'c #CECECE",'#10'"A '#9'c #BEBEBC",'#10'"B '#9
+'c #C4C4C2",'#10'"C '#9'c #C6C6C5",'#10'"D '#9'c #C3C3C2",'#10'"E '#9'c #BFB'
+'FBE",'#10'"F '#9'c #AEAEAD",'#10'"G '#9'c #A5A5A4",'#10'"H '#9'c #9E9E9D",'
+#10'"I '#9'c #6F6F6E",'#10'"J '#9'c #121212",'#10'"K '#9'c #BDBDBD",'#10'"L '
+#9'c #A6A6A5",'#10'"M '#9'c #AAAAA8",'#10'"N '#9'c #ADADAB",'#10'"O '#9'c #A'
+'EAEAC",'#10'"P '#9'c #ABABAA",'#10'"Q '#9'c #A7A7A6",'#10'"R '#9'c #A1A1A0"'
,','#10'"S '#9'c #9A9A99",'#10'"T '#9'c #949492",'#10'"U '#9'c #8D8D8B",'#10
+'"V '#9'c #232323",'#10'"W '#9'c #4A4A4A",'#10'"X '#9'c #4A4A49",'#10'"Y '#9
+'c #4C4C4B",'#10'"Z '#9'c #4C4C4C",'#10'"` '#9'c #4B4B4A",'#10'" .'#9'c #464'
+'646",'#10'"..'#9'c #434343",'#10'"+.'#9'c #414140",'#10'"@.'#9'c #343433",'
+#10'"#.'#9'c #1F1F1E",'#10'" . . . . ",'#10'" '
+' . . . . . . . ",'#10'" . . . . . '
+' ",'#10'" . . . ",'#10'" . '
+'. . . ",'#10'" + + + + ",'#10'"+ @ # $ @'
+' + + + + + + + ",'#10'"+ # % & * * * * * * * * . ",'
+#10'"+ = & + - - ; > , , '' '' , . . . ",'#10'"+ & ) ! ~ ~ { ] ^ / ( _ :'
+' < [ } ",'#10'"+ & | 1 2 3 4 2 5 6 7 8 9 0 a ",'#10'"+ b c d e f '
+'g h i j k l 9 m n ",'#10'"+ o p q r r s t u v w x y a ",'#10
+'"+ '' z A B C D E k F G H I J ",'#10'"+ K L M N O P Q R S T U a '
+' ",'#10'"V W X Y Z Y ` a ...+.@.#. ",'#10'" '
+' ",'#10'" "};'#10'='#6
+#0#0'/* XPM */'#10'static char * color_xpm[] = {'#10'"20 20 71 1",'#10'" '#9
+'c None",'#10'".'#9'c #BEC1BB",'#10'"+'#9'c #BEC2BB",'#10'"@'#9'c #BEC1BA",'
+#10'"#'#9'c #BFC2BB",'#10'"$'#9'c #A9ACA6",'#10'"%'#9'c #7F817C",'#10'"&'#9
+'c #000222",'#10'"*'#9'c #010545",'#10'"='#9'c #020546",'#10'"-'#9'c #01032E'
+'",'#10'";'#9'c #10133D",'#10'">'#9'c #1F277B",'#10'",'#9'c #142C3B",'#10'"'
+''''#9'c #1F4359",'#10'")'#9'c #1E4258",'#10'"!'#9'c #0F212C",'#10'"~'#9'c #'
+'030A8B",'#10'"{'#9'c #040B8C",'#10'"]'#9'c #02075D",'#10'"^'#9'c #20277B",'
+#10'"/'#9'c #3F4EF6",'#10'"('#9'c #295976",'#10'"_'#9'c #3E86B2",'#10'":'#9
+'c #3D85B1",'#10'"<'#9'c #01043E",'#10'"['#9'c #151A52",'#10'"}'#9'c #2A34A4'
+'",'#10'"|'#9'c #1B3B4F",'#10'"1'#9'c #051B17",'#10'"2'#9'c #0A362E",'#10'"3'
+#9'c #06241F",'#10'"4'#9'c #011D11",'#10'"5'#9'c #023B21",'#10'"6'#9'c #023B'
+'22",'#10'"7'#9'c #044E24",'#10'"8'#9'c #077637",'#10'"9'#9'c #033B1B",'#10
+'"0'#9'c #09362E",'#10'"a'#9'c #136C5C",'#10'"b'#9'c #146D5D",'#10'"c'#9'c #'
+'0D483E",'#10'"d'#9'c #037643",'#10'"e'#9'c #099D49",'#10'"f'#9'c #0EED6E",'
+#10'"g'#9'c #0DEC6D",'#10'"h'#9'c #146C5C",'#10'"i'#9'c #146C5D",'#10'"j'#9
+'c #044F24",'#10'"k'#9'c #48520A",'#10'"l'#9'c #90A515",'#10'"m'#9'c #606E0E'
+'",'#10'"n'#9'c #522E02",'#10'"o'#9'c #A55D05",'#10'"p'#9'c #5C140B",'#10'"q'
+#9'c #8B1E10",'#10'"r'#9'c #450F08",'#10'"s'#9'c #6C7C0F",'#10'"t'#9'c #D8F8'
+'1F",'#10'"u'#9'c #D9F920",'#10'"v'#9'c #90A615",'#10'"w'#9'c #7C4604",'#10
+'"x'#9'c #F88C08",'#10'"y'#9'c #D12E19",'#10'"z'#9'c #D02D18",'#10'"A'#9'c #'
+'68170C",'#10'"B'#9'c #363E08",'#10'"C'#9'c #6C7C10",'#10'"D'#9'c #48530A",'
+#10'"E'#9'c #3E2302",'#10'"F'#9'c #340B06",'#10'".+.@####@@@@@@#@@@@@",'#10
+'".$%%%%%%%%%%%%%%%%$@",'#10'".%&*==-;>>>>;,''))!%@",'#10'".%*~{{]^////^(_::'
+'''%@",'#10'".%*~{{]^////^(_::''%@",'#10'".%*~{{]^////^(_::''%@",'#10'".%-]]'
+']<[}}}}[|(((,%@",'#10'"+%1222345565478889%@",'#10'".%0abbc6dddd6efgg8%@",'
+#10'".%0abbc6dddd6efgg8%@",'#10'"+%0hibc6dddd6efgg8%@",'#10'"+%0abbc6dddd6ef'
+'gg8%@",'#10'".%12223466664j8889%@",'#10'".%klllmnoooonpqqqr%@",'#10'"+%stuu'
+'vwxxxxwqyzzA%@",'#10'"#%stuuvwxxxxwqyzzA%@",'#10'".%stuuvwxxxxwqyzzA%@",'#10
+'"+%BCCCDEwwwwErAAAF%@",'#10'"+$%%%%%%%%%%%%%%%%$@",'#10'".#.@####@@@@@@#@@@'
+'@@"};'#10#0#0#0
]);