mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
19 lines
353 B
C
19 lines
353 B
C
|
#ifndef ABOUTQET_H
|
|||
|
#define ABOUTQET_H
|
|||
|
#include <QtGui>
|
|||
|
/**
|
|||
|
Cette classe represente la boite de dialogue
|
|||
|
<EFBFBD> A propos de QElectroTech <EFBFBD>
|
|||
|
*/
|
|||
|
class AboutQET : public QDialog {
|
|||
|
Q_OBJECT
|
|||
|
public:
|
|||
|
AboutQET(QWidget * = 0);
|
|||
|
private:
|
|||
|
QWidget *titre();
|
|||
|
QWidget *ongletAPropos();
|
|||
|
QWidget *ongletAuteurs();
|
|||
|
QWidget *ongletLicence();
|
|||
|
};
|
|||
|
#endif
|