/******************************************************************************* * * * Société de Transports de Montréal. * * 2012 * * * * Projet Zones Tests * * * * * * * *******************************************************************************/ /* Description: Description du fichier si nécessaire. */ /* ************************************************************************** */ /* Revision: ### 20121220 JFM Verision d'origine. ### YYYMMDD Description du besoin ou du bug Description du changement. */ /* ************************************************************************** */ #ifndef WELCOMEPAGE_H #define WELCOMEPAGE_H #include #include "Guipage.h" #include #include "SimpleTextBoxWidget.h" class CWelcomePage : public CGuiPage { Q_OBJECT public: CWelcomePage(QGraphicsWidget *Parent = 0); void ClearTextBoxWidget(void); void InsertTextBoxString(QString string); void ShowTextboxWidget(); private: CSimpleTextBoxWidget mTextBoxWidget; }; #endif // WELCOMEPAGE_H