summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/xinevideowidget.cpp
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.cpp
parente17d551a7c42a1d77805b4f1575928855e0e32ba (diff)
downloadopie-5f0da29ff2f22c017d0aec7b6f1f493120b84f8c.zip
opie-5f0da29ff2f22c017d0aec7b6f1f493120b84f8c.tar.gz
opie-5f0da29ff2f22c017d0aec7b6f1f493120b84f8c.tar.bz2
First VideoWidget
Diffstat (limited to 'noncore/multimedia/opieplayer2/xinevideowidget.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/xinevideowidget.cpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/noncore/multimedia/opieplayer2/xinevideowidget.cpp b/noncore/multimedia/opieplayer2/xinevideowidget.cpp
new file mode 100644
index 0000000..47f4805
--- a/dev/null
+++ b/noncore/multimedia/opieplayer2/xinevideowidget.cpp
@@ -0,0 +1,53 @@
+
+/*
+                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 <qimage.h>
+#include <qgfx_qws.h>
+
+#include "xinevideowidget.h"
+
+XineVideoWidget::XineVideoWidget( int width,
+ int height,
+ QWidget* parent,
+ const char* name )
+ : QWidget( parent, name )
+{
+ m_image = new QImage( width, height, qt_screen->depth() );
+}
+XineVideoWidget::~XineVideoWidget() {
+ delete m_image;
+}
+void XineVideoWidget::paintEvent( QPaintEvent* e ) {
+ QWidget::paintEvent( e );
+}