Scribus
Open source desktop publishing at your fingertips
fontlistview.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 #ifndef FONTLISTVIEW_H
8 #define FONTLISTVIEW_H
9 
10 #include <QTableView>
11 
12 #include "scfonts.h"
13 
14 
20 class SCRIBUS_API FontListView : public QTableView
21 {
22  Q_OBJECT
23 
24  public:
25  FontListView(QWidget * parent = 0);
26  void setModel(QAbstractItemModel * model);
27  void setFonts(SCFonts f);
28 };
29 
30 #endif
A table view for FontListModel. Customized QTableView to handle FontListModel in the unified way (loo...
Definition: fontlistview.h:20
Main class SCFonts. Subclass of QDict. This class replaces the previous SCFonts typedef...
Definition: scfonts.h:36