You've already forked lazarus-ccr
tvplanit: Add loading of saved print formats to FullDemo.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5047 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -787,6 +787,7 @@ object MainForm: TMainForm
|
|||||||
OnPlaySound = VpBufDSDataStore1PlaySound
|
OnPlaySound = VpBufDSDataStore1PlaySound
|
||||||
AutoConnect = True
|
AutoConnect = True
|
||||||
AutoCreate = True
|
AutoCreate = True
|
||||||
|
DayBuffer = 31
|
||||||
Directory = 'data'
|
Directory = 'data'
|
||||||
left = 312
|
left = 312
|
||||||
top = 128
|
top = 128
|
||||||
@ -1961,6 +1962,13 @@ object MainForm: TMainForm
|
|||||||
Caption = 'Edit print formats...'
|
Caption = 'Edit print formats...'
|
||||||
OnClick = MnuEditPrintFormatsClick
|
OnClick = MnuEditPrintFormatsClick
|
||||||
end
|
end
|
||||||
|
object MnuLoadPrintFormats: TMenuItem
|
||||||
|
Caption = 'Load print formats...'
|
||||||
|
OnClick = MnuLoadPrintFormatsClick
|
||||||
|
end
|
||||||
|
object MenuItem4: TMenuItem
|
||||||
|
Caption = '-'
|
||||||
|
end
|
||||||
object MnuPrintPreview: TMenuItem
|
object MnuPrintPreview: TMenuItem
|
||||||
Caption = 'Print preview...'
|
Caption = 'Print preview...'
|
||||||
OnClick = MnuPrintPreviewClick
|
OnClick = MnuPrintPreviewClick
|
||||||
@ -2033,4 +2041,11 @@ object MainForm: TMainForm
|
|||||||
left = 712
|
left = 712
|
||||||
top = 192
|
top = 192
|
||||||
end
|
end
|
||||||
|
object OpenDialog: TOpenDialog
|
||||||
|
DefaultExt = '.xml'
|
||||||
|
Filter = 'xml files (*.xml)|*.xml'
|
||||||
|
Options = [ofFileMustExist, ofEnableSizing, ofViewDetail]
|
||||||
|
left = 560
|
||||||
|
top = 440
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
@ -38,11 +38,14 @@ type
|
|||||||
LblLanguage: TLabel;
|
LblLanguage: TLabel;
|
||||||
LblVisibleDays: TLabel;
|
LblVisibleDays: TLabel;
|
||||||
MenuItem3: TMenuItem;
|
MenuItem3: TMenuItem;
|
||||||
|
MenuItem4: TMenuItem;
|
||||||
|
MnuLoadPrintFormats: TMenuItem;
|
||||||
MnuPrint: TMenuItem;
|
MnuPrint: TMenuItem;
|
||||||
MnuEditPrintFormats: TMenuItem;
|
MnuEditPrintFormats: TMenuItem;
|
||||||
MnuPrintPreview: TMenuItem;
|
MnuPrintPreview: TMenuItem;
|
||||||
Notebook: TNotebook;
|
Notebook: TNotebook;
|
||||||
Events: TPage;
|
Events: TPage;
|
||||||
|
OpenDialog: TOpenDialog;
|
||||||
Tasks: TPage;
|
Tasks: TPage;
|
||||||
Contacts: TPage;
|
Contacts: TPage;
|
||||||
Resources: TPage;
|
Resources: TPage;
|
||||||
@ -96,6 +99,7 @@ type
|
|||||||
procedure FormCreate(Sender: TObject);
|
procedure FormCreate(Sender: TObject);
|
||||||
procedure MnuAboutClick(Sender: TObject);
|
procedure MnuAboutClick(Sender: TObject);
|
||||||
procedure MnuEditPrintFormatsClick(Sender: TObject);
|
procedure MnuEditPrintFormatsClick(Sender: TObject);
|
||||||
|
procedure MnuLoadPrintFormatsClick(Sender: TObject);
|
||||||
procedure MnuPrintClick(Sender: TObject);
|
procedure MnuPrintClick(Sender: TObject);
|
||||||
procedure MnuPrintPreviewClick(Sender: TObject);
|
procedure MnuPrintPreviewClick(Sender: TObject);
|
||||||
procedure MnuQuitClick(Sender: TObject);
|
procedure MnuQuitClick(Sender: TObject);
|
||||||
@ -191,6 +195,7 @@ resourcestring
|
|||||||
RSFlat = 'flat';
|
RSFlat = 'flat';
|
||||||
RS3d = '3D';
|
RS3d = '3D';
|
||||||
RSBorderless = 'no border';
|
RSBorderless = 'no border';
|
||||||
|
RSXMLFiles = 'XML files (*.xml)';
|
||||||
|
|
||||||
{$IFDEF WINDOWS}
|
{$IFDEF WINDOWS}
|
||||||
{ This function determines the LCID from the language code.
|
{ This function determines the LCID from the language code.
|
||||||
@ -386,6 +391,15 @@ begin
|
|||||||
VpPrintFormatEditDialog1.Execute;
|
VpPrintFormatEditDialog1.Execute;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TMainForm.MnuLoadPrintFormatsClick(Sender: TObject);
|
||||||
|
begin
|
||||||
|
if OpenDialog.Filename = '' then
|
||||||
|
OpenDialog.InitialDir := Application.Location else
|
||||||
|
OpenDialog.InitialDir := ExtractFileDir(OpenDialog.FileName);
|
||||||
|
if OpenDialog.Execute then
|
||||||
|
VpControlLink1.Printer.LoadFromFile(Opendialog.Filename, false);
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TMainForm.MnuPrintClick(Sender: TObject);
|
procedure TMainForm.MnuPrintClick(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
if PrintDialog1.Execute then begin
|
if PrintDialog1.Execute then begin
|
||||||
@ -784,6 +798,8 @@ begin
|
|||||||
CbDrawingStyle.Items.Add(RS3d);
|
CbDrawingStyle.Items.Add(RS3d);
|
||||||
CbDrawingStyle.Items.Add(RSBorderless);
|
CbDrawingStyle.Items.Add(RSBorderless);
|
||||||
|
|
||||||
|
OpenDialog.Filter := rsXMLFiles + '|*.xml';
|
||||||
|
|
||||||
// Next settings work correctly only for Windows.
|
// Next settings work correctly only for Windows.
|
||||||
{$IFDEF WINDOWS}
|
{$IFDEF WINDOWS}
|
||||||
UpdateFormatSettings(ALang);
|
UpdateFormatSettings(ALang);
|
||||||
|
746
components/tvplanit/examples/fulldemo/printerdefs.xml
Normal file
746
components/tvplanit/examples/fulldemo/printerdefs.xml
Normal file
@ -0,0 +1,746 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<VpPrintFormats
|
||||||
|
Version = "0.0.1">
|
||||||
|
<PrintFormat
|
||||||
|
Name="DayView Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="DayView"
|
||||||
|
Measurement="Inches"
|
||||||
|
Left="1"
|
||||||
|
Top="1"
|
||||||
|
Width="8"
|
||||||
|
Height="11"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="DayView Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="DayView"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="WeekView Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="WeekView"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="WeekView Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="WeekView"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="MonthView Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="MonthView"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="MonthView Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="Shape"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
<Shape
|
||||||
|
Type="Rectangle">
|
||||||
|
<Brush
|
||||||
|
Color="16777215"
|
||||||
|
Style="Solid"/>
|
||||||
|
<Pen
|
||||||
|
Color="0"
|
||||||
|
Style="Solid"
|
||||||
|
Width="1"/>
|
||||||
|
</Shape>
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Calendar Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="Calendar"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Calendar Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="Calendar"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Shape Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="Shape"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="10"
|
||||||
|
Top="50"
|
||||||
|
Width="50"
|
||||||
|
Height="50"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
<Shape
|
||||||
|
Type="Ellipse">
|
||||||
|
<Brush
|
||||||
|
Color="16777215"
|
||||||
|
Style="Solid"/>
|
||||||
|
<Pen
|
||||||
|
Color="0"
|
||||||
|
Style="Solid"
|
||||||
|
Width="10"/>
|
||||||
|
</Shape>
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Shape Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="Shape"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="20"
|
||||||
|
Top="50"
|
||||||
|
Width="40"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
<Shape
|
||||||
|
Type="Rectangle">
|
||||||
|
<Brush
|
||||||
|
Color="16777215"
|
||||||
|
Style="Solid"/>
|
||||||
|
<Pen
|
||||||
|
Color="0"
|
||||||
|
Style="Solid"
|
||||||
|
Width="4"/>
|
||||||
|
</Shape>
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Caption Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="Caption"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="50"
|
||||||
|
Top="50"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
<Caption
|
||||||
|
Caption="Hello World!">
|
||||||
|
<Font
|
||||||
|
CharSet="ANSI"
|
||||||
|
Color="-16777208"
|
||||||
|
Height="-21"
|
||||||
|
Name="Arial"
|
||||||
|
Pitch="Default"
|
||||||
|
Bold="False"
|
||||||
|
Italic="True"
|
||||||
|
Underline="False"
|
||||||
|
Strikeout="False"/>
|
||||||
|
</Caption>
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Caption Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="Caption"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
<Caption
|
||||||
|
Caption="">
|
||||||
|
<Font
|
||||||
|
CharSet="Default"
|
||||||
|
Color="-16777208"
|
||||||
|
Height="-11"
|
||||||
|
Name="MS Sans Serif"
|
||||||
|
Pitch="Default"
|
||||||
|
Bold="False"
|
||||||
|
Italic="False"
|
||||||
|
Underline="False"
|
||||||
|
Strikeout="False"/>
|
||||||
|
</Caption>
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Tasks Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="Tasks"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Tasks Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="Tasks"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Contacts Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="Contacts"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Contacts Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="Contacts"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="DayView Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="DayView"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="DayView Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="DayView"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="WeekView Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="WeekView"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="WeekView Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="WeekView"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="MonthView Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="MonthView"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="MonthView Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="MonthView"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Calendar Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="Calendar"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Calendar Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="Calendar"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Shape Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="Shape"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
<Shape
|
||||||
|
Type="Rectangle">
|
||||||
|
<Brush
|
||||||
|
Color="16777215"
|
||||||
|
Style="Solid"/>
|
||||||
|
<Pen
|
||||||
|
Color="0"
|
||||||
|
Style="Solid"
|
||||||
|
Width="1"/>
|
||||||
|
</Shape>
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Shape Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="Shape"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
<Shape
|
||||||
|
Type="Rectangle">
|
||||||
|
<Brush
|
||||||
|
Color="16777215"
|
||||||
|
Style="Solid"/>
|
||||||
|
<Pen
|
||||||
|
Color="0"
|
||||||
|
Style="Solid"
|
||||||
|
Width="1"/>
|
||||||
|
</Shape>
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Caption Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="Caption"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
<Caption
|
||||||
|
Caption="">
|
||||||
|
<Font
|
||||||
|
CharSet="Default"
|
||||||
|
Color="-16777208"
|
||||||
|
Height="-11"
|
||||||
|
Name="MS Sans Serif"
|
||||||
|
Pitch="Default"
|
||||||
|
Bold="False"
|
||||||
|
Italic="False"
|
||||||
|
Underline="False"
|
||||||
|
Strikeout="False"/>
|
||||||
|
</Caption>
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Caption Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="Caption"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
<Caption
|
||||||
|
Caption="">
|
||||||
|
<Font
|
||||||
|
CharSet="Default"
|
||||||
|
Color="-16777208"
|
||||||
|
Height="-11"
|
||||||
|
Name="MS Sans Serif"
|
||||||
|
Pitch="Default"
|
||||||
|
Bold="False"
|
||||||
|
Italic="False"
|
||||||
|
Underline="False"
|
||||||
|
Strikeout="False"/>
|
||||||
|
</Caption>
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Tasks Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="Tasks"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Tasks Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="Tasks"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Contacts Format Test (portrait)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="0"
|
||||||
|
Item="Contacts"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
<PrintFormat
|
||||||
|
Name="Contacts Format Test (landscape)"
|
||||||
|
Description=""
|
||||||
|
DayIncrement="0"
|
||||||
|
Visble="True"
|
||||||
|
DayIncrementUnits="Day">
|
||||||
|
<Element
|
||||||
|
Name="Element 1"
|
||||||
|
Visible="True"
|
||||||
|
Rotation="270"
|
||||||
|
Item="Contacts"
|
||||||
|
Measurement="Percent"
|
||||||
|
Left="0"
|
||||||
|
Top="0"
|
||||||
|
Width="100"
|
||||||
|
Height="100"
|
||||||
|
DayOffset="0"
|
||||||
|
DayOffsetUnits="Day">
|
||||||
|
</Element>
|
||||||
|
</PrintFormat>
|
||||||
|
</VpPrintFormats>
|
@ -141,6 +141,10 @@ msgstr "Dienstag"
|
|||||||
msgid "Wednesday"
|
msgid "Wednesday"
|
||||||
msgstr "Mittwoch"
|
msgstr "Mittwoch"
|
||||||
|
|
||||||
|
#: demomain.rsxmlfiles
|
||||||
|
msgid "XML files (*.xml)"
|
||||||
|
msgstr "XML-Dateien (*.XML)"
|
||||||
|
|
||||||
#: tfrmreportsetup.button1.caption
|
#: tfrmreportsetup.button1.caption
|
||||||
msgctxt "tfrmreportsetup.button1.caption"
|
msgctxt "tfrmreportsetup.button1.caption"
|
||||||
msgid "OK"
|
msgid "OK"
|
||||||
@ -263,6 +267,12 @@ msgid "Help"
|
|||||||
msgstr "Hilfe"
|
msgstr "Hilfe"
|
||||||
|
|
||||||
#: tmainform.menuitem3.caption
|
#: tmainform.menuitem3.caption
|
||||||
|
msgctxt "tmainform.menuitem3.caption"
|
||||||
|
msgid "-"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tmainform.menuitem4.caption
|
||||||
|
msgctxt "tmainform.menuitem4.caption"
|
||||||
msgid "-"
|
msgid "-"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -274,6 +284,10 @@ msgstr "Über Visual PlanIt"
|
|||||||
msgid "Edit print formats..."
|
msgid "Edit print formats..."
|
||||||
msgstr "Druckformate bearbeiten..."
|
msgstr "Druckformate bearbeiten..."
|
||||||
|
|
||||||
|
#: tmainform.mnuloadprintformats.caption
|
||||||
|
msgid "Load print formats..."
|
||||||
|
msgstr "Druckformate laden..."
|
||||||
|
|
||||||
#: tmainform.mnumaintenance.caption
|
#: tmainform.mnumaintenance.caption
|
||||||
msgctxt "tmainform.mnumaintenance.caption"
|
msgctxt "tmainform.mnumaintenance.caption"
|
||||||
msgid "Maintenance"
|
msgid "Maintenance"
|
||||||
@ -313,4 +327,3 @@ msgstr "Fertiggestellte Aufgaben ausblenden"
|
|||||||
#: tmainform.titlelbl.caption
|
#: tmainform.titlelbl.caption
|
||||||
msgid "TitleLbl"
|
msgid "TitleLbl"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -130,6 +130,10 @@ msgstr "Dinsdag"
|
|||||||
msgid "Wednesday"
|
msgid "Wednesday"
|
||||||
msgstr "Woensdag"
|
msgstr "Woensdag"
|
||||||
|
|
||||||
|
#: demomain.rsxmlfiles
|
||||||
|
msgid "XML files (*.xml)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: tfrmreportsetup.button1.caption
|
#: tfrmreportsetup.button1.caption
|
||||||
msgctxt "tfrmreportsetup.button1.caption"
|
msgctxt "tfrmreportsetup.button1.caption"
|
||||||
msgid "OK"
|
msgid "OK"
|
||||||
@ -250,6 +254,12 @@ msgid "Help"
|
|||||||
msgstr "Help"
|
msgstr "Help"
|
||||||
|
|
||||||
#: tmainform.menuitem3.caption
|
#: tmainform.menuitem3.caption
|
||||||
|
msgctxt "tmainform.menuitem3.caption"
|
||||||
|
msgid "-"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tmainform.menuitem4.caption
|
||||||
|
msgctxt "tmainform.menuitem4.caption"
|
||||||
msgid "-"
|
msgid "-"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -261,6 +271,10 @@ msgstr "Over Visual PlanIt"
|
|||||||
msgid "Edit print formats..."
|
msgid "Edit print formats..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: tmainform.mnuloadprintformats.caption
|
||||||
|
msgid "Load print formats..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: tmainform.mnumaintenance.caption
|
#: tmainform.mnumaintenance.caption
|
||||||
msgctxt "TMAINFORM.MNUMAINTENANCE.CAPTION"
|
msgctxt "TMAINFORM.MNUMAINTENANCE.CAPTION"
|
||||||
msgid "Maintenance"
|
msgid "Maintenance"
|
||||||
|
@ -130,6 +130,10 @@ msgstr ""
|
|||||||
msgid "Wednesday"
|
msgid "Wednesday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: demomain.rsxmlfiles
|
||||||
|
msgid "XML files (*.xml)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: tfrmreportsetup.button1.caption
|
#: tfrmreportsetup.button1.caption
|
||||||
msgctxt "tfrmreportsetup.button1.caption"
|
msgctxt "tfrmreportsetup.button1.caption"
|
||||||
msgid "OK"
|
msgid "OK"
|
||||||
@ -250,6 +254,12 @@ msgid "Help"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tmainform.menuitem3.caption
|
#: tmainform.menuitem3.caption
|
||||||
|
msgctxt "tmainform.menuitem3.caption"
|
||||||
|
msgid "-"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tmainform.menuitem4.caption
|
||||||
|
msgctxt "tmainform.menuitem4.caption"
|
||||||
msgid "-"
|
msgid "-"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -261,6 +271,10 @@ msgstr ""
|
|||||||
msgid "Edit print formats..."
|
msgid "Edit print formats..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: tmainform.mnuloadprintformats.caption
|
||||||
|
msgid "Load print formats..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: tmainform.mnumaintenance.caption
|
#: tmainform.mnumaintenance.caption
|
||||||
msgctxt "TMAINFORM.MNUMAINTENANCE.CAPTION"
|
msgctxt "TMAINFORM.MNUMAINTENANCE.CAPTION"
|
||||||
msgid "Maintenance"
|
msgid "Maintenance"
|
||||||
|
@ -140,6 +140,10 @@ msgstr "Вторник"
|
|||||||
msgid "Wednesday"
|
msgid "Wednesday"
|
||||||
msgstr "Среда"
|
msgstr "Среда"
|
||||||
|
|
||||||
|
#: demomain.rsxmlfiles
|
||||||
|
msgid "XML files (*.xml)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: tfrmreportsetup.button1.caption
|
#: tfrmreportsetup.button1.caption
|
||||||
msgctxt "tfrmreportsetup.button1.caption"
|
msgctxt "tfrmreportsetup.button1.caption"
|
||||||
msgid "OK"
|
msgid "OK"
|
||||||
@ -262,6 +266,12 @@ msgid "Help"
|
|||||||
msgstr "Справка"
|
msgstr "Справка"
|
||||||
|
|
||||||
#: tmainform.menuitem3.caption
|
#: tmainform.menuitem3.caption
|
||||||
|
msgctxt "tmainform.menuitem3.caption"
|
||||||
|
msgid "-"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tmainform.menuitem4.caption
|
||||||
|
msgctxt "tmainform.menuitem4.caption"
|
||||||
msgid "-"
|
msgid "-"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -273,6 +283,10 @@ msgstr "О Visual PlanIt"
|
|||||||
msgid "Edit print formats..."
|
msgid "Edit print formats..."
|
||||||
msgstr "Редактор формата печати..."
|
msgstr "Редактор формата печати..."
|
||||||
|
|
||||||
|
#: tmainform.mnuloadprintformats.caption
|
||||||
|
msgid "Load print formats..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: tmainform.mnumaintenance.caption
|
#: tmainform.mnumaintenance.caption
|
||||||
msgctxt "TMAINFORM.MNUMAINTENANCE.CAPTION"
|
msgctxt "TMAINFORM.MNUMAINTENANCE.CAPTION"
|
||||||
msgid "Maintenance"
|
msgid "Maintenance"
|
||||||
|
Reference in New Issue
Block a user