summaryrefslogtreecommitdiff
path: root/scp2
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2011-09-22 14:28:25 +0200
committerMichael Meeks <michael.meeks@suse.com>2011-12-05 20:53:21 +0000
commit02d490ad83d31cb0dc342c6efb63837d820a8d88 (patch)
tree3dc896988c8680fd2d77287edb25a6483fd41e8b /scp2
parentcebdd70c03729ebe9624cb2d73922d93621cf461 (diff)
Add the rest of the files to scp2
Diffstat (limited to 'scp2')
-rwxr-xr-xscp2/inc/macros.inc8
-rw-r--r--scp2/source/ooo/file_ooo.scp65
2 files changed, 67 insertions, 6 deletions
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