]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/messages.hpp
766feffaa7ce6a4a1908d5934c2f30dd36667d9d
[vlc] / modules / gui / qt4 / dialogs / messages.hpp
1 /*****************************************************************************
2  * Messages.hpp : Information about a stream
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jean-Baptiste Kempf <jb (at) videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef QVLC_MESSAGES_DIALOG_H_
25 #define QVLC_MESSAGES_DIALOG_H_ 1
26
27 #include "util/qvlcframe.hpp"
28 #include "util/singleton.hpp"
29
30 class QTabWidget;
31 class QPushButton;
32 class QSpinBox;
33 class QGridLayout;
34 class QLabel;
35 class QTextEdit;
36 class QTreeWidget;
37 class QTreeWidgetItem;
38
39 class MessagesDialog : public QVLCFrame, public Singleton<MessagesDialog>
40 {
41     Q_OBJECT;
42 private:
43     MessagesDialog( intf_thread_t * );
44     virtual ~MessagesDialog();
45
46     QTabWidget *mainTab;
47     QSpinBox *verbosityBox;
48     QLabel *verbosityLabel;
49     QTextEdit *messages;
50     QTreeWidget *modulesTree;
51     QPushButton *clearUpdateButton;
52     QPushButton *saveLogButton;
53     msg_subscription_t *sub;
54     msg_cb_data_t *cbData;
55     static void sinkMessage( msg_cb_data_t *, msg_item_t *, unsigned );
56     void customEvent( QEvent * );
57     void sinkMessage( msg_item_t *item );
58
59 private slots:
60     void updateTab( int );
61     void clearOrUpdate();
62     bool save();
63 private:
64     void clear();
65     void updateTree();
66     void buildTree( QTreeWidgetItem *, vlc_object_t * );
67
68     friend class    Singleton<MessagesDialog>;
69 };
70
71 #endif