Changeset 479

User picture

Author: nrymanov@gmail.com

(2010/03/18 07:22) Almost 2 years ago

see #29 - Редизайн формы настроек программы
* изменил некоторые настроки по умолчанию

Affected files

Updated trunk/Forms/frm_add_nonfb2.pas Download diff

478479
172
implementation
172
implementation
173
173
174
uses
174
uses
175
  IOUtils,
175
  dm_user,
176
  dm_user,
176
  frm_main,
177
  frm_main,
177
  frm_genre_tree,
178
  frm_genre_tree,
...
...
583
    Exit;
584
    Exit;
584
585
585
  FullName := ExtractRelativePath(FRootPath, flFiles.LastDir + F.Name);
586
  FullName := ExtractRelativePath(FRootPath, flFiles.LastDir + F.Name);
586
  FileName := ExtractShortFileName(F.Name);
587
  FileName := TPath.GetFileNameWithoutExtension(F.Name);
587
  Path := ExtractRelativePath(FRootPath, flFiles.LastDir);
588
  Path := ExtractRelativePath(FRootPath, flFiles.LastDir);
588
589
589
  ParentNode := FindParentInTree(Tree, Path);
590
  ParentNode := FindParentInTree(Tree, Path);

Updated trunk/Forms/frm_ConverToFBD.pas Download diff

478479
90
implementation
90
implementation
91
91
92
uses
92
uses
93
  IOUtils,
93
  EncdDecd,
94
  EncdDecd,
94
  jpeg,
95
  jpeg,
95
  pngimage,
96
  pngimage,
...
...
247
248
248
  if FEditorMode then
249
  if FEditorMode then
249
  begin
250
  begin
250
    FBD.Load(Folder, ExtractShortFileName(FBookrecord.FileName), FBookrecord.FileExt);
251
    FBD.Load(Folder, TPath.GetFileNameWithoutExtension(FBookrecord.FileName), FBookrecord.FileExt);
251
    alFBDAuthors.Items := FBD.GetAuthors(atlFBD);
252
    alFBDAuthors.Items := FBD.GetAuthors(atlFBD);
252
    with FBD.Publisher do
253
    with FBD.Publisher do
253
    begin
254
    begin

Updated trunk/Forms/frm_main.pas Download diff

478479
422
    procedure tvGenresChange(Sender: TBaseVirtualTree; Node: PVirtualNode);
422
    procedure tvGenresChange(Sender: TBaseVirtualTree; Node: PVirtualNode);
423
423
424
    //
424
    //
425
    //   4-       
426
    // !     
427
    //
425
    //
428
    procedure tvAuthorsPaintText(Sender: TBaseVirtualTree; const TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType);
429
430
    //
426
    //
431
    //
432
    //
433
    procedure tvBooksTreeBeforeCellPaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex; CellPaintMode:
TVTCellPaintMode; CellRect: TRect; var ContentRect: TRect);
427
    procedure tvBooksTreeBeforeCellPaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex; CellPaintMode:
TVTCellPaintMode; CellRect: TRect; var ContentRect: TRect);
434
    procedure tvBooksTreeAfterCellPaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex; CellRect: TRect);
428
    procedure tvBooksTreeAfterCellPaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex; CellRect: TRect);
435
429
...
...
2077
2071
2078
  ReadINIData;
2072
  ReadINIData;
2079
2073
2080
  CreateDir(Settings.TempDir);
2074
  TDirectory.CreateDirectory(Settings.TempDir);
2081
  CreateDir(Settings.DataDir);
2075
  TDirectory.CreateDirectory(Settings.DataDir);
2082
2076
2083
  SetColumns;
2077
  SetColumns;
2084
  SetHeaderPopUp;
2078
  SetHeaderPopUp;
...
...
2802
  end;
2796
  end;
2803
end;
2797
end;
2804
2798
2805
procedure TfrmMain.tvAuthorsPaintText(Sender: TBaseVirtualTree; const TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType);
2806
begin
2807
  if Sender.Selected[Node] then
2808
    TargetCanvas.Font.Color := clWhite;
2809
end;
2810
2811
procedure TfrmMain.tvBooksTreeBeforeCellPaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex; CellPaintMode:
TVTCellPaintMode; CellRect: TRect; var ContentRect: TRect);
2799
procedure TfrmMain.tvBooksTreeBeforeCellPaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex; CellPaintMode:
TVTCellPaintMode; CellRect: TRect; var ContentRect: TRect);
2812
var
2800
var
2813
  Data: PBookData;
2801
  Data: PBookData;
...
...
3283
  SaveDeviceDir := Settings.DeviceDir;
3271
  SaveDeviceDir := Settings.DeviceDir;
3284
  SaveFolderTemplate := Settings.FolderTemplate;
3272
  SaveFolderTemplate := Settings.FolderTemplate;
3285
  // dlgFolder.Directory := Settings.DeviceDir;
3273
  // dlgFolder.Directory := Settings.DeviceDir;
3286
  ScriptID := (Sender as TComponent).tag;
3274
  ScriptID := (Sender as TComponent).Tag;
3287
3275
3288
  if isFB2Collection(DMUser.ActiveCollection.CollectionType) then
3276
  if isFB2Collection(DMUser.ActiveCollection.CollectionType) then
3289
  begin
3277
  begin
...
...
3304
  Dec(ScriptID, 901);
3292
  Dec(ScriptID, 901);
3305
3293
3306
  if (ScriptID < 1) and (Settings.PromptDevicePath) then
3294
  if (ScriptID < 1) and (Settings.PromptDevicePath) then
3307
    // if not dlgFolder.Execute then
3295
  begin
3308
    if not GetFolderName(Handle, ' ', AFolder) then
3296
    if not GetFolderName(Handle, ' ', AFolder) then
3309
      Exit
3297
      Exit
3310
    else
3298
    else
...
...
3313
          
3301
          
3314
        }
3302
        }
3315
      Settings.DeviceDir := AFolder;
3303
      Settings.DeviceDir := AFolder;
3304
  end;
3316
3305
3317
  if ScriptID >= 0 then
3306
  if ScriptID >= 0 then
3318
  begin
3307
  begin
...
...
3333
    begin
3322
    begin
3334
      StrReplace('%FOLDER ', '', TMPParams);
3323
      StrReplace('%FOLDER ', '', TMPParams);
3335
      p := Pos('%', TMPParams);
3324
      p := Pos('%', TMPParams);
3336
      S := copy(TMPParams, 1, p - 1);
3325
      S := Copy(TMPParams, 1, p - 1);
3337
      Settings.DeviceDir := S;
3326
      Settings.DeviceDir := S;
3338
      Delete(TMPParams, 1, p);
3327
      Delete(TMPParams, 1, p);
3339
    end;
3328
    end;
3340
3329
3341
    if (Settings.Scripts[ScriptID].Path = '%COPY%') and (trim(TMPParams) <> '') then
3330
    if (Settings.Scripts[ScriptID].Path = '%COPY%') and (Trim(TMPParams) <> '') then
3342
      Settings.DeviceDir := Trim(TMPParams);
3331
      Settings.DeviceDir := Trim(TMPParams);
3343
3332
3344
    Settings.Scripts[ScriptID].TMPParams := TMPParams;
3333
    Settings.Scripts[ScriptID].TMPParams := TMPParams;
...
...
3353
  end;
3342
  end;
3354
3343
3355
  if ActiveView <> FavoritesView then
3344
  if ActiveView <> FavoritesView then
3356
    unit_ExportToDevice.ExportToDevice(dmCollection.ActiveTable, BookIDList, ExportMode, Files)
3345
    unit_ExportToDevice.ExportToDevice(DMCollection.ActiveTable, BookIDList, ExportMode, Files)
3357
  else
3346
  else
3358
    unit_ExportToDevice.ExportToDevice(DMUser.tblGrouppedBooks, BookIDList, ExportMode, Files);
3347
    unit_ExportToDevice.ExportToDevice(DMUser.tblGrouppedBooks, BookIDList, ExportMode, Files);
3359
3348
...
...
3635
3624
3636
procedure TfrmMain.tbtnShowCoverClick(Sender: TObject);
3625
procedure TfrmMain.tbtnShowCoverClick(Sender: TObject);
3637
var
3626
var
3638
  Visible: Boolean;
3627
  ShowCover: Boolean;
3639
begin
3628
begin
3640
  Settings.ShowInfoPanel := not Settings.ShowInfoPanel;
3629
  Settings.ShowInfoPanel := not Settings.ShowInfoPanel;
3641
3630
...
...
3643
  // or (Settings.ShowInfoPanel and isNonFB2Collection(DMUser.ActiveCollection.CollectionType)
3632
  // or (Settings.ShowInfoPanel and isNonFB2Collection(DMUser.ActiveCollection.CollectionType)
3644
  // and Settings.AllowMixed));
3633
  // and Settings.AllowMixed));
3645
3634
3646
  Visible := Settings.ShowInfoPanel;
3635
  ShowCover := Settings.ShowInfoPanel;
3647
3636
3648
  SetCoversVisible(Visible);
3637
  SetCoversVisible(ShowCover);
3649
  if Visible then
3638
  if ShowCover then
3650
    tvBooksTreeChange(nil, nil);
3639
    tvBooksTreeChange(nil, nil);
3651
end;
3640
end;
3652
3641
...
...
5680
5669
5681
    if ActiveView <> FavoritesView then
5670
    if ActiveView <> FavoritesView then
5682
    begin
5671
    begin
5672
      //
5683
      //      - 
5673
      //      - 
5674
      //
5684
      if DMUser.tblGrouppedBooks.Locate('DataBaseID;OuterID;', VarArrayOf([DMUser.ActiveCollection.ID, Data.ID]), []) then
5675
      if DMUser.tblGrouppedBooks.Locate('DataBaseID;OuterID;', VarArrayOf([DMUser.ActiveCollection.ID, Data.ID]), []) then
5685
      begin
5676
      begin
5686
        DMUser.tblGrouppedBooks.Edit;
5677
        DMUser.tblGrouppedBooks.Edit;
5687
        DMUser.tblGrouppedBooksCode.Value := Table.FieldByName('Code').AsInteger;
5678
        DMUser.tblGrouppedBooksCode.Value := Table.FieldByName('Code').AsInteger;
5688
        DMUser.tblGrouppedBooks.Post;
5679
        DMUser.tblGrouppedBooks.Post;
