Scribus
Open source desktop publishing at your fingertips
swatchcombo.h
1 /*
2 For general Scribus (>=1.3.2) copyright and licensing information please refer
3 to the COPYING file provided with the program. Following this notice may exist
4 a copyright and/or license notice that predates the release of Scribus 1.3.2
5 for which a new license (GPL+exception) is in place.
6 */
7 /**************************************************************************
8 * Copyright (C) 2010 by Franz Schmid *
9 * franz.schmid@altmuehlnet.de *
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
20 * *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program; if not, write to the *
23 * Free Software Foundation, Inc., *
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
25 ***************************************************************************/
26 #ifndef SWATCHCOMBO_H
27 #define SWATCHCOMBO_H
28 
29 #include <QTreeWidget>
30 #include <QToolButton>
31 #include <QMenu>
32 #include <QWidgetAction>
33 
34 #include "scribusapi.h"
35 
36 class SCRIBUS_API SwatchCombo : public QToolButton
37 {
38  Q_OBJECT
39 
40 public:
41  SwatchCombo( QWidget* parent = NULL );
42  QTreeWidgetItem* addTopLevelItem(QString name);
43  QTreeWidgetItem* addSubItem(QString name, QTreeWidgetItem* parent, bool selectable = true);
44  void setCurrentComboItem(QString text);
45  QTreeWidgetItem* currentItem();
46 signals:
47  void activated(const QString &);
48  void activated(QTreeWidgetItem*);
49 private slots:
50  void itemActivated(QTreeWidgetItem* item);
51 private:
52  QTreeWidget* dataTree;
53  QMenu* popUp;
54  QWidgetAction* popUpAct;
55 };
56 #endif
Definition: swatchcombo.h:36