AlbumShaper
1.0a3
|
00001 //============================================== 00002 // copyright : (C) 2003-2005 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 00011 #ifndef GUI_WELCOMEWINDOW_WELCOMEWINDOW_H 00012 #define GUI_WELCOMEWINDOW_WELCOMEWINDOW_H 00013 00014 #include <qdialog.h> 00015 00016 //forward declarations 00017 class QGridLayout; 00018 class QPixmap; 00019 class QLabel; 00020 class QPushButton; 00021 class QIconViewItem; 00022 class Items; 00023 class Item; 00024 00025 //====================== 00026 class WelcomeWindow : public QDialog 00027 { 00028 Q_OBJECT 00029 //---------------------- 00030 public: 00031 WelcomeWindow( QWidget *parent=0, const char* name=0); 00032 //---------------------- 00033 private slots: 00034 void itemClicked( QIconViewItem *item ); 00035 //---------------------- 00036 private: 00037 QGridLayout* grid; 00038 00039 QLabel* sideImage; 00040 QLabel* welcomeTitle; 00041 QLabel* welcomeMessage; 00042 00043 Items* items; 00044 Item *help, *updates, *upcoming; 00045 00047 QPushButton* closeButton; 00048 //---------------------- 00049 }; 00050 //====================== 00051 00052 #endif //GUI_WELCOMEWINDOW_WELCOMEWINDOW_H