5689
5680
5681
        { TODO -oNickR -cBug : #46 -   User.Extra   ID }
5690
        if DMUser.tblExtra.Locate(ID_FIELD, DMUser.tblGrouppedBooksID.Value, []) then
5682
        if DMUser.tblExtra.Locate(ID_FIELD, DMUser.tblGrouppedBooksID.Value, []) then
5691
        begin
5683
        begin
5692
          case Table.FieldByName('Code').AsInteger of
5684
          case Table.FieldByName('Code').AsInteger of
...
...
5724
          0:
5716
          0:
5725
            if dmCollection.tblExtra.RecordCount <> 0 then
5717
            if dmCollection.tblExtra.RecordCount <> 0 then
5726
              dmCollection.tblExtra.Delete;
5718
              dmCollection.tblExtra.Delete;
5719
5727
          1:
5720
          1:
5728
            begin
5721
            begin
5729
              dmCollection.tblExtra.Edit;
5722
              dmCollection.tblExtra.Edit;
...
...
6034
end;
6027
end;
6035
6028
6036
procedure TfrmMain.N34Click(Sender: TObject);
6029
procedure TfrmMain.N34Click(Sender: TObject);
6030
var
6031
  dirPath: string;
6037
begin
6032
begin
6038
  if DirectoryExists(Settings.ReadDir) then
6033
  dirPath := ExcludeTrailingPathDelimiter(Settings.ReadPath);
6039
    ClearDir(Settings.ReadDir);
6034
  if DirectoryExists(dirPath) then
6035
    ClearDir(dirPath);
6040
end;
6036
end;
6041
6037
6042
procedure TfrmMain.miEditToolbarVisibleClick(Sender: TObject);
6038
procedure TfrmMain.miEditToolbarVisibleClick(Sender: TObject);

Updated trunk/Forms/frm_settings.dfm Download diff

478479
2
  Left = 0
2
  Left = 0
3
  Top = 0
3
  Top = 0
4
  HelpContext = 144
4
  HelpContext = 144
5
  BorderStyle = bsToolWindow
5
  BorderStyle = bsDialog
6
  Caption = #1053#1072#1089#1090#1088#1086#1081#1082#1080
6
  Caption = #1053#1072#1089#1090#1088#1086#1081#1082#1080
7
  ClientHeight = 470
7
  ClientHeight = 505
8
  ClientWidth = 611
8
  ClientWidth = 617
9
  Color = clBtnFace
9
  Color = clBtnFace
10
  Font.Charset = DEFAULT_CHARSET
10
  Font.Charset = DEFAULT_CHARSET
11
  Font.Color = clWindowText
11
  Font.Color = clWindowText
...
...
17
  OnShow = FormShow
17
  OnShow = FormShow
18
  PixelsPerInch = 96
18
  PixelsPerInch = 96
19
  TextHeight = 13
19
  TextHeight = 13
20
  object RzPanel1: TRzPanel
21
    AlignWithMargins = True
22
    Left = 3
23
    Top = 418
24
    Width = 605
25
    Height = 49
26
    Align = alBottom
27
    BorderOuter = fsFlatRounded
28
    TabOrder = 0
29
    object btnSave: TRzBitBtn
30
      Left = 362
31
      Top = 11
32
      Width = 110
33
      Height = 28
34
      Caption = #1057#1086#1093#1088#1072#1085#1080#1090#1100
35
      TabOrder = 0
36
      OnClick = btnSaveClick
37
      Kind = bkOK
38
    end
39
    object btnCancel: TRzBitBtn
40
      Left = 482
41
      Top = 11
42
      Width = 110
43
      Height = 28
44
      Caption = #1053#1077' '#1089#1086#1093#1088#1072#1085#1103#1090#1100
45
      TabOrder = 1
46
      Kind = bkCancel
47
    end
48
    object btnHelp: TRzBitBtn
49
      Left = 9
50
      Top = 11
51
      Width = 110
52
      Height = 28
53
      Caption = #1057#1087#1088#1072#1074#1082#1072
54
      TabOrder = 2
55
      OnClick = btnHelpClick
56
      Kind = bkHelp
57
    end
58
  end
59
  object pcSetPages: TPageControl
20
  object pcSetPages: TPageControl
60
    AlignWithMargins = True
21
    AlignWithMargins = True
61
    Left = 194
22
    Left = 159
62
    Top = 3
23
    Top = 3
63
    Width = 414
24
    Width = 455
64
    Height = 409
25
    Height = 458
65
    ActivePage = tsBehavour
26
    ActivePage = tsInternet
66
    Align = alClient
27
    Align = alClient
67
    TabOrder = 1
28
    TabOrder = 0
68
    object tsDevices: TTabSheet
29
    object tsDevices: TTabSheet
69
      HelpContext = 143
30
      HelpContext = 143
70
      Caption = 'tsDevices'
31
      Caption = 'tsDevices'
71
      TabVisible = False
32
      TabVisible = False
72
      ExplicitLeft = 0
33
      object pnDeviceOptions: TPanel
73
      ExplicitTop = 0
74
      ExplicitWidth = 0
75
      ExplicitHeight = 0
76
      object RzGroupBox3: TRzGroupBox
77
        AlignWithMargins = True
34
        AlignWithMargins = True
78
        Left = 3
35
        Left = 3
79
        Top = 191
36
        Top = 61
80
        Width = 400
37
        Width = 441
81
        Height = 142
38
        Height = 356
82
        Align = alTop
39
        Align = alTop
83
        Caption = #1060#1086#1088#1084#1072#1090' '#1080#1084#1077#1085#1080
40
        BevelOuter = bvNone
84
        TabOrder = 0
41
        ShowCaption = False
85
        object Label5: TLabel
42
        TabOrder = 1
86
          Left = 20
43
        object Label16: TLabel
87
          Top = 29
44
          AlignWithMargins = True
88
          Width = 38
45
          Left = 3
46
          Top = 3
47
          Width = 435
89
          Height = 13
48
          Height = 13
90
          Alignment = taRightJustify
49
          Align = alTop
91
          Caption = #1055#1072#1087#1082#1072': '
50
          Caption = #1059#1089#1090#1088#1086#1081#1089#1090#1074#1086
51
          Font.Charset = DEFAULT_CHARSET
52
          Font.Color = clWindowText
53
          Font.Height = -11
54
          Font.Name = 'Tahoma'
55
          Font.Style = [fsBold]
56
          ParentFont = False
57
          ExplicitWidth = 68
92
        end
58
        end
93
        object Label6: TLabel
59
        object pnDeviceDir: TPanel
94
          Left = 25
60
          Left = 0
95
          Top = 64
61
          Top = 19
96
          Width = 33
62
          Width = 441
97
          Height = 13
63
          Height = 71
98
          Alignment = taRightJustify
64
          Align = alTop
99
          Caption = #1060#1072#1081#1083': '
65
          AutoSize = True
66
          BevelOuter = bvNone
67
          ShowCaption = False
68
          TabOrder = 0
69
          DesignSize = (
70
            441
71
            71)
72
          object Label14: TLabel
73
            AlignWithMargins = True
74
            Left = 9
75
            Top = 3
76
            Width = 429
77
            Height = 13
78
            Margins.Left = 9
79
            Align = alTop
80
            Caption = #1055#1072#1087#1082#1072' '#1085#1072' '#1091#1089#1090#1088#1086#1081#1089#1090#1074#1077' '
81
            Font.Charset = DEFAULT_CHARSET
82
            Font.Color = clWindowText
83
            Font.Height = -11
84
            Font.Name = 'Tahoma'
85
            Font.Style = [fsBold]
86
            ParentFont = False
87
            ExplicitWidth = 126
88
          end
89
          object btnDeviceDir: TButton
90
            Left = 359
91
            Top = 46
92
            Width = 75
93
            Height = 25
94
            Anchors = [akTop, akRight]
95
            Caption = #1042#1099#1073#1088#1072#1090#1100
96
            TabOrder = 2
97
            OnClick = SelectFolder
98
          end
99
          object cbPromptPath: TCheckBox
100
            AlignWithMargins = True
101
            Left = 15
102
            Top = 22
103
            Width = 423
104
            Height = 20
105
            Margins.Left = 15
106
            Align = alTop
107
            Caption = #1057#1087#1088#1072#1096#1080#1074#1072#1090#1100' '#1087#1091#1090#1100' '#1082#1072#1078#1076#1099#1081' '#1088#1072#1079
108
            TabOrder = 0
109
            WordWrap = True
110
            OnClick = cbPromptPathClick
111
          end
112
          object edDeviceDir: TMHLAutoCompleteEdit
113
            Left = 15
114
            Top = 48
115
            Width = 338
116
            Height = 21
117
            Anchors = [akLeft, akTop, akRight]
118
            TabOrder = 1
119
          end
100
        end
120
        end
101
        object cbTranslit: TCheckBox
121
        object pnFileFormat: TPanel
102
          Left = 20
122
          Left = 0
103
          Top = 96
123
          Top = 90
104
          Width = 294
124
          Width = 441
105
          Height = 27
125
          Height = 52
106
          Caption = #1058#1088#1072#1085#1089#1083#1080#1090#1077#1088#1072#1094#1080#1103' '#1080#1084#1077#1085' '#1087#1072#1087#1086#1082' '#1080' '#1092#1072#1081#1083#1086#1074
126
          Align = alTop
127
          AutoSize = True
128
          BevelOuter = bvNone
129
          ShowCaption = False
107
          TabOrder = 1
130
          TabOrder = 1
108
          WordWrap = True
131
          object Label17: TLabel
132
            AlignWithMargins = True
133
            Left = 9
134
            Top = 9
135
            Width = 429
136
            Height = 13
137
            Margins.Left = 9
138
            Margins.Top = 9
139
            Align = alTop
140
            Caption = #1060#1086#1088#1084#1072#1090' '#1079#1072#1087#1080#1089#1080' '#1085#1072' '#1091#1089#1090#1088#1086#1081#1089#1090#1074#1086
141
            Font.Charset = DEFAULT_CHARSET
142
            Font.Color = clWindowText
143
            Font.Height = -11
144
            Font.Name = 'Tahoma'
145
            Font.Style = [fsBold]
146
            ParentFont = False
147
            ExplicitWidth = 173
148
          end
149
          object rgDeviceFormat: TComboBox
150
            AlignWithMargins = True
151
            Left = 15
152
            Top = 28
153
            Width = 419
154
            Height = 21
155
            Margins.Left = 15
156
            Margins.Right = 7
157
            Align = alTop
158
            Style = csDropDownList
159
            ItemIndex = 0
160
            TabOrder = 0
161
            Text = '.fb2'
162
            Items.Strings = (
163
              '.fb2'
164
              '.fb2.zip'
165
              '.lrf '
166
              '.txt'
167
              '.epub'
168
              '.pdf')
169
          end
109
        end
170
        end
110
        object edFileNameTemplate: TRzButtonEdit
171
        object pnNameFormat: TPanel
111
          Left = 64
172
          Left = 0
112
          Top = 61
173
          Top = 142
113
          Width = 313
174
          Width = 441
114
          Height = 21
175
          Height = 78
115
          Text = '%n%t'
176
          Align = alTop
116
          ReadOnly = True
177
          AutoSize = True
117
          ReadOnlyColor = clWindow
178
          BevelOuter = bvNone
118
          TabOrder = 0
179
          ShowCaption = False
119
          AltBtnWidth = 15
120
          ButtonWidth = 15
121
          HideButtonsOnReadOnly = False
122
          OnButtonClick = edFileNameTemplateButtonClick
123
        end
124
        object edFolderTemplate: TRzButtonEdit
125
          Tag = 785
126
          Left = 64
127
          Top = 25
128
          Width = 313
129
          Height = 21
130
          Text = '%f\%s'
131
          ReadOnly = True
132
          ReadOnlyColor = clWindow
133
          TabOrder = 2
180
          TabOrder = 2
134
          AltBtnWidth = 15
181
          DesignSize = (
135
          ButtonWidth = 15
182
            441
136
          HideButtonsOnReadOnly = False
183
            78)
137
          OnButtonClick = edFolderTemplateButtonClick
184
          object Label18: TLabel
185
            AlignWithMargins = True
186
            Left = 9
187
            Top = 9
188
            Width = 429
189
            Height = 13
190
            Margins.Left = 9
191
            Margins.Top = 9
192
            Align = alTop
193
            Caption = #1060#1086#1088#1084#1072#1090' '#1080#1084#1077#1085#1080
194
            Font.Charset = DEFAULT_CHARSET
195
            Font.Color = clWindowText
196
            Font.Height = -11
197
            Font.Name = 'Tahoma'
198
            Font.Style = [fsBold]
199
            ParentFont = False
200
            ExplicitWidth = 82
201
          end
202
          object Label19: TLabel
203
            Left = 15
204
            Top = 31
205
            Width = 38
206
            Height = 13
207
            Alignment = taRightJustify
208
            Caption = #1055#1072#1087#1082#1072': '
209
          end
210
          object Label20: TLabel
211
            Left = 15
212
            Top = 58
213
            Width = 33
214
            Height = 13
215
            Alignment = taRightJustify
216
            Caption = #1060#1072#1081#1083': '
217
          end
218
          object btnFolderTemplate: TButton
219
            Left = 359
220
            Top = 26
221
            Width = 75
222
            Height = 25
223
            Anchors = [akTop, akRight]
224
            Caption = #1048#1079#1084#1077#1085#1080#1090#1100
225
            TabOrder = 1
226
            OnClick = EditFolderTemplate
227
          end
228
          object btnFileNameTemplate: TButton
229
            Left = 359
230
            Top = 53
231
            Width = 75
232
            Height = 25
233
            Anchors = [akTop, akRight]
234
            Caption = #1048#1079#1084#1077#1085#1080#1090#1100
235
            TabOrder = 3
236
            OnClick = EditFileNameTemplate
237
          end
238
          object edFolderTemplate: TEdit
239
            Left = 59
240
            Top = 28
241
            Width = 294
242
            Height = 21
243
            Anchors = [akLeft, akTop, akRight]
244
            ReadOnly = True
245
            TabOrder = 0
246
            Text = '%f\%s'
247
          end
248
          object edFileNameTemplate: TEdit
249
            Left = 59
250
            Top = 55
251
            Width = 294
252
            Height = 21
253
            Anchors = [akLeft, akTop, akRight]
254
            ReadOnly = True
255
            TabOrder = 2
256
            Text = '%n%t'
257
          end
138
        end
258
        end
259
        object pnOtherOpt: TPanel
260
          Left = 0
261
          Top = 220
262
          Width = 441
263
          Height = 109
264
          Align = alTop
265
          BevelOuter = bvNone
266
          ShowCaption = False
267
          TabOrder = 3
268
          DesignSize = (
269
            441
270
            109)
271
          object Label5: TLabel
272
            AlignWithMargins = True
273
            Left = 9
274
            Top = 9
275
            Width = 429
276
            Height = 13
277
            Margins.Left = 9
278
            Margins.Top = 9
279
            Align = alTop
280
            Caption = #1055#1088#1086#1095#1080#1077
281
            Font.Charset = DEFAULT_CHARSET
282
            Font.Color = clWindowText
283
            Font.Height = -11
284
            Font.Name = 'Tahoma'
285
            Font.Style = [fsBold]
286
            ParentFont = False
287
            ExplicitWidth = 42
288
          end
289
          object Label1: TLabel
290
            Left = 15
291
            Top = 65
292
            Width = 81
293
            Height = 13
294
            Alignment = taRightJustify
295
            Caption = #1050#1086#1076#1080#1088#1086#1074#1082#1072' TXT:'
296
          end
297
          object cbSquareFilter: TCheckBox
298
            AlignWithMargins = True
299
            Left = 15
300
            Top = 28
301
            Width = 423
302
            Height = 27
303
            Margins.Left = 15
304
            Align = alTop
305
            Caption = #1042#1082#1083#1102#1095#1080#1090#1100' '#1092#1080#1083#1100#1090#1088' "[ ... ]"'
306
            TabOrder = 0
307
            WordWrap = True
308
          end
309
          object cbTXTEncoding: TComboBox
310
            Left = 102
311
            Top = 62
312
            Width = 332
313
            Height = 21
314
            Style = csDropDownList
315
            Anchors = [akLeft, akTop, akRight]
316
            ItemIndex = 0
317
            TabOrder = 1
318
            Text = 'UTF-8'
319
            Items.Strings = (
320
              'UTF-8'
321
              'Windows-1251')
322
          end
323
        end
139
      end
324
      end
140
      object RzGroupBox4: TRzGroupBox
325
      object pnReadDir: TPanel
141
        AlignWithMargins = True
326
        AlignWithMargins = True
142
        Left = 3
327
        Left = 3
143
        Top = 3
328
        Top = 3
144
        Width = 400
329
        Width = 441
145
        Height = 69
330
        Height = 46
331
        Margins.Bottom = 9
146
        Align = alTop
332
        Align = alTop
147
        Caption = #1055#1072#1087#1082#1072' '#1085#1072' '#1091#1089#1090#1088#1086#1081#1089#1090#1074#1077' '
333
        AutoSize = True
148
        TabOrder = 1
334
        BevelOuter = bvNone
149
        object edDeviceDir: TRzButtonEdit
335
        ShowCaption = False
150
          Left = 11
336
        TabOrder = 0
151
          Top = 18
337
        DesignSize = (
152
          Width = 374
338
          441
153
          Height = 21
339
          46)
154
          HelpContext = 5001
340
        object Label15: TLabel
155
          TabOrder = 0
341
          AlignWithMargins = True
156
          AltBtnWidth = 15
342
          Left = 3
157
          ButtonWidth = 15
343
          Top = 3
158
          OnButtonClick = edDeviceDirButtonClick
344
          Width = 435
159
        end
160
        object cbPromptPath: TCheckBox
161
          Left = 13
162
          Top = 45
163
          Width = 278
164
          Height = 20
165
          Caption = #1057#1087#1088#1072#1096#1080#1074#1072#1090#1100' '#1087#1091#1090#1100' '#1082#1072#1078#1076#1099#1081' '#1088#1072#1079
166
          TabOrder = 1
167
          WordWrap = True
168
        end
169
      end
170
      object rgDeviceFormat: TRadioGroup
171
        AlignWithMargins = True
172
        Left = 3
173
        Top = 135
174
        Width = 400
175
        Height = 50
176
        Align = alTop
177
        Caption = #1060#1086#1088#1084#1072#1090' '#1079#1072#1087#1080#1089#1080' '#1085#1072' '#1091#1089#1090#1088#1086#1081#1089#1090#1074#1086
178
        Columns = 6
179
        ItemIndex = 0
180
        Items.Strings = (
181
          '.fb2'
182
          '.fb2.zip'
183
          '.lrf '
184
          '.txt'
185
          '.epub'
186
          '.pdf')
187
        TabOrder = 2
188
      end
189
      object RzGroupBox5: TRzGroupBox
190
        AlignWithMargins = True
191
        Left = 3
192
        Top = 339
193
        Width = 400
194
        Height = 57
195
        Align = alClient
196
        Caption = #1054#1087#1094#1080#1080
197
        TabOrder = 3
198
        object Label1: TLabel
199
          Left = 181
200
          Top = 26
201
          Width = 77
202
          Height = 13
345
          Height = 13
203
          Alignment = taRightJustify
346
          Align = alTop
204
          Caption = #1050#1086#1076#1080#1088#1086#1074#1082#1072' TXT'
347
          Caption = #1055#1072#1087#1082#1072' "'#1076#1083#1103' '#1095#1090#1077#1085#1080#1103'"'
348
          Font.Charset = DEFAULT_CHARSET
349
          Font.Color = clWindowText
350
          Font.Height = -11
351
          Font.Name = 'Tahoma'
352
          Font.Style = [fsBold]
353
          ParentFont = False
354
          ExplicitWidth = 118
205
        end
355
        end
206
        object cbSquareFilter: TCheckBox
356
        object edReadDir: TMHLAutoCompleteEdit
207
          Left = 11
357
          Left = 9
208
          Top = 20
358
          Top = 23
209
          Width = 150
359
          Width = 344
210
          Height = 27
360
          Height = 21
211
          Caption = #1042#1082#1083#1102#1095#1080#1090#1100' '#1092#1080#1083#1100#1090#1088' "[ ... ]"'
361
          Anchors = [akLeft, akTop, akRight]
212
          TabOrder = 0
362
          TabOrder = 0
213
          WordWrap = True
363
          TextHint = #1048#1089#1087#1086#1083#1100#1079#1086#1074#1072#1090#1100' '#1087#1072#1087#1082#1091' '#1087#1086' '#1091#1084#1086#1083#1095#1072#1085#1080#1102
214
        end
364
        end
215
        object cbTXTEncoding: TRzComboBox
365
        object btnSelectReadDir: TButton
216
          Left = 264
366
          Left = 359
217
          Top = 23
367
          Top = 21
218
          Width = 121
368
          Width = 75
219
          Height = 21
369
          Height = 25
370
          Anchors = [akTop, akRight]
371
          Caption = #1042#1099#1073#1088#1072#1090#1100
220
          TabOrder = 1
372
          TabOrder = 1
221
          Text = 'UTF-8'
373
          OnClick = SelectFolder
222
          Items.Strings = (
223
            'UTF-8'
224
            'Windows-1251')
225
        end
374
        end
226
      end
375
      end
227
      object RzGroupBox11: TRzGroupBox
228
        AlignWithMargins = True
229
        Left = 3
230
        Top = 78
231
        Width = 400
232
        Height = 51
233
        Align = alTop
234
        Caption = #1055#1072#1087#1082#1072' "'#1076#1083#1103' '#1095#1090#1077#1085#1080#1103'"'
235
        TabOrder = 4
236
        object edReadDir: TRzButtonEdit
237
          Left = 11
238
          Top = 18
239
          Width = 374
240
          Height = 21
241
          HelpContext = 5001
242
          TabOrder = 0
243
          AltBtnWidth = 15
244
          ButtonWidth = 15
245
          OnButtonClick = edDeviceDirButtonClick
246
        end
247
      end
248
    end
376
    end
249
    object tsReaders: TTabSheet
377
    object tsReaders: TTabSheet
250
      HelpContext = 137
378
      HelpContext = 137
251
      Caption = 'tsReaders'
379
      Caption = 'tsReaders'
252
      ImageIndex = 1
380
      ImageIndex = 1
253
      TabVisible = False
381
      TabVisible = False
254
      ExplicitLeft = 0
382
      object Label11: TLabel
255
      ExplicitTop = 0
256
      ExplicitWidth = 0
257
      ExplicitHeight = 0
258
      object RzGroupBox8: TRzGroupBox
259
        AlignWithMargins = True
383
        AlignWithMargins = True
260
        Left = 3
384
        Left = 3
261
        Top = 3
385
        Top = 3
262
        Width = 400
386
        Width = 441
263
        Height = 393
387
        Height = 13
264
        Align = alClient
388
        Align = alTop
265
        Caption = #1058#1080#1087#1099' '#1092#1072#1081#1083#1086#1074' '#1080' '#1087#1088#1086#1089#1084#1086#1090#1088#1097#1080#1082#1080
389
        Caption = #1058#1080#1087#1099' '#1092#1072#1081#1083#1086#1074' '#1080' '#1087#1088#1086#1089#1084#1086#1090#1088#1097#1080#1082#1080
266
        TabOrder = 0
390
        Font.Charset = DEFAULT_CHARSET
267
        object lvReaders: TRzListView
391
        Font.Color = clWindowText
268
          Left = 6
392
        Font.Height = -11
269
          Top = 24
393
        Font.Name = 'Tahoma'
270
          Width = 379
394
        Font.Style = [fsBold]
271
          Height = 325
395
        ParentFont = False
272
          Columns = <
396
        ExplicitWidth = 173
273
            item
397
      end
274
              Caption = #1056#1072#1089#1096#1080#1088#1077#1085#1080#1077
398
      object Panel1: TPanel
275
              Width = 80
399
        Left = 0
276
            end
400
        Top = 415
277
            item
401
        Width = 447
278
              Caption = #1055#1091#1090#1100
402
        Height = 33
279
              Width = 265
403
        Align = alBottom
280
            end>
404
        BevelOuter = bvNone
281
          EditOnRowClick = True
405
        ShowCaption = False
282
          FillLastColumn = False
406
        TabOrder = 1
283
          FlatScrollBars = True
407
        object btnAddExt: TButton
284
          GridLines = True
408
          Left = 3
285
          ReadOnly = True
409
          Top = 3
286
          RowSelect = True
410
          Width = 75
287
          ShowWorkAreas = True
411
          Height = 25
288
          TabOrder = 2
412
          Caption = #1044#1086#1073#1072#1074#1080#1090#1100
289
          ViewStyle = vsReport
413
          TabOrder = 0
290
          OnDblClick = btnChangeExtClick
414
          OnClick = btnAddExtClick
291
        end
415
        end
292
        object btnDeleteExt: TRzBitBtn
416
        object btnChangeExt: TButton
293
          Left = 312
417
          Left = 84
294
          Top = 355
418
          Top = 3
295
          Caption = #1059#1076#1072#1083#1080#1090#1100
419
          Width = 75
296
          TabOrder = 3
420
          Height = 25
297
          OnClick = btnDeleteExtClick
298
        end
299
        object btnChangeExt: TRzBitBtn
300
          Left = 87
301
          Top = 355
302
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
421
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
303
          TabOrder = 1
422
          TabOrder = 1
304
          OnClick = btnChangeExtClick
423
          OnClick = btnChangeExtClick
305
        end
424
        end
306
        object btnAddExt: TRzBitBtn
425
        object btnDeleteExt: TButton
307
          Left = 6
426
          Left = 165
308
          Top = 355
427
          Top = 3
309
          Caption = #1044#1086#1073#1072#1074#1080#1090#1100
428
          Width = 75
310
          TabOrder = 0
429
          Height = 25
311
          OnClick = btnAddExtClick
430
          Caption = #1059#1076#1072#1083#1080#1090#1100
431
          TabOrder = 2
432
          OnClick = btnDeleteExtClick
312
        end
433
        end
313
      end
434
      end
435
      object lvReaders: TListView
436
        AlignWithMargins = True
437
        Left = 3
438
        Top = 22
439
        Width = 441
440
        Height = 390
441
        Align = alClient
442
        Columns = <
443
          item
444
            Caption = #1056#1072#1089#1096#1080#1088#1077#1085#1080#1077
445
            Width = 80
446
          end
447
          item
448
            AutoSize = True
449
            Caption = #1055#1091#1090#1100
450
          end>
451
        ColumnClick = False
452
        GridLines = True
453
        HideSelection = False
454
        ReadOnly = True
455
        RowSelect = True
456
        TabOrder = 0
457
        ViewStyle = vsReport
458
        OnDblClick = btnChangeExtClick
459
      end
314
    end
460
    end
315
    object tsInterface: TTabSheet
461
    object tsInterface: TTabSheet
316
      HelpContext = 132
462
      HelpContext = 132
317
      Caption = 'tsInterface'
463
      Caption = 'tsInterface'
318
      ImageIndex = 2
464
      ImageIndex = 2
319
      TabVisible = False
465
      TabVisible = False
320
      ExplicitLeft = 0
466
      object Panel8: TPanel
321
      ExplicitTop = 0
322
      ExplicitWidth = 0
323
      ExplicitHeight = 0
324
      object RzGroupBox6: TRzGroupBox
325
        AlignWithMargins = True
467
        AlignWithMargins = True
326
        Left = 3
468
        Left = 3
327
        Top = 3
469
        Top = 3
328
        Width = 400
470
        Width = 441
329
        Height = 393
471
        Height = 163
330
        Align = alClient
472
        Align = alTop
331
        Caption = #1057#1087#1080#1089#1082#1080
473
        AutoSize = True
474
        BevelOuter = bvNone
475
        ShowCaption = False
332
        TabOrder = 0
476
        TabOrder = 0
333
        object Label9: TLabel
477
        object Label31: TLabel
334
          Left = 19
478
          AlignWithMargins = True
335
          Top = 45
479
          Left = 3
336
          Width = 138
480
          Top = 3
481
          Width = 435
337
          Height = 13
482
          Height = 13
338
          Caption = #1056#1072#1079#1084#1077#1088' '#1096#1088#1080#1092#1090#1072' '#1072#1085#1085#1086#1090#1072#1094#1080#1080' '
483
          Align = alTop
484
          Caption = #1064#1088#1080#1092#1090
485
          Font.Charset = DEFAULT_CHARSET
486
          Font.Color = clWindowText
487
          Font.Height = -11
488
          Font.Name = 'Tahoma'
489
          Font.Style = [fsBold]
490
          ParentFont = False
491
          ExplicitWidth = 40
339
        end
492
        end
340
        object Label7: TLabel
493
        object Label7: TLabel
341
          Left = 24
494
          Left = 9
342
          Top = 15
495
          Top = 25
343
          Width = 133
496
          Width = 134
344
          Height = 13
497
          Height = 13
345
          Caption = #1056#1072#1079#1084#1077#1088' '#1096#1088#1080#1092#1090#1072' '#1074' '#1089#1087#1080#1089#1082#1072#1093' '
498
          Caption = #1056#1072#1079#1084#1077#1088' '#1096#1088#1080#1092#1090#1072' '#1074' '#1089#1087#1080#1089#1082#1072#1093':'
499
          FocusControl = edFontSize
346
        end
500
        end
347
        object pnlASG: TRzPanel
501
        object Label9: TLabel
348
          Left = 24
502
          Left = 9
349
          Top = 97
503
          Top = 52
350
          Width = 350
504
          Width = 139
505
          Height = 13
506
          Caption = #1056#1072#1079#1084#1077#1088' '#1096#1088#1080#1092#1090#1072' '#1072#1085#1085#1086#1090#1072#1094#1080#1080':'
507
          FocusControl = edShortFontSize
508
        end
509
        object Button1: TButton
510
          Left = 223
511
          Top = 76
512
          Width = 75
351
          Height = 25
513
          Height = 25
352
          BorderOuter = fsFlatBold
514
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
353
          Caption = #1057#1087#1080#1089#1086#1082' '#1072#1074#1090#1086#1088#1086#1074'/'#1057#1077#1088#1080#1081'/'#1046#1072#1085#1088#1086#1074
354
          Color = clWhite
355
          Font.Charset = DEFAULT_CHARSET
356
          Font.Color = clWindowText
357
          Font.Height = -11
358
          Font.Name = 'Tahoma'
359
          Font.Style = []
360
          ParentFont = False
361
          TabOrder = 0
515
          TabOrder = 0
362
          OnClick = pnlCAClick
516
          OnClick = SetDefaultFontColor
363
        end
517
        end
364
        object pnlCT: TRzPanel
518
        object pnDeletedFontColor: TPanel
365
          Left = 24
519
          Left = 9
366
          Top = 128
520
          Top = 138
367
          Width = 174
521
          Width = 208
368
          Height = 25
522
          Height = 25
369
          BorderOuter = fsFlatBold
523
          BevelKind = bkFlat
370
          Caption = #1050#1085#1080#1075#1072' '#1073#1077#1079' '#1089#1077#1088#1080#1080
524
          BevelOuter = bvNone
525
          Caption = #1059#1076#1072#1083#1077#1085#1085#1099#1077' '#1074' '#1086#1085#1083#1072#1081#1085' '#1073#1080#1073#1083#1080#1086#1090#1077#1082#1077
371
          Color = clWhite
526
          Color = clWhite
372
          Font.Charset = DEFAULT_CHARSET
527
          Font.Charset = DEFAULT_CHARSET
373
          Font.Color = clWindowText
528
          Font.Color = clWindowText
...
...
376
          Font.Style = []
531
          Font.Style = []
377
          ParentFont = False
532
          ParentFont = False
378
          TabOrder = 1
533
          TabOrder = 1
379
          OnClick = pnlCAClick
380
        end
534
        end
381
        object pnlBS: TRzPanel
535
        object pnDownloadedFontColor: TPanel
382
          Left = 204
536
          Left = 9
383
          Top = 128
537
          Top = 107
384
          Width = 170
538
          Width = 208
385
          Height = 25
539
          Height = 25
386
          BorderOuter = fsFlatBold
540
          BevelKind = bkFlat
387
          Caption = #1050#1085#1080#1075#1072' '#1074#1085#1091#1090#1088#1080' '#1089#1077#1088#1080#1080
541
          BevelOuter = bvNone
542
          Caption = #1057#1082#1072#1095#1072#1085#1085#1099#1077' '#1082#1085#1080#1075#1080
388
          Color = clWhite
543
          Color = clWhite
389
          Font.Charset = DEFAULT_CHARSET
544
          Font.Charset = DEFAULT_CHARSET
390
          Font.Color = clWindowText
545
          Font.Color = clWindowText
...
...
393
          Font.Style = []
548
          Font.Style = []
394
          ParentFont = False
549
          ParentFont = False
395
          TabOrder = 2
550
          TabOrder = 2
396
          OnClick = pnlCAClick
397
        end
551
        end
398
        object pnlCS: TRzPanel
552
        object edFontSize: TEdit
399
          Left = 204
553
          Left = 154
400
          Top = 66
554
          Top = 22
401
          Width = 170
555
          Width = 47
556
          Height = 21
557
          Alignment = taRightJustify
558
          NumbersOnly = True
559
          TabOrder = 3
560
          Text = '10'
561
          OnExit = CheckNumValue
562
        end
563
        object edShortFontSize: TEdit
564
          Left = 154
565
          Top = 49
566
          Width = 47
567
          Height = 21
568
          Alignment = taRightJustify
569
          NumbersOnly = True
570
          TabOrder = 4
571
          Text = '10'
572
          OnExit = CheckNumValue
573
        end
574
        object udFontSize: TUpDown
575
          Left = 201
576
          Top = 22
577
          Width = 16
578
          Height = 21
579
          Associate = edFontSize
580
          Min = 6
581
          Max = 20
582
          Position = 10
583
          TabOrder = 5
584
        end
585
        object udShortFontSize: TUpDown
586
          Left = 201
587
          Top = 49
588
          Width = 16
589
          Height = 21
590
          Associate = edShortFontSize
591
          Min = 6
592
          Max = 20
593
          Position = 10
594
          TabOrder = 6
595
        end
596
        object pnDefaultFontColor: TPanel
597
          Left = 9
598
          Top = 76
599
          Width = 208
402
          Height = 25
600
          Height = 25
403
          BorderOuter = fsFlatBold
601
          BevelKind = bkFlat
404
          Caption = #1057#1077#1088#1080#1103
602
          BevelOuter = bvNone
603
          Caption = #1062#1074#1077#1090' '#1096#1088#1080#1092#1090#1072' '#1089#1087#1080#1089#1082#1086#1074
405
          Color = clWhite
604
          Color = clWhite
406
          Font.Charset = DEFAULT_CHARSET
605
          Font.Charset = DEFAULT_CHARSET
407
          Font.Color = clWindowText
606
          Font.Color = clWindowText
408
          Font.Height = -11
607
          Font.Height = -11
409
          Font.Name = 'Tahoma'
608
          Font.Name = 'Tahoma'
410
          Font.Style = [fsBold]
609
          Font.Style = []
411
          ParentFont = False
610
          ParentFont = False
412
          TabOrder = 3
611
          TabOrder = 7
413
          OnClick = pnlCAClick
414
        end
612
        end
415
        object pnlCA: TRzPanel
613
        object btnDownloadedFontColor: TButton
416
          Left = 24
614
          Left = 223
417
          Top = 66
615
          Top = 107
418
          Width = 174
616
          Width = 75
419
          Height = 25
617
          Height = 25
420
          BorderOuter = fsFlatBold
618
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
421
          Caption = #1040#1074#1090#1086#1088
619
          TabOrder = 8
422
          Color = clWhite
620
          OnClick = SetCustomFontColor
621
        end
622
        object btnDeletedFontColor: TButton
623
          Left = 223
624
          Top = 138
625
          Width = 75
626
          Height = 25
627
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
628
          TabOrder = 9
629
          OnClick = SetCustomFontColor
630
        end
631
      end
632
      object Panel10: TPanel
633
        AlignWithMargins = True
634
        Left = 3
635
        Top = 172
636
        Width = 441
637
        Height = 189
638
        Align = alTop
639
        BevelOuter = bvNone
640
        ShowCaption = False
641
        TabOrder = 1
642
        object Label32: TLabel
643
          AlignWithMargins = True
644
          Left = 3
645
          Top = 3
646
          Width = 435
647
          Height = 13
648
          Align = alTop
649
          Caption = #1062#1074#1077#1090' '#1092#1086#1085#1072
423
          Font.Charset = DEFAULT_CHARSET
650
          Font.Charset = DEFAULT_CHARSET
424
          Font.Color = clWindowText
651
          Font.Color = clWindowText
425
          Font.Height = -11
652
          Font.Height = -11
426
          Font.Name = 'Tahoma'
653
          Font.Name = 'Tahoma'
427
          Font.Style = [fsBold]
654
          Font.Style = [fsBold]
428
          ParentFont = False
655
          ParentFont = False
429
          TabOrder = 4
656
          ExplicitWidth = 63
430
          OnClick = pnlCAClick
431
        end
657
        end
432
        object seShortFontSize: TRzSpinEdit
658
        object btnCA: TButton
433
          Left = 163
659
          Left = 223
434
          Top = 39
660
          Top = 22
435
          Width = 47
661
          Width = 75
436
          Height = 21
662
          Height = 25
437
          Max = 20.000000000000000000
663
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
438
          Min = 6.000000000000000000
664
          TabOrder = 0
439
          Value = 10.000000000000000000
665
          OnClick = SetBackgroundColor
440
          TabOrder = 5
441
        end
666
        end
442
        object seFontSize: TRzSpinEdit
667
        object btnCS: TButton
443
          Left = 163
668
          Left = 223
444
          Top = 12
669
          Top = 53
445
          Width = 47
670
          Width = 75
446
          Height = 21
671
          Height = 25
447
          Max = 20.000000000000000000
672
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
448
          Min = 6.000000000000000000
673
          TabOrder = 1
449
          Value = 10.000000000000000000
674
          OnClick = SetBackgroundColor
450
          TabOrder = 6
451
        end
675
        end
452
        object Button1: TButton
676
        object btnASG: TButton
453
          Left = 229
677
          Left = 223
454
          Top = 10
678
          Top = 84
455
          Width = 137
679
          Width = 75
456
          Height = 25
680
          Height = 25
457
          Caption = #1062#1074#1077#1090' '#1096#1088#1080#1092#1090#1072
681
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
458
          TabOrder = 7
682
          TabOrder = 2
459
          OnClick = Button1Click
683
          OnClick = SetBackgroundColor
460
        end
684
        end
461
        object pnlDwnld: TRzPanel
685
        object pnASG: TPanel
462
          Left = 24
686
          Left = 9
463
          Top = 185
687
          Top = 84
464
          Width = 174
688
          Width = 208
465
          Height = 25
689
          Height = 25
466
          BorderOuter = fsFlatBold
690
          BevelKind = bkFlat
467
          Caption = #1057#1082#1072#1095#1072#1085#1085#1099#1077
691
          BevelOuter = bvNone
692
          Caption = #1057#1087#1080#1089#1086#1082' '#1072#1074#1090#1086#1088#1086#1074'/'#1057#1077#1088#1080#1081'/'#1046#1072#1085#1088#1086#1074
468
          Color = clWhite
693
          Color = clWhite
469
          Font.Charset = DEFAULT_CHARSET
694
          Font.Charset = DEFAULT_CHARSET
470
          Font.Color = clWindowText
695
          Font.Color = clWindowText
471
          Font.Height = -11
696
          Font.Height = -11
472
          Font.Name = 'Tahoma'
697
          Font.Name = 'Tahoma'
473
          Font.Style = []
698
          Font.Style = []
699
          ParentBackground = False
474
          ParentFont = False
700
          ParentFont = False
475
          TabOrder = 8
701
          TabOrder = 3
476
          OnClick = pnlDwnldClick
477
        end
702
        end
478
        object pnlDeleted: TRzPanel
703
        object pnBS: TPanel
479
          Left = 204
704
          Left = 9
480
          Top = 185
705
          Top = 146
481
          Width = 170
706
          Width = 208
482
          Height = 25
707
          Height = 25
483
          BorderOuter = fsFlatBold
708
          BevelKind = bkFlat
484
          Caption = #1059#1076#1072#1083#1077#1085#1085#1099#1077' '#1085#1072' lib.rus.ec'
709
          BevelOuter = bvNone
710
          Caption = #1050#1085#1080#1075#1072' '#1074#1085#1091#1090#1088#1080' '#1089#1077#1088#1080#1080
485
          Color = clWhite
711
          Color = clWhite
486
          Font.Charset = DEFAULT_CHARSET
712
          Font.Charset = DEFAULT_CHARSET
487
          Font.Color = clWindowText
713
          Font.Color = clWindowText
488
          Font.Height = -11
714
          Font.Height = -11
489
          Font.Name = 'Tahoma'
715
          Font.Name = 'Tahoma'
490
          Font.Style = []
716
          Font.Style = []
717
          ParentBackground = False
491
          ParentFont = False
718
          ParentFont = False
492
          TabOrder = 9
719
          TabOrder = 4
493
          OnClick = pnlDwnldClick
494
        end
720
        end
495
        object RzPanel5: TRzPanel
721
        object pnCA: TPanel
496
          Left = 24
722
          Left = 9
497
          Top = 216
723
          Top = 22
498
          Width = 174
724
          Width = 208
499
          Height = 25
725
          Height = 25
500
          BorderOuter = fsFlatBold
726
          BevelKind = bkFlat
501
          Caption = #1055#1088#1086#1095#1080#1090#1072#1085#1085#1099#1077
727
          BevelOuter = bvNone
728
          Caption = #1040#1074#1090#1086#1088
502
          Color = clWhite
729
          Color = clWhite
503
          Enabled = False
730
          ParentBackground = False
731
          TabOrder = 5
732
        end
733
        object pnCS: TPanel
734
          Left = 9
735
          Top = 53
736
          Width = 208
737
          Height = 25
738
          BevelKind = bkFlat
739
          BevelOuter = bvNone
740
          Caption = #1057#1077#1088#1080#1103
741
          Color = clWhite
742
          ParentBackground = False
743
          TabOrder = 6
744
        end
745
        object pnCT: TPanel
746
          Left = 9
747
          Top = 115
748
          Width = 208
749
          Height = 25
750
          BevelKind = bkFlat
751
          BevelOuter = bvNone
752
          Caption = #1050#1085#1080#1075#1072' '#1073#1077#1079' '#1089#1077#1088#1080#1080
753
          Color = clWhite
504
          Font.Charset = DEFAULT_CHARSET
754
          Font.Charset = DEFAULT_CHARSET
505
          Font.Color = clWindowText
755
          Font.Color = clWindowText
506
          Font.Height = -11
756
          Font.Height = -11
507
          Font.Name = 'Tahoma'
757
          Font.Name = 'Tahoma'
508
          Font.Style = []
758
          Font.Style = []
759
          ParentBackground = False
509
          ParentFont = False
760
          ParentFont = False
510
          TabOrder = 10
761
          TabOrder = 7
511
          Visible = False
512
          OnClick = pnlDwnldClick
513
        end
762
        end
763
        object btnCT: TButton
764
          Left = 223
765
          Top = 115
766
          Width = 75
767
          Height = 25
768
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
769
          TabOrder = 8
770
          OnClick = SetBackgroundColor
771
        end
772
        object btnBS: TButton
773
          Left = 223
774
          Top = 146
775
          Width = 75
776
          Height = 25
777
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
778
          TabOrder = 9
779
          OnClick = SetBackgroundColor
780
        end
514
      end
781
      end
515
    end
782
    end
516
    object tsInternet: TTabSheet
783
    object tsInternet: TTabSheet
...
...
518
      Caption = 'tsInternet'
785
      Caption = 'tsInternet'
519
      ImageIndex = 4
786
      ImageIndex = 4
520
      TabVisible = False
787
      TabVisible = False
521
      ExplicitLeft = 0
788
      object Panel5: TPanel
522
      ExplicitTop = 0
523
      ExplicitWidth = 0
524
      ExplicitHeight = 0
525
      object RzGroupBox1: TRzGroupBox
526
        AlignWithMargins = True
789
        AlignWithMargins = True
527
        Left = 3
790
        Left = 3
528
        Top = 3
791
        Top = 3
529
        Width = 400
792
        Width = 441
530
        Height = 101
793
        Height = 95
531
        Align = alTop
794
        Align = alTop
532
        Caption = #1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1087#1088#1086#1082#1089#1080
795
        AutoSize = True
796
        BevelOuter = bvNone
797
        ShowCaption = False
533
        TabOrder = 0
798
        TabOrder = 0
534
        object RzLabel1: TRzLabel
799
        DesignSize = (
535
          Left = 16
800
          441
536
          Top = 50
801
          95)
537
          Width = 37
802
        object Label25: TLabel
803
          AlignWithMargins = True
804
          Left = 3
805
          Top = 3
806
          Width = 435
538
          Height = 13
807
          Height = 13
539
          Alignment = taRightJustify
808
          Align = alTop
540
          Caption = #1057#1077#1088#1074#1077#1088
809
          Caption = #1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1087#1088#1086#1082#1089#1080
810
          Font.Charset = DEFAULT_CHARSET
811
          Font.Color = clWindowText
812
          Font.Height = -11
813
          Font.Name = 'Tahoma'
814
          Font.Style = [fsBold]
815
          ParentFont = False
816
          ExplicitWidth = 104
817
        end
818
        object lblProxyPassword: TLabel
819
          Left = 281
820
          Top = 77
821
          Width = 41
822
          Height = 13
823
          Anchors = [akTop, akRight]
824
          Caption = #1055#1072#1088#1086#1083#1100':'
541
          Color = clMenuBar
825
          Color = clMenuBar
826
          FocusControl = edProxyPassword
542
          ParentColor = False
827
          ParentColor = False
543
          Transparent = True
828
          Transparent = True
544
          ShadowColor = clMenuBar
829
          ExplicitLeft = 256
545
        end
830
        end
546
        object RzLabel2: TRzLabel
831
        object lblProxyPort: TLabel
547
          Left = 289
832
          Left = 330
548
          Top = 50
833
          Top = 50
549
          Width = 25
834
          Width = 29
550
          Height = 13
835
          Height = 13
551
          Alignment = taRightJustify
836
          Anchors = [akTop, akRight]
552
          Caption = #1055#1086#1088#1090
837
          Caption = #1055#1086#1088#1090':'
553
          Color = clMenuBar
838
          Color = clMenuBar
839
          FocusControl = edProxyPort
554
          ParentColor = False
840
          ParentColor = False
555
          Transparent = True
841
          Transparent = True
842
          ExplicitLeft = 305
556
        end
843
        end
557
        object RzLabel3: TRzLabel
844
        object lblProxyServer: TLabel
558
          Left = 16
845
          Left = 15
559
          Top = 81
846
          Top = 50
560
          Width = 72
847
          Width = 41
561
          Height = 13
848
          Height = 13
562
          Alignment = taRightJustify
849
          Caption = #1057#1077#1088#1074#1077#1088':'
563
          Caption = #1055#1086#1083#1100#1079#1086#1074#1072#1090#1077#1083#1100
564
          Color = clMenuBar
850
          Color = clMenuBar
851
          FocusControl = edProxyServer
565
          ParentColor = False
852
          ParentColor = False
566
          Transparent = True
853
          Transparent = True
567
        end
854
        end
568
        object RzLabel4: TRzLabel
855
        object lblProxyUser: TLabel
569
          Left = 237
856
          Left = 15
570
          Top = 81
857
          Top = 77
571
          Width = 37
858
          Width = 76
572
          Height = 13
859
          Height = 13
573
          Alignment = taRightJustify
860
          Caption = #1055#1086#1083#1100#1079#1086#1074#1072#1090#1077#1083#1100':'
574
          Caption = #1055#1072#1088#1086#1083#1100
575
          Color = clMenuBar
861
          Color = clMenuBar
862
          FocusControl = edProxyUsername
576
          ParentColor = False
863
          ParentColor = False
577
          Transparent = True
864
          Transparent = True
578
        end
865
        end
579
        object edProxyServer: TRzEdit
866
        object cbUseIESettings: TCheckBox
580
          Left = 59
867
          AlignWithMargins = True
581
          Top = 47
868
          Left = 9
582
          Width = 214
869
          Top = 22
583
          Height = 21
870
          Width = 429
871
          Height = 17
872
          Margins.Left = 9
873
          Align = alTop
874
          Caption = #1048#1089#1087#1086#1083#1100#1079#1086#1074#1072#1090#1100' '#1085#1072#1089#1090#1088#1086#1081#1082#1080' Internet Explorer'
584
          TabOrder = 0
875
          TabOrder = 0
876
          OnClick = cbUseIESettingsClick
585
        end
877
        end
586
        object edProxyUsername: TRzEdit
878
        object edProxyPassword: TEdit
587
          Left = 94
879
          Left = 328
588
          Top = 75
589
          Width = 115
590
          Height = 21
591
          TabOrder = 1
592
        end
593
        object edProxyPassword: TRzMaskEdit
594
          Left = 280
595
          Top = 74
880
          Top = 74
596
          Width = 105
881
          Width = 105
597
          Height = 21
882
          Height = 21
598
          PasswordChar = #7
883
          Anchors = [akTop, akRight]
884
          PasswordChar = '*'
885
          TabOrder = 4
886
        end
887
        object edProxyPort: TEdit
888
          Left = 365
889
          Top = 47
890
          Width = 68
891
          Height = 21
892
          Alignment = taRightJustify
893
          Anchors = [akTop, akRight]
894
          MaxLength = 5
895
          NumbersOnly = True
599
          TabOrder = 2
896
          TabOrder = 2
897
          OnExit = CheckNumValue
600
        end
898
        end
601
        object edProxyPort: TRzNumericEdit
899
        object edProxyServer: TEdit
602
          Left = 320
900
          Left = 62
603
          Top = 47
901
          Top = 47
604
          Width = 65
902
          Width = 256
605
          Height = 21
903
          Height = 21
904
          Anchors = [akLeft, akTop, akRight]
905
          TabOrder = 1
906
        end
907
        object edProxyUsername: TEdit
908
          Left = 97
909
          Top = 74
910
          Width = 172
911
          Height = 21
912
          Anchors = [akLeft, akTop, akRight]
606
          TabOrder = 3
913
          TabOrder = 3
607
          CheckRange = True
608
          Max = 65535.000000000000000000
609
          DisplayFormat = '0'
610
        end
914
        end
611
        object cbUseIESettings: TCheckBox
612
          Left = 16
613
          Top = 21
614
          Width = 337
615
          Height = 17
616
          Caption = #1048#1089#1087#1086#1083#1100#1079#1086#1074#1072#1090#1100' '#1085#1072#1089#1090#1088#1086#1081#1082#1080' Internet Explorer'
617
          TabOrder = 4
618
          OnClick = cbUseIESettingsClick
619
        end
620
      end
915
      end
621
      object RzGroupBox9: TRzGroupBox
916
      object Panel7: TPanel
622
        AlignWithMargins = True
917
        Left = 0
623
        Left = 3
918
        Top = 101
624
        Top = 213
919
        Width = 447
625
        Width = 400
920
        Height = 176
626
        Height = 109
627
        Align = alTop
921
        Align = alTop
628
        Caption = #1057#1077#1088#1074#1077#1088' '#1086#1073#1085#1086#1074#1083#1077#1085#1080#1081
922
        AutoSize = True
923
        BevelOuter = bvNone
924
        ShowCaption = False
629
        TabOrder = 1
925
        TabOrder = 1
630
        object edUpdates: TEdit
926
        DesignSize = (
631
          Left = 13
927
          447
632
          Top = 18
928
          176)
633
          Width = 372
929
        object Label27: TLabel
930
          AlignWithMargins = True
931
          Left = 3
932
          Top = 9
933
          Width = 441
934
          Height = 13
935
          Margins.Top = 9
936
          Align = alTop
937
          Caption = #1055#1072#1088#1072#1084#1077#1090#1088#1099' '#1086#1073#1085#1086#1074#1083#1077#1085#1080#1103
938
          Font.Charset = DEFAULT_CHARSET
939
          Font.Color = clWindowText
940
          Font.Height = -11
941
          Font.Name = 'Tahoma'
942
          Font.Style = [fsBold]
943
          ParentFont = False
944
          ExplicitWidth = 140
945
        end
946
        object Label26: TLabel
947
          Left = 12
948
          Top = 31
949
          Width = 118
950
          Height = 13
951
          Caption = #1055#1072#1087#1082#1072' '#1089' '#1086#1073#1085#1086#1074#1083#1077#1085#1080#1103#1084#1080':'
952
          FocusControl = edUpdateDir
953
        end
954
        object Label28: TLabel
955
          Left = 12
956
          Top = 59
957
          Width = 67
958
          Height = 13
959
          Caption = #1057#1077#1088#1074#1077#1088' INPX:'
960
          FocusControl = edINPXUrl
961
        end
962
        object Label29: TLabel
963
          Left = 12
964
          Top = 86
965
          Width = 104
966
          Height = 13
967
          Caption = #1057#1077#1088#1074#1077#1088' '#1086#1073#1085#1086#1074#1083#1077#1085#1080#1081':'
968
          FocusControl = edUpdates
969
        end
970
        object edUpdateDir: TMHLAutoCompleteEdit
971
          Left = 136
972
          Top = 28
973
          Width = 219
634
          Height = 21
974
          Height = 21
975
          HelpContext = 5001
976
          Anchors = [akLeft, akTop, akRight]
635
          TabOrder = 0
977
          TabOrder = 0
636
          Text = 'http://home-lib.net/update/'
978
          TextHint = #1048#1089#1087#1086#1083#1100#1079#1086#1074#1072#1090#1100' '#1087#1072#1087#1082#1091' '#1087#1086' '#1091#1084#1086#1083#1095#1072#1085#1080#1102
637
        end
979
        end
980
        object btnUpdateDir: TButton
981
          Left = 361
982
          Top = 26
983
          Width = 75
984
          Height = 25
985
          Anchors = [akTop, akRight]
986
          Caption = #1042#1099#1073#1088#1072#1090#1100
987
          TabOrder = 1
988
          OnClick = SelectFolder
989
        end
990
        object edINPXUrl: TMHLAutoCompleteEdit
991
          Left = 136
992
          Top = 56
993
          Width = 300
994
          Height = 21
995
          HelpContext = 5001
996
          Anchors = [akLeft, akTop, akRight]
997
          TabOrder = 2
998
          AutoCompleteOption = [acoURLHistory, acoURLMRU]
999
        end
1000
        object edUpdates: TMHLAutoCompleteEdit
1001
          Left = 136
1002
          Top = 83
1003
          Width = 300
1004
          Height = 21
1005
          HelpContext = 5001
1006
          Anchors = [akLeft, akTop, akRight]
1007
          TabOrder = 3
1008
          AutoCompleteOption = [acoURLHistory, acoURLMRU]
1009
        end
1010
        object cbAutoRunUpdate: TCheckBox
1011
          AlignWithMargins = True
1012
          Left = 12
1013
          Top = 133
1014
          Width = 425
1015
          Height = 17
1016
          Anchors = [akLeft, akTop, akRight]
1017
          Caption = #1047#1072#1087#1091#1089#1082#1072#1090#1100' '#1086#1073#1085#1086#1074#1083#1077#1085#1080#1077'
'#1082#1072#1090#1072#1083#1086#1075#1072' '#1086#1085#1083#1072#1081#1085' '#1073#1080#1073#1083#1080#1086#1090#1077#1082'
'#1072#1074#1090#1086#1084#1072#1090#1080#1095#1077#1089#1082#1080
1018
          TabOrder = 5
1019
        end
638
        object cbCheckColUpdate: TCheckBox
1020
        object cbCheckColUpdate: TCheckBox
639
          Left = 16
1021
          AlignWithMargins = True
640
          Top = 46
1022
          Left = 12
641
          Width = 337
1023
          Top = 110
1024
          Width = 425
642
          Height = 17
1025
          Height = 17
643
          Caption = #1055#1088#1086#1074#1077#1088#1103#1090#1100' '#1086#1073#1085#1086#1074#1083#1077#1085#1080#1103' '#1082#1072#1090#1072#1083#1086#1075#1072' lib.rus.ec '#1087#1088#1080' '#1079#1072#1087#1091#1089#1082#1077
1026
          Anchors = [akLeft, akTop, akRight]
644
          TabOrder = 1
1027
          Caption = #1055#1088#1086#1074#1077#1088#1103#1090#1100' '#1086#1073#1085#1086#1074#1083#1077#1085#1080#1103' '#1082#1072#1090#1072#1083#1086#1075#1072' '#1086#1085#1083#1072#1081#1085' '#1073#1080#1073#1083#1080#1086#1090#1077#1082' '#1087#1088#1080' '#1079#1072#1087#1091#1089#1082#1077
1028
          TabOrder = 4
645
        end
1029
        end
646
        object cbUpdates: TCheckBox
1030
        object cbUpdates: TCheckBox
647
          Left = 16
1031
          AlignWithMargins = True
648
          Top = 86
1032
          Left = 12
649
          Width = 353
1033
          Top = 156
1034
          Width = 425
650
          Height = 17
1035
          Height = 17
1036
          Anchors = [akLeft, akTop, akRight]
651
          Caption = #1055#1088#1086#1074#1077#1088#1103#1090#1100' '#1085#1072#1083#1080#1095#1080#1077' '#1086#1073#1085#1086#1074#1083#1077#1085#1080#1081'
'#1087#1088#1086#1075#1088#1072#1084#1084#1099' '#1087#1088#1080' '#1079#1072#1087#1091#1089#1082#1077
1037
          Caption = #1055#1088#1086#1074#1077#1088#1103#1090#1100' '#1085#1072#1083#1080#1095#1080#1077' '#1086#1073#1085#1086#1074#1083#1077#1085#1080#1081'
'#1087#1088#1086#1075#1088#1072#1084#1084#1099' '#1087#1088#1080' '#1079#1072#1087#1091#1089#1082#1077
652
          TabOrder = 2
1038
          TabOrder = 6
653
        end
1039
        end
654
        object cbAutoRunUpdate: TCheckBox
655
          Left = 16
656
          Top = 66
657
          Width = 337
658
          Height = 17
659
          Caption = #1047#1072#1087#1091#1089#1082#1072#1090#1100' '#1086#1073#1085#1086#1074#1083#1077#1085#1080#1077' '#1082#1072#1090#1072#1083#1086#1075#1072' lib.rus.ec '#1072#1074#1090#1086#1084#1072#1090#1080#1095#1077#1089#1082#1080
660
          TabOrder = 3
661
        end
662
      end
1040
      end
663
      object RzGroupBox10: TRzGroupBox
1041
      object Panel6: TPanel
664
        AlignWithMargins = True
1042
        Left = 0
665
        Left = 3
1043
        Top = 277
666
        Top = 328
1044
        Width = 447
667
        Width = 400
1045
        Height = 92
668
        Height = 68
1046
        Align = alTop
669
        Align = alClient
1047
        BevelOuter = bvNone
670
        Caption = #1055#1072#1088#1072#1084#1077#1090#1088#1099' '#1089#1086#1077#1076#1080#1085#1077#1085#1080#1103
1048
        ShowCaption = False
671
        TabOrder = 2
1049
        TabOrder = 2
672
        object RzLabel7: TRzLabel
1050
        object Label30: TLabel
673
          Left = 16
1051
          AlignWithMargins = True
674
          Top = 22
1052
          Left = 3
675
          Width = 131
1053
          Top = 9
1054
          Width = 441
676
          Height = 13
1055
          Height = 13
1056
          Margins.Top = 9
1057
          Align = alTop
1058
          Caption = #1055#1072#1088#1072#1084#1077#1090#1088#1099' '#1089#1086#1077#1076#1080#1085#1077#1085#1080#1103
1059
          Font.Charset = DEFAULT_CHARSET
1060
          Font.Color = clWindowText
1061
          Font.Height = -11
1062
          Font.Name = 'Tahoma'
1063
          Font.Style = [fsBold]
1064
          ParentFont = False
1065
          ExplicitWidth = 140
1066
        end
1067
        object RzLabel7: TLabel
1068
          Left = 8
1069
          Top = 31
1070
          Width = 135
1071
          Height = 13
677
          Alignment = taRightJustify
1072
          Alignment = taRightJustify
678
          Caption = #1058#1072#1081#1084'-'#1072#1091#1090' '#1089#1086#1077#1076#1080#1085#1077#1085#1080#1103' ('#1084#1089')'
1073
          Caption = #1058#1072#1081#1084'-'#1072#1091#1090' '#1089#1086#1077#1076#1080#1085#1077#1085#1080#1103' ('#1084#1089'):'
679
          Color = clMenuBar
1074
          Color = clMenuBar
1075
          FocusControl = edTimeOut
680
          ParentColor = False
1076
          ParentColor = False
681
          Transparent = True
1077
          Transparent = True
682
        end
1078
        end
683
        object RzLabel8: TRzLabel
1079
        object RzLabel8: TLabel
684
          Left = 40
1080
          Left = 32
685
          Top = 46
1081
          Top = 58
686
          Width = 107
1082
          Width = 111
687
          Height = 13
1083
          Height = 13
688
          Alignment = taRightJustify
1084
          Alignment = taRightJustify
689
          Caption = #1058#1072#1081#1084'-'#1072#1091#1090' '#1095#1090#1077#1085#1080#1103' ('#1084#1089')'
1085
          Caption = #1058#1072#1081#1084'-'#1072#1091#1090' '#1095#1090#1077#1085#1080#1103' ('#1084#1089'):'
690
          Color = clMenuBar
1086
          Color = clMenuBar
1087
          FocusControl = edReadTimeOut
691
          ParentColor = False
1088
          ParentColor = False
692
          Transparent = True
1089
          Transparent = True
693
        end
1090
        end
694
        object RzLabel9: TRzLabel
1091
        object RzLabel9: TLabel
695
          Left = 252
1092
          Left = 248
696
          Top = 22
1093
          Top = 31
697
          Width = 71
1094
          Width = 75
698
          Height = 13
1095
          Height = 13
699
          Alignment = taRightJustify
1096
          Alignment = taRightJustify
700
          Caption = #1048#1085#1090#1077#1088#1074#1072#1083' ('#1084#1089')'
1097
          Caption = #1048#1085#1090#1077#1088#1074#1072#1083' ('#1084#1089'):'
701
          Color = clMenuBar
1098
          Color = clMenuBar
1099
          FocusControl = edDwnldInterval
702
          ParentColor = False
1100
          ParentColor = False
703
          Transparent = True
1101
          Transparent = True
704
        end
1102
        end
705
        object edTimeOut: TRzNumericEdit
1103
        object edDwnldInterval: TEdit
706
          Left = 153
1104
          Left = 329
707
          Top = 19
1105
          Top = 28
708
          Width = 65
1106
          Width = 65
709
          Height = 21
1107
          Height = 21
710
          TabOrder = 0
1108
          Alignment = taRightJustify
711
          CheckRange = True
1109
          NumbersOnly = True
712
          Max = 100000.000000000000000000
1110
          TabOrder = 2
713
          Min = 1000.000000000000000000
1111
          Text = '0'
714
          Value = 10000.000000000000000000
1112
          OnExit = CheckNumValue
715
          DisplayFormat = ',0;(,0)'
716
        end
1113
        end
717
        object edReadTimeOut: TRzNumericEdit
1114
        object edReadTimeOut: TEdit
718
          Left = 153
1115
          Left = 149
719
          Top = 43
1116
          Top = 55
720
          Width = 65
1117
          Width = 65
721
          Height = 21
1118
          Height = 21
722
          TabOrder = 1
1119
          Alignment = taRightJustify
723
          CheckRange = True
1120
          NumbersOnly = True
724
          Max = 100000.000000000000000000
1121
          TabOrder = 4
725
          Min = 1000.000000000000000000
1122
          Text = '1'#160'000'
726
          Value = 10000.000000000000000000
1123
          OnExit = CheckNumValue
727
          DisplayFormat = ',0;(,0)'
728
        end
1124
        end
729
        object edDwnldInterval: TRzNumericEdit
1125
        object edTimeOut: TEdit
730
          Left = 329
1126
          Left = 149
731
          Top = 19
1127
          Top = 28
732
          Width = 65
1128
          Width = 65
733
          Height = 21
1129
          Height = 21
734
          TabOrder = 2
1130
          Alignment = taRightJustify
735
          CheckRange = True
1131
          NumbersOnly = True
736
          Max = 900000.000000000000000000
1132
          TabOrder = 0
737
          Value = 10000.000000000000000000
1133
          Text = '1'#160'000'
738
          DisplayFormat = ',0;(,0)'
1134
          OnChange = edTimeOutChange
1135
          OnExit = CheckNumValue
739
        end
1136
        end
740
      end
1137
        object udTimeOut: TUpDown
741
      object RzGroupBox2: TRzGroupBox
1138
          Left = 214
742
        AlignWithMargins = True
1139
          Top = 28
743
        Left = 3
1140
          Width = 16
744
        Top = 110
745
        Width = 400
746
        Height = 43
747
        Align = alTop
748
        Caption = #1055#1072#1087#1082#1072' '#1089' '#1086#1073#1085#1086#1074#1083#1077#1085#1080#1103#1084#1080
749
        TabOrder = 3
750
        object edUpdateDir: TRzButtonEdit
751
          Left = 11
752
          Top = 18
753
          Width = 374
754
          Height = 21
1141
          Height = 21
755
          HelpContext = 5001
1142
          Associate = edTimeOut
756
          TabOrder = 0
1143
          Min = 1000
757
          AltBtnWidth = 15
1144
          Max = 100000
758
          ButtonWidth = 15
1145
          Increment = 1000
759
          OnButtonClick = edDeviceDirButtonClick
1146
          Position = 1000
1147
          TabOrder = 1
760
        end
1148
        end
761
      end
1149
        object udReadTimeOut: TUpDown
762
      object RzGroupBox17: TRzGroupBox
1150
          Left = 214
763
        AlignWithMargins = True
1151
          Top = 55
764
        Left = 3
1152
          Width = 16
765
        Top = 159
766
        Width = 400
767
        Height = 48
768
        Align = alTop
769
        Caption = #1057#1077#1088#1074#1077#1088' INPX'
770
        TabOrder = 4
771
        object edINPXUrl: TEdit
772
          Left = 12
773
          Top = 19
774
          Width = 373
775
          Height = 21
1153
          Height = 21
776
          TabOrder = 0
1154
          Associate = edReadTimeOut
1155
          Min = 1000
1156
          Max = 100000
1157
          Increment = 1000
1158
          Position = 1000
1159
          TabOrder = 5
777
        end
1160
        end
1161
        object udDwnldInterval: TUpDown
1162
          Left = 394
1163
          Top = 28
1164
          Width = 16
1165
          Height = 21
1166
          Associate = edDwnldInterval
1167
          Max = 900000
1168
          Increment = 1000
1169
          TabOrder = 3
1170
        end
778
      end
1171
      end
779
    end
1172
    end
780
    object tsScripts: TTabSheet
1173
    object tsScripts: TTabSheet
...
...
782
      Caption = 'tsScripts'
1175
      Caption = 'tsScripts'
783
      ImageIndex = 4
1176
      ImageIndex = 4
784
      TabVisible = False
1177
      TabVisible = False
785
      ExplicitLeft = 0
1178
      object Label12: TLabel
786
      ExplicitTop = 0
787
      ExplicitWidth = 0
788
      ExplicitHeight = 0
789
      object RzGroupBox523324: TRzGroupBox
790
        AlignWithMargins = True
1179
        AlignWithMargins = True
791
        Left = 3
1180
        Left = 3
792
        Top = 3
1181
        Top = 3
793
        Width = 400
1182
        Width = 441
794
        Height = 329
1183
        Height = 13
795
        Align = alClient
1184
        Align = alTop
796
        Caption = #1057#1082#1088#1080#1087#1090#1099
1185
        Caption = #1057#1082#1088#1080#1087#1090#1099
797
        TabOrder = 0
1186
        Font.Charset = DEFAULT_CHARSET
798
        object lvScripts: TRzListView
1187
        Font.Color = clWindowText
799
          AlignWithMargins = True
1188
        Font.Height = -11
800
          Left = 4
1189
        Font.Name = 'Tahoma'
801
          Top = 17
1190
        Font.Style = [fsBold]
802
          Width = 392
1191
        ParentFont = False
803
          Height = 278
1192
        ExplicitWidth = 51
804
          Align = alTop
1193
      end
805
          Columns = <
1194
      object Panel2: TPanel
806
            item
1195
        Left = 0
807
              Caption = #1053#1072#1079#1074#1072#1085#1080#1077
1196
        Top = 379
808
              Width = 80
1197
        Width = 447
809
            end
1198
        Height = 69
810
            item
1199
        Align = alBottom
811
              Caption = #1055#1091#1090#1100
1200
        BevelOuter = bvNone
812
              Width = 150
1201
        ShowCaption = False
813
            end
1202
        TabOrder = 1
814
            item
1203
        DesignSize = (
815
              Caption = #1055#1072#1088#1072#1084#1077#1090#1088#1099
1204
          447
816
              Width = 135
1205
          69)
817
            end>
1206
        object Label13: TLabel
818
          EditOnRowClick = True
1207
          Left = 3
819
          FillLastColumn = False
1208
          Top = 44
820
          FlatScrollBars = True
1209
          Width = 128
821
          GridLines = True
1210
          Height = 13
822
          ReadOnly = True
1211
          Caption = #1044#1077#1081#1089#1090#1074#1080#1077' '#1087#1086' '#1091#1084#1086#1083#1095#1072#1085#1080#1102':'
823
          RowSelect = True
1212
          FocusControl = cbDefaultAction
824
          ShowWorkAreas = True
825
          TabOrder = 2
826
          ViewStyle = vsReport
827
          OnDblClick = btnEditScriptClick
828
        end
1213
        end
829
        object btnDeleteScript: TRzBitBtn
1214
        object btnAddScript: TButton
830
          Left = 312
1215
          Left = 3
831
          Top = 300
1216
          Top = 3
832
          Caption = #1059#1076#1072#1083#1080#1090#1100
1217
          Width = 75
833
          TabOrder = 3
1218
          Height = 25
834
          OnClick = btnDeleteScriptClick
1219
          Caption = #1044#1086#1073#1072#1074#1080#1090#1100
1220
          TabOrder = 0
1221
          OnClick = btnAddScriptClick
835
        end
1222
        end
836
        object btnEditScript: TRzBitBtn
1223
        object btnEditScript: TButton
837
          Left = 87
1224
          Left = 84
838
          Top = 300
1225
          Top = 3
1226
          Width = 75
1227
          Height = 25
839
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
1228
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
840
          TabOrder = 1
1229
          TabOrder = 1
841
          OnClick = btnEditScriptClick
1230
          OnClick = btnEditScriptClick
842
        end
1231
        end
843
        object btnAddScript: TRzBitBtn
1232
        object btnDeleteScript: TButton
844
          Left = 6
1233
          Left = 165
845
          Top = 300
1234
          Top = 3
846
          Caption = #1044#1086#1073#1072#1074#1080#1090#1100
1235
          Width = 75
847
          TabOrder = 0
1236
          Height = 25
848
          OnClick = btnAddScriptClick
1237
          Caption = #1059#1076#1072#1083#1080#1090#1100
1238
          TabOrder = 2
1239
          OnClick = btnDeleteScriptClick
849
        end
1240
        end
850
      end
851
      object RzGroupBox5343245: TRzGroupBox
852
        AlignWithMargins = True
853
        Left = 3
854
        Top = 338
855
        Width = 400
856
        Height = 58
857
        Align = alBottom
858
        Caption = #1044#1077#1081#1089#1090#1074#1080#1077' '#1087#1086' '#1091#1084#1086#1083#1095#1072#1085#1080#1102
859
        TabOrder = 1
860
        object cbDefaultAction: TComboBox
1241
        object cbDefaultAction: TComboBox
861
          Left = 6
1242
          Left = 137
862
          Top = 24
1243
          Top = 41
863
          Width = 379
1244
          Width = 307
864
          Height = 21
1245
          Height = 21
865
          TabOrder = 0
1246
          Style = csDropDownList
866
          Text = #1057#1090#1072#1085#1076#1072#1088#1090#1085#1086#1077
1247
          Anchors = [akLeft, akTop, akRight]
1248
          TabOrder = 3
867
        end
1249
        end
868
      end
1250
      end
1251
      object lvScripts: TListView
1252
        AlignWithMargins = True
1253
        Left = 3
1254
        Top = 22
1255
        Width = 441
1256
        Height = 354
1257
        Align = alClient
1258
        Columns = <
1259
          item
1260
            Caption = #1053#1072#1079#1074#1072#1085#1080#1077
1261
            Width = 80
1262
          end
1263
          item
1264
            AutoSize = True
1265
            Caption = #1055#1091#1090#1100
1266
          end
1267
          item
1268
            Caption = #1055#1072#1088#1072#1084#1077#1090#1088#1099
1269
            Width = 135
1270
          end>
1271
        ColumnClick = False
1272
        GridLines = True
1273
        HideSelection = False
1274
        ReadOnly = True
1275
        RowSelect = True
1276
        TabOrder = 0
1277
        ViewStyle = vsReport
1278
        OnDblClick = btnEditScriptClick
1279
      end
869
    end
1280
    end
870
    object tsBehavour: TTabSheet
1281
    object tsBehavour: TTabSheet
871
      Caption = 'tsBehavior'
1282
      Caption = 'tsBehavior'
872
      ImageIndex = 5
1283
      ImageIndex = 5
873
      TabVisible = False
1284
      TabVisible = False
874
      ExplicitLeft = 0
1285
      object Panel3: TPanel
875
      ExplicitTop = 0
876
      ExplicitWidth = 0
877
      ExplicitHeight = 0
878
      object RzGroupBox7: TRzGroupBox
879
        AlignWithMargins = True
1286
        AlignWithMargins = True
880
        Left = 3
1287
        Left = 3
881
        Top = 3
1288
        Top = 3
882
        Width = 400
1289
        Width = 441
883
        Height = 323
1290
        Height = 318
884
        Align = alClient
1291
        Margins.Bottom = 9
885
        Caption = #1055#1086#1074#1077#1076#1077#1085#1080#1077
1292
        Align = alTop
1293
        BevelOuter = bvNone
1294
        ShowCaption = False
886
        TabOrder = 0
1295
        TabOrder = 0
1296
        DesignSize = (
1297
          441
1298
          318)
1299
        object Label6: TLabel
1300
          AlignWithMargins = True
1301
          Left = 3
1302
          Top = 3
1303
          Width = 435
1304
          Height = 13
1305
          Align = alTop
1306
          Caption = #1055#1086#1074#1077#1076#1077#1085#1080#1077
1307
          Font.Charset = DEFAULT_CHARSET
1308
          Font.Color = clWindowText
1309
          Font.Height = -11
1310
          Font.Name = 'Tahoma'
1311
          Font.Style = [fsBold]
1312
          ParentFont = False
1313
          Transparent = True
1314
          ExplicitWidth = 65
1315
        end
1316
        object Label10: TLabel
1317
          Left = 15
1318
          Top = 238
1319
          Width = 131
1320
          Height = 13
1321
          Alignment = taRightJustify
1322
          Caption = #1064#1072#1073#1083#1086#1085' '#1079#1072#1075#1086#1083#1086#1074#1082#1072' '#1082#1085#1080#1075#1080':'
1323
          WordWrap = True
1324
        end
887
        object cbShowSubGenreBooks: TCheckBox
1325
        object cbShowSubGenreBooks: TCheckBox
888
          Left = 10
1326
          AlignWithMargins = True
889
          Top = 26
1327
          Left = 9
890
          Width = 280
1328
          Top = 22
1329
          Width = 429
891
          Height = 17
1330
          Height = 17
1331
          Margins.Left = 9
1332
          Align = alTop
892
          Caption = #1055#1086#1082#1072#1079#1099#1074#1072#1090#1100' '#1082#1085#1080#1075#1080' '#1080#1079' '#1074#1083#1086#1078#1077#1085#1085#1099#1093'
'#1078#1072#1085#1088#1086#1074' ('#1085#1077'-fb2)'
1333
          Caption = #1055#1086#1082#1072#1079#1099#1074#1072#1090#1100' '#1082#1085#1080#1075#1080' '#1080#1079' '#1074#1083#1086#1078#1077#1085#1085#1099#1093'
'#1078#1072#1085#1088#1086#1074' ('#1085#1077'-fb2)'
893
          Color = clBtnFace
1334
          Color = clBtnFace
894
          ParentColor = False
1335
          ParentColor = False
895
          TabOrder = 0
1336
          TabOrder = 0
896
        end
1337
        end
897
        object cbMinimizeToTray: TCheckBox
1338
        object cbMinimizeToTray: TCheckBox
898
          Left = 10
1339
          AlignWithMargins = True
899
          Top = 48
1340
          Left = 9
900
          Width = 280
1341
          Top = 45
1342
          Width = 429
901
          Height = 17
1343
          Height = 17
1344
          Margins.Left = 9
1345
          Align = alTop
902
          Caption = #1057#1074#1086#1088#1072#1095#1080#1074#1072#1090#1100' '#1074' '#1090#1088#1077#1081
1346
          Caption = #1057#1074#1086#1088#1072#1095#1080#1074#1072#1090#1100' '#1074' '#1090#1088#1077#1081
903
          Color = clBtnFace
1347
          Color = clBtnFace
904
          ParentColor = False
1348
          ParentColor = False
905
          TabOrder = 1
1349
          TabOrder = 1
906
        end
1350
        end
907
        object cbAutoStartDwnld: TCheckBox
1351
        object cbAutoStartDwnld: TCheckBox
908
          Left = 10
1352
          AlignWithMargins = True
909
          Top = 69
1353
          Left = 9
910
          Width = 280
1354
          Top = 68
1355
          Width = 429
911
          Height = 17
1356
          Height = 17
1357
          Margins.Left = 9
1358
          Align = alTop
912
          Caption = #1057#1090#1072#1088#1090#1086#1074#1072#1090#1100' '#1079#1072#1082#1072#1095#1082#1080'
'#1072#1074#1090#1086#1084#1072#1090#1080#1095#1077#1089#1082#1080
1359
          Caption = #1057#1090#1072#1088#1090#1086#1074#1072#1090#1100' '#1079#1072#1082#1072#1095#1082#1080'
'#1072#1074#1090#1086#1084#1072#1090#1080#1095#1077#1089#1082#1080
913
          TabOrder = 2
1360
          TabOrder = 2
914
        end
1361
        end
915
        object cbShowFb2Info: TCheckBox
1362
        object cbShowFb2Info: TCheckBox
916
          Left = 10
1363
          AlignWithMargins = True
917
          Top = 92
1364
          Left = 9
918
          Width = 280
1365
          Top = 91
1366
          Width = 429
919
          Height = 17
1367
          Height = 17
1368
          Margins.Left = 9
1369
          Align = alTop
920
          Caption = #1055#1086#1082#1072#1079#1099#1074#1072#1090#1100' '#1080#1085#1092#1086#1088#1084#1072#1094#1080#1102' '#1080#1079' fb2 '
1370
          Caption = #1055#1086#1082#1072#1079#1099#1074#1072#1090#1100' '#1080#1085#1092#1086#1088#1084#1072#1094#1080#1102' '#1080#1079' fb2 '
921
          Color = clBtnFace
1371
          Color = clBtnFace
922
          ParentColor = False
1372
          ParentColor = False
923
          TabOrder = 3
1373
          TabOrder = 3
924
        end
1374
        end
925
        object cbAllowMixedCollections: TCheckBox
1375
        object cbAllowMixedCollections: TCheckBox
926
          Left = 10
1376
          AlignWithMargins = True
927
          Top = 115
1377
          Left = 9
928
          Width = 280
1378
          Top = 114
1379
          Width = 429
929
          Height = 17
1380
          Height = 17
1381
          Margins.Left = 9
1382
          Align = alTop
930
          Caption = #1056#1072#1079#1088#1077#1096#1080#1090#1100' '#1089#1084#1077#1096#1072#1085#1085#1099#1077'
'#1082#1086#1083#1083#1077#1082#1094#1080#1080
1383
          Caption = #1056#1072#1079#1088#1077#1096#1080#1090#1100' '#1089#1084#1077#1096#1072#1085#1085#1099#1077'
'#1082#1086#1083#1083#1077#1082#1094#1080#1080
931
          Color = clBtnFace
1384
          Color = clBtnFace
932
          ParentColor = False
1385
          ParentColor = False
933
          TabOrder = 4
1386
          TabOrder = 4
934
        end
1387
        end
935
        object cbDeleteDeleted: TCheckBox
1388
        object cbDeleteDeleted: TCheckBox
936
          Left = 10
1389
          AlignWithMargins = True
937
          Top = 138
1390
          Left = 9
938
          Width = 280
1391
          Top = 137
1392
          Width = 429
939
          Height = 17
1393
          Height = 17
940
          Caption = #1059#1076#1072#1083#1103#1090#1100' "'#1091#1076#1072#1083#1077#1085#1099#1077' '#1085#1072' '#1083#1080#1073#1088#1091#1089#1077#1082#1077'"'
1394
          Margins.Left = 9
1395
          Align = alTop
1396
          Caption = #1059#1076#1072#1083#1103#1090#1100' "'#1091#1076#1072#1083#1077#1085#1099#1077' '#1074' '#1073#1080#1073#1083#1080#1086#1090#1077#1082#1077'"'
941
          Color = clBtnFace
1397
          Color = clBtnFace
942
          ParentColor = False
1398
          ParentColor = False
943
          TabOrder = 5
1399
          TabOrder = 5
944
        end
1400
        end
945
        object cbAutoLoadReview: TCheckBox
1401
        object cbAutoLoadReview: TCheckBox
946
          Left = 10
1402
          AlignWithMargins = True
947
          Top = 161
1403
          Left = 9
948
          Width = 280
1404
          Top = 160
1405
          Width = 429
949
          Height = 17
1406
          Height = 17
1407
          Margins.Left = 9
1408
          Align = alTop
950
          Caption = #1040#1074#1090#1086#1084#1072#1090#1080#1095#1077#1089#1082#1080' '#1079#1072#1075#1088#1091#1078#1072#1090#1100'
'#1088#1077#1094#1077#1085#1079#1080#1080
1409
          Caption = #1040#1074#1090#1086#1084#1072#1090#1080#1095#1077#1089#1082#1080' '#1079#1072#1075#1088#1091#1078#1072#1090#1100'
'#1088#1077#1094#1077#1085#1079#1080#1080
951
          Color = clBtnFace
1410
          Color = clBtnFace
952
          ParentColor = False
1411
          ParentColor = False
953
          TabOrder = 6
1412
          TabOrder = 6
954
        end
1413
        end
955
        object cbDeleteFiles: TCheckBox
1414
        object cbDeleteFiles: TCheckBox
956
          Left = 10
1415
          AlignWithMargins = True
957
          Top = 184
1416
          Left = 9
958
          Width = 280
1417
          Top = 183
1418
          Width = 429
959
          Height = 17
1419
          Height = 17
1420
          Margins.Left = 9
1421
          Align = alTop
960
          Caption = #1059#1076#1072#1083#1103#1090#1100' '#1092#1072#1081#1083#1099' '#1087#1088#1080' '#1091#1076#1072#1083#1077#1085#1080#1080'
'#1082#1085#1080#1075
1422
          Caption = #1059#1076#1072#1083#1103#1090#1100' '#1092#1072#1081#1083#1099' '#1087#1088#1080' '#1091#1076#1072#1083#1077#1085#1080#1080'
'#1082#1085#1080#1075
961
          Color = clBtnFace
1423
          Color = clBtnFace
962
          ParentColor = False
1424
          ParentColor = False
963
          TabOrder = 7
1425
          TabOrder = 7
964
        end
1426
        end
965
      end
966
      object RzGroupBox16: TRzGroupBox
967
        AlignWithMargins = True
968
        Left = 3
969
        Top = 332
970
        Width = 400
971
        Height = 64
972
        Align = alBottom
973
        TabOrder = 1
974
        object Label10: TLabel
975
          Left = 16
976
          Top = 32
977
          Width = 95
978
          Height = 26
979
          Alignment = taRightJustify
980
          Caption = #1064#1072#1073#1083#1086#1085' '#1079#1072#1075#1086#1083#1086#1074#1082#1072' '#1082#1085#1080#1075#1080':'
981
          WordWrap = True
982
        end
983
        object cbOverwriteFB2Info: TCheckBox
1427
        object cbOverwriteFB2Info: TCheckBox
984
          Left = 10
1428
          AlignWithMargins = True
985
          Top = 8
1429
          Left = 9
986
          Width = 281
1430
          Top = 212
1431
          Width = 429
987
          Height = 17
1432
          Height = 17
1433
          Margins.Left = 9
1434
          Margins.Top = 9
1435
          Align = alTop
988
          Caption = #1055#1077#1088#1077#1079#1072#1087#1080#1089#1099#1074#1072#1090#1100' '#1079#1072#1075#1086#1083#1086#1074#1086#1082' fb2'
1436
          Caption = #1055#1077#1088#1077#1079#1072#1087#1080#1089#1099#1074#1072#1090#1100' '#1079#1072#1075#1086#1083#1086#1074#1086#1082' fb2'
989
          Color = clBtnFace
1437
          TabOrder = 8
990
          ParentColor = False
991
          TabOrder = 0
992
          OnClick = cbOverwriteFB2InfoClick
1438
          OnClick = cbOverwriteFB2InfoClick
993
        end
1439
        end
994
        object beTemplate: TRzButtonEdit
1440
        object edTitleTemplate: TEdit
995
          Left = 117
1441
          Left = 152
996
          Top = 31
1442
          Top = 235
997
          Width = 268
1443
          Width = 201
998
          Height = 24
1444
          Height = 21
1445
          Anchors = [akLeft, akTop, akRight]
1446
          ReadOnly = True
1447
          TabOrder = 9
999
          Text = '[%s [(%n) ]- ]%t'
1448
          Text = '[%s [(%n) ]- ]%t'
1000
          Font.Charset = DEFAULT_CHARSET
1001
          Font.Color = clWindowText
1002
          Font.Height = -13
1003
          Font.Name = 'Tahoma'
1004
          Font.Style = []
1005
          ParentFont = False
1006
          ReadOnly = True
1007
          ReadOnlyColor = clWindow
1008
          TabOrder = 1
1009
          AltBtnWidth = 15
1010
          ButtonWidth = 15
1011
          HideButtonsOnReadOnly = False
1012
          OnButtonClick = beTemplateButtonClick
1013
        end
1449
        end
1450
        object btnTitleTemplate: TButton
1451
          Left = 359
1452
          Top = 233
1453
          Width = 75
1454
          Height = 25
1455
          Anchors = [akTop, akRight]
1456
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
1457
          TabOrder = 10
1458
          OnClick = EditTextTemplate
1459
        end
1014
      end
1460
      end
1015
    end
1461
    end
1016
    object tsFileSort: TTabSheet
1462
    object tsFileSort: TTabSheet
1017
      Caption = 'tsFileSort'
1463
      Caption = 'tsFileSort'
1018
      ImageIndex = 6
1464
      ImageIndex = 6
1019
      TabVisible = False
1465
      TabVisible = False
1020
      ExplicitLeft = 0
1466
      object Panel4: TPanel
1021
      ExplicitTop = 0
1022
      ExplicitWidth = 0
1023
      ExplicitHeight = 0
1024
      object RzGroupBox12: TRzGroupBox
1025
        AlignWithMargins = True
1467
        AlignWithMargins = True
1026
        Left = 3
1468
        Left = 3
1027
        Top = 244
1469
        Top = 3
1028
        Width = 400
1470
        Width = 441
1029
        Height = 126
1471
        Height = 246
1472
        Margins.Bottom = 9
1030
        Align = alTop
1473
        Align = alTop
1031
        Caption = #1057#1086#1088#1090#1080#1088#1086#1074#1082#1072' FBD'
1474
        BevelOuter = bvNone
1475
        ShowCaption = False
1032
        TabOrder = 0
1476
        TabOrder = 0
1033
        object Label2: TLabel
1477
        DesignSize = (
1034
          Left = 20
1478
          441
1035
          Top = 29
1479
          246)
1480
        object Label21: TLabel
1481
          AlignWithMargins = True
1482
          Left = 3
1483
          Top = 3
1484
          Width = 435
1485
          Height = 13
1486
          Align = alTop
1487
          Caption = #1048#1084#1087#1086#1088#1090' '#1092#1072#1081#1083#1086#1074
1488
          Font.Charset = DEFAULT_CHARSET
1489
          Font.Color = clWindowText
1490
          Font.Height = -11
1491
          Font.Name = 'Tahoma'
1492
          Font.Style = [fsBold]
1493
          ParentFont = False
1494
          ExplicitWidth = 90
1495
        end
1496
        object Label22: TLabel
1497
          Left = 15
1498
          Top = 58
1499
          Width = 35
1500
          Height = 13
1501
          Caption = #1055#1072#1087#1082#1072':'
1502
          FocusControl = edImportFolder
1503
        end
1504
        object Label23: TLabel
1505
          Left = 15
1506
          Top = 82
1507
          Width = 419
1508
          Height = 13
1509
          Anchors = [akLeft, akTop, akRight]
1510
          AutoSize = False
1511
          Caption = #1057#1086#1088#1090#1080#1088#1086#1074#1082#1072' FB2'
1512
          Font.Charset = DEFAULT_CHARSET
1513
          Font.Color = clWindowText
1514
          Font.Height = -11
1515
          Font.Name = 'Tahoma'
1516
          Font.Style = [fsBold]
1517
          ParentFont = False
1518
          ExplicitWidth = 394
1519
        end
1520
        object Label4: TLabel
1521
          Left = 21
1522
          Top = 104
1036
          Width = 38
1523
          Width = 38
1037
          Height = 13
1524
          Height = 13
1038
          Alignment = taRightJustify
1525
          Alignment = taRightJustify
1039
          Caption = #1055#1072#1087#1082#1072': '
1526
          Caption = #1055#1072#1087#1082#1072': '
1527
          FocusControl = edFB2FolderTemplate
1040
        end
1528
        end
1041
        object Label3: TLabel
1529
        object Label8: TLabel
1042
          Left = 25
1530
          Left = 21
1043
          Top = 64
1531
          Top = 131
1044
          Width = 33
1532
          Width = 33
1045
          Height = 13
1533
          Height = 13
1046
          Alignment = taRightJustify
1534
          Alignment = taRightJustify
1047
          Caption = #1060#1072#1081#1083': '
1535
          Caption = #1060#1072#1081#1083': '
1536
          FocusControl = edFB2FileTemplate
1048
        end
1537
        end
1049
        object RzToolButton4: TRzToolButton
1538
        object Label24: TLabel
1050
          Tag = 41
1539
          Left = 15
1051
          Left = 64
1540
          Top = 155
1052
          Top = 88
1541
          Width = 419
1053
          Width = 33
1542
          Height = 13
1054
          Hint = #1060#1072#1084#1080#1083#1080#1103' '#1080' '#1080#1084#1103' '#1072#1074#1090#1086#1088#1072
1543
          Anchors = [akLeft, akTop, akRight]
1055
          Flat = False
1544
          AutoSize = False
1056
          ShowCaption = True
1545
          Caption = #1057#1086#1088#1090#1080#1088#1086#1074#1082#1072' FB2'
1057
          UseToolbarButtonSize = False
1546
          Font.Charset = DEFAULT_CHARSET
1058
          UseToolbarShowCaption = False
1547
          Font.Color = clWindowText
1059
          Caption = '%f'
1548
          Font.Height = -11
1060
          ParentShowHint = False
1549
          Font.Name = 'Tahoma'
1061
          ShowHint = True
1550
          Font.Style = [fsBold]
1551
          ParentFont = False
1552
          ExplicitWidth = 394
1062
        end
1553
        end
1063
        object RzToolButton5: TRzToolButton
1554
        object Label2: TLabel
1064
          Tag = 42
1555
          Left = 21
1065
          Left = 103
1556
          Top = 177
1066
          Top = 88
1067
          Width = 33
1068
          Hint = #1053#1072#1079#1074#1072#1085#1080#1077
1069
          Flat = False
1070
          ShowCaption = True
1071
          UseToolbarButtonSize = False
1072
          UseToolbarShowCaption = False
1073
          Caption = '%t'
1074
          ParentShowHint = False
1075
          ShowHint = True
1076
        end
1077
        object RzToolButton6: TRzToolButton
1078
          Tag = 43
1079
          Left = 142
1080
          Top = 88
1081
          Width = 33
1082
          Hint = #1057#1077#1088#1080#1103
1083
          Flat = False
1084
          ShowCaption = True
1085
          UseToolbarButtonSize = False
1086
          UseToolbarShowCaption = False
1087
          Caption = '%s '
1088
          ParentShowHint = False
1089
          ShowHint = True
1090
        end
1091
        object RzToolButton7: TRzToolButton
1092
          Tag = 44
1093
          Left = 181
1094
          Top = 88
1095
          Width = 33
1096
          Hint = #1053#1086#1084#1077#1088' '#1074' '#1089#1077#1088#1080#1080
1097
          Flat = False
1098
          ShowCaption = True
1099
          UseToolbarButtonSize = False
1100
          UseToolbarShowCaption = False
1101
          Caption = '%n'
1102
          ParentShowHint = False
1103
          ShowHint = True
1104
        end
1105
        object RzToolButton8: TRzToolButton
1106
          Tag = 48
1107
          Left = 220
1108
          Top = 88
1109
          Width = 33
1110
          Hint = #1050#1086#1088#1085#1077#1074#1086#1081' '#1078#1072#1085#1088
1111
          Flat = False
1112
          ShowCaption = True
1113
          UseToolbarButtonSize = False
1114
          UseToolbarShowCaption = False
1115
          Caption = '%rg'
1116
          ParentShowHint = False
1117
          ShowHint = True
1118
        end
1119
        object RzToolButton9: TRzToolButton
1120
          Tag = 46
1121
          Left = 259
1122
          Top = 88
1123
          Width = 33
1124
          Hint = #1046#1072#1085#1088
1125
          Flat = False
1126
          ShowCaption = True
1127
          UseToolbarButtonSize = False
1128
          UseToolbarShowCaption = False
1129
          Caption = '%g'
1130
          ParentShowHint = False
1131
          ShowHint = True
1132
        end
1133
        object RzToolButton10: TRzToolButton
1134
          Tag = 47
1135
          Left = 298
1136
          Top = 88
1137
          Width = 33
1138
          Hint = #1055#1077#1088#1074#1072#1103' '#1073#1091#1082#1074#1072#13#1092#1072#1084#1080#1083#1080#1080' '#1072#1074#1090#1086#1088#1072
1139
          Flat = False
1140
          ShowCaption = True
1141
          UseToolbarButtonSize = False
1142
          UseToolbarShowCaption = False
1143
          Caption = '%fl'
1144
          ParentShowHint = False
1145
          ShowHint = True
1146
        end
1147
        object edFBDFolderTemplate: TRzEdit
1148
          Tag = 785
1149
          Left = 64
1150
          Top = 26
1151
          Width = 313
1152
          Height = 21
1153
          Text = '%g\%s'
1154
          TabOrder = 0
1155
        end
1156
        object edFBDFileTemplate: TRzEdit
1157
          Tag = 785
1158
          Left = 64
1159
          Top = 61
1160
          Width = 313
1161
          Height = 21
1162
          TabOrder = 1
1163
        end
1164
      end
1165
      object RzGroupBox13: TRzGroupBox
1166
        AlignWithMargins = True
1167
        Left = 3
1168
        Top = 112
1169
        Width = 400
1170
        Height = 126
1171
        Align = alTop
1172
        Caption = #1057#1086#1088#1090#1080#1088#1086#1074#1082#1072' FB2'
1173
        TabOrder = 1
1174
        object Label4: TLabel
1175
          Left = 20
1176
          Top = 29
1177
          Width = 38
1557
          Width = 38
1178
          Height = 13
1558
          Height = 13
1179
          Alignment = taRightJustify
1559
          Alignment = taRightJustify
1180
          Caption = #1055#1072#1087#1082#1072': '
1560
          Caption = #1055#1072#1087#1082#1072': '
1561
          FocusControl = edFBDFolderTemplate
1181
        end
1562
        end
1182
        object Label8: TLabel
1563
        object Label3: TLabel
1183
          Left = 25
1564
          Left = 21
1184
          Top = 64
1565
          Top = 204
1185
          Width = 33
1566
          Width = 33
1186
          Height = 13
1567
          Height = 13
1187
          Alignment = taRightJustify
1568
          Alignment = taRightJustify
1188
          Caption = #1060#1072#1081#1083': '
1569
          Caption = #1060#1072#1081#1083': '
1570
          FocusControl = edFBDFileTemplate
1189
        end
1571
        end
1190
        object RzToolButton11: TRzToolButton
1572
        object btnImportFolder: TButton
1191
          Tag = 41
1573
          Left = 359
1192
          Left = 64
1574
          Top = 53
1193
          Top = 88
1575
          Width = 75
1194
          Width = 33
1576
          Height = 25
1195
          Hint = #1060#1072#1084#1080#1083#1080#1103' '#1080' '#1080#1084#1103' '#1072#1074#1090#1086#1088#1072
1577
          Anchors = [akTop, akRight]
1196
          Flat = False
1578
          Caption = #1042#1099#1073#1088#1072#1090#1100
1197
          ShowCaption = True
1579
          TabOrder = 2
1198
          UseToolbarButtonSize = False
1580
          OnClick = SelectFolder
1199
          UseToolbarShowCaption = False
1200
          Caption = '%f'
1201
          ParentShowHint = False
1202
          ShowHint = True
1203
        end
1581
        end
1204
        object RzToolButton12: TRzToolButton
1582
        object cbEnableFileSort: TCheckBox
1205
          Tag = 42
1583
          AlignWithMargins = True
1206
          Left = 103
1584
          Left = 9
1207
          Top = 88
1585
          Top = 22
1208
          Width = 33
1586
          Width = 429
1209
          Hint = #1053#1072#1079#1074#1072#1085#1080#1077
1587
          Height = 27
1210
          Flat = False
1588
          Margins.Left = 9
1211
          ShowCaption = True
1589
          Align = alTop
1212
          UseToolbarButtonSize = False
1590
          Caption = #1042#1082#1083#1102#1095#1080#1090#1100' '#1089#1086#1088#1090#1080#1088#1086#1074#1082#1091' '#1087#1088#1080' '#1080#1084#1087#1086#1088#1090#1077
1213
          UseToolbarShowCaption = False
1591
          TabOrder = 0
1214
          Caption = '%t'
1592
          WordWrap = True
1215
          ParentShowHint = False
1593
          OnClick = cbEnableFileSortClick
1216
          ShowHint = True
1217
        end
1594
        end
1218
        object RzToolButton13: TRzToolButton
1595
        object edImportFolder: TMHLAutoCompleteEdit
1219
          Tag = 43
1596
          Left = 56
1220
          Left = 142
1597
          Top = 55
1221
          Top = 88
1598
          Width = 297
1222
          Width = 33
1599
          Height = 21
1223
          Hint = #1057#1077#1088#1080#1103
1600
          HelpContext = 5001
1224
          Flat = False
1601
          Anchors = [akLeft, akTop, akRight]
1225
          ShowCaption = True
1602
          TabOrder = 1
1226
          UseToolbarButtonSize = False
1227
          UseToolbarShowCaption = False
1228
          Caption = '%s '
1229
          ParentShowHint = False
1230
          ShowHint = True
1231
        end
1603
        end
1232
        object RzToolButton14: TRzToolButton
1604
        object edFB2FileTemplate: TEdit
1233
          Tag = 44
1605
          Tag = 785
1234
          Left = 181
1606
          Left = 65
1235
          Top = 88
1607
          Top = 128
1236
          Width = 33
1608
          Width = 288
1237
          Hint = #1053#1086#1084#1077#1088' '#1074' '#1089#1077#1088#1080#1080
1609
          Height = 21
1238
          Flat = False
1610
          Anchors = [akLeft, akTop, akRight]
1239
          ShowCaption = True
1611
          ReadOnly = True
1240
          UseToolbarButtonSize = False
1612
          TabOrder = 5
1241
          UseToolbarShowCaption = False
1242
          Caption = '%n'
1243
          ParentShowHint = False
1244
          ShowHint = True
1245
        end
1613
        end
1246
        object RzToolButton15: TRzToolButton
1614
        object edFB2FolderTemplate: TEdit
1247
          Tag = 48
1615
          Tag = 785
1248
          Left = 220
1616
          Left = 65
1249
          Top = 88
1617
          Top = 101
1250
          Width = 33
1618
          Width = 288
1251
          Hint = #1050#1086#1088#1085#1077#1074#1086#1081' '#1078#1072#1085#1088
1619
          Height = 21
1252
          Flat = False
1620
          Anchors = [akLeft, akTop, akRight]
1253
          ShowCaption = True
1621
          ReadOnly = True
1254
          UseToolbarButtonSize = False
1622
          TabOrder = 3
1255
          UseToolbarShowCaption = False
1256
          Caption = '%rg'
1257
          ParentShowHint = False
1258
          ShowHint = True
1259
        end
1623
        end
1260
        object RzToolButton16: TRzToolButton
1624
        object edFBDFileTemplate: TEdit
1261
          Tag = 46
1262
          Left = 259
1263
          Top = 88
1264
          Width = 33
1265
          Hint = #1046#1072#1085#1088
1266
          Flat = False
1267
          ShowCaption = True
1268
          UseToolbarButtonSize = False
1269
          UseToolbarShowCaption = False
1270
          Caption = '%g'
1271
          ParentShowHint = False
1272
          ShowHint = True
1273
        end
1274
        object RzToolButton17: TRzToolButton
1275
          Tag = 47
1276
          Left = 298
1277
          Top = 88
1278
          Width = 33
1279
          Hint = #1055#1077#1088#1074#1072#1103' '#1073#1091#1082#1074#1072#13#1092#1072#1084#1080#1083#1080#1080' '#1072#1074#1090#1086#1088#1072
1280
          Flat = False
1281
          ShowCaption = True
1282
          UseToolbarButtonSize = False
1283
          UseToolbarShowCaption = False
1284
          Caption = '%fl'
1285
          ParentShowHint = False
1286
          ShowHint = True
1287
        end
1288
        object edFB2FolderTemplate: TRzEdit
1289
          Tag = 785
1625
          Tag = 785
1290
          Left = 64
1626
          Left = 65
1291
          Top = 26
1627
          Top = 201
1292
          Width = 313
1628
          Width = 288
1293
          Height = 21
1629
          Height = 21
1294
          TabOrder = 0
1630
          Anchors = [akLeft, akTop, akRight]
1631
          ReadOnly = True
1632
          TabOrder = 9
1295
        end
1633
        end
1296
        object edFB2FileTemplate: TRzEdit
1634
        object edFBDFolderTemplate: TEdit
1297
          Tag = 785
1635
          Tag = 785
1298
          Left = 64
1636
          Left = 65
1299
          Top = 61
1637
          Top = 174
1300
          Width = 313
1638
          Width = 288
1301
          Height = 21
1639
          Height = 21
1302
          TabOrder = 1
1640
          Anchors = [akLeft, akTop, akRight]
1641
          ReadOnly = True
1642
          TabOrder = 7
1643
          Text = '%g\%s'
1303
        end
1644
        end
1304
      end
1645
        object btnFB2FolderTemplate: TButton
1305
      object RzGroupBox14: TRzGroupBox
1646
          Left = 359
1306
        AlignWithMargins = True
1647
          Top = 99
1307
        Left = 3
1648
          Width = 75
1308
        Top = 3
1649
          Height = 25
1309
        Width = 400
1650
          Anchors = [akTop, akRight]
1310
        Height = 46
1651
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
1311
        Align = alTop
1652
          TabOrder = 4
1312
        Caption = #1054#1087#1094#1080#1080
1653
          OnClick = EditFolderTemplate
1313
        TabOrder = 2
1314
        object cbEnableFileSort: TCheckBox
1315
          Left = 11
1316
          Top = 12
1317
          Width = 206
1318
          Height = 27
1319
          Caption = #1042#1082#1083#1102#1095#1080#1090#1100' '#1089#1086#1088#1090#1080#1088#1086#1074#1082#1091' '#1087#1088#1080' '#1080#1084#1087#1086#1088#1090#1077
1320
          TabOrder = 0
1321
          WordWrap = True
1322
        end
1654
        end
1323
      end
1655
        object btnFB2FileTemplate: TButton
1324
      object RzGroupBox15: TRzGroupBox
1656
          Left = 359
1325
        AlignWithMargins = True
1657
          Top = 126
1326
        Left = 3
1658
          Width = 75
1327
        Top = 55
1659
          Height = 25
1328
        Width = 400
1660
          Anchors = [akTop, akRight]
1329
        Height = 51
1661
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
1330
        Align = alTop
1662
          TabOrder = 6
1331
        Caption = #1055#1072#1087#1082#1072
1663
          OnClick = EditFileNameTemplate
1332
        TabOrder = 3
1333
        object edInputFolder: TRzButtonEdit
1334
          Left = 11
1335
          Top = 18
1336
          Width = 374
1337
          Height = 21
1338
          HelpContext = 5001
1339
          TabOrder = 0
1340
          AltBtnWidth = 15
1341
          ButtonWidth = 15
1342
          OnButtonClick = edDeviceDirButtonClick
1343
        end
1664
        end
1665
        object btnFBDFileTemplate: TButton
1666
          Left = 359
1667
          Top = 199
1668
          Width = 75
1669
          Height = 25
1670
          Anchors = [akTop, akRight]
1671
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
1672
          TabOrder = 10
1673
          OnClick = EditFileNameTemplate
1674
        end
1675
        object btnFBDFolderTemplate: TButton
1676
          Left = 359
1677
          Top = 172
1678
          Width = 75
1679
          Height = 25
1680
          Anchors = [akTop, akRight]
1681
          Caption = #1048#1079#1084#1077#1085#1080#1090#1100
1682
          TabOrder = 8
1683
          OnClick = EditFolderTemplate
1684
        end
1344
      end
1685
      end
1345
    end
1686
    end
1346
  end
1687
  end
1347
  object RzPanel2: TRzPanel
1688
  object pnButtons: TPanel
1689
    Left = 0
1690
    Top = 464
1691
    Width = 617
1692
    Height = 41
1693
    Align = alBottom
1694
    BevelOuter = bvNone
1695
    Caption = 'pnButtons'
1696
    ShowCaption = False
1697
    TabOrder = 1
1698
    DesignSize = (
1699
      617
1700
      41)
1701
    object btnOk: TButton
1702
      Left = 453
1703
      Top = 10
1704
      Width = 75
1705
      Height = 25
1706
      Anchors = [akTop, akRight]
1707
      Caption = '&'#1057#1086#1093#1088#1072#1085#1080#1090#1100
1708
      Default = True
1709
      ModalResult = 1
1710
      TabOrder = 0
1711
      OnClick = SaveSettingsClick
1712
    end
1713
    object btnCancel: TButton
1714
      Left = 534
1715
      Top = 10
1716
      Width = 75
1717
      Height = 25
1718
      Anchors = [akTop, akRight]
1719
      Cancel = True
1720
      Caption = '&'#1054#1090#1084#1077#1085#1072
1721
      ModalResult = 2
1722
      TabOrder = 1
1723
    end
1724
    object btnHelp: TButton
1725
      Left = 12
1726
      Top = 10
1727
      Width = 75
1728
      Height = 25
1729
      Caption = #1057#1087#1088#1072#1074#1082#1072
1730
      TabOrder = 2
1731
      OnClick = ShowHelpClick
1732
    end
1733
  end
1734
  object tvSections: TTreeView
1348
    AlignWithMargins = True
1735
    AlignWithMargins = True
1349
    Left = 3
1736
    Left = 3
1350
    Top = 3
1737
    Top = 5
1351
    Width = 185
1738
    Width = 150
1352
    Height = 409
1739
    Height = 455
1740
    Margins.Top = 5
1741
    Margins.Bottom = 4
1353
    Align = alLeft
1742
    Align = alLeft
1354
    BorderOuter = fsFlatRounded
1743
    HideSelection = False
1744
    Indent = 19
1745
    RowSelect = True
1355
    TabOrder = 2
1746
    TabOrder = 2
1356
    object tvSections: TRzTreeView
1747
    OnChange = tvSectionsChange
1357
      AlignWithMargins = True
1748
    Items.NodeData = {
1358
      Left = 5
1749
      03070000003E0000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF000000
1359
      Top = 5
1750
      000000000001101F0430043F043A0438042F0023044104420440043E04390441
1360
      Width = 175
1751
      04420432043004340000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF00
1361
      Height = 399
1752
      00000000000000010B220438043F044B0420004404300439043B043E04320430
1362
      SelectionPen.Color = clBtnShadow
1753
      0000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000001
1363
      Align = alClient
1754
      0918043D0442043504400444043504390441042E0000000000000000000000FF
1364
      Indent = 19
1755
      FFFFFFFFFFFFFFFFFFFFFF0000000000000000010818043D044204350440043D
1365
      RowSelect = True
1756
      04350442042C0000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF000000
1366
      TabOrder = 0
1757
      0000000000010721043A04400438043F0442044B042A00000000000000000000
1367
      OnChange = tvSectionsChange
1758
      00FFFFFFFFFFFFFFFF00000000000000000000000001062004300437043D043E
1368
      Items.NodeData = {
1759
      043504400000000000000000000000FFFFFFFFFFFFFFFF000000000000000000
1369
        03070000003E0000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF000000
1760
      000000011121043E0440044204380440043E0432043A04300420004404300439
1370
        000000000001101F0430043F043A0438042F0023044104420440043E04390441
1761
      043B043E043204}
1371
        04420432043004340000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF00
1372
        00000000000000010B220438043F044B0420004404300439043B043E04320430
1373
        0000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000001
1374
        0918043D0442043504400444043504390441042E0000000000000000000000FF
1375
        FFFFFFFFFFFFFFFFFFFFFF0000000000000000010818043D044204350440043D
1376
        04350442042C0000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF000000
1377
        0000000000010721043A04400438043F0442044B042A00000000000000000000
1378
        00FFFFFFFFFFFFFFFF00000000000000000000000001062004300437043D043E
1379
        043504400000000000000000000000FFFFFFFFFFFFFFFF000000000000000000
1380
        000000011121043E0440044204380440043E0432043A04300420004404300439
1381
        043B043E043204}
1382
    end
1383
  end
1762
  end
1384
  object dlgColors: TColorDialog
1763
  object dlgColors: TColorDialog
1385
    Left = 32
1764
    Left = 32
1386
    Top = 176
1765
    Top = 176
1387
  end
1766
  end
1388
  object dlgSelectDir: TRzSelDirDialog
1389
    CenterToParent = True
1390
    Position = poOwnerFormCenter
1391
    AllowCreate = True
1392
    ButtonGlyphs = True
1393
    ChangeCurrentDir = False
1394
    DriveTypes = [dtFloppy, dtFixed, dtNetwork, dtRAM]
1395
    OpenCurrentDir = True
1396
    AutoSelect = True
1397
    Prompt = #1048#1084#1103' '#1087#1072#1087#1082#1080
1398
    PromptFolders = #1055#1072#1087#1082#1080
1399
    PromptDrives = #1059#1089#1090#1088#1086#1081#1089#1090#1074#1072
1400
    Caption = #1059#1082#1072#1078#1080#1090#1077' '#1087#1072#1087#1082#1091
1401
    CaptionOK = 'OK'
1402
    CaptionCancel = #1054#1090#1084#1077#1085#1072
1403
    CaptionHelp = '&'#1057#1087#1088#1072#1074#1082#1072
1404
    Font.Charset = DEFAULT_CHARSET
1405
    Font.Color = clWindowText
1406
    Font.Height = -11
1407
    Font.Name = 'Tahoma'
1408
    Font.Style = []
1409
    FrameVisible = True
1410
    Left = 96
1411
    Top = 176
1412
  end
1413
end
1767
end

Updated trunk/Forms/frm_settings.pas Download diff

File was changed - ok, show the diff

Updated trunk/ImportImpl/unit_ImportFB2Thread.pas Download diff

File was changed - ok, show the diff

Updated trunk/ImportImpl/unit_ImportFB2ThreadBase.pas Download diff

File was changed - ok, show the diff

Updated trunk/ImportImpl/unit_ImportFB2ZIPThread.pas Download diff

File was changed - ok, show the diff

Updated trunk/ImportImpl/unit_ImportFBDThread.pas Download diff

File was changed - ok, show the diff

Updated trunk/Units/unit_Database.pas Download diff

File was changed - ok, show the diff

Updated trunk/Units/unit_Globals.pas Download diff

File was changed - ok, show the diff

Updated trunk/Units/unit_Settings.pas Download diff

File was changed - ok, show the diff

Updated trunk/UtilsImpl/unit_ExportToDeviceThread.pas Download diff

File was changed - ok, show the diff