tvplanit: New calendar icon by Roland Hahn.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8476 8e941d3f-bd1b-0410-a28a-d453659cc2b4
@ -12,7 +12,6 @@ object frmReportSetup: TfrmReportSetup
|
|||||||
OnCreate = FormCreate
|
OnCreate = FormCreate
|
||||||
OnShow = FormShow
|
OnShow = FormShow
|
||||||
Position = poMainFormCenter
|
Position = poMainFormCenter
|
||||||
LCLVersion = '1.6.4.0'
|
|
||||||
object Panel1: TPanel
|
object Panel1: TPanel
|
||||||
AnchorSideLeft.Control = Owner
|
AnchorSideLeft.Control = Owner
|
||||||
AnchorSideTop.Control = Owner
|
AnchorSideTop.Control = Owner
|
||||||
@ -37,6 +36,7 @@ object frmReportSetup: TfrmReportSetup
|
|||||||
BorderSpacing.Left = 8
|
BorderSpacing.Left = 8
|
||||||
BorderSpacing.Right = 8
|
BorderSpacing.Right = 8
|
||||||
Caption = 'Start Date:'
|
Caption = 'Start Date:'
|
||||||
|
Color = clDefault
|
||||||
FocusControl = edStartDate
|
FocusControl = edStartDate
|
||||||
ParentColor = False
|
ParentColor = False
|
||||||
end
|
end
|
||||||
@ -52,6 +52,7 @@ object frmReportSetup: TfrmReportSetup
|
|||||||
BorderSpacing.Left = 8
|
BorderSpacing.Left = 8
|
||||||
BorderSpacing.Right = 8
|
BorderSpacing.Right = 8
|
||||||
Caption = 'End Date:'
|
Caption = 'End Date:'
|
||||||
|
Color = clDefault
|
||||||
FocusControl = edEndDate
|
FocusControl = edEndDate
|
||||||
ParentColor = False
|
ParentColor = False
|
||||||
end
|
end
|
||||||
@ -67,6 +68,7 @@ object frmReportSetup: TfrmReportSetup
|
|||||||
BorderSpacing.Left = 8
|
BorderSpacing.Left = 8
|
||||||
BorderSpacing.Right = 8
|
BorderSpacing.Right = 8
|
||||||
Caption = 'Format:'
|
Caption = 'Format:'
|
||||||
|
Color = clDefault
|
||||||
FocusControl = PrintFormatCombo
|
FocusControl = PrintFormatCombo
|
||||||
ParentColor = False
|
ParentColor = False
|
||||||
end
|
end
|
||||||
@ -85,7 +87,7 @@ object frmReportSetup: TfrmReportSetup
|
|||||||
Borderspacing.Bottom = 12
|
Borderspacing.Bottom = 12
|
||||||
ItemHeight = 15
|
ItemHeight = 15
|
||||||
Sorted = True
|
Sorted = True
|
||||||
TabOrder = 0
|
TabOrder = 2
|
||||||
end
|
end
|
||||||
object edStartDate: TDateEdit
|
object edStartDate: TDateEdit
|
||||||
AnchorSideTop.Control = Panel1
|
AnchorSideTop.Control = Panel1
|
||||||
@ -103,7 +105,7 @@ object frmReportSetup: TfrmReportSetup
|
|||||||
BorderSpacing.Right = 8
|
BorderSpacing.Right = 8
|
||||||
NumGlyphs = 1
|
NumGlyphs = 1
|
||||||
MaxLength = 0
|
MaxLength = 0
|
||||||
TabOrder = 1
|
TabOrder = 0
|
||||||
end
|
end
|
||||||
object edEndDate: TDateEdit
|
object edEndDate: TDateEdit
|
||||||
AnchorSideLeft.Control = edStartDate
|
AnchorSideLeft.Control = edStartDate
|
||||||
@ -122,7 +124,22 @@ object frmReportSetup: TfrmReportSetup
|
|||||||
BorderSpacing.Top = 8
|
BorderSpacing.Top = 8
|
||||||
NumGlyphs = 1
|
NumGlyphs = 1
|
||||||
MaxLength = 0
|
MaxLength = 0
|
||||||
TabOrder = 2
|
TabOrder = 1
|
||||||
|
end
|
||||||
|
object Bevel1: TBevel
|
||||||
|
AnchorSideLeft.Control = Panel1
|
||||||
|
AnchorSideRight.Control = Panel1
|
||||||
|
AnchorSideRight.Side = asrBottom
|
||||||
|
AnchorSideBottom.Control = Panel1
|
||||||
|
AnchorSideBottom.Side = asrBottom
|
||||||
|
Left = 8
|
||||||
|
Height = 3
|
||||||
|
Top = 102
|
||||||
|
Width = 249
|
||||||
|
Anchors = [akLeft, akRight, akBottom]
|
||||||
|
BorderSpacing.Left = 8
|
||||||
|
BorderSpacing.Right = 8
|
||||||
|
Shape = bsBottomLine
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
object ButtonPanel: TPanel
|
object ButtonPanel: TPanel
|
||||||
@ -133,10 +150,11 @@ object frmReportSetup: TfrmReportSetup
|
|||||||
AnchorSideRight.Side = asrBottom
|
AnchorSideRight.Side = asrBottom
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 33
|
Height = 33
|
||||||
Top = 105
|
Top = 113
|
||||||
Width = 265
|
Width = 265
|
||||||
Anchors = [akTop, akLeft, akRight]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
AutoSize = True
|
AutoSize = True
|
||||||
|
BorderSpacing.Top = 8
|
||||||
BevelOuter = bvNone
|
BevelOuter = bvNone
|
||||||
ClientHeight = 33
|
ClientHeight = 33
|
||||||
ClientWidth = 265
|
ClientWidth = 265
|
||||||
|
@ -41,6 +41,7 @@ type
|
|||||||
{ TfrmReportSetup }
|
{ TfrmReportSetup }
|
||||||
|
|
||||||
TfrmReportSetup = class(TForm)
|
TfrmReportSetup = class(TForm)
|
||||||
|
Bevel1: TBevel;
|
||||||
btnOK: TButton;
|
btnOK: TButton;
|
||||||
btnCancel: TButton;
|
btnCancel: TButton;
|
||||||
lblStartDate: TLabel;
|
lblStartDate: TLabel;
|
||||||
@ -100,6 +101,8 @@ end;
|
|||||||
|
|
||||||
procedure TfrmReportSetup.FormCreate(Sender: TObject);
|
procedure TfrmReportSetup.FormCreate(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
|
LoadGlyphFromRCDATA(edStartDate.Glyph, 'VpDateEdit', 16, 24, 32);
|
||||||
|
LoadGlyphFromRCDATA(edEndDate.Glyph, 'VpDateEdit', 16, 24, 32);
|
||||||
SetCaptions;
|
SetCaptions;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 230 B After Width: | Height: | Size: 368 B |
Before Width: | Height: | Size: 277 B After Width: | Height: | Size: 491 B |
Before Width: | Height: | Size: 306 B After Width: | Height: | Size: 581 B |
Before Width: | Height: | Size: 252 B After Width: | Height: | Size: 354 B |
Before Width: | Height: | Size: 296 B After Width: | Height: | Size: 486 B |
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 584 B |
@ -146,6 +146,30 @@ msgstr "Mittwoch"
|
|||||||
msgid "XML files (*.xml)"
|
msgid "XML files (*.xml)"
|
||||||
msgstr "XML-Dateien (*.XML)"
|
msgstr "XML-Dateien (*.XML)"
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btncancel.caption
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btnok.caption
|
||||||
|
msgid "OK"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.caption
|
||||||
|
msgid "Report Setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblenddate.caption
|
||||||
|
msgid "End Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblformat.caption
|
||||||
|
msgid "Format:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblstartdate.caption
|
||||||
|
msgid "Start Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: tmainform.btndeleteres.caption
|
#: tmainform.btndeleteres.caption
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Löschen"
|
msgstr "Löschen"
|
||||||
|
@ -143,6 +143,30 @@ msgstr "Wednesday"
|
|||||||
msgid "XML files (*.xml)"
|
msgid "XML files (*.xml)"
|
||||||
msgstr "XML files (*.xml)"
|
msgstr "XML files (*.xml)"
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btncancel.caption
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btnok.caption
|
||||||
|
msgid "OK"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.caption
|
||||||
|
msgid "Report Setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblenddate.caption
|
||||||
|
msgid "End Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblformat.caption
|
||||||
|
msgid "Format:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblstartdate.caption
|
||||||
|
msgid "Start Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: tmainform.btndeleteres.caption
|
#: tmainform.btndeleteres.caption
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Delete"
|
msgstr "Delete"
|
||||||
|
@ -136,6 +136,30 @@ msgstr "Keskiviikko"
|
|||||||
msgid "XML files (*.xml)"
|
msgid "XML files (*.xml)"
|
||||||
msgstr "XML tiedostot (*xml)"
|
msgstr "XML tiedostot (*xml)"
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btncancel.caption
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btnok.caption
|
||||||
|
msgid "OK"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.caption
|
||||||
|
msgid "Report Setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblenddate.caption
|
||||||
|
msgid "End Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblformat.caption
|
||||||
|
msgid "Format:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblstartdate.caption
|
||||||
|
msgid "Start Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: tmainform.btndeleteres.caption
|
#: tmainform.btndeleteres.caption
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -135,6 +135,30 @@ msgstr "Woensdag"
|
|||||||
msgid "XML files (*.xml)"
|
msgid "XML files (*.xml)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btncancel.caption
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btnok.caption
|
||||||
|
msgid "OK"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.caption
|
||||||
|
msgid "Report Setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblenddate.caption
|
||||||
|
msgid "End Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblformat.caption
|
||||||
|
msgid "Format:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblstartdate.caption
|
||||||
|
msgid "Start Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: tmainform.btndeleteres.caption
|
#: tmainform.btndeleteres.caption
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -146,6 +146,30 @@ msgstr "Środa"
|
|||||||
msgid "XML files (*.xml)"
|
msgid "XML files (*.xml)"
|
||||||
msgstr "Plik XML (*.XML)"
|
msgstr "Plik XML (*.XML)"
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btncancel.caption
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btnok.caption
|
||||||
|
msgid "OK"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.caption
|
||||||
|
msgid "Report Setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblenddate.caption
|
||||||
|
msgid "End Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblformat.caption
|
||||||
|
msgid "Format:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblstartdate.caption
|
||||||
|
msgid "Start Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: tmainform.btndeleteres.caption
|
#: tmainform.btndeleteres.caption
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Usuń"
|
msgstr "Usuń"
|
||||||
|
@ -133,6 +133,30 @@ msgstr ""
|
|||||||
msgid "XML files (*.xml)"
|
msgid "XML files (*.xml)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btncancel.caption
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btnok.caption
|
||||||
|
msgid "OK"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.caption
|
||||||
|
msgid "Report Setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblenddate.caption
|
||||||
|
msgid "End Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblformat.caption
|
||||||
|
msgid "Format:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblstartdate.caption
|
||||||
|
msgid "Start Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: tmainform.btndeleteres.caption
|
#: tmainform.btndeleteres.caption
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -145,6 +145,30 @@ msgstr "Среда"
|
|||||||
msgid "XML files (*.xml)"
|
msgid "XML files (*.xml)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btncancel.caption
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.btnok.caption
|
||||||
|
msgid "OK"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.caption
|
||||||
|
msgid "Report Setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblenddate.caption
|
||||||
|
msgid "End Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblformat.caption
|
||||||
|
msgid "Format:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tfrmreportsetup.lblstartdate.caption
|
||||||
|
msgid "Start Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: tmainform.btndeleteres.caption
|
#: tmainform.btndeleteres.caption
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|