summaryrefslogtreecommitdiff
path: root/noncore/multimedia/camera/mainwindow.h
authormickeyl <mickeyl>2003-04-12 15:02:32 (UTC)
committer mickeyl <mickeyl>2003-04-12 15:02:32 (UTC)
commit2cc909c36a779d1041a3382939f8ad41d84b0fc5 (patch) (side-by-side diff)
tree42c95673d72f7ecb7a8f4acbb0f517dd75ecc167 /noncore/multimedia/camera/mainwindow.h
parent11861d35730cee70920aa6797ba12263bbcce081 (diff)
downloadopie-2cc909c36a779d1041a3382939f8ad41d84b0fc5.zip
opie-2cc909c36a779d1041a3382939f8ad41d84b0fc5.tar.gz
opie-2cc909c36a779d1041a3382939f8ad41d84b0fc5.tar.bz2
- make main layout a full preview window and think about configuring capturing parameters later...adding an on-demand-applet to the taskbar would be spiffy
- portrait or landscape mode is now self-configuring thanks to life-rotation :-D
Diffstat (limited to 'noncore/multimedia/camera/mainwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/camera/mainwindow.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/noncore/multimedia/camera/mainwindow.h b/noncore/multimedia/camera/mainwindow.h
index 7ccdcf8..cc12840 100644
--- a/noncore/multimedia/camera/mainwindow.h
+++ b/noncore/multimedia/camera/mainwindow.h
@@ -25,6 +25,8 @@ class QIconSet;
class QToolButton;
class QLabel;
class MainWindowBase;
+class QCopChannel;
+class PreviewWidget;
class CameraMainWindow: public QMainWindow
{
@@ -36,11 +38,14 @@ class CameraMainWindow: public QMainWindow
public slots:
void changeZoom( int );
+ void systemMessage( const QCString&, const QByteArray& );
protected:
private:
- MainWindowBase* mw;
+ PreviewWidget* preview;
+ int _rotation;
+ QCopChannel* _sysChannel;
};
#endif