]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/messages.hpp
Drop trailing semicolons
[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 class QLineEdit;
39
40 class MessagesDialog : public QVLCFrame, public Singleton<MessagesDialog>
41 {
42     Q_OBJECT
43 private:
44     MessagesDialog( intf_thread_t * );
45     virtual ~MessagesDialog();
46
47     QTabWidget *mainTab;
48     QSpinBox *verbosityBox;
49     QLabel *verbosityLabel;
50     QTextEdit *messages;
51     QTreeWidget *modulesTree;
52     QPushButton *clearUpdateButton;
53     QPushButton *saveLogButton;
54     QLineEdit *vbobjectsEdit;
55     QLabel *vbobjectsLabel;
56     msg_subscription_t *sub;
57     msg_cb_data_t *cbData;
58     static void sinkMessage( msg_cb_data_t *, msg_item_t *, unsigned );
59     void customEvent( QEvent * );
60     void sinkMessage( msg_item_t *item );
61
62 private slots:
63     void updateTab( int );
64     void clearOrUpdate();
65     bool save();
66     void updateConfig();
67 private:
68     void clear();
69     void updateTree();
70     void buildTree( QTreeWidgetItem *, vlc_object_t * );
71
72     friend class    Singleton<MessagesDialog>;
73 };
74
75 #endif