Files
Sourcetrail/src/lib_gui/qt/window/QtAbout.h
T
Eberhard Graether 503ca76a40 ui: Use window decorations on dialog windows (issue #376)
* 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.
2017-06-07 14:40:16 +02:00

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