Changeset 7 for trunk/UFormMain.lfm


Ignore:
Timestamp:
Mar 30, 2016, 11:32:54 PM (8 years ago)
Author:
chronos
Message:
  • Added: Main menu with available actions.
  • Added: Basic functionality to save project to file and open project from file.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UFormMain.lfm

    r4 r7  
    11object FormMain: TFormMain
    2   Left = 301
     2  Left = 442
    33  Height = 941
    4   Top = 361
     4  Top = 366
    55  Width = 1703
    66  Caption = 'CoolDisk'
    7   ClientHeight = 939
     7  ClientHeight = 909
    88  ClientWidth = 1703
    99  Menu = MainMenu1
     
    3636  object Image1: TImage
    3737    Left = 592
    38     Height = 908
     38    Height = 878
    3939    Top = 10
    4040    Width = 1092
     
    248248    ParentColor = False
    249249  end
    250   object MainMenu1: TMainMenu
    251     left = 323
    252     top = 288
    253   end
    254250  object Timer1: TTimer
    255251    Interval = 500
     
    277273      OnExecute = ABrowseDiskExecute
    278274    end
     275    object AExit: TAction
     276      Caption = 'Exit'
     277      OnExecute = AExitExecute
     278    end
     279    object AFileSaveAs: TAction
     280      Caption = 'Save as...'
     281      OnExecute = AFileSaveAsExecute
     282    end
     283    object AFileOpen: TAction
     284      Caption = 'Open'
     285      OnExecute = AFileOpenExecute
     286    end
    279287  end
    280288  object OpenDialog1: TOpenDialog
     
    282290    top = 360
    283291  end
     292  object SaveDialog1: TSaveDialog
     293    left = 672
     294    top = 432
     295  end
     296  object MainMenu1: TMainMenu
     297    left = 672
     298    top = 504
     299    object MenuItem1: TMenuItem
     300      Caption = 'File'
     301      object MenuItem2: TMenuItem
     302        Action = AFileOpen
     303      end
     304      object MenuItem3: TMenuItem
     305        Action = AFileSaveAs
     306      end
     307      object MenuItem4: TMenuItem
     308        Action = AExit
     309      end
     310    end
     311    object MenuItem5: TMenuItem
     312      Caption = 'Scan'
     313      object MenuItem6: TMenuItem
     314        Action = AScanStart
     315      end
     316      object MenuItem7: TMenuItem
     317        Action = AScanStop
     318      end
     319      object MenuItem8: TMenuItem
     320        Action = AScanOptions
     321      end
     322    end
     323  end
    284324end
Note: See TracChangeset for help on using the changeset viewer.