summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/dpgroupdlg.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-08-03 10:37:12 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-08-03 10:37:12 +0000
commite54b1f06ff0416800554fbdbcc504dc2ada34d3d (patch)
treec37201f274685ec2b3b1e3e0b8149914f5fceca0 /sc/source/ui/inc/dpgroupdlg.hxx
parent7d7cccc2dc8c3215c07d89437dd4ff752a91063c (diff)
INTEGRATION: CWS grouping (1.1.2); FILE ADDED
2004/07/05 17:24:53 dr 1.1.2.1: #i25110# DataPilot grouping dialogs
Diffstat (limited to 'sc/source/ui/inc/dpgroupdlg.hxx')
-rw-r--r--sc/source/ui/inc/dpgroupdlg.hxx215
1 files changed, 215 insertions, 0 deletions
diff --git a/sc/source/ui/inc/dpgroupdlg.hxx b/sc/source/ui/inc/dpgroupdlg.hxx
new file mode 100644
index 000000000000..d15f125031a9
--- /dev/null
+++ b/sc/source/ui/inc/dpgroupdlg.hxx
@@ -0,0 +1,215 @@
+/*************************************************************************
+ *
+ * $RCSfile: dpgroupdlg.hxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: hr $ $Date: 2004-08-03 11:37:12 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 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
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef SC_DPGROUPDLG_HXX
+#define SC_DPGROUPDLG_HXX
+
+#ifndef _FIXED_HXX
+#include <vcl/fixed.hxx>
+#endif
+#ifndef _DIALOG_HXX
+#include <vcl/dialog.hxx>
+#endif
+#ifndef _BUTTON_HXX
+#include <vcl/button.hxx>
+#endif
+#ifndef _SV_FIELD_HXX
+#include <vcl/field.hxx>
+#endif
+#ifndef _SVX_CHECKLBX_HXX
+#include <svx/checklbx.hxx>
+#endif
+#ifndef SC_EDITFIELD_HXX
+#include "editfield.hxx"
+#endif
+
+#ifndef SC_DPGROUP_HXX
+#include "dpgroup.hxx"
+#endif
+
+// ============================================================================
+
+class ScDPGroupEditHelper
+{
+public:
+ explicit ScDPGroupEditHelper(
+ RadioButton& rRbAuto, RadioButton& rRbMan,
+ Edit& rEdValue );
+
+ bool IsAuto() const;
+ double GetValue() const;
+ void SetValue( bool bAuto, double fValue );
+
+private:
+ virtual bool ImplGetValue( double& rfValue ) const = 0;
+ virtual void ImplSetValue( double fValue ) = 0;
+
+ DECL_LINK( ClickHdl, RadioButton* );
+
+private:
+ RadioButton& mrRbAuto;
+ RadioButton& mrRbMan;
+ Edit& mrEdValue;
+};
+
+// ----------------------------------------------------------------------------
+
+class ScDPNumGroupEditHelper : public ScDPGroupEditHelper
+{
+public:
+ explicit ScDPNumGroupEditHelper(
+ RadioButton& rRbAuto, RadioButton& rRbMan,
+ ScDoubleField& rEdValue );
+
+private:
+ virtual bool ImplGetValue( double& rfValue ) const;
+ virtual void ImplSetValue( double fValue );
+
+private:
+ ScDoubleField& mrEdValue;
+};
+
+// ----------------------------------------------------------------------------
+
+class ScDPDateGroupEditHelper : public ScDPGroupEditHelper
+{
+public:
+ explicit ScDPDateGroupEditHelper(
+ RadioButton& rRbAuto, RadioButton& rRbMan,
+ DateField& rEdValue, const Date& rNullDate );
+
+private:
+ virtual bool ImplGetValue( double& rfValue ) const;
+ virtual void ImplSetValue( double fValue );
+
+private:
+ DateField& mrEdValue;
+ Date maNullDate;
+};
+
+// ============================================================================
+// ============================================================================
+
+class ScDPNumGroupDlg : public ModalDialog
+{
+public:
+ explicit ScDPNumGroupDlg( Window* pParent, const ScDPNumGroupInfo& rInfo );
+
+ ScDPNumGroupInfo GetGroupInfo() const;
+
+private:
+ FixedLine maFlStart;
+ RadioButton maRbAutoStart;
+ RadioButton maRbManStart;
+ ScDoubleField maEdStart;
+ FixedLine maFlEnd;
+ RadioButton maRbAutoEnd;
+ RadioButton maRbManEnd;
+ ScDoubleField maEdEnd;
+ FixedLine maFlBy;
+ ScDoubleField maEdBy;
+ OKButton maBtnOk;
+ CancelButton maBtnCancel;
+ HelpButton maBtnHelp;
+ ScDPNumGroupEditHelper maStartHelper;
+ ScDPNumGroupEditHelper maEndHelper;
+};
+
+// ============================================================================
+
+class ScDPDateGroupDlg : public ModalDialog
+{
+public:
+ explicit ScDPDateGroupDlg( Window* pParent, const ScDPNumGroupInfo& rInfo,
+ sal_Int32 nDatePart, const Date& rNullDate );
+
+ ScDPNumGroupInfo GetGroupInfo() const;
+ sal_Int32 GetDatePart() const;
+
+private:
+ DECL_LINK( ClickHdl, RadioButton* );
+ DECL_LINK( CheckHdl, SvxCheckListBox* );
+
+private:
+ FixedLine maFlStart;
+ RadioButton maRbAutoStart;
+ RadioButton maRbManStart;
+ DateField maEdStart;
+ FixedLine maFlEnd;
+ RadioButton maRbAutoEnd;
+ RadioButton maRbManEnd;
+ DateField maEdEnd;
+ FixedLine maFlBy;
+ RadioButton maRbNumDays;
+ RadioButton maRbUnits;
+ NumericField maEdNumDays;
+ SvxCheckListBox maLbUnits;
+ OKButton maBtnOk;
+ CancelButton maBtnCancel;
+ HelpButton maBtnHelp;
+ ScDPDateGroupEditHelper maStartHelper;
+ ScDPDateGroupEditHelper maEndHelper;
+};
+
+// ============================================================================
+
+#endif
+