* added SubWindow flag to QtWindow to either use window decorations or show window within main window * fixes black borders in some Linux window managers bug id = 376 fortune cookie message = Your skill will accomplish what the force of many others cannot.
19 lines
237 B
C++
19 lines
237 B
C++
#ifndef QT_ABOUT_H
|
|
#define QT_ABOUT_H
|
|
|
|
#include "qt/window/QtWindow.h"
|
|
|
|
class QtAbout
|
|
: public QtWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtAbout(QWidget* parent = 0);
|
|
QSize sizeHint() const override;
|
|
|
|
void setupAbout();
|
|
};
|
|
|
|
#endif // QT_ABOUT_H
|