summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2003-05-10 14:46:45 (UTC)
committer mickeyl <mickeyl>2003-05-10 14:46:45 (UTC)
commite4cde5a1da5271b8bc4919afedaf9cb47e346409 (patch) (unidiff)
tree68dbddd576b83beb8a4f9997dab216ba7181d8ae
parent7d97fa637bb1af225b9e5075982b32718b0f78e4 (diff)
downloadopie-e4cde5a1da5271b8bc4919afedaf9cb47e346409.zip
opie-e4cde5a1da5271b8bc4919afedaf9cb47e346409.tar.gz
opie-e4cde5a1da5271b8bc4919afedaf9cb47e346409.tar.bz2
add persistent configuration settings
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/camera/gui/mainwindow.cpp120
1 files changed, 76 insertions, 44 deletions
diff --git a/noncore/multimedia/camera/gui/mainwindow.cpp b/noncore/multimedia/camera/gui/mainwindow.cpp
index 0854f0d..5da3757 100644
--- a/noncore/multimedia/camera/gui/mainwindow.cpp
+++ b/noncore/multimedia/camera/gui/mainwindow.cpp
@@ -1,245 +1,277 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. 2** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved.
3** 3**
4** This file is part of Opie Environment. 4** This file is part of Opie Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14**********************************************************************/ 14**********************************************************************/
15 15
16#include "mainwindow.h" 16#include "mainwindow.h"
17#include "previewwidget.h" 17#include "previewwidget.h"
18#include "zcameraio.h" 18#include "zcameraio.h"
19#include "imageio.h" 19#include "imageio.h"
20#include "avi.h" 20#include "avi.h"
21 21
22#include <qapplication.h> 22#include <qapplication.h>
23#include <qaction.h> 23#include <qaction.h>
24#include <qvbox.h> 24#include <qvbox.h>
25#include <qcombobox.h> 25#include <qcombobox.h>
26#include <qcursor.h> 26#include <qcursor.h>
27#include <qdatastream.h> 27#include <qdatastream.h>
28#include <qdir.h> 28#include <qdir.h>
29#include <qfile.h> 29#include <qfile.h>
30#include <qimage.h> 30#include <qimage.h>
31#include <qlabel.h> 31#include <qlabel.h>
32#include <qlineedit.h> 32#include <qlineedit.h>
33#include <qpopupmenu.h> 33#include <qpopupmenu.h>
34#include <qprogressbar.h> 34#include <qprogressbar.h>
35#include <qpushbutton.h> 35#include <qpushbutton.h>
36#include <qmessagebox.h> 36#include <qmessagebox.h>
37#include <qlayout.h> 37#include <qlayout.h>
38#include <qdirectpainter_qws.h> 38#include <qdirectpainter_qws.h>
39#include <qpe/global.h> 39#include <qpe/global.h>
40#include <qpe/resource.h> 40#include <qpe/resource.h>
41#include <qpe/qcopenvelope_qws.h> 41#include <qpe/qcopenvelope_qws.h>
42#include <opie/ofiledialog.h> 42#include <opie/ofiledialog.h>
43#include <opie/odevice.h> 43#include <opie/odevice.h>
44using namespace Opie; 44using namespace Opie;
45#include <opie2/oapplication.h>
46#include <opie2/oconfig.h>
45#include <opie2/odebug.h> 47#include <opie2/odebug.h>
46 48
47#include <assert.h> 49#include <assert.h>
48#include <sys/types.h> 50#include <sys/types.h>
49#include <sys/stat.h> 51#include <sys/stat.h>
50#include <fcntl.h> 52#include <fcntl.h>
51#include <string.h> 53#include <string.h>
52#include <errno.h> 54#include <errno.h>
53#include <unistd.h> 55#include <unistd.h>
54 56
55#define CAPTUREFILE "/tmp/capture.dat" 57#define CAPTUREFILE "/tmp/capture.dat"
56#define OUTPUTFILE "/tmp/output.avi" 58#define OUTPUTFILE "/tmp/output.avi"
57 59
58#define OUTPUT_TO_CUSTOM 250 60#define OUTPUT_TO_CUSTOM 250
59#define OUTPUT_TO_DOCFOLDER 251 61#define OUTPUT_TO_DOCFOLDER 251
60 62
61CameraMainWindow::CameraMainWindow( QWidget * parent, const char * name, WFlags f ) 63CameraMainWindow::CameraMainWindow( QWidget * parent, const char * name, WFlags f )
62 :QMainWindow( parent, name, f ), 64 :QMainWindow( parent, name, f ),
63 _rotation( 270 ), // FIXME: get this from current settings (ODevice?) 65 _rotation( 270 ), // FIXME: get this from current settings (ODevice?)
64 _capturing( false ), 66 _capturing( false ),
65 _pics( 1 ), _videos( 1 ) 67 _pics( 1 ), _videos( 1 )
66{ 68{
67 #ifdef QT_NO_DEBUG 69 #ifdef QT_NO_DEBUG
68 if ( !ZCameraIO::instance()->isOpen() ) 70 if ( !ZCameraIO::instance()->isOpen() )
69 { 71 {
70 QVBox* v = new QVBox( this ); 72 QVBox* v = new QVBox( this );
71 v->setMargin( 10 ); 73 v->setMargin( 10 );
72 QLabel* l1 = new QLabel( v ); 74 QLabel* l1 = new QLabel( v );
73 l1->setPixmap( Resource::loadPixmap( "camera/error" ) ); 75 l1->setPixmap( Resource::loadPixmap( "camera/error" ) );
74 QLabel* l2 = new QLabel( v ); 76 QLabel* l2 = new QLabel( v );
75 l2->setText( "<b>Sorry. could not detect your camera :-(</b><p>" 77 l2->setText( "<b>Sorry. could not detect your camera :-(</b><p>"
76 "* Is the sharpzdc_cs module loaded ?<br>" 78 "* Is the sharpzdc_cs module loaded ?<br>"
77 "* Is /dev/sharpzdc read/writable ?<p>" ); 79 "* Is /dev/sharpzdc read/writable ?<p>" );
78 connect( new QPushButton( "Exit", v ), SIGNAL( clicked() ), this, SLOT( close() ) ); 80 connect( new QPushButton( "Exit", v ), SIGNAL( clicked() ), this, SLOT( close() ) );
79 setCentralWidget( v ); 81 setCentralWidget( v );
80 return; 82 return;
81 } 83 }
82 #endif 84 #endif
83 85
84 init(); 86 init();
85 87
86 _rotation = 270; //TODO: grab these from the actual settings 88 _rotation = 270; //TODO: grab these from the actual settings
87 89
88 preview = new PreviewWidget( this, "camera preview widget" ); 90 preview = new PreviewWidget( this, "camera preview widget" );
89 //setCentralWidget( preview ); <--- don't do this! 91 //setCentralWidget( preview ); <--- don't do this!
90 preview->resize( QSize( 240, 288 ) ); 92 preview->resize( QSize( 240, 288 ) );
91 preview->show(); 93 preview->show();
92 94
93 // construct a System Channel to receive setRotation messages 95 // construct a System Channel to receive setRotation messages
94 _sysChannel = new QCopChannel( "QPE/System", this ); 96 _sysChannel = new QCopChannel( "QPE/System", this );
95 connect( _sysChannel, SIGNAL( received( const QCString&, const QByteArray& ) ), 97 connect( _sysChannel, SIGNAL( received( const QCString&, const QByteArray& ) ),
96 this, SLOT( systemMessage( const QCString&, const QByteArray& ) ) ); 98 this, SLOT( systemMessage( const QCString&, const QByteArray& ) ) );
97 99
98 connect( preview, SIGNAL( contextMenuRequested() ), this, SLOT( showContextMenu() ) ); 100 connect( preview, SIGNAL( contextMenuRequested() ), this, SLOT( showContextMenu() ) );
99 101
100 connect( ZCameraIO::instance(), SIGNAL( shutterClicked() ), this, SLOT( shutterClicked() ) ); 102 connect( ZCameraIO::instance(), SIGNAL( shutterClicked() ), this, SLOT( shutterClicked() ) );
101 103
102 updateCaption(); 104 updateCaption();
103 105
104}; 106};
105 107
106 108
107CameraMainWindow::~CameraMainWindow() 109CameraMainWindow::~CameraMainWindow()
108{ 110{
111 // write back configuration
112 OConfigGroupSaver cgs( oApp->config(), "General" );
113 cgs.config()->writeEntry( "flip", flip );
114 cgs.config()->writeEntry( "quality", quality );
115 cgs.config()->writeEntry( "zoom", zoom );
116 cgs.config()->writeEntry( "captureX", captureX );
117 cgs.config()->writeEntry( "captureY", captureY );
118 cgs.config()->writeEntry( "captureFormat", captureFormat );
119 cgs.config()->writeEntry( "outputTo", outputTo );
120 cgs.config()->writeEntry( "prefix", prefix );
121 cgs.config()->writeEntry( "appendSettings", appendSettings );
109} 122}
110 123
111 124
112void CameraMainWindow::init() 125void CameraMainWindow::init()
113{ 126{
114 // TODO: Save this stuff in config 127 // get values from configuration
115 flip = 'A'; // auto 128 OConfigGroupSaver cgs( oApp->config(), "General" );
116 quality = 50; 129 flip = cgs.config()->readEntry( "flip", "A" );
117 zoom = 1; 130 quality = cgs.config()->readNumEntry( "quality", 50 );
118 captureX = 480; 131 zoom = cgs.config()->readNumEntry( "zoom", 1 );
119 captureY = 640; 132 captureX = cgs.config()->readNumEntry( "captureX", 480 );
120 captureFormat = "JPEG"; 133 captureY = cgs.config()->readNumEntry( "captureY", 640 );
121 outputTo = "Documents Folder"; 134 captureFormat = cgs.config()->readEntry( "captureFormat", "JPEG" );
122 prefix = "Untitled"; 135 outputTo = cgs.config()->readEntry( "outputTo", "Documents Folder" );
123 appendSettings = true; 136 prefix = cgs.config()->readEntry( "prefix", "Untitled" );
124 137 appendSettings = cgs.config()->readBoolEntry( "appendSettings", true );
138
139 // create action groups
140 QAction* a;
125 resog = new QActionGroup( 0, "reso", true ); 141 resog = new QActionGroup( 0, "reso", true );
126 resog->setToggleAction( true ); 142 resog->setToggleAction( true );
127 new QAction( " 64 x 48", 0, 0, resog, 0, true ); 143 new QAction( " 64 x 48", 0, 0, resog, "64x48", true );
128 new QAction( "128 x 96", 0, 0, resog, 0, true ); 144 new QAction( "128 x 96", 0, 0, resog, "128x96", true );
129 new QAction( "192 x 144", 0, 0, resog, 0, true ); 145 new QAction( "192 x 144", 0, 0, resog, "192x144", true );
130 new QAction( "256 x 192", 0, 0, resog, 0, true ); 146 new QAction( "256 x 192", 0, 0, resog, "256x192", true );
131 new QAction( "320 x 240", 0, 0, resog, 0, true ); 147 new QAction( "320 x 240", 0, 0, resog, "320x240", true );
132 new QAction( "384 x 288", 0, 0, resog, 0, true ); 148 new QAction( "384 x 288", 0, 0, resog, "384x288", true );
133 new QAction( "448 x 336", 0, 0, resog, 0, true ); 149 new QAction( "448 x 336", 0, 0, resog, "448x336", true );
134 new QAction( "512 x 384", 0, 0, resog, 0, true ); 150 new QAction( "512 x 384", 0, 0, resog, "512x384", true );
135 new QAction( "576 x 432", 0, 0, resog, 0, true ); 151 new QAction( "576 x 432", 0, 0, resog, "576x432", true );
136 ( new QAction( "640 x 480", 0, 0, resog, 0, true ) )->setOn( true ); 152 new QAction( "640 x 480", 0, 0, resog, "640x480", true );
153 a = (QAction*) resog->child( QString().sprintf( "%dx%d", captureX>captureY ? captureX:captureY, captureX>captureY ? captureY:captureX ) );
154 if ( a ) a->setOn( true );
155 else owarn << "can't set resolution" << oendl;
137 156
138 qualityg = new QActionGroup( 0, "quality", true ); 157 qualityg = new QActionGroup( 0, "quality", true );
139 qualityg->setToggleAction( true ); 158 qualityg->setToggleAction( true );
140 new QAction( " 0 (&minimal)", 0, 0, qualityg, 0, true ); 159 new QAction( " 0 (&minimal)", 0, 0, qualityg, "0", true );
141 new QAction( " 25 (&low)", 0, 0, qualityg, 0, true ); 160 new QAction( " 25 (&low)", 0, 0, qualityg, "25", true );
142 ( new QAction( " 50 (&good)", 0, 0, qualityg, 0, true ) )->setOn( true ); 161 new QAction( " 50 (&good)", 0, 0, qualityg, "50", true );
143 new QAction( " 75 (&better)", 0, 0, qualityg, 0, true ); 162 new QAction( " 75 (&better)", 0, 0, qualityg, "75", true );
144 new QAction( "100 (bes&t)", 0, 0, qualityg, 0, true ); 163 new QAction( "100 (bes&t)", 0, 0, qualityg, "100", true );
164 a = (QAction*) qualityg->child( QString().sprintf( "%d", quality ) );
165 if ( a ) a->setOn( true );
166 else owarn << "can't set quality" << oendl;
145 167
146 zoomg = new QActionGroup( 0, "zoom", true ); 168 zoomg = new QActionGroup( 0, "zoom", true );
147 zoomg->setToggleAction( true ); 169 zoomg->setToggleAction( true );
148 ( new QAction( "x 1", 0, 0, zoomg, 0, true ) )->setOn( true ); 170 new QAction( "x 1", 0, 0, zoomg, "1", true );
149 new QAction( "x 2", 0, 0, zoomg, 0, true ); 171 new QAction( "x 2", 0, 0, zoomg, "2", true );
172 a = (QAction*) zoomg->child( QString().sprintf( "%d", zoom ) );
173 if ( a ) a->setOn( true );
174 else owarn << "can't set zoom" << oendl;
150 175
151 flipg = new QActionGroup( 0, "flip", true ); 176 flipg = new QActionGroup( 0, "flip", true );
152 flipg->setToggleAction( true ); 177 flipg->setToggleAction( true );
153 ( new QAction( "Auto (recommended)", 0, 0, flipg, 0, true ) )->setOn( true ); 178 new QAction( "Auto (recommended)", 0, 0, flipg, "A", true );
154 new QAction( "0 (always off)", 0, 0, flipg, 0, true ); 179 new QAction( "0 (always off)", 0, 0, flipg, "0", true );
155 new QAction( "X (always horizontal)", 0, 0, flipg, 0, true ); 180 new QAction( "X (always horizontal)", 0, 0, flipg, "X", true );
156 new QAction( "Y (always vertical)", 0, 0, flipg, 0, true ); 181 new QAction( "Y (always vertical)", 0, 0, flipg, "Y", true );
157 new QAction( "* (always both)", 0, 0, flipg, 0, true ); 182 new QAction( "* (always both)", 0, 0, flipg, "*", true );
183 a = (QAction*) flipg->child( QString().sprintf( "%s", (const char*) flip ) );
184 if ( a ) a->setOn( true );
185 else owarn << "can't set flip" << oendl;
158 186
159 outputTog = new QActionGroup( 0, "output", true ); 187 outputTog = new QActionGroup( 0, "output", true );
160 outputTog->setToggleAction( true ); 188 outputTog->setToggleAction( true );
161 new QAction( "/tmp/", 0, 0, outputTog, 0, true ); 189 new QAction( "/tmp/", 0, 0, outputTog, "/tmp/", true );
162 new QAction( "/mnt/card/", 0, 0, outputTog, 0, true ); 190 new QAction( "/mnt/card/", 0, 0, outputTog, "/mnt/card/", true );
163 new QAction( "/mnt/cf/", 0, 0, outputTog, 0, true ); 191 new QAction( "/mnt/cf/", 0, 0, outputTog, "/mnt/cf/", true );
164 docfolder = new QAction( "Documents Folder", 0, 0, outputTog, 0, true ); 192 docfolder = new QAction( "Documents Folder", 0, 0, outputTog, "Documents Folder", true );
165 docfolder->setOn( true ); 193 custom = new QAction( "&Custom...", 0, 0, outputTog, "custom", true ); //TODO: How to save custom!?
166 custom = new QAction( "&Custom...", 0, 0, outputTog, 0, true ); 194 a = (QAction*) outputTog->child( QString().sprintf( "%s", (const char*) outputTo ) );
195 if ( a ) a->setOn( true );
196 else owarn << "can't set outputTo" << oendl;
167 197
168 outputg = new QActionGroup( 0, "output", true ); 198 outputg = new QActionGroup( 0, "output", true );
169 outputg->setToggleAction( true ); 199 outputg->setToggleAction( true );
170 ( new QAction( "JPEG", 0, 0, outputg, 0, true ) )->setOn( true ); 200 new QAction( "JPEG", 0, 0, outputg, "JPEG", true );
171 new QAction( "PNG", 0, 0, outputg, 0, true ); 201 new QAction( "PNG", 0, 0, outputg, "PNG", true );
172 new QAction( "BMP", 0, 0, outputg, 0, true ); 202 new QAction( "BMP", 0, 0, outputg, "BMP", true );
173 new QAction( "AVI", 0, 0, outputg, 0, true ); 203 new QAction( "AVI", 0, 0, outputg, "AVI", true );
204 a = (QAction*) outputg->child( QString().sprintf( "%s", (const char*) captureFormat ) );
205 if ( a ) a->setOn( true );
206 else owarn << "can't set output format" << oendl;
174 207
175 connect( resog, SIGNAL( selected(QAction*) ), this, SLOT( resoMenuItemClicked(QAction*) ) ); 208 connect( resog, SIGNAL( selected(QAction*) ), this, SLOT( resoMenuItemClicked(QAction*) ) );
176 connect( qualityg, SIGNAL( selected(QAction*) ), this, SLOT( qualityMenuItemClicked(QAction*) ) ); 209 connect( qualityg, SIGNAL( selected(QAction*) ), this, SLOT( qualityMenuItemClicked(QAction*) ) );
177 connect( zoomg, SIGNAL( selected(QAction*) ), this, SLOT( zoomMenuItemClicked(QAction*) ) ); 210 connect( zoomg, SIGNAL( selected(QAction*) ), this, SLOT( zoomMenuItemClicked(QAction*) ) );
178 connect( flipg, SIGNAL( selected(QAction*) ), this, SLOT( flipMenuItemClicked(QAction*) ) ); 211 connect( flipg, SIGNAL( selected(QAction*) ), this, SLOT( flipMenuItemClicked(QAction*) ) );
179 connect( outputTog, SIGNAL( selected(QAction*) ), this, SLOT( outputToMenuItemClicked(QAction*) ) ); 212 connect( outputTog, SIGNAL( selected(QAction*) ), this, SLOT( outputToMenuItemClicked(QAction*) ) );
180 connect( outputg, SIGNAL( selected(QAction*) ), this, SLOT( outputMenuItemClicked(QAction*) ) ); 213 connect( outputg, SIGNAL( selected(QAction*) ), this, SLOT( outputMenuItemClicked(QAction*) ) );
181
182} 214}
183 215
184 216
185void CameraMainWindow::systemMessage( const QCString& msg, const QByteArray& data ) 217void CameraMainWindow::systemMessage( const QCString& msg, const QByteArray& data )
186{ 218{
187 int _newrotation; 219 int _newrotation;
188 220
189 QDataStream stream( data, IO_ReadOnly ); 221 QDataStream stream( data, IO_ReadOnly );
190 odebug << "received system message: " << msg << oendl; 222 odebug << "received system message: " << msg << oendl;
191 if ( msg == "setCurrentRotation(int)" ) 223 if ( msg == "setCurrentRotation(int)" )
192 { 224 {
193 stream >> _newrotation; 225 stream >> _newrotation;
194 odebug << "received setCurrentRotation(" << _newrotation << ")" << oendl; 226 odebug << "received setCurrentRotation(" << _newrotation << ")" << oendl;
195 227
196 switch ( _newrotation ) 228 switch ( _newrotation )
197 { 229 {
198 case 270: preview->resize( QSize( 240, 288 ) ); break; 230 case 270: preview->resize( QSize( 240, 288 ) ); break;
199 case 180: preview->resize( QSize( 320, 208 ) ); break; 231 case 180: preview->resize( QSize( 320, 208 ) ); break;
200 default: QMessageBox::warning( this, "opie-camera", 232 default: QMessageBox::warning( this, "opie-camera",
201 "This rotation is not supported.\n" 233 "This rotation is not supported.\n"
202 "Supported are 180° and 270°" ); 234 "Supported are 180° and 270°" );
203 } 235 }
204 236
205 if ( _newrotation != _rotation ) 237 if ( _newrotation != _rotation )
206 { 238 {
207 int tmp = captureX; 239 int tmp = captureX;
208 captureX = captureY; 240 captureX = captureY;
209 captureY = tmp; 241 captureY = tmp;
210 _rotation = _newrotation; 242 _rotation = _newrotation;
211 } 243 }
212 244
213 updateCaption(); 245 updateCaption();
214 246
215 } 247 }
216} 248}
217 249
218 250
219void CameraMainWindow::changeZoom( int zoom ) 251void CameraMainWindow::changeZoom( int zoom )
220{ 252{
221 int z; 253 int z;
222 switch ( zoom ) 254 switch ( zoom )
223 { 255 {
224 case 0: z = 128; break; 256 case 0: z = 128; break;
225 case 1: z = 256; break; 257 case 1: z = 256; break;
226 case 2: z = 512; break; 258 case 2: z = 512; break;
227 default: assert( 0 ); break; 259 default: assert( 0 ); break;
228 } 260 }
229 261
230 ZCameraIO::instance()->setCaptureFrame( 240, 160, z ); 262 ZCameraIO::instance()->setCaptureFrame( 240, 160, z );
231} 263}
232 264
233 265
234void CameraMainWindow::showContextMenu() 266void CameraMainWindow::showContextMenu()
235{ 267{
236 QPopupMenu reso; 268 QPopupMenu reso;
237 reso.setCheckable( true ); 269 reso.setCheckable( true );
238 resog->addTo( &reso ); 270 resog->addTo( &reso );
239 271
240 QPopupMenu quality; 272 QPopupMenu quality;
241 quality.setCheckable( true ); 273 quality.setCheckable( true );
242 qualityg->addTo( &quality ); 274 qualityg->addTo( &quality );
243 275
244 QPopupMenu flip; 276 QPopupMenu flip;
245 flip.setCheckable( true ); 277 flip.setCheckable( true );