Main Page | Class Hierarchy | Class List | File List | Class Members | File Members

about.h

Go to the documentation of this file.
00001 //==============================================
00002 //  copyright            : (C) 2003 by Will Stokes
00003 //==============================================
00004 //  This program is free software; you can redistribute it 
00005 //  and/or modify it under the terms of the GNU General 
00006 //  Public License as published by the Free Software 
00007 //  Foundation; either version 2 of the License, or  
00008 //  (at your option) any later version.         
00009 //
00010 //  As a special exception, Will Stokes gives permission to 
00011 //  link this program with Qt non-commercial edition, and 
00012 //  distribute the resulting executable, without including the 
00013 //  source code for the Qt non-commercial edition in the 
00014 //  source distribution. 
00015 //==============================================
00016 
00017 #ifndef GUI_ABOUT_H
00018 #define GUI_ABOUT_H
00019 
00020 #include <qdialog.h>
00021 
00022 //forward declarations
00023 class QGridLayout;
00024 class QPixmap;
00025 class QLabel;
00026 class QTextBrowser;
00027 
00028 //=====================================
00031 //=====================================
00032 
00033 //======================
00034 class About : public QDialog
00035 {
00036 Q_OBJECT
00037 //----------------------
00038 public:
00039   About( QWidget *parent=0, const char* name=0);
00040   void closeEvent( QCloseEvent* e);
00041 //----------------------
00042 signals:
00043   void aboutClosed();
00044 //----------------------
00045 private:
00046   QGridLayout* grid;
00047   
00048   QPixmap* albumShaperImage;
00049   QLabel* albumShaperLogo;  
00050     
00051   QLabel* progDesc;
00052   QLabel* progURL;
00053   QTextBrowser* browser;
00054 //----------------------
00055 };
00056 //======================
00057 
00058 #endif //GUI_ABOUT_H

Generated on Thu Nov 13 00:10:53 2003 for AlbumShaper by doxygen 1.3.4