mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-11 17:13:47 +02:00
2019-10-01 Fred Gleason <fredg@paravelsystems.com>
* Added an 'RDDialog' class. * Added an 'RDWidget' class. * Refactored rdadmin(1) to use 'RDDialog' and 'RDWidget' base classes.
This commit is contained in:
@@ -22,10 +22,12 @@
|
||||
#ifndef LICENSE_H
|
||||
#define LICENSE_H
|
||||
|
||||
#include <qdialog.h>
|
||||
#include <qpushbutton.h>
|
||||
#include <qtextedit.h>
|
||||
|
||||
class License : public QDialog
|
||||
#include <rddialog.h>
|
||||
|
||||
class License : public RDDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
@@ -40,8 +42,12 @@ class License : public QDialog
|
||||
private slots:
|
||||
void closeData();
|
||||
|
||||
protected:
|
||||
void resizeEvent(QResizeEvent *e);
|
||||
|
||||
private:
|
||||
QTextEdit *license_edit;
|
||||
QPushButton *close_button;
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user