source: trunk/Forms/FormMain.lfm

Last change on this file was 60, checked in by chronos, 6 weeks ago
  • Modified: Remove U prefix from unit names.
File size: 1.3 KB
Line 
1object FormMain: TFormMain
2 Left = 566
3 Height = 1030
4 Top = 262
5 Width = 1398
6 Caption = 'Screen 1 - ChronOS'
7 ClientHeight = 1030
8 ClientWidth = 1398
9 DesignTimePPI = 144
10 Menu = MainMenu1
11 OnClose = FormClose
12 OnCreate = FormCreate
13 OnDestroy = FormDestroy
14 OnKeyDown = FormKeyDown
15 OnShow = FormShow
16 LCLVersion = '3.2.0.0'
17 object PaintBox1: TPaintBox
18 Left = 0
19 Height = 1030
20 Top = 0
21 Width = 1398
22 Align = alClient
23 OnClick = PaintBox1Click
24 OnPaint = PaintBox1Paint
25 OnResize = PaintBox1Resize
26 end
27 object MainMenu1: TMainMenu
28 Left = 752
29 Top = 95
30 object MenuItem1: TMenuItem
31 Caption = 'Actions'
32 object MenuItem2: TMenuItem
33 Action = AFullscreen
34 end
35 object MenuItem4: TMenuItem
36 Action = AShowTerminal
37 end
38 object MenuItem3: TMenuItem
39 Action = AExit
40 end
41 end
42 end
43 object ActionList1: TActionList
44 Left = 776
45 Top = 305
46 object AFullscreen: TAction
47 Caption = 'Fullscreen'
48 OnExecute = AFullscreenExecute
49 end
50 object AExit: TAction
51 Caption = 'Exit'
52 OnExecute = AExitExecute
53 end
54 object AShowTerminal: TAction
55 Caption = 'Show terminal'
56 OnExecute = AShowTerminalExecute
57 end
58 end
59 object Timer1: TTimer
60 Interval = 10
61 OnTimer = Timer1Timer
62 Left = 270
63 Top = 422
64 end
65end
Note: See TracBrowser for help on using the repository browser.