summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/fax/FaxDocument.py
diff options
context:
space:
mode:
authorXisco FaulĂ­ <anistenis@gmail.com>2011-06-07 16:02:15 +0200
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-08-18 02:13:20 +0200
commitf7f13da56c6285d012ae0d8aad697696c1d40a20 (patch)
tree3e7191b8c15169735c4a0c788ad71662958ee764 /wizards/com/sun/star/wizards/fax/FaxDocument.py
parent2963474ff151f75738606f7826fa9c9b8403a9cb (diff)
initial commit with migration of wizards to python
Diffstat (limited to 'wizards/com/sun/star/wizards/fax/FaxDocument.py')
-rw-r--r--wizards/com/sun/star/wizards/fax/FaxDocument.py109
1 files changed, 109 insertions, 0 deletions
diff --git a/wizards/com/sun/star/wizards/fax/FaxDocument.py b/wizards/com/sun/star/wizards/fax/FaxDocument.py
new file mode 100644
index 000000000000..25db248c8b01
--- /dev/null
+++ b/wizards/com/sun/star/wizards/fax/FaxDocument.py
@@ -0,0 +1,109 @@
+import uno
+from text.TextDocument import *
+from com.sun.star.uno import Exception as UnoException
+from text.TextSectionHandler import TextSectionHandler
+from text.TextFieldHandler import TextFieldHandler
+from common.Configuration import Configuration
+from common.PropertyNames import PropertyNames
+
+from com.sun.star.text.ControlCharacter import PARAGRAPH_BREAK
+from com.sun.star.style.ParagraphAdjust import CENTER
+from com.sun.star.text.PageNumberType import CURRENT
+from com.sun.star.style.NumberingType import ARABIC
+
+class FaxDocument(TextDocument):
+
+ def __init__(self, xMSF, listener):
+ super(FaxDocument,self).__init__(xMSF, listener, "WIZARD_LIVE_PREVIEW")
+ self.keepLogoFrame = True
+ self.keepTypeFrame = True
+
+ def switchElement(self, sElement, bState):
+ try:
+ mySectionHandler = TextSectionHandler(self.xMSF, self.xTextDocument)
+ oSection = mySectionHandler.xTextDocument.getTextSections().getByName(sElement)
+ Helper.setUnoPropertyValue(oSection, "IsVisible", bState)
+ except UnoException, exception:
+ traceback.print_exc()
+
+ def updateDateFields(self):
+ FH = TextFieldHandler(self.xTextDocument, self.xTextDocument)
+ FH.updateDateFields()
+
+ def switchFooter(self, sPageStyle, bState, bPageNumber, sText):
+ if self.xTextDocument != None:
+ self.xTextDocument.lockControllers()
+ try:
+
+ xPageStyleCollection = self.xTextDocument.getStyleFamilies().getByName("PageStyles")
+ xPageStyle = xPageStyleCollection.getByName(sPageStyle)
+
+ if bState:
+ xPageStyle.setPropertyValue("FooterIsOn", True)
+ xFooterText = propertySet.getPropertyValue("FooterText")
+ xFooterText.setString(sText)
+
+ if bPageNumber:
+ #Adding the Page Number
+ myCursor = xFooterText.Text.createTextCursor()
+ myCursor.gotoEnd(False)
+ xFooterText.insertControlCharacter(myCursor, PARAGRAPH_BREAK, False)
+ myCursor.setPropertyValue("ParaAdjust", CENTER )
+
+ xPageNumberField = xMSFDoc.createInstance("com.sun.star.text.TextField.PageNumber")
+ xPageNumberField.setPropertyValue("NumberingType", uno.Any("short",ARABIC))
+ xPageNumberField.setPropertyValue("SubType", CURRENT)
+ xFooterText.insertTextContent(xFooterText.getEnd(), xPageNumberField, False)
+
+ else:
+ Helper.setUnoPropertyValue(xPageStyle, "FooterIsOn", False)
+
+ self.xTextDocument.unlockControllers()
+ except UnoException, exception:
+ traceback.print_exc()
+
+ def hasElement(self, sElement):
+ if self.xTextDocument != None:
+ mySectionHandler = TextSectionHandler(self.xMSF, self.xTextDocument)
+ return mySectionHandler.hasTextSectionByName(sElement)
+ else:
+ return False
+
+ def switchUserField(self, sFieldName, sNewContent, bState):
+ myFieldHandler = TextFieldHandler(self.xMSF, self.xTextDocument)
+ if bState:
+ myFieldHandler.changeUserFieldContent(sFieldName, sNewContent)
+ else:
+ myFieldHandler.changeUserFieldContent(sFieldName, "")
+
+ def fillSenderWithUserData(self):
+ try:
+ myFieldHandler = TextFieldHandler(self.xTextDocument, self.xTextDocument)
+ oUserDataAccess = Configuration.getConfigurationRoot(self.xMSF, "org.openoffice.UserProfile/Data", False)
+ myFieldHandler.changeUserFieldContent("Company", Helper.getUnoObjectbyName(oUserDataAccess, "o"))
+ myFieldHandler.changeUserFieldContent("Street", Helper.getUnoObjectbyName(oUserDataAccess, "street"))
+ myFieldHandler.changeUserFieldContent("PostCode", Helper.getUnoObjectbyName(oUserDataAccess, "postalcode"))
+ myFieldHandler.changeUserFieldContent(PropertyNames.PROPERTY_STATE, Helper.getUnoObjectbyName(oUserDataAccess, "st"))
+ myFieldHandler.changeUserFieldContent("City", Helper.getUnoObjectbyName(oUserDataAccess, "l"))
+ myFieldHandler.changeUserFieldContent("Fax", Helper.getUnoObjectbyName(oUserDataAccess, "facsimiletelephonenumber"))
+ except UnoException, exception:
+ traceback.print_exc()
+
+ def killEmptyUserFields(self):
+ myFieldHandler = TextFieldHandler(self.xMSF, self.xTextDocument)
+ myFieldHandler.removeUserFieldByContent("")
+
+ def killEmptyFrames(self):
+ try:
+ if not self.keepLogoFrame:
+ xTF = TextFrameHandler.getFrameByName("Company Logo", self.xTextDocument)
+ if xTF != None:
+ xTF.dispose()
+
+ if not self.keepTypeFrame:
+ xTF = TextFrameHandler.getFrameByName("Communication Type", self.xTextDocument)
+ if xTF != None:
+ xTF.dispose()
+
+ except UnoException, e:
+ traceback.print_exc()