Changeset 7
- Timestamp:
- Jan 31, 2018, 11:38:07 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormAbout.lfm
r1 r7 7 7 ClientHeight = 387 8 8 ClientWidth = 524 9 DesignTimePPI = 12010 9 OnCreate = FormCreate 11 10 OnShow = FormShow 12 11 Position = poScreenCenter 13 LCLVersion = '1.8.0. 6'12 LCLVersion = '1.8.0.4' 14 13 object LabelDescription: TLabel 15 14 Left = 25 … … 35 34 object LabelContent: TLabel 36 35 Left = 25 37 Height = 2 036 Height = 26 38 37 Top = 202 39 38 Width = 474 -
trunk/Forms/UFormContact.lfm
r3 r7 7 7 ClientHeight = 490 8 8 ClientWidth = 762 9 DesignTimePPI = 120 10 LCLVersion = '1.8.0.6' 9 OnClose = FormClose 10 OnCreate = FormCreate 11 OnShow = FormShow 12 LCLVersion = '1.8.0.4' 11 13 object PageControlContact: TPageControl 12 14 Left = 8 … … 20 22 object TabSheetGeneral: TTabSheet 21 23 Caption = 'General' 22 ClientHeight = 3 9123 ClientWidth = 73 624 ClientHeight = 380 25 ClientWidth = 738 24 26 object Label1: TLabel 25 27 Left = 13 26 Height = 2 028 Height = 26 27 29 Top = 13 28 Width = 4330 Width = 56 29 31 Caption = 'Name:' 30 32 ParentColor = False … … 32 34 object EditName: TEdit 33 35 Left = 100 34 Height = 2836 Height = 36 35 37 Top = 15 36 38 Width = 212 … … 39 41 object Label2: TLabel 40 42 Left = 13 41 Height = 2 043 Height = 26 42 44 Top = 47 43 Width = 7445 Width = 95 44 46 Caption = 'Cell phone:' 45 47 ParentColor = False … … 47 49 object EditCellPhone: TEdit 48 50 Left = 100 49 Height = 2851 Height = 36 50 52 Top = 49 51 53 Width = 212 … … 54 56 object EditPhone: TEdit 55 57 Left = 100 56 Height = 2858 Height = 36 57 59 Top = 83 58 60 Width = 212 … … 61 63 object Label3: TLabel 62 64 Left = 13 63 Height = 2 065 Height = 26 64 66 Top = 81 65 Width = 4467 Width = 59 66 68 Caption = 'Phone:' 67 69 ParentColor = False … … 69 71 object EditEmail: TEdit 70 72 Left = 479 71 Height = 2873 Height = 36 72 74 Top = 49 73 75 Width = 212 … … 76 78 object Label4: TLabel 77 79 Left = 392 78 Height = 2 080 Height = 26 79 81 Top = 47 80 Width = 4682 Width = 58 81 83 Caption = 'E-mail:' 82 84 ParentColor = False … … 84 86 object EditSurname: TEdit 85 87 Left = 479 86 Height = 2888 Height = 36 87 89 Top = 15 88 90 Width = 212 … … 91 93 object Label5: TLabel 92 94 Left = 392 93 Height = 2 095 Height = 26 94 96 Top = 13 95 Width = 6197 Width = 81 96 98 Caption = 'Surname:' 97 99 ParentColor = False … … 99 101 object MemoNotes: TMemo 100 102 Left = 13 101 Height = 2 25103 Height = 214 102 104 Top = 152 103 Width = 7 08105 Width = 710 104 106 Anchors = [akTop, akLeft, akRight, akBottom] 105 107 TabOrder = 5 … … 107 109 object Label6: TLabel 108 110 Left = 12 109 Height = 2 0111 Height = 26 110 112 Top = 126 111 Width = 42113 Width = 56 112 114 Caption = 'Notes:' 113 115 ParentColor = False … … 119 121 object TabSheetAll: TTabSheet 120 122 Caption = 'All fields' 121 ClientHeight = 3 91122 ClientWidth = 73 6123 ClientHeight = 380 124 ClientWidth = 738 123 125 object ListView1: TListView 124 126 Left = 8 … … 134 136 item 135 137 Caption = 'Value' 136 Width = 200138 Width = 501 137 139 end> 138 140 ReadOnly = True -
trunk/Forms/UFormContact.pas
r3 r7 33 33 TabSheetDetails: TTabSheet; 34 34 TabSheetAll: TTabSheet; 35 procedure FormClose(Sender: TObject; var CloseAction: TCloseAction); 36 procedure FormCreate(Sender: TObject); 37 procedure FormShow(Sender: TObject); 35 38 private 36 39 … … 47 50 {$R *.lfm} 48 51 52 uses 53 UCore; 54 49 55 { TFormContact } 56 57 procedure TFormContact.FormShow(Sender: TObject); 58 begin 59 Core.PersistentForm1.Load(Self); 60 end; 61 62 procedure TFormContact.FormClose(Sender: TObject; var CloseAction: TCloseAction 63 ); 64 begin 65 Core.PersistentForm1.Save(Self); 66 end; 67 68 procedure TFormContact.FormCreate(Sender: TObject); 69 begin 70 Core.CoolTranslator1.TranslateComponentRecursive(Self); 71 end; 50 72 51 73 procedure TFormContact.LoadData(Contact: TContact); -
trunk/Forms/UFormContacts.lfm
r3 r7 7 7 ClientHeight = 605 8 8 ClientWidth = 807 9 DesignTimePPI = 12010 9 OnClose = FormClose 11 10 OnCreate = FormCreate 12 11 OnShow = FormShow 13 LCLVersion = '1.8.0. 6'12 LCLVersion = '1.8.0.4' 14 13 object ListView1: TListView 15 14 Left = 0 … … 29 28 item 30 29 Caption = 'Last Name' 31 Width = 10030 Width = 587 32 31 end> 33 32 OwnerData = True … … 47 46 Width = 807 48 47 Align = alBottom 49 Caption = 'ToolBar1'50 48 Images = Core.ImageList1 51 49 TabOrder = 1 … … 56 54 end 57 55 object ToolButton2: TToolButton 58 Left = 2456 Left = 30 59 57 Top = 2 60 58 Action = AModify 61 59 end 62 60 object ToolButton3: TToolButton 63 Left = 4761 Left = 59 64 62 Top = 2 65 63 Action = ARemove -
trunk/Forms/UFormMain.lfm
r1 r7 35 35 AnchorSideTop.Control = CoolBar1 36 36 Left = 24 37 Height = 2 837 Height = 22 38 38 Top = 5 39 Width = 1 3239 Width = 105 40 40 Align = alNone 41 41 AutoSize = True … … 55 55 end 56 56 object ToolButton2: TToolButton 57 Left = 3057 Left = 24 58 58 Top = 0 59 59 Action = Core.AFileOpen … … 62 62 end 63 63 object ToolButton3: TToolButton 64 Left = 7464 Left = 59 65 65 Top = 0 66 66 Action = Core.AFileSave 67 67 end 68 68 object ToolButton4: TToolButton 69 Left = 10369 Left = 82 70 70 Top = 0 71 71 Action = Core.AFileClose … … 76 76 AnchorSideTop.Control = CoolBar1 77 77 Left = 188 78 Height = 2 878 Height = 22 79 79 Top = 5 80 Width = 3080 Width = 24 81 81 Align = alNone 82 82 AutoSize = True -
trunk/Install/deb/debian/rules
r5 r7 17 17 install -s -m 755 vCardStudio $(ROOT)/usr/bin 18 18 install -d -m 755 $(ROOT)/usr/share/vCardStudio/languages 19 install -m 755 Languages/ AcronymDecoder.po $(ROOT)/usr/share/vCardStudio/languages20 install -m 755 Languages/ AcronymDecoder.cs.po $(ROOT)/usr/share/vCardStudio/languages19 install -m 755 Languages/vCardStudio.po $(ROOT)/usr/share/vCardStudio/languages 20 install -m 755 Languages/vCardStudio.cs.po $(ROOT)/usr/share/vCardStudio/languages 21 21 install -d -m 755 $(ROOT)/usr/share/applications 22 22 install -m 755 Install/deb/vCardStudio.desktop $(ROOT)/usr/share/applications -
trunk/Languages
-
Property svn:ignore
set to
*.mo
-
Property svn:ignore
set to
-
trunk/Languages/vCardStudio.po
r3 r7 11 11 12 12 #: tcore.afileclose.caption 13 msgctxt "tcore.afileclose.caption" 13 14 msgid "Close" 14 15 msgstr "" … … 36 37 37 38 #: tcore.ahomepage.caption 39 msgctxt "tcore.ahomepage.caption" 38 40 msgid "Home page" 39 41 msgstr "" … … 44 46 msgstr "" 45 47 48 #: tformabout.buttonclose.caption 49 msgctxt "tformabout.buttonclose.caption" 50 msgid "Close" 51 msgstr "" 52 53 #: tformabout.buttonhomepage.caption 54 msgctxt "tformabout.buttonhomepage.caption" 55 msgid "Home page" 56 msgstr "" 57 58 #: tformabout.caption 59 msgid "About" 60 msgstr "" 61 62 #: tformabout.labelcontent.caption 63 msgid " " 64 msgstr "" 65 46 66 #: tformcontact.buttoncancel.caption 47 67 msgctxt "tformcontact.buttoncancel.caption" … … 129 149 msgstr "" 130 150 131 #: tformcontacts.toolbar1.caption132 msgid "ToolBar1"133 msgstr ""134 135 151 #: tformmain.caption 136 152 msgid "FormMain" -
trunk/UCore.lfm
r3 r7 7 7 VerticalOffset = 428 8 8 Width = 1020 9 PPI = 12010 9 object ImageList1: TImageList 11 10 left = 200
Note:
See TracChangeset
for help on using the changeset viewer.