Engauge Digitizer 2
Loading...
Searching...
No Matches
MainWindowMsg.h
Go to the documentation of this file.
1/******************************************************************************************************
2 * (C) 2020 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
3 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
4 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. *
5 ******************************************************************************************************/
6
7#ifndef MAIN_WINDOW_MSG_H
8#define MAIN_WINDOW_MSG_H
9
10#include <QMainWindow>
11#include <QShowEvent>
12
13class QAbstractButton;
14
20class MainWindowMsg : public QMainWindow
21{
22 Q_OBJECT;
23
24public:
26 MainWindowMsg(const QString &msg);
28
30 virtual void showEvent(QShowEvent *);
31
32private slots:
33 void slotClose (QAbstractButton *);
34
35private:
36
38
39 const QString m_msg;
40
41};
42
43#endif // MAIN_WINDOW_MSG_H
MainWindowMsg(const QString &msg)
Single constructor.
virtual void showEvent(QShowEvent *)
Processing performed after gui becomes available.