welcomeview.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef WELCOMEVIEW_H
00022 #define WELCOMEVIEW_H
00023
00024 #include <QGridLayout>
00025 #include <QLabel>
00026 #include "src/gui/view/abstractcontentview.h"
00027
00028
00037 class WelcomeView : public AbstractContentView
00038 {
00039 Q_OBJECT
00040
00041 public:
00046 WelcomeView();
00047
00052 ~WelcomeView();
00053
00054 bool hasChanged();
00055 AbstractContentChange* getChange();
00056
00061 void setVisible(bool visible);
00062
00063 private slots:
00064 void selectNode(const QString &link);
00065
00066 private:
00067 QGridLayout *layout;
00068 QLabel *icon,
00069 *welcome,
00070 *header,
00071 *modifiedCap,
00072 *modifiedVal;
00073
00074 void createRecentModifiedList();
00075 };
00076
00077 #endif // WELCOMEVIEW_H
00078