summaryrefslogtreecommitdiff
path: root/svx/source/inc
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-04-16 15:22:13 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-04-16 15:22:13 +0000
commit65d04ed3dc796b4187f66623658c574e59df8534 (patch)
treeac9d6ac3d0f8f193a249cdde65908a24b9398137 /svx/source/inc
parent306b0e9c99df194c96f581c3b8be8dd8ec40e02e (diff)
INTEGRATION: CWS fwkdbdesign01 (1.5.804); FILE MERGED
2007/03/06 08:46:55 fs 1.5.804.2: #i75146# isEnhancedForm is not necessary anymore 2007/03/03 15:19:23 fs 1.5.804.1: #i74951#
Diffstat (limited to 'svx/source/inc')
-rw-r--r--svx/source/inc/fmdocumentclassification.hxx17
1 files changed, 11 insertions, 6 deletions
diff --git a/svx/source/inc/fmdocumentclassification.hxx b/svx/source/inc/fmdocumentclassification.hxx
index ab95f3da44d0..86b76d745b24 100644
--- a/svx/source/inc/fmdocumentclassification.hxx
+++ b/svx/source/inc/fmdocumentclassification.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: fmdocumentclassification.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 23:15:37 $
+ * last change: $Author: ihi $ $Date: 2007-04-16 16:22:13 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -59,6 +59,7 @@ namespace svxform
ePresentationDocument,
eEnhancedForm,
eDatabaseForm,
+ eDatabaseReport,
eUnknownDocumentType
};
@@ -71,10 +72,6 @@ namespace svxform
public:
/** classifies a document model
*/
- static bool isEnhancedForm(
- const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& _rxDocumentModel
- ) SAL_THROW(());
-
static DocumentType classifyDocument(
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >& _rxDocumentModel
) SAL_THROW(());
@@ -82,6 +79,14 @@ namespace svxform
static DocumentType classifyHostDocument(
const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxFormComponent
) SAL_THROW(());
+
+ static DocumentType getDocumentTypeForModuleIdentifier(
+ const ::rtl::OUString& _rModuleIdentifier
+ );
+
+ static ::rtl::OUString getModuleIdentifierForDocumentType(
+ DocumentType _eType
+ );
};
//........................................................................