Huggle  build:^490^dce1e5c
 All Classes Namespaces Functions Variables Enumerations Enumerator Pages
hugglelog.hpp
1 //This program is free software: you can redistribute it and/or modify
2 //it under the terms of the GNU General Public License as published by
3 //the Free Software Foundation, either version 3 of the License, or
4 //(at your option) any later version.
5 
6 //This program is distributed in the hope that it will be useful,
7 //but WITHOUT ANY WARRANTY; without even the implied warranty of
8 //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 //GNU General Public License for more details.
10 
11 #ifndef HUGGLELOG_H
12 #define HUGGLELOG_H
13 
14 #include <QString>
15 #include <QCursor>
16 #include <QDockWidget>
17 #include <QDateTime>
18 #include "exception.hpp"
19 
20 namespace Ui
21 {
22  class HuggleLog;
23 }
24 
25 namespace Huggle
26 {
27  //! This window contains all the messages that are stored in ring log
28  class HuggleLog : public QDockWidget
29  {
30  Q_OBJECT
31  public:
32  explicit HuggleLog(QWidget *parent = 0);
33  void InsertText(QString text);
34  ~HuggleLog();
35  private:
36  Ui::HuggleLog *ui;
37  };
38 }
39 
40 #endif // HUGGLELOG_H
This window contains all the messages that are stored in ring log.
Definition: hugglelog.hpp:28