Ignore:
Timestamp:
Dec 22, 2011, 6:27:52 PM (14 years ago)
Author:
Silvan Scherrer
Message:

smplayer vendor udate

File:
1 edited

Legend:

Unmodified
Added
Removed
  • smplayer/vendor/current/src/myserver.h

    r90 r118  
    11/*  smplayer, GUI front-end for mplayer.
    2     Copyright (C) 2006-2010 Ricardo Villalba <rvm@escomposlinux.org>
     2    Copyright (C) 2006-2011 Ricardo Villalba <rvm@escomposlinux.org>
    33
    44    This program is free software; you can redistribute it and/or modify
     
    4646
    4747signals:
     48        void receivedPlayItem(int);
     49        void receivedRemoveItem(int);
     50        void receivedMoveItem(int, int);
    4851        void receivedOpen(QString);
    4952        void receivedOpenFiles(QStringList);
     
    5154        void receivedFunction(QString);
    5255        void receivedLoadSubtitle(QString);
     56        void receivedViewPlaylist(QString*);
     57        void receivedViewStatus(QString*);
     58        void receivedViewClipInfo(QString*);
     59        void receivedSeek(double);
     60        void receivedGetChecked(QString, QString*);
     61        void receivedGetVolume(int*);
     62        void receivedSetVolume(int);
    5363
    5464protected slots:
     
    90100
    91101signals:
     102        //! Emitted when the client requests that a certain file in the playlist is played.
     103        void receivedPlayItem(int);
     104
     105        //! Emitted when the client requests that a certain file in the playlist is removed.
     106        void receivedRemoveItem(int);
     107
     108        //! Emitted when the client requests that a certain file in the playlist is moved.
     109        void receivedMoveItem(int, int);
     110
    92111        //! Emitted when the client request to open a new file.
    93112        void receivedOpen(QString);
     
    105124        void receivedLoadSubtitle(QString);
    106125
     126        //! Emitted when the client requests the current playlist
     127        //output is tab seperated, with each line containing filename, name, duration (sec)
     128        void receivedViewPlaylist(QString*);
     129
     130        //! Emitted when the client requests the current status
     131        void receivedViewStatus(QString*);
     132
     133        //! Emitted when the client requests a seek to the specified second
     134        void receivedSeek(double);
     135
     136        //! Emitted when the client requests the clip info for the current track
     137        void receivedViewClipInfo(QString*);
     138
     139        //! Emitted when the client request the state of a checkable action
     140        void receivedGetChecked(QString, QString*);
     141
     142        //! Emitted when the client requests the current volume (be changed).
     143        void receivedGetVolume(int*);
     144        void receivedSetVolume(int);
     145
    107146protected slots:
    108147        void newConnection_slot();
Note: See TracChangeset for help on using the changeset viewer.