~ubuntu-branches/debian/wheezy/vlc/wheezy

« back to all changes in this revision

Viewing changes to modules/gui/skins2/controls/ctrl_slider.hpp

  • Committer: Package Import Robot
  • Author(s): Benjamin Drung, Edward Wang, Reinhard Tartler, Benjamin Drung
  • Date: 2012-06-30 18:39:41 UTC
  • mfrom: (1.3.25)
  • Revision ID: package-import@ubuntu.com-20120630183941-b4e2m0jfcvqb59t2
Tags: 2.0.2-1
[ Edward Wang ]
* New upstream release (Closes: #679625, #664279, LP: #689122, #936488,
  #942126, #971106, #972615, #973051, #987231, #995003, #998538).
  - Fix Ogg Heap buffer overflow. Thanks to Hugo Beauzée-Luyssen
* Add the crystalhd plugin to the vlc distribution.
* libcaca_plugin.so now depends on X11 in this release, so it must
  be installed under vlc (versus vlc-nox).

[ Reinhard Tartler ]
* Urgency set to medium because a security issue is fixed in this release

[ Benjamin Drung ]
* Add new plugins to vlc-nox:
  - crystalhd (Linux amd64 and i386 only)
  - directfb
  - fbosd (Linux only)
  - omxil (Linux only)
* Add build dependencies for new plugins.
* Add new symbols to libvlccore5.
* Switch to debhelper 8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * ctrl_slider.hpp
3
3
 *****************************************************************************
4
4
 * Copyright (C) 2003 the VideoLAN team
5
 
 * $Id: df010a5e6951e9c15d180015876402ae263ebaec $
 
5
 * $Id: bae216f622e65c666133ff4511f2fb653e6613eb $
6
6
 *
7
7
 * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8
8
 *          Olivier Teulière <ipkiss@via.ecp.fr>
55
55
    /// Handle an event
56
56
    virtual void handleEvent( EvtGeneric &rEvent );
57
57
 
 
58
    /// Return true if the control can be scrollable
 
59
    virtual bool isScrollable() const { return true; }
 
60
 
58
61
    /// Check whether coordinates are inside the control
59
62
    virtual bool mouseOver( int x, int y ) const;
60
63
 
132
135
                  const UString &rHelp );
133
136
    virtual ~CtrlSliderBg();
134
137
 
 
138
    /// Return true if the control can be scrollable
 
139
    virtual bool isScrollable() const { return true; }
 
140
 
135
141
    /// Tell whether the mouse is over the control
136
142
    virtual bool mouseOver( int x, int y ) const;
137
143