summaryrefslogtreecommitdiff
path: root/dbaccess/source/ext/macromigration
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-03-06 17:04:17 +0000
committerKurt Zenker <kz@openoffice.org>2008-03-06 17:04:17 +0000
commit706f8873b3b5882b53714ed505d7e8b1d4148b8b (patch)
tree90bb53db3ab882dbf7825d4aa68425c3456df8a8 /dbaccess/source/ext/macromigration
parent02c042c1733205fc4174149de8a9c8fe5a090b2f (diff)
INTEGRATION: CWS odbmacros2 (1.1.2); FILE ADDED
2008/03/05 21:03:47 fs 1.1.2.7: ongoing work - merge all the changes which so far happened on the intermediate branch 'odbmacros_2_5' 2008/02/27 14:41:47 fs 1.1.2.6.2.3: 'Update' after progress changes, and take the final summary from outside 2008/02/14 22:25:00 fs 1.1.2.6.2.2: #i49133# ingegrate the migration engine (though not yet finished) into the wizard 2008/02/14 12:16:43 fs 1.1.2.6.2.1: '#' 2008/02/11 11:18:26 fs 1.1.2.6: #i49133# proper travel handling on the second page 2008/02/05 09:12:46 fs 1.1.2.5: migration step two: backup the document 2008/01/30 13:50:48 fs 1.1.2.4: #i49133# working on Step 2 of the migration: use an URL Box for inputting the backup location 2008/01/28 11:36:27 fs 1.1.2.3: #i49133# implement closing the sub docs, using a new method at the XDatabaseDocumentUI 2008/01/21 10:16:21 fs 1.1.2.2: some more prototype details 2008/01/16 15:53:36 fs 1.1.2.1: initial checkin. The whole dialog is a prototype by now
Diffstat (limited to 'dbaccess/source/ext/macromigration')
-rw-r--r--dbaccess/source/ext/macromigration/macromigrationpages.hxx186
1 files changed, 186 insertions, 0 deletions
diff --git a/dbaccess/source/ext/macromigration/macromigrationpages.hxx b/dbaccess/source/ext/macromigration/macromigrationpages.hxx
new file mode 100644
index 000000000..86c63ba3e
--- /dev/null
+++ b/dbaccess/source/ext/macromigration/macromigrationpages.hxx
@@ -0,0 +1,186 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: macromigrationpages.hxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: kz $ $Date: 2008-03-06 18:04:17 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2005 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ ************************************************************************/
+
+#ifndef DBACCESS_MACROMIGRATIONPAGES_HXX
+#define DBACCESS_MACROMIGRATIONPAGES_HXX
+
+#include "migrationprogress.hxx"
+#include "rangeprogressbar.hxx"
+
+#include <svtools/svmedit.hxx>
+#include <svtools/urlcontrol.hxx>
+#include <svtools/wizardmachine.hxx>
+#include <svx/databaselocationinput.hxx>
+#include <vcl/fixed.hxx>
+#include <vcl/edit.hxx>
+
+namespace svt
+{
+ class RoadmapWizard;
+}
+
+//........................................................................
+namespace dbmm
+{
+//........................................................................
+
+ class MacroMigrationDialog;
+
+ //====================================================================
+ //= MacroMigrationPage
+ //====================================================================
+ typedef ::svt::OWizardPage MacroMigrationPage_Base;
+ class MacroMigrationPage : public MacroMigrationPage_Base
+ {
+ public:
+ MacroMigrationPage( MacroMigrationDialog& _rParentDialog, const ResId& _rRes );
+ ~MacroMigrationPage();
+
+ protected:
+ const MacroMigrationDialog& getDialog() const;
+ MacroMigrationDialog& getDialog() ;
+
+ protected:
+ FixedText m_aHeader;
+ };
+
+ //====================================================================
+ //= PreparationPage
+ //====================================================================
+ class PreparationPage : public MacroMigrationPage
+ {
+ public:
+ PreparationPage( MacroMigrationDialog& _rParentDialog );
+
+ static TabPage* Create( ::svt::RoadmapWizard& _rParentDialog );
+
+ public:
+ void showCloseDocsError( bool _bShow );
+
+ protected:
+ FixedText m_aIntroduction;
+ FixedText m_aCloseDocError;
+ };
+
+ //====================================================================
+ //= SaveDBDocPage
+ //====================================================================
+ class SaveDBDocPage : public MacroMigrationPage
+ {
+ public:
+ SaveDBDocPage( MacroMigrationDialog& _rParentDialog );
+ static TabPage* Create( ::svt::RoadmapWizard& _rParentDialog );
+
+ public:
+ ::rtl::OUString getBackupLocation() const { return m_aLocationController.getURL(); }
+
+ protected:
+ FixedText m_aExplanation;
+ FixedText m_aSaveAsLabel;
+ ::svt::OFileURLControl m_aSaveAsLocation;
+ PushButton m_aBrowseSaveAsLocation;
+ FixedText m_aStartMigration;
+ ::svx::DatabaseLocationInputController
+ m_aLocationController;
+
+ protected:
+ // OWizardPage overridables
+ virtual void initializePage();
+ virtual bool canAdvance() const;
+ // IWizardPage overridables
+ virtual sal_Bool commitPage( CommitPageReason _eReason );
+
+ private:
+ DECL_LINK( OnLocationModified, Edit* );
+ void impl_updateLocationDependentItems();
+ };
+
+ //====================================================================
+ //= ProgressPage
+ //====================================================================
+ class ProgressPage : public MacroMigrationPage, public IMigrationProgress
+ {
+ public:
+ ProgressPage( MacroMigrationDialog& _rParentDialog );
+
+ static TabPage* Create( ::svt::RoadmapWizard& _rParentDialog );
+
+ void setDocumentCounts( const sal_Int32 _nForms, const sal_Int32 _nReports );
+
+ protected:
+ // IMigrationProgress
+ virtual void startObject( const ::rtl::OUString& _rObjectName, const ::rtl::OUString& _rCurrentAction, const sal_uInt32 _bRange );
+ virtual void setObjectProgressText( const ::rtl::OUString& _rText );
+ virtual void setObjectProgressValue( const sal_uInt32 _nValue );
+ virtual void endObject();
+ virtual void start( const sal_uInt32 _nOverallRange );
+ virtual void setOverallProgressText( const ::rtl::OUString& _rText );
+ virtual void setOverallProgressValue( const sal_uInt32 _nValue );
+
+ private:
+ FixedText m_aObjectCount;
+ FixedText m_aCurrentObjectLabel;
+ FixedText m_aCurrentObject;
+ FixedText m_aCurrentActionLabel;
+ FixedText m_aCurrentAction;
+ RangeProgressBar m_aCurrentProgress;
+ FixedText m_aAllProgressLabel;
+ FixedText m_aAllProgressText;
+ RangeProgressBar m_aAllProgress;
+ FixedText m_aMigrationDone;
+ };
+
+ //====================================================================
+ //= ResultPage
+ //====================================================================
+ class ResultPage : public MacroMigrationPage
+ {
+ public:
+ ResultPage( MacroMigrationDialog& _rParentDialog );
+
+ static TabPage* Create( ::svt::RoadmapWizard& _rParentDialog );
+
+ void displaySummary( const String& _rSummary );
+
+ private:
+ FixedText m_aChangesLabel;
+ MultiLineEdit m_aChanges;
+ };
+
+//........................................................................
+} // namespace dbmm
+//........................................................................
+
+#endif // DBACCESS_MACROMIGRATIONPAGES_HXX