Changeset 27 for trunk/Forms
- Timestamp:
- Sep 10, 2022, 8:13:14 PM (2 years ago)
- Location:
- trunk/Forms
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormConnect.lfm
r26 r27 139 139 end 140 140 object TabSheetSqlite: TTabSheet 141 Caption = 'TabSheetSqlite'142 141 end 143 142 object TabSheetRegistry: TTabSheet 144 Caption = 'TabSheetRegistry'145 143 end 146 144 end -
trunk/Forms/UFormConnect.lrj
r26 r27 8 8 {"hash":77164181,"name":"tformconnect.buttonxmlbrowse.caption","sourcebytes":[66,114,111,119,115,101],"value":"Browse"}, 9 9 {"hash":5204602,"name":"tformconnect.label4.caption","sourcebytes":[72,111,115,116,58],"value":"Host:"}, 10 {"hash":5728634,"name":"tformconnect.label5.caption","sourcebytes":[80,111,114,116,58],"value":"Port:"}, 11 {"hash":249552581,"name":"tformconnect.tabsheetsqlite.caption","sourcebytes":[84,97,98,83,104,101,101,116,83,113,108,105,116,101],"value":"TabSheetSqlite"}, 12 {"hash":38716777,"name":"tformconnect.tabsheetregistry.caption","sourcebytes":[84,97,98,83,104,101,101,116,82,101,103,105,115,116,114,121],"value":"TabSheetRegistry"} 10 {"hash":5728634,"name":"tformconnect.label5.caption","sourcebytes":[80,111,114,116,58],"value":"Port:"} 13 11 ]} -
trunk/Forms/UFormMain.lfm
r22 r27 1 1 object FormMain: TFormMain 2 2 Left = 449 3 Height = 8494 Top = 2785 Width = 1 2503 Height = 1274 4 Top = 108 5 Width = 1875 6 6 Caption = 'MyData' 7 ClientHeight = 815 8 ClientWidth = 1250 7 ClientHeight = 1240 8 ClientWidth = 1875 9 DesignTimePPI = 144 9 10 Menu = MainMenu1 10 11 OnActivate = FormActivate 11 12 OnClose = FormClose 12 13 OnShow = FormShow 13 LCLVersion = ' 1.8.0.4'14 LCLVersion = '2.2.2.0' 14 15 WindowState = wsMaximized 15 16 object StatusBar1: TStatusBar 16 17 Left = 0 17 Height = 3018 Top = 78519 Width = 1 25018 Height = 28 19 Top = 1212 20 Width = 1875 20 21 Panels = <> 21 22 end 22 23 object CoolBar1: TCoolBar 23 24 Left = 0 24 Height = 4 325 Height = 44 25 26 Top = 0 26 Width = 1 25027 Width = 1875 27 28 AutoSize = True 28 29 Bands = < … … 41 42 Height = 33 42 43 Top = 5 43 Width = 1 0844 Width = 150 44 45 Align = alNone 45 46 BorderSpacing.Left = 22 46 47 BorderSpacing.Top = 3 47 Caption = 'ToolBar1'48 48 EdgeInner = esNone 49 49 EdgeOuter = esNone … … 57 57 end 58 58 object ToolButton2: TToolButton 59 Left = 3 759 Left = 36 60 60 Top = 0 61 61 Action = Core.ADatabaseDisconnect 62 62 end 63 63 object ToolButton3: TToolButton 64 Left = 7 364 Left = 71 65 65 Top = 0 66 66 Action = Core.APreferences … … 70 70 object MainMenu1: TMainMenu 71 71 Images = Core.ImageList1 72 left = 82473 top = 21672 Left = 1236 73 Top = 324 74 74 object MenuItem1: TMenuItem 75 75 Caption = 'Database' -
trunk/Forms/UFormMain.lrj
r26 r27 1 1 {"version":1,"strings":[ 2 2 {"hash":88975521,"name":"tformmain.caption","sourcebytes":[77,121,68,97,116,97],"value":"MyData"}, 3 {"hash":106991073,"name":"tformmain.toolbar1.caption","sourcebytes":[84,111,111,108,66,97,114,49],"value":"ToolBar1"},4 3 {"hash":145198133,"name":"tformmain.menuitem1.caption","sourcebytes":[68,97,116,97,98,97,115,101],"value":"Database"}, 5 4 {"hash":5989939,"name":"tformmain.menuitempreferences.caption","sourcebytes":[84,111,111,108,115],"value":"Tools"}, -
trunk/Forms/UFormMain.pas
r26 r27 31 31 procedure FormClose(Sender: TObject; var CloseAction: TCloseAction); 32 32 procedure FormShow(Sender: TObject); 33 private 34 procedure SetToolbarHints; 33 35 public 34 36 procedure DockInit; … … 65 67 begin 66 68 Core.PersistentForm1.Load(Self, True); 69 SetToolbarHints; 67 70 DockInit; 68 71 end; … … 85 88 end; 86 89 90 procedure TFormMain.SetToolbarHints; 91 var 92 I: Integer; 93 J: Integer; 94 Control: TControl; 95 begin 96 for J := 0 to CoolBar1.ControlCount - 1 do begin 97 Control := CoolBar1.Controls[J]; 98 if Control is TToolBar then begin 99 for I := 0 to TToolBar(Control).ButtonCount - 1 do begin 100 TToolBar(Control).Buttons[I].ShowHint := True; 101 TToolBar(Control).Buttons[I].Hint := TToolBar(Control).Buttons[I].Caption; 102 end; 103 end; 104 end; 105 end; 106 87 107 end. 88 108 -
trunk/Forms/UFormRecord.lfm
r19 r27 12 12 OnShow = FormShow 13 13 Position = poMainFormCenter 14 LCLVersion = ' 1.8.2.0'14 LCLVersion = '2.2.2.0' 15 15 object Panel1: TPanel 16 16 Left = 4 … … 37 37 Left = 648 38 38 Height = 27 39 Top = 60 139 Top = 603 40 40 Width = 72 41 41 Anchors = [akRight, akBottom] … … 46 46 object ActionList1: TActionList 47 47 Images = Core.ImageList1 48 left = 42349 top = 37948 Left = 423 49 Top = 379 50 50 object ASave: TAction 51 51 Caption = 'Save' -
trunk/Forms/UFormRecord.lrj
r26 r27 1 1 {"version":1,"strings":[ 2 {"hash": 42946580,"name":"tformrecord.caption","sourcebytes":[70,111,114,109,82,101,99,111,114,100],"value":"FormRecord"},2 {"hash":93038212,"name":"tformrecord.caption","sourcebytes":[82,101,99,111,114,100],"value":"Record"}, 3 3 {"hash":1371,"name":"tformrecord.buttonok.caption","sourcebytes":[79,107],"value":"Ok"}, 4 4 {"hash":77089212,"name":"tformrecord.buttoncancel.caption","sourcebytes":[67,97,110,99,101,108],"value":"Cancel"},
Note:
See TracChangeset
for help on using the changeset viewer.