AlbumShaper  1.0a3
welcomeWindow.h
Go to the documentation of this file.
1 //==============================================
2 // copyright : (C) 2003-2005 by Will Stokes
3 //==============================================
4 // This program is free software; you can redistribute it
5 // and/or modify it under the terms of the GNU General
6 // Public License as published by the Free Software
7 // Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //==============================================
10 
11 #ifndef GUI_WELCOMEWINDOW_WELCOMEWINDOW_H
12 #define GUI_WELCOMEWINDOW_WELCOMEWINDOW_H
13 
14 #include <qdialog.h>
15 //Added by qt3to4:
16 #include <QPixmap>
17 #include <Q3GridLayout>
18 #include <QLabel>
19 
20 //forward declarations
21 class Q3GridLayout;
22 class QPixmap;
23 class QLabel;
24 class QPushButton;
25 class Q3IconViewItem;
26 class Items;
27 class Item;
28 
29 //======================
30 class WelcomeWindow : public QDialog
31 {
32 Q_OBJECT
33 //----------------------
34 public:
35  WelcomeWindow( QWidget *parent=0, const char* name=0);
36 //----------------------
37 private slots:
38  void itemClicked( Q3IconViewItem *item );
39 //----------------------
40 private:
41  Q3GridLayout* grid;
42 
46 
49 
51  QPushButton* closeButton;
52 //----------------------
53 };
54 //======================
55 
56 #endif //GUI_WELCOMEWINDOW_WELCOMEWINDOW_H
Definition: items.h:25
QLabel * welcomeTitle
Definition: welcomeWindow.h:44
QPushButton * closeButton
Close button.
Definition: welcomeWindow.h:51
QLabel * welcomeMessage
Definition: welcomeWindow.h:45
WelcomeWindow(QWidget *parent=0, const char *name=0)
void itemClicked(Q3IconViewItem *item)
Definition: item.h:27
QLabel * sideImage
Definition: welcomeWindow.h:43
Q3GridLayout * grid
Definition: welcomeWindow.h:41