blob: a5d8a3f712df02ac84cdb00d0d826674529844c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
/*
For general Scribus (>=1.3.2) copyright and licensing information please refer
to the COPYING file provided with the program. Following this notice may exist
a copyright and/or license notice that predates the release of Scribus 1.3.2
for which a new license (GPL+exception) is in place.
*/
#ifndef MARGINDIALOG_H
#define MARGINDIALOG_H
#include "scribusapi.h"
#include <QDialog>
class QGroupBox;
class QLabel;
class QPushbutton;
class QComboBox;
class QCheckBox;
class QLabel;
class QGridLayout;
class QHBoxLayout;
class QVBoxLayout;
class ScrSpinBox;
class MarginWidget;
class ScribusDoc;
/*! \brief A dialog to setup the existing document margins.
In modal mode called from void ScribusMainWindow::changePageMargins() */
class SCRIBUS_API MarginDialog : public QDialog
{
Q_OBJECT
public:
/*! \brief GUI setup
\param parent Scribus main window in this case
\param doc current document */
MarginDialog( QWidget* parent, ScribusDoc* doc);
~MarginDialog() {};
/*! \brief Returns recomputed "Links" index/value for facing pages.
\retval int 0 for max item, 1 for min. item++ for middle. Why? */
int pageOrder();
/*! \brief Current value of orientationQComboBox.
\retval int index of combobox */
int getPageOrientation();
/*! \brief Selected page width
\retval double X */
double getPageWidth();
/*! \brief Selected page height
\retval double Y */
double getPageHeight();
/*! \brief Bool value of moveObjects "property"
\retval bool true for moving */
bool getMoveObjects();
/*! \brief Returns prefsPageSizeName value
\retval QString prefsPageSizeName property */
QString getpPrefsPageSizeName();
/*! \brief Top Margin
\retval double margin size */
double top();
/*! \brief Bottom Margin
\retval double margin size */
double bottom();
/*! \brief Left Margin
\retval double margin size */
double left();
/*! \brief Right Margin
\retval double margin size */
double right();
/*! \brief Master Page
\retval QString Master Page Name */
QString masterPage();
int getMarginPreset();
public slots:
//! \brief as setOrien for orientationQComboBox current item
virtual void setPageSize();
/*! \brief Sets page size and enables/disables size widgets.
\param gr A QString with name of the page size or "Custom" */
virtual void setSize(const QString & gr);
/*! \brief Sets page orientation and sizes regarding the given value
\param ori integer from orientationQComboBox item index */
virtual void setOrien(int ori);
/*! \brief Recompute the page width for current unit.
It's called from width spinbox.
\param v new width */
virtual void setPageWidth(double v);
/*! \brief Recompute the page height for current unit.
It's called from width spinbox.
\param v new height */
virtual void setPageHeight(double v);
private:
MarginWidget* GroupRand;
QGroupBox* dsGroupBox7;
QGroupBox* groupMaster;
QLabel* masterPageLabel;
QComboBox* masterPageComboBox;
ScrSpinBox* widthSpinBox;
ScrSpinBox* heightSpinBox;
QLabel* widthQLabel;
QLabel* heightQLabel;
QLabel* TextLabel1;
QLabel* TextLabel2;
QComboBox* sizeQComboBox;
QComboBox* orientationQComboBox;
QComboBox* Links;
QLabel* TextLabel3;
QCheckBox* moveObjects;
QPushButton* cancelButton;
QPushButton* okButton;
double unitRatio;
double pageWidth;
double pageHeight;
//! \brief Old orientation. Before it's changed via combobox.
int oldOri;
QString prefsPageSizeName;
QGridLayout* dsGroupBox7Layout;
QVBoxLayout* dialogLayout;
QHBoxLayout* okCancelLayout;
QHBoxLayout* masterLayout;
};
#endif
|