~ubuntu-branches/ubuntu/trusty/scribus-ng/trusty

« back to all changes in this revision

Viewing changes to scribus/polyprops.h

  • Committer: Package Import Robot
  • Author(s): Oleksandr Moskalenko
  • Date: 2012-02-15 15:57:12 UTC
  • mfrom: (4.2.10 sid)
  • Revision ID: package-import@ubuntu.com-20120215155712-biimoc8o875jht80
Tags: 1.4.0.dfsg+r17300-1
* Prepare a dummy transitional package to converge on the 1.4.0 release.
* debian/NEWS: update the news.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 POLYGONPROPS_H
8
 
#define POLYGONPROPS_H
9
 
 
10
 
#include <QDialog>
11
 
class QVBoxLayout;
12
 
class QHBoxLayout;
13
 
class QPushButton;
14
 
 
15
 
#include "scribusapi.h"
16
 
class PolygonWidget;
17
 
 
18
 
class SCRIBUS_API PolygonProps : public QDialog
19
 
{
20
 
        Q_OBJECT
21
 
 
22
 
public:
23
 
        PolygonProps(QWidget* parent, int polyC, int polyFd, double polyF, bool polyS, double polyR, double polyCurvature);
24
 
        ~PolygonProps() {};
25
 
        void getValues(int* polyC, int* polyFd, double* polyF, bool* polyS, double* polyR, double* polyCurvature);
26
 
        PolygonWidget* polyWidget;
27
 
        QPushButton* okButton;
28
 
        QPushButton* cancelButton;
29
 
 
30
 
protected:
31
 
        QVBoxLayout* PolygonPropsLayout;
32
 
        QHBoxLayout* Layout1;
33
 
};
34
 
 
35
 
#endif // POLYGONPROPS_H