summaryrefslogtreecommitdiff
path: root/noncore/multimedia/camera/mainwindow.h
authormickeyl <mickeyl>2003-04-20 17:36:20 (UTC)
committer mickeyl <mickeyl>2003-04-20 17:36:20 (UTC)
commit606f5d9cd2ecba4df175bc722621e4e4df3bc516 (patch) (unidiff)
treef9da7a8bdbac0e576014fc1ca7fa5f6a2066b67a /noncore/multimedia/camera/mainwindow.h
parentc02c43c91251e8d71048b27855fc1900e430272d (diff)
downloadopie-606f5d9cd2ecba4df175bc722621e4e4df3bc516.zip
opie-606f5d9cd2ecba4df175bc722621e4e4df3bc516.tar.gz
opie-606f5d9cd2ecba4df175bc722621e4e4df3bc516.tar.bz2
too much work for that damn video feature... some progress, but it's still not right
Diffstat (limited to 'noncore/multimedia/camera/mainwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/camera/mainwindow.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/noncore/multimedia/camera/mainwindow.h b/noncore/multimedia/camera/mainwindow.h
index ad8d1b1..ac83488 100644
--- a/noncore/multimedia/camera/mainwindow.h
+++ b/noncore/multimedia/camera/mainwindow.h
@@ -57,11 +57,16 @@ class CameraMainWindow: public QMainWindow
57 void init(); 57 void init();
58 void startVideoCapture(); 58 void startVideoCapture();
59 void stopVideoCapture(); 59 void stopVideoCapture();
60 void postProcessVideo(); 60 void postProcessVideo( const QString&, const QString& );
61 void performCapture( const QString& ); 61 void performCapture( const QString& );
62 62
63 virtual void timerEvent( QTimerEvent* ); 63 virtual void timerEvent( QTimerEvent* );
64 64
65 protected slots:
66 #ifndef QT_NO_DEBUG
67 void doSomething(); // solely for debugging purposes
68 #endif
69
65 private: 70 private:
66 PreviewWidget* preview; 71 PreviewWidget* preview;
67 int _rotation; 72 int _rotation;
@@ -82,10 +87,12 @@ class CameraMainWindow: public QMainWindow
82 87
83 bool _capturing; 88 bool _capturing;
84 int _pics; 89 int _pics;
90 int _videos;
85 91
86 QTime _time; 92 QTime _time;
87 int _videopics; 93 int _videopics;
88 int _capturefd; 94 int _capturefd;
95 int _framerate;
89 unsigned char* _capturebuf; 96 unsigned char* _capturebuf;
90}; 97};
91 98