summaryrefslogtreecommitdiff
path: root/noncore/multimedia/camera2/videocaptureview.h
authorllornkcor <llornkcor>2006-07-09 18:56:40 (UTC)
committer llornkcor <llornkcor>2006-07-09 18:56:40 (UTC)
commit36dece4760b1ac1799929221b49eb3bee98c2367 (patch) (unidiff)
treea45f66d2d90bd9fbbff8e8903cd1cb9323c39f6e /noncore/multimedia/camera2/videocaptureview.h
parent604065c6e662cb3894acf03abadafacc3ab52913 (diff)
downloadopie-36dece4760b1ac1799929221b49eb3bee98c2367.zip
opie-36dece4760b1ac1799929221b49eb3bee98c2367.tar.gz
opie-36dece4760b1ac1799929221b49eb3bee98c2367.tar.bz2
initial commit to add video4linux camera app from qtopia 2, needs more work
Diffstat (limited to 'noncore/multimedia/camera2/videocaptureview.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/camera2/videocaptureview.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/noncore/multimedia/camera2/videocaptureview.h b/noncore/multimedia/camera2/videocaptureview.h
new file mode 100644
index 0000000..68c3b68
--- a/dev/null
+++ b/noncore/multimedia/camera2/videocaptureview.h
@@ -0,0 +1,82 @@
1/**********************************************************************
2** Copyright (C) 2000-2006 Trolltech AS. All rights reserved.
3**
4** This file is part of the Qtopia Environment.
5**
6** This program is free software; you can redistribute it and/or modify it
7** under the terms of the GNU General Public License as published by the
8** Free Software Foundation; either version 2 of the License, or (at your
9** option) any later version.
10**
11** A copy of the GNU GPL license version 2 is included in this package as
12** LICENSE.GPL.
13**
14** This program is distributed in the hope that it will be useful, but
15** WITHOUT ANY WARRANTY; without even the implied warranty of
16** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17** See the GNU General Public License for more details.
18**
19** In addition, as a special exception Trolltech gives permission to link
20** the code of this program with Qtopia applications copyrighted, developed
21** and distributed by Trolltech under the terms of the Qtopia Personal Use
22** License Agreement. You must comply with the GNU General Public License
23** in all respects for all of the code used other than the applications
24** licensed under the Qtopia Personal Use License Agreement. If you modify
25** this file, you may extend this exception to your version of the file,
26** but you are not obligated to do so. If you do not wish to do so, delete
27** this exception statement from your version.
28**
29** See http://www.trolltech.com/gpl/ for GPL licensing information.
30**
31** Contact info@trolltech.com if any conditions of this licensing are
32** not clear to you.
33**
34**********************************************************************/
35#ifndef VIDEOVIEW_H
36#define VIDEOVIEW_H
37
38#include <qwidget.h>
39#include <qimage.h>
40#include <qvaluelist.h>
41
42class VideoCapture;
43
44
45class VideoCaptureView : public QWidget
46{
47 Q_OBJECT
48
49public:
50 VideoCaptureView( QWidget *parent=0, const char *name=0, WFlags fl=0 );
51 ~VideoCaptureView();
52
53 bool available() const;
54
55 QImage image() const { return img; }
56 void setLive(int period=0);
57 void setStill(const QImage&);
58
59 QValueList<QSize> photoSizes() const;
60 QValueList<QSize> videoSizes() const;
61
62 QSize recommendedPhotoSize() const;
63 QSize recommendedVideoSize() const;
64 QSize recommendedPreviewSize() const;
65
66 QSize captureSize() const;
67 void setCaptureSize( QSize size );
68
69 uint refocusDelay() const;
70
71protected:
72 void paintEvent(QPaintEvent*);
73 void timerEvent(QTimerEvent*);
74
75private:
76 QImage img;
77 int tid_update;
78 VideoCapture *capture;
79};
80
81#endif
82