UserMsgGui Pile   version 0.0.1
UserMsgGui pile.
usermsglogw.h
Go to the documentation of this file.
1 
10 #ifndef GUARD_USERMSGLOGW_H_INCLUDE
11 #define GUARD_USERMSGLOGW_H_INCLUDE
12 
13 #include <usermsg-gui/usermsggui-config.h>
14 #include <QtWidgets/QTextEdit>
15 
16 class UserMsg;
17 
19 class USERMSGGUI_EXPORT UserMsgLogW : public QTextEdit {
20  Q_OBJECT
21 
22 public:
23 
25  UserMsgLogW (QWidget * parent = NULL);
26 
28  virtual ~UserMsgLogW();
29 
30 public slots:
31 
33  void
34  showMessage (
35  const UserMsg & um);
36 
38  void
39  clearMessages ();
40 
42  void
43  reloadMessages ();
44 
45 
46 };
47 
48 #endif // GUARD_USERMSGLOGW_H_INCLUDE
A richtext based widget for showing user messages.
Definition: usermsglogw.h:19