summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/letter
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-05-19 11:42:26 +0000
committerKurt Zenker <kz@openoffice.org>2004-05-19 11:42:26 +0000
commit615b69a419c0818e9ad7c924180204ee47e183f4 (patch)
tree6a13c87d93be111281cc6e2d528e1d43d5481660 /wizards/com/sun/star/wizards/letter
parent1b3dc55dda00bea12f54342da81b0e1ef049f9b9 (diff)
INTEGRATION: CWS qwizards1 (1.1.2); FILE ADDED
2004/04/21 12:19:25 tv 1.1.2.7: added support for SenderState 2004/03/02 14:55:39 tv 1.1.2.6: correct support for double in the configuration 2004/03/02 09:13:13 tv 1.1.2.5: added some configuration modifications 2004/02/13 14:36:27 tv 1.1.2.4: fixed some configuration bugs 2004/02/13 10:35:00 tv 1.1.2.3: correct TabIndex & added Configuration (Part1) 2004/02/02 11:28:06 tv 1.1.2.2: formatted with autoformatter (indents now use TAB) 2004/01/28 15:57:05 tv 1.1.2.1: initial revision
Diffstat (limited to 'wizards/com/sun/star/wizards/letter')
-rw-r--r--wizards/com/sun/star/wizards/letter/CGLetter.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/wizards/com/sun/star/wizards/letter/CGLetter.java b/wizards/com/sun/star/wizards/letter/CGLetter.java
new file mode 100644
index 000000000000..7d8d07538904
--- /dev/null
+++ b/wizards/com/sun/star/wizards/letter/CGLetter.java
@@ -0,0 +1,39 @@
+package com.sun.star.wizards.letter;
+
+import com.sun.star.wizards.common.ConfigGroup;
+
+public class CGLetter extends ConfigGroup {
+
+ public int cp_Style;
+ public boolean cp_BusinessPaper;
+ public CGPaperElementLocation cp_CompanyLogo = new CGPaperElementLocation();
+ public CGPaperElementLocation cp_CompanyAddress = new CGPaperElementLocation();
+ public boolean cp_PaperCompanyAddressReceiverField;
+ public boolean cp_PaperFooter;
+ public double cp_PaperFooterHeight;
+ public int cp_Norm;
+ public boolean cp_PrintCompanyLogo;
+ public boolean cp_PrintCompanyAddressReceiverField;
+ public boolean cp_PrintLetterSigns;
+ public boolean cp_PrintSubjectLine;
+ public boolean cp_PrintSalutation;
+ public boolean cp_PrintBendMarks;
+ public boolean cp_PrintGreeting;
+ public boolean cp_PrintFooter;
+ public int cp_Salutation;
+ public int cp_Greeting;
+ public int cp_SenderAddressType;
+ public String cp_SenderCompanyName;
+ public String cp_SenderStreet;
+ public String cp_SenderPostCode;
+ public String cp_SenderState;
+ public String cp_SenderCity;
+ public int cp_ReceiverAddressType;
+ public String cp_Footer;
+ public boolean cp_FooterOnlySecondPage;
+ public boolean cp_FooterPageNumbers;
+ public int cp_CreationType;
+ public String cp_TemplateName;
+ public String cp_TemplatePath;
+
+}