-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpageglobals.cpp
More file actions
executable file
·161 lines (127 loc) · 4.02 KB
/
pageglobals.cpp
File metadata and controls
executable file
·161 lines (127 loc) · 4.02 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/****************************************************************************
**
** Copyright (C) 2007-2009 Kevin Clague. All rights reserved.
**
** This file may be used under the terms of the GNU General Public
** License version 2.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of
** this file. Please review the following information to ensure GNU
** General Public Licensing requirements will be met:
** http://www.trolltech.com/products/qt/opensource.html
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#include <QGroupBox>
#include <QGridLayout>
#include <QWidget>
#include <QTabWidget>
#include <QDialog>
#include <QDialogButtonBox>
#include "globals.h"
#include "meta.h"
#include "metaitem.h"
#include "metagui.h"
/**********************************************************************
*
* Page
*
*********************************************************************/
class GlobalPagePrivate
{
public:
Meta meta;
QString topLevelFile;
QList<MetaGui *> children;
GlobalPagePrivate(QString &_topLevelFile, Meta &_meta)
{
topLevelFile = _topLevelFile;
meta = _meta;
MetaItem mi; // examine all the globals and then return
mi.sortedGlobalWhere(meta,topLevelFile,"ZZZZZZZ");
}
};
GlobalPageDialog::GlobalPageDialog(
QString &topLevelFile, Meta &meta)
{
data = new GlobalPagePrivate(topLevelFile,meta);
setWindowTitle(tr("Page Globals Setup"));
QTabWidget *tab = new QTabWidget(this);
QVBoxLayout *layout = new QVBoxLayout(this);
setLayout(layout);
layout->addWidget(tab);
QWidget *widget;
QGridLayout *grid;
widget = new QWidget(this);
grid = new QGridLayout(this);
widget->setLayout(grid);
MetaGui *child;
QGroupBox *box;
PageMeta *pageMeta = &data->meta.LPub.page;
box = new QGroupBox("Size",this);
grid->addWidget(box,0,0);
child = new UnitsGui("",&pageMeta->size,box);
data->children.append(child);
box = new QGroupBox("Margins",this);
grid->addWidget(box,1,0);
child = new UnitsGui("",&pageMeta->margin,box);
data->children.append(child);
box = new QGroupBox("Background",this);
grid->addWidget(box, 2, 0);
child = new BackgroundGui(&pageMeta->background,box);
data->children.append(child);
box = new QGroupBox("Border",this);
grid->addWidget(box, 3, 0);
child = new BorderGui(&pageMeta->border,box);
data->children.append(child);
tab->addTab(widget,"Page");
widget = new QWidget(this);
grid = new QGridLayout(this);
widget->setLayout(grid);
child = new CheckBoxGui("Display Page Number",&pageMeta->dpn,NULL);
data->children.append(child);
grid->addWidget(child,0,0,1,2);
box = new QGroupBox("Look",this);
grid->addWidget(box,1,0);
child = new NumberGui(&pageMeta->number,box);
data->children.append(child);
box = new QGroupBox("Placement",this);
grid->addWidget(box,2,0);
child = new BoolRadioGui(
"Alternate Corners (like books)",
"Page Number Always in Same Place",
&pageMeta->togglePnPlacement,
box);
data->children.append(child);
tab->addTab(widget,"Page Number");
QDialogButtonBox *buttonBox;
buttonBox = new QDialogButtonBox(this);
buttonBox->addButton(QDialogButtonBox::Ok);
connect(buttonBox,SIGNAL(accepted()),SLOT(accept()));
buttonBox->addButton(QDialogButtonBox::Cancel);
connect(buttonBox,SIGNAL(rejected()),SLOT(cancel()));
layout->addWidget(buttonBox);
setModal(true);
}
void GlobalPageDialog::getPageGlobals(
QString topLevelFile, Meta &meta)
{
GlobalPageDialog *dialog = new GlobalPageDialog(topLevelFile,meta);
dialog->exec();
}
void GlobalPageDialog::accept()
{
MetaItem mi;
mi.beginMacro("GlobalPage");
MetaGui *child;
foreach(child,data->children) {
child->apply(data->topLevelFile);
}
mi.endMacro();
QDialog::accept();
}
void GlobalPageDialog::cancel()
{
QDialog::reject();
}