"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "scribus-1.3.3.12/scribus/annota.h" of archive scribus-1.3.3.12.tar.gz:


As a special service "SfR Fresh" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
    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 /***************************************************************************
    8  *                                                                         *
    9  *   This program is free software; you can redistribute it and/or modify  *
   10  *   it under the terms of the GNU General Public License as published by  *
   11  *   the Free Software Foundation; either version 2 of the License, or     *
   12  *   (at your option) any later version.                                   *
   13  *                                                                         *
   14  ***************************************************************************/
   15 #ifndef ANNOTA_H
   16 #define ANNOTA_H
   17 
   18 #include <qdialog.h>
   19 #include <qcombobox.h>
   20 #include <qgroupbox.h>
   21 #include <qlabel.h>
   22 #include <qpushbutton.h>
   23 #include <qspinbox.h>
   24 #include <qlayout.h>
   25 #include <qtooltip.h>
   26 #include <qwidgetstack.h>
   27 #include <qlineedit.h>
   28 #include <qframe.h>
   29 
   30 #include "scribusapi.h"
   31 
   32 class PageItem;
   33 class Navigator;
   34 class ScribusView;
   35 
   36 class SCRIBUS_API Annota : public QDialog
   37 {
   38 	Q_OBJECT
   39 
   40 public:
   41 	Annota(QWidget* parent, PageItem *it, int Seite, int b, int h, ScribusView* vie);
   42 	~Annota() {};
   43 	QWidgetStack* Fram;
   44 	QLabel* TextLabel1;
   45 	QComboBox* ComboBox1;
   46 	QGroupBox* GroupBox1;
   47 	QLabel* TextLabel3;
   48 	QLabel* TextLabel4;
   49 	QLabel* TextLabel5;
   50 	QLineEdit* Destfile;
   51 	QPushButton* ChFile;
   52 	Navigator* Pg;
   53 	QSpinBox* SpinBox1;
   54 	QSpinBox* SpinBox2;
   55 	QSpinBox* SpinBox3;
   56 	QFrame* Frame9;
   57 	QPushButton* PushButton1;
   58 	QPushButton* PushButton2;
   59 	PageItem* item;
   60 	ScribusView* view;
   61 	int Breite;
   62 	int Hoehe;
   63 	int OriBreite;
   64 	int OriHoehe;
   65 	int MaxSeite;
   66 
   67 public slots:
   68 	void SetCo(double x, double y);
   69 	void SetPg(int v);
   70 	void SetCross();
   71 	void SetVals();
   72 	void SetZiel(int i);
   73 	void GetFile();
   74 
   75 protected:
   76 	QVBoxLayout* AnnotLayout;
   77 	QHBoxLayout* Layout1;
   78 	QGridLayout* GroupBox1Layout;
   79 	QHBoxLayout* Layout1_2;
   80 };
   81 
   82 #endif // ANNOT_H