source: trunk/UCore.lfm

Last change on this file was 41, checked in by chronos, 5 years ago
  • Modified: Update project web links.
File size: 3.6 KB
Line 
1object Core: TCore
2 OnCreate = DataModuleCreate
3 OnDestroy = DataModuleDestroy
4 OldCreateOrder = False
5 Height = 614
6 HorizontalOffset = 253
7 VerticalOffset = 184
8 Width = 1071
9 PPI = 120
10 object ActionList1: TActionList
11 Images = ImageList1
12 left = 251
13 top = 200
14 object AExit: TAction
15 Caption = 'Exit'
16 OnExecute = AExitExecute
17 end
18 object AImageClear: TAction
19 Category = 'Image'
20 Caption = 'Clear'
21 OnExecute = AImageClearExecute
22 end
23 object AZoomIn: TAction
24 Category = 'View'
25 Caption = 'Zoom in'
26 OnExecute = AZoomInExecute
27 ShortCut = 107
28 end
29 object AZoomOut: TAction
30 Category = 'View'
31 Caption = 'Zoom out'
32 OnExecute = AZoomOutExecute
33 ShortCut = 109
34 end
35 object AZoomAll: TAction
36 Category = 'View'
37 Caption = 'Zoom all'
38 OnExecute = AZoomAllExecute
39 end
40 object AZoomNormal: TAction
41 Category = 'View'
42 Caption = 'Zoom 100%'
43 OnExecute = AZoomNormalExecute
44 end
45 object AFileNew: TAction
46 Category = 'File'
47 Caption = 'New...'
48 OnExecute = AFileNewExecute
49 ShortCut = 16462
50 end
51 object AFileOpen: TAction
52 Category = 'File'
53 Caption = 'Open...'
54 OnExecute = AFileOpenExecute
55 ShortCut = 16463
56 end
57 object AFileClose: TAction
58 Category = 'File'
59 Caption = 'Close'
60 OnExecute = AFileCloseExecute
61 end
62 object AFileSave: TAction
63 Category = 'File'
64 Caption = 'Save'
65 OnExecute = AFileSaveExecute
66 ShortCut = 16467
67 end
68 object AFileSaveAs: TAction
69 Category = 'File'
70 Caption = 'Save as...'
71 OnExecute = AFileSaveAsExecute
72 end
73 object AImageRandom: TAction
74 Category = 'Image'
75 Caption = 'Random'
76 OnExecute = AImageRandomExecute
77 end
78 object AImageFlip: TAction
79 Category = 'Image'
80 Caption = 'Flip'
81 OnExecute = AImageFlipExecute
82 end
83 object AImageMirror: TAction
84 Category = 'Image'
85 Caption = 'Mirror'
86 OnExecute = AImageMirrorExecute
87 end
88 object AImageGradient: TAction
89 Category = 'Image'
90 Caption = 'Gradient'
91 OnExecute = AImageGradientExecute
92 end
93 object AImageNegative: TAction
94 Category = 'Image'
95 Caption = 'Negative'
96 OnExecute = AImageNegativeExecute
97 end
98 object AToolPen: TAction
99 Category = 'Tool'
100 Caption = 'Pen'
101 OnExecute = AToolPenExecute
102 end
103 object AToolMove: TAction
104 Category = 'Tool'
105 Caption = 'Move'
106 OnExecute = AToolMoveExecute
107 end
108 object ASettings: TAction
109 Caption = 'Settings'
110 OnExecute = ASettingsExecute
111 end
112 end
113 object ImageList1: TImageList
114 left = 250
115 top = 300
116 end
117 object OpenPictureDialog1: TOpenPictureDialog
118 left = 578
119 top = 158
120 end
121 object SavePictureDialog1: TSavePictureDialog
122 left = 578
123 top = 260
124 end
125 object PersistentForm1: TPersistentForm
126 MinVisiblePart = 50
127 EntireVisible = False
128 left = 80
129 top = 60
130 end
131 object ApplicationInfo1: TApplicationInfo
132 Identification = 1
133 VersionMajor = 1
134 VersionMinor = 0
135 VersionBugFix = 0
136 VersionSuffix = 'alfa'
137 CompanyName = 'Chronosoft'
138 HomePage = 'https://app.zdechov.net/LibrePaint'
139 AuthorsName = 'Chronos'
140 EmailContact = 'robie@centrum.cz'
141 AppName = 'LibrePaint'
142 ReleaseDate = 42726
143 RegistryKey = '\Software\Chronosoft\LibrePaint'
144 RegistryRoot = rrKeyCurrentUser
145 License = 'CC0'
146 left = 78
147 top = 166
148 end
149 object CoolTranslator1: TCoolTranslator
150 POFilesFolder = 'Languages'
151 left = 250
152 top = 72
153 end
154end
Note: See TracBrowser for help on using the repository browser.