summaryrefslogtreecommitdiff
path: root/src/ui/msgdialog.h
blob: 5a8f9bb3e3f11e742bf3e1d55e1329ae80d3e3b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: GPL-2.0-or-later

#ifndef FQTERM_MSGDIALOG_H
#define FQTERM_MSGDIALOG_H

#include "ui_msgdialog.h"

class msgDialog: public QDialog {
  Q_OBJECT; 
public:
  msgDialog(QWidget *parent = 0, Qt::WindowFlags fl = 0);
  ~msgDialog();
  void setMessageText(const QString& message);
  Ui::msgDialog ui_;
};

#endif  // FQTERM_MSGDIALOG_H