59 lines
1.6 KiB
C++
59 lines
1.6 KiB
C++
/*******************************************************************************
|
|
* *
|
|
* 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 <QGraphicsWidget>
|
|
#include "Guipage.h"
|
|
#include <QString>
|
|
#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
|