-rw-r--r-- | noncore/graphics/opie-eye/TODO | 2 | ||||
-rw-r--r-- | noncore/graphics/opie-eye/gui/imageinfoui.cpp | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/noncore/graphics/opie-eye/TODO b/noncore/graphics/opie-eye/TODO index e31cb73..8dbf35e 100644 --- a/noncore/graphics/opie-eye/TODO +++ b/noncore/graphics/opie-eye/TODO @@ -3,5 +3,5 @@ Todo for Opie-Eye 1.) Extend BigScreen classes to have something like a combined OSplitter and OWidgetStack. On small screens one could toggle this Widget into the View but on BigScreen it would - be a full widget OToggleSplitter + be a full widget -> OToggleSplitter 2.) Write a Image Info Widget which uses the cache to get the thumb and the slave to get diff --git a/noncore/graphics/opie-eye/gui/imageinfoui.cpp b/noncore/graphics/opie-eye/gui/imageinfoui.cpp index 2580215..3463ba6 100644 --- a/noncore/graphics/opie-eye/gui/imageinfoui.cpp +++ b/noncore/graphics/opie-eye/gui/imageinfoui.cpp @@ -30,7 +30,7 @@ imageinfo::imageinfo(const QString&_path, QWidget* parent, const char* name, WF if ( !name ) setName( "imageinfo" ); - resize( 289, 335 ); + resize( 289, 335 ); setCaption( tr( "Image info" ) ); - imageinfoLayout = new QVBoxLayout( this ); + imageinfoLayout = new QVBoxLayout( this ); imageinfoLayout->setSpacing(2); imageinfoLayout->setMargin(4); @@ -48,5 +48,5 @@ imageinfo::imageinfo(const QString&_path, QWidget* parent, const char* name, WF fnameLabel = new QLabel( this, "FnameLabel" ); imageinfoLayout->addWidget( fnameLabel); - + TextView1 = new QTextView( this, "TextView1" ); TextView1->setFrameShadow( QTextView::Sunken ); @@ -57,5 +57,5 @@ imageinfo::imageinfo(const QString&_path, QWidget* parent, const char* name, WF QWhatsThis::add( TextView1, tr("Displays info of selected image") ); imageinfoLayout->addWidget( TextView1 ); - + SlaveMaster* master = SlaveMaster::self(); connect( master, SIGNAL(sig_fullInfo(const QString&, const QString&)), @@ -72,5 +72,5 @@ void imageinfo::slotChangeName(const QString&_path) fnameLabel->setText("<qt><center><b>"+fi.fileName()+"</b></center></qt>"); SlaveMaster::self()->imageInfo( currentFile ); - + QPixmap*m_pix = PPixmapCache::self()->cachedImage( _path, THUMBSIZE,THUMBSIZE ); if (!m_pix) { |