"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "scribus-1.3.3.12/scribus/about.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 #ifndef ABOUT_H
    8 #define ABOUT_H
    9 
   10 #include <qdialog.h>
   11 #include <qlabel.h>
   12 #include <qtabwidget.h>
   13 #include <qwidget.h>
   14 #include "helpbrowser.h"
   15 #include <qpushbutton.h>
   16 #include <qlayout.h>
   17 
   18 #include "scribusapi.h"
   19 
   20 class SCRIBUS_API About : public QDialog
   21 {
   22     	Q_OBJECT
   23 
   24 public:
   25 	About( QWidget* parent );
   26 	~About() {};
   27 
   28 	QLabel* pixmapLabel1;
   29 	QLabel* buildID;
   30 	QPushButton* okButton;
   31 	QPushButton* checkForUpdateButton;
   32 	QTabWidget* tabWidget2;
   33 	QWidget* tab;
   34 	QWidget* tab_2;
   35 	QWidget* tab_3;
   36 	QWidget* tab_4;
   37 	QWidget* tab_5;
   38 	TextBrowser* textView1;
   39 	TextBrowser* textView2;
   40 	TextBrowser* textView4;
   41 	TextBrowser* textView5;
   42 
   43 protected:
   44 	QVBoxLayout* aboutLayout;
   45 	QVBoxLayout* updateLayout;
   46 	QHBoxLayout* tabLayout;
   47 	QVBoxLayout* tabLayout1;
   48 	QHBoxLayout* tabLayout_2;
   49 	QHBoxLayout* tabLayout_4;
   50 	QHBoxLayout* layout2;
   51 
   52 protected slots:
   53 	void runUpdateCheck();
   54 };
   55 
   56 #endif // ABOUT_H