You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kaffeine/kaffeine/src/player-parts/xine-part
Mavridis Philippe f77fe94e0e
xine-backend: Remove protocols from supported extensions
10 months ago
..
CMakeLists.txt
README Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version 1 year ago
deinterlacequality.cpp Replace Qt with TQt 11 months ago
deinterlacequality.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
equalizer.cpp Replace Qt with TQt 11 months ago
equalizer.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
filterdialog.cpp
filterdialog.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
kxinewidget.cpp Replace Qt with TQt 11 months ago
kxinewidget.h xine engine: make volume control logarithmic for versions of xine < 1.2.13. 12 months ago
positionslider.cpp Replace Qt with TQt 11 months ago
positionslider.h Replace Qt with TQt 11 months ago
postfilter.cpp
postfilter.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
screenshotpreview.cpp
screenshotpreview.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
videosettings.cpp Replace Qt with TQt 11 months ago
videosettings.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
xine_part.cpp xine-backend: Remove protocols from supported extensions 10 months ago
xine_part.desktop
xine_part.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
xine_part.rc
xine_part_iface.h
xineconfig.cpp
xineconfig.h Replace Q_OBJECT with TQ_OBJECT 1 year ago

README

********************
*   XINE-PART      *
********************

The xine-based default player-part of Kaffeine.


*** IMPORTANT ***
The following example is outdated and unlikely to work.
*** IMPORTANT ***


You can use this part in your Application like this:
----------------------------------------------------

*** myplayer.h: ***

#include <tdemainwindow.h>

class KaffeinePart;

class MyPlayer : public MainWindow
{
  public:
    MyPlayer();
    ~MyPlayer();

  void loadURL(const TQString&);

  //...
  private:
    KaffeinePart* m_player;
};

*** myplayer.cpp: ***

#include <kaffeine/xine_part.h>

MyPlayer::MyPlayer() : TDEMainWindow(0)
{
  initMyActions();
  createGUI();

  //...

  m_player = new XinePart(this, "my_player", this, 0, QStringList());
  guiFactory()->addClient(m_player);
  setCentralWidget(m_player->widget());

  //..
}

void MyPlayer::loadURL(const TQString& url)
{
  m_player->openURL(url);
}

*** Makefile.am ***

bin_PROGRAMS = myplayer

INCLUDES = $(all_includes)

noinst_HEADERS = myplayer.h

METASOURCES = AUTO

myplayer_SOURCES = myplayer.cpp
myplayer_LDFLAGS = $(KDE_RPATH) $(all_libraries)
myplayer_LDADD   = $(LIB_TDEPARTS) -lxinepart


*******************

Thats it. If you need to implement your own UI, check kxinewidget.h