blob: a5728b6683e5dd7157ff912fa670f7be279ee21b (
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
|
/*
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.
*/
/***************************************************************************
begin : June 2005
copyright : (C) 2005 by Craig Bradney
email : cbradney@zip.com.au
***************************************************************************/
/***************************************************************************
* *
* Scribus is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef ALIGNDISTRIBUTEPALETTE_H
#define ALIGNDISTRIBUTEPALETTE_H
#include "ui_aligndistribute.h"
#include <QVariant>
#include <QPixmap>
#include <QDialog>
#include <QLabel>
#include <QList>
class QEvent;
#include "scribusapi.h"
#include "scribusview.h"
#include "scrpalettebase.h"
class QSpacerItem;
class QLabel;
class QLineEdit;
class QComboBox;
class QToolButton;
class ScrSpinBox;
class ScribusMainWindow;
class ScribusDoc;
class UndoManager;
struct AlignObjs;
/*! \brief Align/Distribute palette.
*/
class SCRIBUS_API AlignDistributePalette : public ScrPaletteBase, Ui::AlignDistribute
{
Q_OBJECT
public:
AlignDistributePalette( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, Qt::WFlags fl = 0 );
~AlignDistributePalette();
virtual void setDoc( ScribusDoc* newDoc );
void unitChange();
virtual void changeEvent(QEvent *e);
public slots:
void setGuide(int, qreal);
protected:
ScribusView *currView;
protected slots:
virtual void languageChange();
void alignLeftOut();
void alignRightOut();
void alignBottomIn();
void alignRightIn();
void alignBottomOut();
void alignCenterHor();
void alignLeftIn();
void alignCenterVer();
void alignTopOut();
void alignTopIn();
void distributeDistH(bool usingDistance=false);
void distributeDistValH();
void distributeDistAcrossPage();
void distributeDistAcrossMargins();
void distributeRight();
void distributeBottom();
void distributeCenterH();
void distributeDistV(bool usingDistance=false);
void distributeDistValV();
void distributeDistDownPage();
void distributeDistDownMargins();
void distributeLeft();
void distributeCenterV();
void distributeTop();
void alignToChanged(int);
void alignMethodChanged(int);
private:
void init();
UndoManager *undoManager;
ScribusDoc::AlignTo currAlignTo;
ScribusDoc::AlignMethod currAlignMethod;
QList<AlignObjs> *alignObjects;
ScribusDoc *currDoc;
qreal unitRatio;
int guideDirection;
qreal guidePosition;
QString guideInfoText, guideInfoTextNone;
void enableGuideButtons();
signals:
void documentChanged();
};
#endif // ALIGNDISTRIBUTEPALETTE_H
|