~ubuntu-branches/ubuntu/maverick/vlc/maverick

« back to all changes in this revision

Viewing changes to modules/gui/qt4/components/playlist/panels.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-09-17 21:56:14 UTC
  • mfrom: (1.1.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20080917215614-tj0vx8xzd57e52t8
Tags: 0.9.2-1ubuntu1
* New Upstream Release, exception granted by
    - dktrkranz, norsetto, Hobbsee (via irc). LP: #270404

Changes done in ubuntu:

* add libxul-dev to build-depends
* make sure that vlc is build against libxul in configure. This doesn't
  change anything in the package, but makes it more robust if building
  in an 'unclean' chroot or when modifying the package.
* debian/control: make Vcs-* fields point to the motumedia branch
* add libx264-dev and libass-dev to build-depends
  LP: #210354, #199870
* actually enable libass support by passing --enable-libass to configure
* enable libdca: add libdca-dev to build depends and --enable-libdca
* install the x264 plugin.

Changes already in the pkg-multimedia branch in debian:

* don't install usr/share/vlc/mozilla in debian/mozilla-plugin-vlc.install  
* new upstream .desktop file now registers flash video mimetype LP: #261567
* add Xb-Npp-Applications to mozilla-plugin-vlc
* remove duplicate entries in debian/vlc-nox.install

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 * panels.hpp : Panels for the playlist
 
3
 ****************************************************************************
 
4
 * Copyright (C) 2000-2005 the VideoLAN team
 
5
 * $Id$
 
6
 *
 
7
 * Authors: Clément Stenac <zorglub@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 _PLPANELS_H_
 
25
#define _PLPANELS_H_
 
26
 
 
27
#ifdef HAVE_CONFIG_H
 
28
# include "config.h"
 
29
#endif
 
30
 
 
31
#include <vlc_common.h>
 
32
 
 
33
#include "qt4.hpp"
 
34
#include "components/playlist/playlist.hpp"
 
35
 
 
36
#include <QModelIndex>
 
37
#include <QWidget>
 
38
#include <QString>
 
39
 
 
40
class QSignalMapper;
 
41
class QTreeView;
 
42
class PLModel;
 
43
class QPushButton;
 
44
class QKeyEvent;
 
45
class ClickLineEdit;
 
46
 
 
47
class PLPanel: public QWidget
 
48
{
 
49
    Q_OBJECT;
 
50
public:
 
51
    PLPanel( PlaylistWidget *p, intf_thread_t *_p_intf ) : QWidget( p )
 
52
    {
 
53
        p_intf = _p_intf;
 
54
        parent = p;
 
55
    }
 
56
    virtual ~PLPanel() {};
 
57
protected:
 
58
    intf_thread_t *p_intf;
 
59
    QFrame *parent;
 
60
public slots:
 
61
    virtual void setRoot( int ) = 0;
 
62
};
 
63
 
 
64
 
 
65
class StandardPLPanel: public PLPanel
 
66
{
 
67
    Q_OBJECT;
 
68
public:
 
69
    StandardPLPanel( PlaylistWidget *, intf_thread_t *,
 
70
                     playlist_t *,playlist_item_t * );
 
71
    virtual ~StandardPLPanel();
 
72
protected:
 
73
    virtual void keyPressEvent( QKeyEvent *e );
 
74
protected:
 
75
    PLModel *model;
 
76
    friend class PlaylistWidget;
 
77
private:
 
78
    QTreeView *view;
 
79
    QPushButton *repeatButton, *randomButton, *addButton, *gotoPlayingButton;
 
80
    ClickLineEdit *searchLine;
 
81
    int currentRootId;
 
82
    QSignalMapper *ContextUpdateMapper;
 
83
public slots:
 
84
    void removeItem( int );
 
85
    virtual void setRoot( int );
 
86
private slots:
 
87
    void deleteSelection();
 
88
    void handleExpansion( const QModelIndex& );
 
89
    void toggleRandom();
 
90
    void toggleRepeat();
 
91
    void gotoPlayingItem();
 
92
    void doPopup( QModelIndex index, QPoint point );
 
93
    void search( QString search );
 
94
    void clearFilter();
 
95
    void setCurrentRootId( int );
 
96
    void popupAdd();
 
97
    void popupSelectColumn( QPoint );
 
98
};
 
99
 
 
100
#endif