summaryrefslogtreecommitdiff
path: root/noncore/multimedia/showimg/showimg.cpp
Unidiff
Diffstat (limited to 'noncore/multimedia/showimg/showimg.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/showimg/showimg.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/noncore/multimedia/showimg/showimg.cpp b/noncore/multimedia/showimg/showimg.cpp
index 82eac33..6c0c4db 100644
--- a/noncore/multimedia/showimg/showimg.cpp
+++ b/noncore/multimedia/showimg/showimg.cpp
@@ -6,60 +6,61 @@
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** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21// 21//
22// Full-screen and rotation options contributed by Robert Wittams <robert@wittams.com> 22// Full-screen and rotation options contributed by Robert Wittams <robert@wittams.com>
23// 23//
24 24
25#include "showimg.h" 25#include "showimg.h"
26#include "ImageFileSelector.h" 26#include "ImageFileSelector.h"
27#include "settingsdialog.h" 27#include "settingsdialog.h"
28 28
29 29
30#include <opie/ofiledialog.h> 30#include <opie2/ofiledialog.h>
31 31
32#include <qpe/qpeapplication.h> 32#include <qpe/qpeapplication.h>
33#include <qpe/config.h> 33#include <qpe/config.h>
34#include <qpe/resource.h> 34#include <qpe/resource.h>
35#include <math.h>
36#include <qmenubar.h>
37#include <qpe/qpetoolbar.h> 35#include <qpe/qpetoolbar.h>
36
38#include <qaction.h> 37#include <qaction.h>
39#include <qfiledialog.h> 38#include <qfiledialog.h>
39#include <qmenubar.h>
40#include <qspinbox.h> 40#include <qspinbox.h>
41 41
42#include <math.h>
42 43
43 44
44ControlsDialog::ControlsDialog(const QString &caption,QImage image,int *brightness,QWidget *parent) 45ControlsDialog::ControlsDialog(const QString &caption,QImage image,int *brightness,QWidget *parent)
45 : QDialog(parent,0,true) 46 : QDialog(parent,0,true)
46{ 47{
47 setCaption(caption); 48 setCaption(caption);
48 49
49 if ( parent ) { 50 if ( parent ) {
50 setPalette(parent->palette()); 51 setPalette(parent->palette());
51 } 52 }
52 53
53 b=brightness; 54 b=brightness;
54 img=image; 55 img=image;
55 56
56 setMinimumSize(140,80); 57 setMinimumSize(140,80);
57 58
58 QGridLayout *gl= new QGridLayout(this,2,2,4,4); 59 QGridLayout *gl= new QGridLayout(this,2,2,4,4);
59 60
60 pixmap =new ImageWidget(this);; 61 pixmap =new ImageWidget(this);;
61 QPixmap pm; 62 QPixmap pm;
62 pm.convertFromImage(img); 63 pm.convertFromImage(img);
63 pixmap->setPixmap(pm); 64 pixmap->setPixmap(pm);
64 pixmap->setMinimumSize(pm.width(),pm.height()); 65 pixmap->setMinimumSize(pm.width(),pm.height());
65 gl->addMultiCellWidget(pixmap,0,0,0,2,AlignCenter); 66 gl->addMultiCellWidget(pixmap,0,0,0,2,AlignCenter);
@@ -177,49 +178,49 @@ void ImagePane::imageClicked()
177/* 178/*
178 Draws the portion of the scaled pixmap that needs to be updated 179 Draws the portion of the scaled pixmap that needs to be updated
179*/ 180*/
180 181
181void ImageWidget::paintEvent( QPaintEvent *e ) 182void ImageWidget::paintEvent( QPaintEvent *e )
182{ 183{
183 QPainter painter(this); 184 QPainter painter(this);
184 185
185 painter.setClipRect(e->rect()); 186 painter.setClipRect(e->rect());
186 painter.fillRect(0,0,width(),height(),QColor(0,0,0)); 187 painter.fillRect(0,0,width(),height(),QColor(0,0,0));
187 188
188 if ( pixmap.size() != QSize( 0, 0 ) ) 189 if ( pixmap.size() != QSize( 0, 0 ) )
189 { // is an image loaded? 190 { // is an image loaded?
190 painter.drawPixmap((width() - pixmap.width()) / 2, (height() - pixmap.height()) / 2, pixmap); 191 painter.drawPixmap((width() - pixmap.width()) / 2, (height() - pixmap.height()) / 2, pixmap);
191 } 192 }
192} 193}
193 194
194void ImageWidget::mouseReleaseEvent(QMouseEvent *) 195void ImageWidget::mouseReleaseEvent(QMouseEvent *)
195{ 196{
196 emit clicked(); 197 emit clicked();
197} 198}
198 199
199//=========================================================================== 200//===========================================================================
200 201
201ImageViewer::ImageViewer( QWidget *parent, const char *name, int wFlags ) 202ImageViewer::ImageViewer( QWidget *parent, const char *name, int /*wFlags*/ )
202: QMainWindow( parent, name, WResizeNoErase ), filename( 0 ), bFromDocView( FALSE ) 203: QMainWindow( parent, name, WResizeNoErase ), filename( 0 ), bFromDocView( FALSE )
203{ 204{
204 setCaption( tr("Image Viewer") ); 205 setCaption( tr("Image Viewer") );
205 setIcon( Resource::loadPixmap( "ImageViewer" ) ); 206 setIcon( Resource::loadPixmap( "ImageViewer" ) );
206 207
207 208
208 Config cfg("Image Viewer"); 209 Config cfg("Image Viewer");
209 cfg.setGroup("Image Viewer"); 210 cfg.setGroup("Image Viewer");
210 211
211 showThumbView=cfg.readBoolEntry("ShowThumbnails",false); 212 showThumbView=cfg.readBoolEntry("ShowThumbnails",false);
212 isSized=cfg.readBoolEntry("SizeToScreen",true); 213 isSized=cfg.readBoolEntry("SizeToScreen",true);
213 214
214 isFullScreen = FALSE; 215 isFullScreen = FALSE;
215 216
216 setToolBarsMovable( FALSE ); 217 setToolBarsMovable( FALSE );
217 218
218 toolBar = new QToolBar( this ); 219 toolBar = new QToolBar( this );
219 toolBar->setHorizontalStretchable( TRUE ); 220 toolBar->setHorizontalStretchable( TRUE );
220 221
221 menuBar = new QMenuBar( toolBar ); 222 menuBar = new QMenuBar( toolBar );
222 223
223 current=menuBar; 224 current=menuBar;
224 225
225 226
@@ -501,49 +502,49 @@ void ImageViewer::show()
501 QMainWindow::show(); 502 QMainWindow::show();
502} 503}
503 504
504void ImageViewer::show(const QString& fileref) 505void ImageViewer::show(const QString& fileref)
505{ 506{
506// qDebug("Show "+fileref); 507// qDebug("Show "+fileref);
507 bFromDocView = TRUE; 508 bFromDocView = TRUE;
508 closeFileSelector(); 509 closeFileSelector();
509 DocLnk link(fileref); 510 DocLnk link(fileref);
510 if ( link.isValid() ) { 511 if ( link.isValid() ) {
511 openFile(link); 512 openFile(link);
512 } else { 513 } else {
513 filename = fileref; 514 filename = fileref;
514 updateCaption( fileref ); 515 updateCaption( fileref );
515 loadImage( fileref ); 516 loadImage( fileref );
516 } 517 }
517} 518}
518 519
519void ImageViewer::openFile() { 520void ImageViewer::openFile() {
520 MimeTypes types; 521 MimeTypes types;
521 QStringList image; 522 QStringList image;
522 image << "image/*"; 523 image << "image/*";
523 types.insert("Images", image); 524 types.insert("Images", image);
524 525
525 QString str = OFileDialog::getOpenFileName( 1,QPEApplication::documentDir(),"", types, 0 ); 526 QString str = Opie::OFileDialog::getOpenFileName( 1,QPEApplication::documentDir(),"", types, 0 );
526 DocLnk link(str); 527 DocLnk link(str);
527// if ( link.isValid() ) 528// if ( link.isValid() )
528 openFile(link); 529 openFile(link);
529 530
530} 531}
531 532
532void ImageViewer::openFile( const DocLnk &link ) 533void ImageViewer::openFile( const DocLnk &link )
533{ 534{
534 closeFileSelector(); 535 closeFileSelector();
535// DocLnk link(file); 536// DocLnk link(file);
536 qDebug("open "+link.name()); 537 qDebug("open "+link.name());
537 updateCaption( link.name() ); 538 updateCaption( link.name() );
538 loadImage( link.file() ); 539 loadImage( link.file() );
539 if (slideTimer->isActive()) { 540 if (slideTimer->isActive()) {
540 slideTimer->start(slideDelay * 1000, FALSE); 541 slideTimer->start(slideDelay * 1000, FALSE);
541 } 542 }
542 543
543} 544}
544 545
545void ImageViewer::open() 546void ImageViewer::open()
546{ 547{
547 switchToFileSelector(); 548 switchToFileSelector();
548} 549}
549 550