Scribus
Open source desktop publishing at your fingertips
sccombobox.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  * sccombobox.h
9  * ScribusCVS
10  *
11  * Created by Andreas Vox on 01.10.05.
12  * Copyright 2005 under GPL2. All rights reserved.
13  *
14  */
15 
16 #ifndef SCCOMBOBOX_H
17 #define SCCOMBOBOX_H
18 
19 #include <QComboBox>
20 
26 class ScComboBox : public QComboBox
27 {
28 
29 public:
30  ScComboBox( QWidget* parent=0);
31 };
32 
33 #endif
The ScComboBox widget always uses a listbox instead of a popup, independent of any QStyle...
Definition: sccombobox.h:26