~ubuntu-branches/ubuntu/vivid/smplayer/vivid-proposed

« back to all changes in this revision

Viewing changes to src/skingui/mediabarpanel.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2013-10-09 12:02:50 UTC
  • mfrom: (20.2.2 sid)
  • Revision ID: package-import@ubuntu.com-20131009120250-a51t46ffycbmum44
Tags: 0.8.6-2
* Team upload.
* Remove doc-base document, faq.html file is no longer
  provided. (Closes: #725829)
* Disable updates checking mechanism.
* Add licensing information on libmaia, split sources stanzas from
  License ones.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  smplayer, GUI front-end for mplayer.
2
 
    Copyright (C) 2006-2012 Ricardo Villalba <rvm@users.sourceforge.net>
 
2
    Copyright (C) 2006-2013 Ricardo Villalba <rvm@users.sourceforge.net>
3
3
    umplayer, Copyright (C) 2010 Ori Rejwan
4
4
 
5
5
    This program is free software; you can redistribute it and/or modify
64
64
    void setDuration();
65
65
    void gotCurrentTime(double time);
66
66
    void updateMediaInfo();
 
67
    void displayMessage(QString status, int time);
67
68
    void displayMessage(QString status);
68
69
    void displayPermanentMessage(QString status);
69
70
    void setBuffering();
70
71
        void setVolume(int v);
71
72
        void setSeeker(int v);
 
73
        void setResolutionVisible(bool b);
72
74
 
73
75
signals:
74
76
        void volumeChanged(int);
 
77
        void volumeSliderMoved(int);
75
78
        void seekerChanged(int);
76
79
};
77
80