summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/xinevideowidget.h
authorzecke <zecke>2002-07-10 15:33:36 (UTC)
committer zecke <zecke>2002-07-10 15:33:36 (UTC)
commit5f0da29ff2f22c017d0aec7b6f1f493120b84f8c (patch) (side-by-side diff)
treefad58373c81c998bb70cdbc69bb75824e057d4aa /noncore/multimedia/opieplayer2/xinevideowidget.h
parente17d551a7c42a1d77805b4f1575928855e0e32ba (diff)
downloadopie-5f0da29ff2f22c017d0aec7b6f1f493120b84f8c.zip
opie-5f0da29ff2f22c017d0aec7b6f1f493120b84f8c.tar.gz
opie-5f0da29ff2f22c017d0aec7b6f1f493120b84f8c.tar.bz2
First VideoWidget
Diffstat (limited to 'noncore/multimedia/opieplayer2/xinevideowidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/xinevideowidget.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/noncore/multimedia/opieplayer2/xinevideowidget.h b/noncore/multimedia/opieplayer2/xinevideowidget.h
new file mode 100644
index 0000000..46bb98b
--- a/dev/null
+++ b/noncore/multimedia/opieplayer2/xinevideowidget.h
@@ -0,0 +1,51 @@
+/*
+                This file is part of the Opie Project
+
+              Copyright (c) 2002 Max Reiss <harlekin@handhelds.org>
+ Copyright (c) 2002 LJP <>
+ Copyright (c) 2002 Holger Freyther <zecke@handhelds.org>
+ =.
+ .=l.
+           .>+-=
+ _;:,     .>    :=|. This program is free software; you can
+.> <`_,   >  .   <= redistribute it and/or modify it under
+:`=1 )Y*s>-.--   : the terms of the GNU General Public
+.="- .-=="i,     .._ License as published by the Free Software
+ - .   .-<_>     .<> Foundation; either version 2 of the License,
+     ._= =}       : or (at your option) any later version.
+    .%`+i>       _;_.
+    .i_,=:_.      -<s. This program 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., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+*/
+
+
+
+#include <qwidget.h>
+
+class QImage;
+class XineVideoWidget : public QWidget {
+ Q_OBJECT
+public:
+ XineVideoWidget( int width, int height, QWidget* parent, const char* name );
+ ~XineVideoWidget();
+ QImage *image() { return m_image; };
+protected:
+ void paintEvent( QPaintEvent* p );
+private:
+ QImage* m_image;
+
+};
+