summaryrefslogtreecommitdiffstats
path: root/kword/KWTableStyle.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kword/KWTableStyle.h
downloadkoffice-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/KWTableStyle.h')
-rw-r--r--kword/KWTableStyle.h131
1 files changed, 131 insertions, 0 deletions
diff --git a/kword/KWTableStyle.h b/kword/KWTableStyle.h
new file mode 100644
index 00000000..b63d8e0c
--- /dev/null
+++ b/kword/KWTableStyle.h
@@ -0,0 +1,131 @@
+/* This file is part of the KDE project
+ Copyright (C) 2002 Nash Hoogwater <nrhoogwater@wanadoo.nl>
+ Copyright (C) 2005 David Faure <faure@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; using
+ version 2 of the License.
+
+ 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 kwtablestyle_h
+#define kwtablestyle_h
+
+#include "KWFrameStyle.h"
+#include <KoParagStyle.h>
+
+#include <qdom.h>
+#include <qptrlist.h>
+#include <qbrush.h>
+
+class KWFrameStyleCollection;
+class KoStyleCollection;
+class KWTableStyle;
+class KWDocument;
+class KWFrame;
+
+/**
+ * Table style (can created/modified/deleted by the user)
+ * A table style is simply a paragraph style and a frame style,
+ * both of which are applied to a cell.
+ *
+ * This is used by KWTableTemplate to bundle together several styles
+ * in order to provide a full table template.
+ *
+ * This class could probably have been called KWTableCellStyle instead.
+ */
+class KWTableStyle : public KoUserStyle
+{
+public:
+ /** Create a blank framestyle (with default attributes) */
+ KWTableStyle( const QString & name, KoParagStyle * _style, KWFrameStyle * _frameStyle );
+
+ KWTableStyle( QDomElement & parentElem, KWDocument *_doc, int docVersion=2 );
+
+ /** Copy another framestyle */
+ KWTableStyle( const KWTableStyle & rhs ) : KoUserStyle( QString::null ) { *this = rhs; }
+
+ ~KWTableStyle() {}
+
+ void operator=( const KWTableStyle & );
+
+ // ATTRIBUTES
+ KoParagStyle* paragraphStyle() const { return m_paragStyle; }
+ void setParagraphStyle( KoParagStyle *paragStyle ) { m_paragStyle = paragStyle; }
+
+ KWFrameStyle* frameStyle() const { return m_frameStyle; }
+ void setFrameStyle( KWFrameStyle *frameStyle ) { m_frameStyle = frameStyle; }
+
+ /// save (old xml format)
+ void saveTableStyle( QDomElement & parentElem );
+ /// save (new oasis xml format)
+ void saveOasis( KoGenStyles& mainStyles, KoSavingContext& savingContext ) const;
+
+ /// load (old xml format)
+ static KWTableStyle *loadStyle( QDomElement & parentElem, KWDocument *_doc, int docVersion=2 );
+ /// load (new oasis xml format)
+ void loadOasis( QDomElement & styleElem, KoOasisContext& context, const KoStyleCollection& paragraphStyles, const KWFrameStyleCollection& frameStyles );
+
+private:
+ KoParagStyle *m_paragStyle;
+ KWFrameStyle *m_frameStyle;
+};
+
+/**
+ * Collection of user-defined table styles
+ */
+class KWTableStyleCollection : public KoUserStyleCollection
+{
+public:
+ KWTableStyleCollection();
+
+ static QString defaultStyleName() { return QString::fromLatin1( "Plain" ); }
+
+ /**
+ * Find style based on the untranslated name @p name.
+ * Overloaded for convenience
+ */
+ KWTableStyle* findStyle( const QString & name ) const {
+ return static_cast<KWTableStyle*>( KoUserStyleCollection::findStyle( name, defaultStyleName() ) );
+ }
+
+
+ /**
+ * Find style based on the display name @p name.
+ * This is only for the old XML loading.
+ * Overloaded for convenience
+ */
+ KWTableStyle* findStyleByDisplayName( const QString & name ) const {
+ return static_cast<KWTableStyle*>( KoUserStyleCollection::findStyleByDisplayName( name ) );
+ }
+
+ /**
+ * See KoUserStyleCollection::addStyle.
+ * Overloaded for convenience.
+ */
+ KWTableStyle* addStyle( KWTableStyle* sty ) {
+ return static_cast<KWTableStyle*>( KoUserStyleCollection::addStyle( sty ) );
+ }
+
+ /**
+ * Return style number @p i.
+ */
+ KWTableStyle* tableStyleAt( int i ) const {
+ return static_cast<KWTableStyle*>( m_styleList[i] );
+ }
+
+ void saveOasis( KoGenStyles& mainStyles, KoSavingContext& savingContext ) const;
+ int loadOasisStyles( KoOasisContext& context, const KoStyleCollection& paragraphStyles, const KWFrameStyleCollection& frameStyles );
+};
+
+#endif