~ubuntu-branches/ubuntu/natty/vlc/natty

« back to all changes in this revision

Viewing changes to modules/gui/qt4/components/info_panels.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2010-06-25 01:09:16 UTC
  • mfrom: (1.1.30 upstream)
  • Revision ID: james.westby@ubuntu.com-20100625010916-asxhep2mutg6g6pd
Tags: 1.1.0-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - build and install the libx264 plugin
  - add Xb-Npp header to vlc package
  - Add apport hook to include more vlc dependencies in bug reports
* Drop xulrunner patches.
* Drop 502_xulrunner_191.diff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * infopanels.hpp : Panels for the information dialogs
3
3
 ****************************************************************************
4
4
 * Copyright (C) 2006-2007 the VideoLAN team
5
 
 * $Id: f5d8de8ede673319468ef321d5f9977779ce3b72 $
 
5
 * $Id: ec58f29cfb5acdd8c1c87bb1bd9342f230078fcb $
6
6
 *
7
7
 * Authors: Clément Stenac <zorglub@videolan.org>
8
8
 *          Jean-Baptiste Kempf <jb@videolan.org>
52
52
 
53
53
class MetaPanel: public QWidget
54
54
{
55
 
    Q_OBJECT;
 
55
    Q_OBJECT
56
56
public:
57
 
    MetaPanel( QWidget *, intf_thread_t * );
 
57
    MetaPanel( QWidget *, struct intf_thread_t * );
58
58
    void saveMeta();
59
59
 
60
60
    bool isInEditMode();
62
62
 
63
63
private:
64
64
    input_item_t *p_input;
65
 
    intf_thread_t *p_intf;
 
65
    struct intf_thread_t *p_intf;
66
66
    bool b_inEditMode;
67
67
 
68
68
    QLineEdit *title_text;
95
95
 
96
96
class ExtraMetaPanel: public QWidget
97
97
{
98
 
    Q_OBJECT;
 
98
    Q_OBJECT
99
99
public:
100
 
    ExtraMetaPanel( QWidget *, intf_thread_t * );
 
100
    ExtraMetaPanel( QWidget *, struct intf_thread_t * );
101
101
private:
102
 
    intf_thread_t *p_intf;
 
102
    struct intf_thread_t *p_intf;
103
103
    QTreeWidget *extraMetaTree;
104
104
public slots:
105
105
    void update( input_item_t * );
108
108
 
109
109
class InputStatsPanel: public QWidget
110
110
{
111
 
    Q_OBJECT;
 
111
    Q_OBJECT
112
112
public:
113
 
    InputStatsPanel( QWidget *, intf_thread_t * );
 
113
    InputStatsPanel( QWidget *, struct intf_thread_t * );
114
114
private:
115
 
    intf_thread_t *p_intf;
 
115
    struct intf_thread_t *p_intf;
116
116
 
117
117
    QTreeWidget *StatsTree;
118
118
    QTreeWidgetItem *input;
146
146
 
147
147
class InfoPanel: public QWidget
148
148
{
149
 
    Q_OBJECT;
 
149
    Q_OBJECT
150
150
public:
151
 
    InfoPanel( QWidget *, intf_thread_t * );
 
151
    InfoPanel( QWidget *, struct intf_thread_t * );
152
152
private:
153
 
    intf_thread_t *p_intf;
 
153
    struct intf_thread_t *p_intf;
154
154
    QTreeWidget *InfoTree;
155
155
public slots:
156
156
    void update( input_item_t * );