summaryrefslogtreecommitdiff
path: root/sw/source/ui
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-11-16 16:00:26 +0000
committerOliver Bolte <obo@openoffice.org>2004-11-16 16:00:26 +0000
commit50bd71bd9059ed51dafa6f93a0d00f7dbde77591 (patch)
tree6f8910fdfd30a4fd698b36b63072a1adc2e12a1f /sw/source/ui
parentf02142d65ac7eed4a253d3f7aff289dfe494b4c6 (diff)
INTEGRATION: CWS iha04 (1.2.926); FILE MERGED
2004/10/27 18:34:21 iha 1.2.926.1: #i36130# CreateMonitor for mail merge
Diffstat (limited to 'sw/source/ui')
-rw-r--r--sw/source/ui/inc/dbui.hxx31
1 files changed, 29 insertions, 2 deletions
diff --git a/sw/source/ui/inc/dbui.hxx b/sw/source/ui/inc/dbui.hxx
index e3daeffbe259..93a84caa1d81 100644
--- a/sw/source/ui/inc/dbui.hxx
+++ b/sw/source/ui/inc/dbui.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dbui.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: os $ $Date: 2001-08-15 08:20:00 $
+ * last change: $Author: obo $ $Date: 2004-11-16 17:00:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -86,5 +86,32 @@ public:
PrintMonitor( Window *pParent, BOOL bEMail = FALSE );
};
+class CreateMonitor : public ModelessDialog
+{
+public:
+ CreateMonitor( Window *pParent );
+
+ void SetTotalCount( sal_Int32 nTotal );
+ void SetCurrentPosition( sal_Int32 nCurrent );
+
+ void SetCancelHdl( const Link& rLink );
+
+private: //methods
+ void UpdateCountingText();
+
+private: //member
+ FixedText m_aStatus;
+ FixedText m_aProgress;
+ FixedText m_aCreateDocuments;
+ FixedText m_aCounting;
+ CancelButton m_aCancelButton;
+
+ String m_sCountingPattern;
+ String m_sVariable_Total;
+ String m_sVariable_Position;
+ sal_Int32 m_nTotalCount;
+ sal_Int32 m_nCurrentPosition;
+};
+
#endif