gbcflsh/About.h

26 lines
607 B
C++

/*****************************************************************************
** About.h
** Author: Kraku
*****************************************************************************/
#ifndef _ABOUT_H_
#define _ABOUT_H_
#include <QDialog>
#include <QPushButton>
#include <QPixmap>
#include <QLabel>
#include <QBoxLayout>
#include <QGroupBox>
class About:public QDialog
{
Q_OBJECT QPushButton * ok_btn;
QLabel *image;
QVBoxLayout *all;
QGroupBox *box;
QLabel *name, *copy, *desc1, *desc2, *email, *warning, *translator;
QVBoxLayout *labels;
public:
About (QWidget * parent = 0);
};
#endif