Changeset 10 for trunk/UFormMain.lfm


Ignore:
Timestamp:
Apr 2, 2016, 12:02:59 AM (8 years ago)
Author:
chronos
Message:
  • Added support for continue previous stopped scan.
  • Modified: Allow to scan only part of drive by specifiing start and end sector.
  • Added: Table showing list of operations in project.
  • Added: Allow to create new project and close project.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UFormMain.lfm

    r9 r10  
    1313  OnShow = FormShow
    1414  LCLVersion = '1.7'
    15   object ListView1: TListView
    16     Left = 16
    17     Height = 390
    18     Top = 136
    19     Width = 552
    20     Columns = <   
    21       item
    22       end   
    23       item
    24         Width = 482
    25       end>
    26     TabOrder = 0
    27   end
    2815  object ButtonScan: TButton
    2916    Left = 120
     
    3219    Width = 75
    3320    Action = AScanStart
    34     TabOrder = 1
     21    TabOrder = 0
    3522  end
    3623  object Image1: TImage
     
    175162    Top = 56
    176163    Width = 93
    177     Action = AScanOptions
    178     TabOrder = 2
     164    Action = AProjectOptions
     165    TabOrder = 1
    179166  end
    180167  object ButtonScan2: TButton
     
    184171    Width = 75
    185172    Action = AScanStop
    186     TabOrder = 3
     173    TabOrder = 2
    187174  end
    188175  object Button1: TButton
     
    192179    Width = 91
    193180    Action = ABrowseDisk
    194     TabOrder = 4
     181    TabOrder = 3
    195182  end
    196183  object EditDrive: TEdit
     
    199186    Top = 8
    200187    Width = 448
    201     TabOrder = 5
    202   end
    203   object ComboBoxRunMode: TComboBox
    204     Left = 17
    205     Height = 34
    206     Top = 88
    207     Width = 247
    208     ItemHeight = 0
    209     ItemIndex = 0
    210     Items.Strings = (
    211       'Read test'
    212       'Write test'
    213     )
    214     Style = csDropDownList
    215     TabOrder = 6
    216     Text = 'Read test'
    217   end
    218   object Label9: TLabel
    219     Left = 286
    220     Height = 24
    221     Top = 95
    222     Width = 121
    223     Caption = 'Data pattern:'
    224     ParentColor = False
    225   end
    226   object EditPattern: TEdit
    227     Left = 440
    228     Height = 34
    229     Top = 88
    230     Width = 80
    231     TabOrder = 7
    232     Text = '0xff'
     188    TabOrder = 4
    233189  end
    234190  object Label10: TLabel
     
    247203    Caption = '  '
    248204    ParentColor = False
     205  end
     206  object Button2: TButton
     207    Left = 286
     208    Height = 25
     209    Top = 56
     210    Width = 107
     211    Action = AScanContinue
     212    TabOrder = 5
     213  end
     214  object ListView1: TListView
     215    Left = 17
     216    Height = 414
     217    Top = 168
     218    Width = 567
     219    Columns = <   
     220      item
     221        Caption = 'Name'
     222      end   
     223      item
     224        Caption = 'Time start'
     225      end   
     226      item
     227        Caption = 'Time end'
     228      end   
     229      item
     230        Caption = 'First sector'
     231      end   
     232      item
     233        Caption = 'Last sector'
     234        Width = 347
     235      end>
     236    OwnerData = True
     237    ReadOnly = True
     238    RowSelect = True
     239    TabOrder = 6
     240    ViewStyle = vsReport
     241    OnData = ListView1Data
     242  end
     243  object Label11: TLabel
     244    Left = 17
     245    Height = 24
     246    Top = 141
     247    Width = 107
     248    Caption = 'Operations:'
     249    ParentColor = False
     250  end
     251  object Button3: TButton
     252    Left = 16
     253    Height = 25
     254    Top = 96
     255    Width = 187
     256    Action = AOperationOptions
     257    Caption = 'Options options'
     258    TabOrder = 7
    249259  end
    250260  object Timer1: TTimer
     
    265275      OnExecute = AScanStopExecute
    266276    end
    267     object AScanOptions: TAction
     277    object AProjectOptions: TAction
    268278      Caption = 'Options'
    269       OnExecute = AScanOptionsExecute
     279      OnExecute = AProjectOptionsExecute
    270280    end
    271281    object ABrowseDisk: TAction
     
    282292    end
    283293    object AFileOpen: TAction
    284       Caption = 'Open'
     294      Caption = 'Open...'
    285295      OnExecute = AFileOpenExecute
    286296    end
     
    289299      OnExecute = AFileSaveExecute
    290300    end
     301    object AScanContinue: TAction
     302      Caption = 'Continue'
     303      OnExecute = AScanContinueExecute
     304    end
     305    object AFileNew: TAction
     306      Caption = 'New'
     307      OnExecute = AFileNewExecute
     308    end
     309    object AFileClose: TAction
     310      Caption = 'Close'
     311      OnExecute = AFileCloseExecute
     312    end
     313    object AOperationOptions: TAction
     314      Caption = 'Options'
     315      OnExecute = AOperationOptionsExecute
     316    end
    291317  end
    292318  object OpenDialog1: TOpenDialog
     
    303329    object MenuItem1: TMenuItem
    304330      Caption = 'File'
     331      object MenuItem10: TMenuItem
     332        Action = AFileNew
     333      end
    305334      object MenuItem2: TMenuItem
    306335        Action = AFileOpen
     
    311340      object MenuItem3: TMenuItem
    312341        Action = AFileSaveAs
     342      end
     343      object MenuItem11: TMenuItem
     344        Action = AFileClose
     345      end
     346      object MenuItem15: TMenuItem
     347        Action = AProjectOptions
     348      end
     349      object MenuItem12: TMenuItem
     350        Caption = '-'
    313351      end
    314352      object MenuItem4: TMenuItem
     
    324362        Action = AScanStop
    325363      end
     364      object MenuItem13: TMenuItem
     365        Action = AScanContinue
     366      end
     367      object MenuItem14: TMenuItem
     368        Caption = '-'
     369      end
    326370      object MenuItem8: TMenuItem
    327         Action = AScanOptions
     371        Action = AOperationOptions
    328372      end
    329373    end
Note: See TracChangeset for help on using the changeset viewer.