diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kword/KWTableDia.h | |
download | koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip |
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kword/KWTableDia.h')
-rw-r--r-- | kword/KWTableDia.h | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/kword/KWTableDia.h b/kword/KWTableDia.h new file mode 100644 index 00000000..60f58b5c --- /dev/null +++ b/kword/KWTableDia.h @@ -0,0 +1,113 @@ +/* This file is part of the KDE project + Copyright (C) 1998, 1999 Reginald Stadlbauer <reggie@kde.org> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. +*/ + +#ifndef tabledia_h +#define tabledia_h + +#include <kdialogbase.h> +#include <qptrlist.h> + +#include "defs.h" +#include <KoBorder.h> + +class KWCanvas; +class KWDocument; +class KWTableTemplateSelector; + +class QGridLayout; +class QLabel; +class QListBox; +class QWidget; +class QCheckBox; +class QButtonGroup; +class QComboBox; +class QSpinBox; + +/******************************************************************/ +/* Class: KWTablePreview */ +/******************************************************************/ + +class KWTablePreview : public QWidget +{ + Q_OBJECT + +public: + KWTablePreview( QWidget *_parent, int _rows, int _cols ) + : QWidget( _parent ), rows( _rows ), cols( _cols ) {} + + void setRows( int _rows ) { rows = _rows; repaint( true ); } + void setCols( int _cols ) { cols = _cols; repaint( true ); } + +protected: + void paintEvent( QPaintEvent *e ); + + int rows, cols; + +}; + +/******************************************************************/ +/* Class: KWTableDia */ +/******************************************************************/ + +class KWTableDia : public KDialogBase +{ + Q_OBJECT + +public: + typedef int CellSize; // in fact KWTableFrameSet::CellSize, which is an enum + enum UseMode{ NEW, EDIT }; + KWTableDia( QWidget *parent, const char *name, UseMode _useMode, KWCanvas *_canvas, + KWDocument *_doc, int rows, int cols, CellSize wid, CellSize hei, bool floating, + const QString & _templateName, int format); + +protected: + void setupTab1( int rows, int cols, CellSize wid, CellSize hei, bool floating ); + void setupTab2( const QString &_templateName, int format); + + QWidget *tab1; + QLabel *lRows, *lCols; +#ifdef ALLOW_NON_INLINE_TABLES + QLabel *lWid, *lHei; + QComboBox *cHei, *cWid; + QCheckBox *cbIsFloating; +#endif + QSpinBox *nRows, *nCols; + KWTablePreview *preview; + QCheckBox *cbReapplyTemplate1, *cbReapplyTemplate2; + + QGridLayout *grid; + KWTableTemplateSelector *tableTemplateSelector; + + UseMode m_useMode; + KWCanvas *canvas; + KWDocument *doc; + + int oldRowCount, oldColCount; + QString oldTemplateName; +protected slots: + void rowsChanged( int ); + void colsChanged( int ); + void slotSetReapply( bool ); + virtual void slotOk(); + void slotInlineTable( bool ); +}; + +#endif + + |