Changeset 118 for smplayer/vendor/current/src/myserver.h
- Timestamp:
- Dec 22, 2011, 6:27:52 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/vendor/current/src/myserver.h
r90 r118 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 0Ricardo Villalba <rvm@escomposlinux.org>2 Copyright (C) 2006-2011 Ricardo Villalba <rvm@escomposlinux.org> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 46 46 47 47 signals: 48 void receivedPlayItem(int); 49 void receivedRemoveItem(int); 50 void receivedMoveItem(int, int); 48 51 void receivedOpen(QString); 49 52 void receivedOpenFiles(QStringList); … … 51 54 void receivedFunction(QString); 52 55 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); 53 63 54 64 protected slots: … … 90 100 91 101 signals: 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 92 111 //! Emitted when the client request to open a new file. 93 112 void receivedOpen(QString); … … 105 124 void receivedLoadSubtitle(QString); 106 125 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 107 146 protected slots: 108 147 void newConnection_slot();
Note:
See TracChangeset
for help on using the changeset viewer.