Scribus
Open source desktop publishing at your fingertips
tabmanager.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 TABMANAGER_H
8 #define TABMANAGER_H
9 
10 #include <QDialog>
11 
12 #include "scribusapi.h"
13 #include "styles/paragraphstyle.h"
14 
15 class QVBoxLayout;
16 class QHBoxLayout;
17 class QPushButton;
18 class Tabruler;
19 
20 class SCRIBUS_API TabManager : public QDialog
21 {
22  Q_OBJECT
23 
24 public:
25  TabManager( QWidget* parent, int dEin, QList<ParagraphStyle::TabRecord> inTab, double wid);
26  ~TabManager() {};
27  Tabruler* TabList;
28  QPushButton* OKButton;
29  QPushButton* CancelButton;
30  QList<ParagraphStyle::TabRecord> tmpTab;
31 
32 public slots:
33  void exitOK();
34 
35 protected:
36  QVBoxLayout* TabManagerLayout;
37  QHBoxLayout* layout10;
38 
39  double docUnitRatio;
40 };
41 
42 #endif // TABMANAGER_H
Definition: tabruler.h:83
Definition: tabmanager.h:20