~ubuntu-branches/debian/jessie/smplayer/jessie

« back to all changes in this revision

Viewing changes to src/corelib/smplayercorelib.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2012-02-16 11:51:44 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20120216115144-hkpz36a4h5f3x9w3
Tags: 0.7.0-1
* Team upload.
* New upstream release (Closes: #655125):
  - Changes since 0.6.10:
    + New favorite menu, where you can add your favorite videos, music,
       streams, youtube videos... It's also possible to add submenus.
    + Support for youtube. Now you can open urls like
      http://www.youtube.com/watch?v=..... using the Open -> URL dialog or
      dragging a link from a browser to the smplayer window.
    + Support for mplayer2 (http://www.mplayer2.org). It's a fork of mplayer
      with interesting features like precise seeking, ordered chapters in
      mkv videos and better pause handling (e.g. seek works while the video
      is paused).
    + New translation: croatian.
  - Changes since 0.6.9:
    + New vdpau configuration dialog, which allow to select the vdpau codecs
      to use. (Closes: #610204)
    + Port for eCS, OS/2 (by Silvan Scherrer).
    + New menu to select the closed caption channel (requires mplayer >=
      r32607).
    + Possibility to select the seeking method (absolute or relative).
    + Possibility to sort the items of the playlist.
* Remove debian/patches/enable_ffodivxvdpau.diff, the application now
  provides a configuration dialog for vdpau.
* Refresh handle_local_urls.diff.
* Update copyright notice.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  smplayer, GUI front-end for mplayer.
2
 
    Copyright (C) 2006-2008 Ricardo Villalba <rvm@escomposlinux.org>
3
 
 
4
 
    This program is free software; you can redistribute it and/or modify
5
 
    it under the terms of the GNU General Public License as published by
6
 
    the Free Software Foundation; either version 2 of the License, or
7
 
    (at your option) any later version.
8
 
 
9
 
    This program is distributed in the hope that it will be useful,
10
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
    GNU General Public License for more details.
13
 
 
14
 
    You should have received a copy of the GNU General Public License
15
 
    along with this program; if not, write to the Free Software
16
 
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 
*/
18
 
 
19
 
#ifndef _SMPLAYERCORELIB_H_
20
 
#define _SMPLAYERCORELIB_H_
21
 
 
22
 
#include <QWidget>
23
 
#include "core.h"
24
 
#include "mplayerwindow.h"
25
 
 
26
 
class SmplayerCoreLib : public QObject
27
 
{
28
 
    Q_OBJECT
29
 
    
30
 
public:
31
 
    SmplayerCoreLib( QWidget * parent = 0 );
32
 
    ~SmplayerCoreLib();
33
 
 
34
 
        Core * core() { return _core; };
35
 
        MplayerWindow * mplayerWindow() { return _mpw; };
36
 
 
37
 
private:
38
 
        Core * _core;
39
 
        MplayerWindow * _mpw;
40
 
};
41
 
 
42
 
#endif
43