[Digikam-devel] aviability and next 0.9.2-beta1
Gilles Caulier
caulier.gilles at gmail.com
Tue Apr 24 08:34:43 BST 2007
Thanks Gerhard,
In first, i have attached to this mail a little patch to optimize the
sidebar usability. This will solve these files from B.K.O:
http://bugs.kde.org/show_bug.cgi?id=139814
http://bugs.kde.org/show_bug.cgi?id=144481
Please apply this spatch against svn before to release first beta1. Unforget
to report these B.K.O files title in NEWS file. Thanks in advance...
Gilles
2007/4/23, Gerhard Kulzer <gerhard at kulzer.net>:
>
> Am Saturday 21 April 2007 schrieb Gilles Caulier:
> > Hi all,
> >
> > Just few words about my aviability for the next week. It's holiday time
> for
> > me and my internet access will be limited to use an RTC modem. I will
> > follow the mailing list and certainly polish again the implementation in
> > svn to prepare the next 0.9.2 release.
> >
> > There are a lots of changes in svn trunk, and it will be time to start
> the
> > beta series if we want to plan 0.9.2-final during June.
> >
> > Next week, i will start to review B.K.O and tag all important files to
> fix.
> >
> > Some points in suspend :
> >
> > - Antonio, Fast Scale algorithm need to be fixed to render properlly the
> > Preview zoom to high level. If it not fixed, i'm sure to see a bug
> report
> > in B.K.O (:=)))
> > - Marcel, Luka : are you some patch or fix to apply in svn before to
> > release the first beta1 ?
> > - Paco : Are you started the Light Table implementation in your computer
> ?
> >
> > Who will be volumteer to make beta1 packages ? Gerhard, Fabien ?
> >
> > Gilles
>
> Ok with me, Gilles.
>
> Gerhard
>
> --
> Hakuna matata
> http://www.gerhard.fr
>
> _______________________________________________
> Digikam-devel mailing list
> Digikam-devel at kde.org
> https://mail.kde.org/mailman/listinfo/digikam-devel
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/digikam-devel/attachments/20070424/105b52e7/attachment.html>
-------------- next part --------------
Index: imageproperties/cameraitempropertiestab.cpp
===================================================================
--- imageproperties/cameraitempropertiestab.cpp (r??vision 656709)
+++ imageproperties/cameraitempropertiestab.cpp (copie de travail)
@@ -212,8 +212,50 @@
d->labelPhotoFlash = new KSqueezedTextLabel(0, d->settingsArea);
d->labelPhotoWhiteBalance = new KSqueezedTextLabel(0, d->settingsArea);
+ int hgt = fontMetrics().height()+2;
d->title->setAlignment(Qt::AlignCenter);
+ d->file->setMaximumHeight(hgt);
+ d->folder->setMaximumHeight(hgt);
+ d->date->setMaximumHeight(hgt);
+ d->size->setMaximumHeight(hgt);
+ d->isReadable->setMaximumHeight(hgt);
+ d->isWritable->setMaximumHeight(hgt);
+ d->mime->setMaximumHeight(hgt);
+ d->dimensions->setMaximumHeight(hgt);
+ d->newFileName->setMaximumHeight(hgt);
+ d->downloaded->setMaximumHeight(hgt);
+ d->labelFile->setMaximumHeight(hgt);
+ d->labelFolder->setMaximumHeight(hgt);
+ d->labelFileDate->setMaximumHeight(hgt);
+ d->labelFileSize->setMaximumHeight(hgt);
+ d->labelFileIsReadable->setMaximumHeight(hgt);
+ d->labelFileIsWritable->setMaximumHeight(hgt);
+ d->labelImageMime->setMaximumHeight(hgt);
+ d->labelImageDimensions->setMaximumHeight(hgt);
+ d->labelNewFileName->setMaximumHeight(hgt);
+ d->labelAlreadyDownloaded->setMaximumHeight(hgt);
+
d->title2->setAlignment(Qt::AlignCenter);
+ d->make->setMaximumHeight(hgt);
+ d->model->setMaximumHeight(hgt);
+ d->photoDate->setMaximumHeight(hgt);
+ d->aperture->setMaximumHeight(hgt);
+ d->focalLength->setMaximumHeight(hgt);
+ d->exposureTime->setMaximumHeight(hgt);
+ d->sensitivity->setMaximumHeight(hgt);
+ d->exposureMode->setMaximumHeight(hgt);
+ d->flash->setMaximumHeight(hgt);
+ d->whiteBalance->setMaximumHeight(hgt);
+ d->labelPhotoMake->setMaximumHeight(hgt);
+ d->labelPhotoModel->setMaximumHeight(hgt);
+ d->labelPhotoDateTime->setMaximumHeight(hgt);
+ d->labelPhotoAperture->setMaximumHeight(hgt);
+ d->labelPhotoFocalLenght->setMaximumHeight(hgt);
+ d->labelPhotoExposureTime->setMaximumHeight(hgt);
+ d->labelPhotoSensitivity->setMaximumHeight(hgt);
+ d->labelPhotoExposureMode->setMaximumHeight(hgt);
+ d->labelPhotoFlash->setMaximumHeight(hgt);
+ d->labelPhotoWhiteBalance->setMaximumHeight(hgt);
// --------------------------------------------------
Index: imageproperties/imagepropertiestab.cpp
===================================================================
--- imageproperties/imagepropertiestab.cpp (r??vision 656709)
+++ imageproperties/imagepropertiestab.cpp (copie de travail)
@@ -226,9 +226,54 @@
d->labelPhotoFlash = new KSqueezedTextLabel(0, d->settingsArea);
d->labelPhotoWhiteBalance = new KSqueezedTextLabel(0, d->settingsArea);
+ int hgt = fontMetrics().height()+2;
d->title->setAlignment(Qt::AlignCenter);
+ d->file->setMaximumHeight(hgt);
+ d->folder->setMaximumHeight(hgt);
+ d->modifiedDate->setMaximumHeight(hgt);
+ d->size->setMaximumHeight(hgt);
+ d->owner->setMaximumHeight(hgt);
+ d->permissions->setMaximumHeight(hgt);
+ d->labelFile->setMaximumHeight(hgt);
+ d->labelFolder->setMaximumHeight(hgt);
+ d->labelFileModifiedDate->setMaximumHeight(hgt);
+ d->labelFileSize->setMaximumHeight(hgt);
+ d->labelFileOwner->setMaximumHeight(hgt);
+ d->labelFilePermissions->setMaximumHeight(hgt);
+
d->title2->setAlignment(Qt::AlignCenter);
+ d->mime->setMaximumHeight(hgt);
+ d->dimensions->setMaximumHeight(hgt);
+ d->compression->setMaximumHeight(hgt);
+ d->bitDepth->setMaximumHeight(hgt);
+ d->colorMode->setMaximumHeight(hgt);
+ d->labelImageMime->setMaximumHeight(hgt);
+ d->labelImageDimensions->setMaximumHeight(hgt);
+ d->labelImageCompression->setMaximumHeight(hgt);
+ d->labelImageBitDepth->setMaximumHeight(hgt);
+ d->labelImageColorMode->setMaximumHeight(hgt);
+
d->title3->setAlignment(Qt::AlignCenter);
+ d->make->setMaximumHeight(hgt);
+ d->model->setMaximumHeight(hgt);
+ d->photoDate->setMaximumHeight(hgt);
+ d->aperture->setMaximumHeight(hgt);
+ d->focalLength->setMaximumHeight(hgt);
+ d->exposureTime->setMaximumHeight(hgt);
+ d->sensitivity->setMaximumHeight(hgt);
+ d->exposureMode->setMaximumHeight(hgt);
+ d->flash->setMaximumHeight(hgt);
+ d->whiteBalance->setMaximumHeight(hgt);
+ d->labelPhotoMake->setMaximumHeight(hgt);
+ d->labelPhotoModel->setMaximumHeight(hgt);
+ d->labelPhotoDateTime->setMaximumHeight(hgt);
+ d->labelPhotoAperture->setMaximumHeight(hgt);
+ d->labelPhotoFocalLenght->setMaximumHeight(hgt);
+ d->labelPhotoExposureTime->setMaximumHeight(hgt);
+ d->labelPhotoSensitivity->setMaximumHeight(hgt);
+ d->labelPhotoExposureMode->setMaximumHeight(hgt);
+ d->labelPhotoFlash->setMaximumHeight(hgt);
+ d->labelPhotoWhiteBalance->setMaximumHeight(hgt);
// --------------------------------------------------
Index: widgets/common/sidebar.cpp
===================================================================
--- widgets/common/sidebar.cpp (r??vision 656709)
+++ widgets/common/sidebar.cpp (copie de travail)
@@ -90,7 +90,7 @@
void Sidebar::setSplitter(QSplitter *sp)
{
#if KDE_IS_VERSION(3,3,0)
- setStyle(KMultiTabBar::KDEV3ICON);
+ setStyle(KMultiTabBar::VSNET);
#else
setStyle(KMultiTabBar::KDEV3);
#endif
More information about the Digikam-devel
mailing list