summaryrefslogtreecommitdiff
path: root/svx/inc
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-03-12 08:27:08 +0000
committerRüdiger Timm <rt@openoffice.org>2008-03-12 08:27:08 +0000
commitb51c16408258a5a7185cfc7f85426045e4194fb4 (patch)
treef6909cd048fb6d5f2e87059a3779b7a6a9f7694d /svx/inc
parent559c6858cd0873b8000eb0d5c4bb4963e99d7f75 (diff)
INTEGRATION: CWS impresstables2 (1.1.2); FILE ADDED
2007/10/11 15:12:11 cl 1.1.2.1: #i68103# moved split table dialog to svx
Diffstat (limited to 'svx/inc')
-rw-r--r--svx/inc/svx/splitcelldlg.hxx70
1 files changed, 70 insertions, 0 deletions
diff --git a/svx/inc/svx/splitcelldlg.hxx b/svx/inc/svx/splitcelldlg.hxx
new file mode 100644
index 000000000000..f72fc15d6dfa
--- /dev/null
+++ b/svx/inc/svx/splitcelldlg.hxx
@@ -0,0 +1,70 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: splitcelldlg.hxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: rt $ $Date: 2008-03-12 09:27:08 $
+ *
+ * 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 _SVX_SPLITCELLDLG_HXX
+#define _SVX_SPLITCELLDLG_HXX
+
+#include <vcl/fixed.hxx>
+#include <vcl/field.hxx>
+#include <vcl/imagebtn.hxx>
+#include <vcl/button.hxx>
+
+#include <svx/stddlg.hxx>
+
+class SvxSplitTableDlg : public SvxStandardDialog
+{
+ FixedText maCountLbl;
+ NumericField maCountEdit;
+ FixedLine maCountFL;
+ ImageRadioButton maHorzBox;
+ ImageRadioButton maVertBox;
+ CheckBox maPropCB;
+ FixedLine maDirFL;
+ OKButton maOKBtn;
+ CancelButton maCancelBtn;
+ HelpButton maHelpBtn;
+
+protected:
+ virtual void Apply();
+
+public:
+ SvxSplitTableDlg(Window *pParent );
+ DECL_LINK( ClickHdl, Button * );
+
+ bool IsHorizontal() const;
+ bool IsProportional() const;
+ long GetCount() const;
+};
+
+#endif