Ignore:
Timestamp:
Jun 26, 2023, 6:08:23 PM (11 months ago)
Author:
chronos
Message:
  • Added: Support for procedures.
  • Added: Project pascal file can be opened from main menu. Last file name is remembered.
  • Modified: Improved XML output of source structure.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/xpascal/Forms/FormMain.lfm

    r230 r233  
    1010  Menu = MainMenu1
    1111  OnActivate = FormActivate
     12  OnClose = FormClose
    1213  OnCreate = FormCreate
    1314  OnDestroy = FormDestroy
     
    4950  object MainMenu1: TMainMenu
    5051    Left = 744
    51     Top = 760
     52    Top = 759
    5253    object MenuItemFile: TMenuItem
    5354      Caption = 'File'
     55      object MenuItem10: TMenuItem
     56        Action = AFileOpen
     57      end
    5458      object MenuItem6: TMenuItem
    5559        Action = AExit
     
    129133      OnExecute = AConsoleExecute
    130134    end
     135    object AFileOpen: TAction
     136      Caption = 'Open...'
     137      OnExecute = AFileOpenExecute
     138    end
     139  end
     140  object OpenDialog1: TOpenDialog
     141    DefaultExt = '.pas'
     142    Filter = 'Pascal file (.pas)|*.pas|Any file|*.*'
     143    Left = 536
     144    Top = 759
     145  end
     146  object ApplicationInfo1: TApplicationInfo
     147    Identification = 1
     148    VersionMajor = 1
     149    VersionMinor = 0
     150    VersionBugFix = 0
     151    AuthorsName = 'Chronosoft'
     152    EmailContact = 'robie@centrum.cz'
     153    AppName = 'xPascal'
     154    Description = 'Pascal mutli language transpiler and interpreter'
     155    RegistryKey = '\Software\xpascal'
     156    RegistryRoot = rrKeyCurrentUser
     157    License = 'CC0'
     158    Left = 348
     159    Top = 274
    131160  end
    132161end
Note: See TracChangeset for help on using the changeset viewer.