summaryrefslogtreecommitdiffstats
path: root/kspread/kspread_genvalidationstyle.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 /kspread/kspread_genvalidationstyle.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 'kspread/kspread_genvalidationstyle.h')
-rw-r--r--kspread/kspread_genvalidationstyle.h99
1 files changed, 99 insertions, 0 deletions
diff --git a/kspread/kspread_genvalidationstyle.h b/kspread/kspread_genvalidationstyle.h
new file mode 100644
index 000000000..31c6a6529
--- /dev/null
+++ b/kspread/kspread_genvalidationstyle.h
@@ -0,0 +1,99 @@
+/* This file is part of the KDE project
+
+ Copyright 2004 Laurent Montel <montel@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 KSPREAD_GENVALIDATIONSTYLE
+#define KSPREAD_GENVALIDATIONSTYLE
+
+#include <qdict.h>
+#include <qmap.h>
+
+class KoXmlWriter;
+
+namespace KSpread
+{
+class Validity;
+class GenValidationStyle;
+
+class GenValidationStyles
+{
+public:
+ GenValidationStyles();
+ ~GenValidationStyles();
+ QString lookup( const GenValidationStyle& style );
+
+ typedef QMap<GenValidationStyle, QString> StyleMap;
+ void writeStyle( KoXmlWriter& writer );
+
+private:
+ QString makeUniqueName( const QString& base ) const;
+
+ /// style definition -> name
+ StyleMap m_styles;
+ /// name -> style (used to check for name uniqueness)
+ typedef QMap<QString, bool> NameMap;
+ NameMap m_names;
+
+};
+
+class GenValidationStyle
+{
+public:
+ explicit GenValidationStyle(Validity *_val=0) { initVal( _val ); }
+
+
+ bool operator<( const GenValidationStyle &other ) const {
+ if ( allowEmptyCell != other.allowEmptyCell ) return ( allowEmptyCell < other.allowEmptyCell );
+ if ( condition != other.condition ) return ( condition < other.condition );
+ if ( titleInfo != other.titleInfo ) return ( titleInfo < other.titleInfo );
+ if ( displayValidationInformation != other.displayValidationInformation ) return ( displayValidationInformation < other.displayValidationInformation );
+ if ( messageInfo != other.messageInfo ) return ( messageInfo < other.messageInfo );
+ if ( messageType != other.messageType ) return ( messageType < other.messageType );
+ if ( displayMessage != other.displayMessage ) return ( displayMessage < other.displayMessage );
+ if ( message != other.message ) return ( message < other.message );
+ if ( title != other.title ) return ( title < other.title );
+
+ return false;
+ }
+private:
+ QString createValidationCondition( Validity* _val );
+ QString createTextValidationCondition( Validity* _val );
+ QString createTimeValidationCondition( Validity* _val );
+ QString createDateValidationCondition( Validity* _val );
+ QString createNumberValidationCondition( Validity* _val );
+ QString createListValidationCondition( Validity* _val );
+
+ void initVal( Validity *_val );
+
+ QString allowEmptyCell;
+ QString condition;
+ QString titleInfo;
+ QString displayValidationInformation;
+ QString messageInfo;
+ QString messageType;
+ QString displayMessage;
+ QString message;
+ QString title;
+ friend class GenValidationStyles;
+};
+
+} // namespace KSpread
+
+#endif