diff options
author | Xisco Fauli <anistenis@gmail.com> | 2011-09-22 14:28:25 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-12-05 20:53:21 +0000 |
commit | 02d490ad83d31cb0dc342c6efb63837d820a8d88 (patch) | |
tree | 3dc896988c8680fd2d77287edb25a6483fd41e8b | |
parent | cebdd70c03729ebe9624cb2d73922d93621cf461 (diff) |
Add the rest of the files to scp2
-rw-r--r-- | instsetoo_native/util/makefile.mk | 44 | ||||
-rwxr-xr-x | scp2/inc/macros.inc | 8 | ||||
-rw-r--r-- | scp2/source/ooo/file_ooo.scp | 65 |
3 files changed, 111 insertions, 6 deletions
diff --git a/instsetoo_native/util/makefile.mk b/instsetoo_native/util/makefile.mk index 15bc3d6f6e47..2e6f99d372eb 100644 --- a/instsetoo_native/util/makefile.mk +++ b/instsetoo_native/util/makefile.mk @@ -75,6 +75,50 @@ LOCALPYFILES= \ $(BIN)$/officehelper.py \ $(BIN)$/mailmerge.py \ $(BIN)$/CallWizard.py \ + $(BIN)$/__init__.py \ + $(BIN)$/FaxDocument.py \ + $(BIN)$/FaxWizardDialogResources.py \ + $(BIN)$/CGFax.py \ + $(BIN)$/FaxWizardDialogConst.py \ + $(BIN)$/CGFaxWizard.py \ + $(BIN)$/FaxWizardDialogImpl.py \ + $(BIN)$/FaxWizardDialog.py \ + $(BIN)$/ConfigGroup.py \ + $(BIN)$/Configuration.py \ + $(BIN)$/FileAccess.py \ + $(BIN)$/Properties.py \ + $(BIN)$/Resource.py \ + $(BIN)$/ConfigNode.py \ + $(BIN)$/DebugHelper.py \ + $(BIN)$/Helper.py \ + $(BIN)$/NoValidPathException.py \ + $(BIN)$/PropertyNames.py \ + $(BIN)$/SystemDialog.py \ + $(BIN)$/ConfigSet.py \ + $(BIN)$/Desktop.py \ + $(BIN)$/HelpIds.py \ + $(BIN)$/NumberFormatter.py \ + $(BIN)$/PropertySetHelper.py \ + $(BIN)$/OfficeDocument.py \ + $(BIN)$/TextDocument.py \ + $(BIN)$/TextFieldHandler.py \ + $(BIN)$/TextSectionHandler.py \ + $(BIN)$/ViewHandler.py \ + $(BIN)$/ControlScroller.py \ + $(BIN)$/ImageList.py \ + $(BIN)$/PathSelection.py \ + $(BIN)$/UIConsts.py \ + $(BIN)$/UnoDialog.py \ + $(BIN)$/XPathSelectionListener.py \ + $(BIN)$/DocumentPreview.py \ + $(BIN)$/PeerConfig.py \ + $(BIN)$/UnoDialog2.py \ + $(BIN)$/WizardDialog.py \ + $(BIN)$/CommonListener.py \ + $(BIN)$/DataAware.py \ + $(BIN)$/ListModelBinder.py \ + $(BIN)$/RadioDataAware.py \ + $(BIN)$/UnoDataAware.py \ $(BIN)$/msgbox.py .ENDIF diff --git a/scp2/inc/macros.inc b/scp2/inc/macros.inc index 04e017902a16..4f23947e6097 100755 --- a/scp2/inc/macros.inc +++ b/scp2/inc/macros.inc @@ -283,6 +283,14 @@ End #endif +#define STD_PY_FILE(id,name,dir) \ + File id \ + TXT_FILE_BODY; \ + Name = STRING(CONCAT2(name,.py)); \ + Dir = dir; \ + Styles = (PACKED,DONT_OVERWRITE); \ + End + #define STD_JAR_FILE(id,name) \ File id \ TXT_FILE_BODY; \ diff --git a/scp2/source/ooo/file_ooo.scp b/scp2/source/ooo/file_ooo.scp index f96a95387508..736b5249fc2b 100644 --- a/scp2/source/ooo/file_ooo.scp +++ b/scp2/source/ooo/file_ooo.scp @@ -468,12 +468,65 @@ STD_JAR_FILE( gid_File_Jar_Saxon, saxon9 ) #ifndef AIX #ifndef DISABLE_PYUNO -File gid_File_PyCallFaxWizard - TXT_FILE_BODY; - Dir = gid_Dir_Program; - Name = "CallWizard.py"; - Styles = (PACKED); -End +STD_PY_FILE( gid_File_PyCallFaxWizard, CallWizard, gid_Dir_Program ) + +STD_PY_FILE( gid_File_PyInitWizards, __init__, gid_Dir_Wizards ) + +STD_PY_FILE( gid_File_PyInitFax, __init__, gid_Dir_Wizards_Fax ) +STD_PY_FILE( gid_File_PyFaxDocument, FaxDocument, gid_Dir_Wizards_Fax ) +STD_PY_FILE( gid_File_PyCGFax, CGFax, gid_Dir_Wizards_Fax ) +STD_PY_FILE( gid_File_PyFaxWizardDialogResources, FaxWizardDialogResources, gid_Dir_Wizards_Fax ) +STD_PY_FILE( gid_File_PyFaxWizardDialogConst, FaxWizardDialogConst, gid_Dir_Wizards_Fax ) +STD_PY_FILE( gid_File_PyCGFaxWizard, CGFaxWizard, gid_Dir_Wizards_Fax ) +STD_PY_FILE( gid_File_PyFaxWizardDialogImpl, FaxWizardDialogImpl, gid_Dir_Wizards_Fax ) +STD_PY_FILE( gid_File_PyFaxWizardDialog, FaxWizardDialog, gid_Dir_Wizards_Fax ) + +STD_PY_FILE( gid_File_PyInitCommon, __init__, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyConfigGroup, ConfigGroup, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyConfiguration, Configuration, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyFileAccess, FileAccess, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyProperties, Properties, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyResource, Resource, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyConfigNode, ConfigNode, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyDebugHelper, DebugHelper, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PySystemDialog, SystemDialog, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyHelper, Helper, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyNoValidPathException, NoValidPathException, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyPropertyNames, PropertyNames, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyConfigSet, ConfigSet, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyDesktop, Desktop, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyHelpIds, HelpIds, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyNumberFormatter, NumberFormatter, gid_Dir_Wizards_Common ) +STD_PY_FILE( gid_File_PyPropertySetHelper, PropertySetHelper, gid_Dir_Wizards_Common ) + +STD_PY_FILE( gid_File_PyInitDocument, __init__, gid_Dir_Wizards_Document ) +STD_PY_FILE( gid_File_PyOfficeDocument, OfficeDocument, gid_Dir_Wizards_Document ) + +STD_PY_FILE( gid_File_PyInitText, __init__, gid_Dir_Wizards_Text ) +STD_PY_FILE( gid_File_PyTextDocument, TextDocument, gid_Dir_Wizards_Text ) +STD_PY_FILE( gid_File_PyTextFieldHandler, TextFieldHandler, gid_Dir_Wizards_Text ) +STD_PY_FILE( gid_File_PyTextSectionHandler, TextSectionHandler, gid_Dir_Wizards_Text ) +STD_PY_FILE( gid_File_PyViewHandler, ViewHandler, gid_Dir_Wizards_Text ) + +STD_PY_FILE( gid_File_PyInitUI, __init__, gid_Dir_Wizards_Ui ) +STD_PY_FILE( gid_File_PyControlScroller, ControlScroller, gid_Dir_Wizards_Ui ) +STD_PY_FILE( gid_File_PyImageList, ImageList, gid_Dir_Wizards_Ui ) +STD_PY_FILE( gid_File_PyPathSelection, PathSelection, gid_Dir_Wizards_Ui ) +STD_PY_FILE( gid_File_PyUIConsts, UIConsts, gid_Dir_Wizards_Ui ) +STD_PY_FILE( gid_File_PyUnoDialog, UnoDialog, gid_Dir_Wizards_Ui ) +STD_PY_FILE( gid_File_PyXPathSelectionListener, XPathSelectionListener, gid_Dir_Wizards_Ui ) +STD_PY_FILE( gid_File_PyDocumentPreview, DocumentPreview, gid_Dir_Wizards_Ui ) +STD_PY_FILE( gid_File_PyPeerConfig, PeerConfig, gid_Dir_Wizards_Ui ) +STD_PY_FILE( gid_File_PyUnoDialog2, UnoDialog2, gid_Dir_Wizards_Ui ) +STD_PY_FILE( gid_File_PyWizardDialog, WizardDialog, gid_Dir_Wizards_Ui ) + +STD_PY_FILE( gid_File_PyInitEvent, __init__, gid_Dir_Wizards_Ui_Event ) +STD_PY_FILE( gid_File_PyCommonListener, CommonListener, gid_Dir_Wizards_Ui_Event ) +STD_PY_FILE( gid_File_PyDataAware, DataAware, gid_Dir_Wizards_Ui_Event ) +STD_PY_FILE( gid_File_PyListModelBinder, ListModelBinder, gid_Dir_Wizards_Ui_Event ) +STD_PY_FILE( gid_File_PyRadioDataAware, RadioDataAware, gid_Dir_Wizards_Ui_Event ) +STD_PY_FILE( gid_File_PyUnoDataAware, UnoDataAware, gid_Dir_Wizards_Ui_Event ) + #endif #endif |