QGIS API Documentation  2.6.0-Brighton
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgsstylev2.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsstylev2.h
3  ---------------------
4  begin : November 2009
5  copyright : (C) 2009 by Martin Dobias
6  email : wonder dot sk at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #ifndef QGSSTYLEV2_H
17 #define QGSSTYLEV2_H
18 
19 #include <QMap>
20 #include <QMultiMap>
21 #include <QString>
22 
23 #include <sqlite3.h>
24 
25 #include "qgssymbollayerv2utils.h" // QgsStringMap
26 
27 class QgsSymbolV2;
28 class QgsSymbolLayerV2;
30 
31 class QDomDocument;
32 class QDomElement;
33 
34 typedef QMap<QString, QgsVectorColorRampV2* > QgsVectorColorRampV2Map;
35 typedef QMap<int, QString> QgsSymbolGroupMap;
36 
56 typedef QMultiMap<QString, QString> QgsSmartConditionMap;
57 
58 // enumerators representing sqlite DB columns
65 
66 class CORE_EXPORT QgsStyleV2 : public QObject
67 {
68  Q_OBJECT
69 
70  public:
71  QgsStyleV2();
72  ~QgsStyleV2();
73 
75 
80  enum StyleEntity { SymbolEntity, GroupEntity, TagEntity, ColorrampEntity, SmartgroupEntity };
81 
83 
90  bool addColorRamp( QString name, QgsVectorColorRampV2* colorRamp, bool update = false );
91 
93 
98  int addGroup( QString groupName, int parent = 0 );
99 
101 
106  int addSmartgroup( QString name, QString op, QgsSmartConditionMap conditions );
107 
109 
116  bool addSymbol( QString name, QgsSymbolV2* symbol, bool update = false );
117 
119 
123  int addTag( QString tagName );
124 
126  QgsSymbolGroupMap childGroupNames( QString parent = "" );
127 
129  void clear();
130 
132  QgsVectorColorRampV2* colorRamp( QString name );
133 
135  int colorRampCount();
136 
138  QStringList colorRampNames();
139 
141  const QgsVectorColorRampV2* colorRampRef( QString name ) const;
142 
145  int colorrampId( QString name );
146 
148  static QgsStyleV2* defaultStyle();
149 
151 
158  bool tagSymbol( StyleEntity type, QString symbol, QStringList tags );
159 
161 
168  bool detagSymbol( StyleEntity type, QString symbol, QStringList tags );
169 
171  bool removeSymbol( QString name );
172 
174  bool renameSymbol( QString oldName, QString newName );
175 
177  QgsSymbolV2* symbol( QString name );
178 
180  const QgsSymbolV2* symbolRef( QString name ) const;
181 
183  int symbolCount();
184 
186  QStringList symbolNames();
187 
190  int symbolId( QString name );
192  int groupId( QString group );
194  int tagId( QString tag );
196  int smartgroupId( QString smartgroup );
197 
199  QStringList groupNames();
200 
202 
207  QStringList symbolsOfGroup( StyleEntity type, int groupid );
208 
210 
215  QStringList symbolsWithTag( StyleEntity type, int tagid );
216 
218 
224  bool group( StyleEntity type, QString name, int groupid );
225 
227 
232  void rename( StyleEntity type, int id, QString newName );
233 
235 
239  void remove( StyleEntity type, int id );
240 
242 
249  bool saveSymbol( QString name, QgsSymbolV2* symbol, int groupid, QStringList tags );
250 
252 
259  bool saveColorRamp( QString name, QgsVectorColorRampV2* ramp, int groupid, QStringList tags );
260 
262  bool removeColorRamp( QString name );
263 
265  bool renameColorRamp( QString oldName, QString newName );
266 
267 
269  bool load( QString filename );
270 
272  bool save( QString filename = QString() );
273 
275  QString errorString() { return mErrorString; }
276 
278  QString fileName() { return mFileName; }
279 
281 
286  QStringList findSymbols( StyleEntity type, QString qword );
287 
289 
294  QStringList tagsOfSymbol( StyleEntity type, QString symbol );
295 
297  QgsSymbolGroupMap smartgroupsListMap();
298 
300  QStringList smartgroupNames();
301 
303  QgsSmartConditionMap smartgroup( int id );
304 
306  //clumsy implementation TODO create a class for smartgroups
307  QString smartgroupOperator( int id );
308 
310  QStringList symbolsOfSmartgroup( StyleEntity type, int id );
311 
313  bool exportXML( QString filename );
314 
316  bool importXML( QString filename );
317 
318  signals:
319  void symbolSaved( QString name, QgsSymbolV2* symbol );
320 
321  protected:
322 
325 
326  QString mErrorString;
327  QString mFileName;
328 
330 
332 
334  bool openDB( QString filename );
335 
340  bool runEmptyQuery( char* query, bool freeQuery = true );
341 
343  char* getGroupRemoveQuery( int id );
344 
346  int getId( QString table, QString name );
347 
349 
355  bool updateSymbol( StyleEntity type, QString name );
356 
357  private:
358  Q_DISABLE_COPY( QgsStyleV2 )
359 };
360 
361 
362 #endif