summaryrefslogtreecommitdiffstats
path: root/src/kmplayer_backend.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 00:54:13 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 00:54:13 +0000
commit092be7678b67552cb3161fe162242bf8d3aeed2f (patch)
treebe0693f45b101252c370e40f6e84da2cd7a52f75 /src/kmplayer_backend.h
downloadkmplayer-092be7678b67552cb3161fe162242bf8d3aeed2f.tar.gz
kmplayer-092be7678b67552cb3161fe162242bf8d3aeed2f.zip
Added old abandoned KDE3 version of kmplayer
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmplayer@1091557 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kmplayer_backend.h')
-rw-r--r--src/kmplayer_backend.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/kmplayer_backend.h b/src/kmplayer_backend.h
new file mode 100644
index 0000000..242ee32
--- /dev/null
+++ b/src/kmplayer_backend.h
@@ -0,0 +1,58 @@
+/**
+ * Copyright (C) 2003 by Koos Vriezen <koos.vriezen@gmail.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License version 2 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public License
+ * along with this library; see the file COPYING.LIB. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ **/
+
+#ifndef _KMPLAYER_BACKEND_H_
+#define _KMPLAYER_BACKEND_H_
+
+#include <dcopobject.h>
+
+namespace KMPlayer {
+
+class BackendPrivate;
+
+class Backend : public DCOPObject {
+ K_DCOP
+public:
+ Backend ();
+ virtual ~Backend ();
+k_dcop:
+ virtual ASYNC setURL (QString url);
+ virtual ASYNC setSubTitleURL (QString url);
+ virtual ASYNC play (int repeat_count);
+ virtual ASYNC stop ();
+ virtual ASYNC pause ();
+ /* seek (pos, abs) seek position in deci-seconds */
+ virtual ASYNC seek (int pos, bool absolute);
+ virtual ASYNC hue (int h, bool absolute);
+ virtual ASYNC saturation (int s, bool absolute);
+ virtual ASYNC contrast (int c, bool absolute);
+ virtual ASYNC brightness (int b, bool absolute);
+ virtual ASYNC volume (int v, bool absolute);
+ virtual ASYNC frequency (int f);
+ virtual ASYNC quit ();
+ virtual ASYNC setConfig (QByteArray);
+ virtual ASYNC setAudioLang (int, QString);
+ virtual ASYNC setSubtitle (int, QString);
+ virtual bool isPlaying ();
+private:
+ BackendPrivate * d;
+};
+
+} // namespace
+
+#endif //_KMPLAYER_BACKEND_H_