Blame view

LiveChat/FeiTalk/gui/msgmemo.h 628 Bytes
9f17d59e   陈明泉   no message
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  #ifndef MSGMEMO_H
  #define MSGMEMO_H
  
  #include <QWidget>
  #include "basemainwidget.h"
  #include <QWebView>
  
  namespace Ui {
  class msgMemo;
  }
  
  class msgMemo : public BaseMainWidget
  {
      Q_OBJECT
      
  public:
      explicit msgMemo(QWidget *parent = 0);
      ~msgMemo();
      QWebView * getMsgView();
      bool eventFilter(QObject *obj, QEvent *e);
  
      
  private slots:
      void on_pushButton_3_clicked();
  
      void on_pushButton_4_clicked();
  
      void on_pushButton_clicked();
  
      void on_pushButton_2_clicked();
  
      void on_msgSeng_clicked();
  
      void on_pictureSend_clicked();
  
  private:
      Ui::msgMemo *ui;
  };
  
  #endif // MSGMEMO_H