Renchi Raju | 1 Nov 2004 06:43
Picon

[Bug 92350] Tooltip shown partly off screen

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

http://bugs.kde.org/show_bug.cgi?id=92350        
renchi pooh tam uiuc edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED

------- Additional Comments From renchi pooh tam uiuc edu  2004-11-01 06:43 -------
CVS commit by pahlibar: 

reposition tooltip with global mapping with respect to viewport. fixes 
tooltips being moved out of screen in case of very large content rect
BUG: 92350

  M +5 -3      albumfiletip.cpp   1.15

--- kdeextragear-3/digikam/digikam/albumfiletip.cpp  #1.14:1.15
  <at>  -95,6 +95,6   <at>  void AlbumFileTip::reposition()

     QRect rect = m_iconItem->rect();
-    QPoint off = m_view->mapToGlobal( m_view->contentsToViewport( QPoint( 0, 0 ) ) );
-    rect.moveBy( off.x(), off.y() );
+    rect.moveTopLeft(m_view->contentsToViewport(rect.topLeft()));
+    rect.moveTopLeft(m_view->viewport()->mapToGlobal(rect.topLeft()));

     QPoint pos = rect.center();
(Continue reading)

Renchi Raju | 1 Nov 2004 06:45
Picon

Re: string freeze?


On Sun, 31 Oct 2004, Mikolaj Machowski wrote:

> Hello,
>
> It should happen this weekend. Did it? :)

yes it did :). unfortunately i came back too late to prepare the tarballs
and do the release. so the rc release will be on monday instead of sunday.
but the string freeze is already in effect

renchi

-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
Renchi Raju | 1 Nov 2004 06:55
Picon

Re: Threaded thumbnail loading suggestion


On Wed, 27 Oct 2004, Marcel Wiesweg wrote:

> Hi,
>
> as I already wrote in bug reports I was not really satisfied with the sluggish
> GUI responsiveness of the latest release.
>
> The attached patch adds careful multithreading to the thumbnail loading code.
> Part of the work of loading already created thumbnails is moved to a
> different thread.
> The result is striking, at least on my machine, responsiveness is improved a
> lot. See it as a suggestion for the post-0.7 development.

i applied your patch and tried it out. there is some race condition, as it
causes occasional deadlock. digiKam 0.6.0 used to use a threaded thumbnail
loader and i guess we can bring that back for 0.7.1 and replace the
current kio::job based one with that.

renchi

-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
Renchi Raju | 1 Nov 2004 06:58
Picon

Re: PATCH: libtiff detection and build fix


On Thu, 28 Oct 2004, Alfons Hoogervorst wrote:

> KDE's bugzilla isn't responsive today, so I'll post the patch just here.
>
> First part of the patch: On my Linux system, libtiff also depends on
> libjpeg, so the libtiff check also pulls in ljpeg.

applied this one. thanks

>
> The second part adds a build dependency on libtiff; probably forgotten.

utilities/imageeditor/Makefile.am includes libtiff dependency. this will
automatically link the main libdigikam with libtiff as well. so no need
for the second part of the patch.

renchi

-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
Oliver | 1 Nov 2004 09:19
Picon
Picon

Could not fnd strings to translate

Hi,

i'm just cheking if i have everything transalted and found that i did'nt 
have the schemas (Clean, Dreary, Marine and Standard) translated.... but 
i could'nt find them in the .pot files. Could somebody check that?

Oliver

-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
lan | 1 Nov 2004 11:14

[Bug 92511] New: Review: utilities/cameragui/mtqueue.h use bad locking style

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

http://bugs.kde.org/show_bug.cgi?id=92511        
           Summary: Review: utilities/cameragui/mtqueue.h use bad locking
                    style
           Product: digikam
           Version: 0.7-beta1
          Platform: unspecified
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: wishlist
          Priority: NOR
         Component: general
        AssignedTo: digikam-devel lists sourceforge net
        ReportedBy: lan ac-sw com

Version:           0.7-beta1 (using KDE 3.2.1, SuSE)
Compiler:          gcc version 3.3.3 (SuSE Linux)
OS:                Linux (i686) release 2.6.5-7.111-default

It use something like this:
{
  mutex.lock();
  do_something();
  mutex.unloack();
}

in case of exception or other error lock will not be unlocked.
Qt suggest better style by using QMutexLocker:
(Continue reading)

lan | 1 Nov 2004 11:14

[Bug 92511] Review: utilities/cameragui/mtqueue.h use bad locking style

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

http://bugs.kde.org/show_bug.cgi?id=92511        

------- Additional Comments From lan ac-sw com  2004-11-01 11:14 -------
Created an attachment (id=8121)
 --> (http://bugs.kde.org/attachment.cgi?id=8121&action=view)
Better locking style

-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
lan | 1 Nov 2004 11:17

[Bug 92511] Review: utilities/cameragui/mtqueue.h use bad locking style

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

http://bugs.kde.org/show_bug.cgi?id=92511        

------- Additional Comments From lan ac-sw com  2004-11-01 11:17 -------
Forgot to add:
this patch also remove lock() and unlock() methods in mtqueue
and aslo make method head() without argument. These methods are not 
used at now.

-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
Renchi Raju | 1 Nov 2004 18:00
Picon

[Bug 92511] Review: utilities/cameragui/mtqueue.h use bad locking style

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

http://bugs.kde.org/show_bug.cgi?id=92511        

------- Additional Comments From renchi pooh tam uiuc edu  2004-11-01 18:00 -------
can you give me an example of a case where the mutex will not be unlocked? And digikam doesn't use exceptions.
QMutexLocker is just a convenience function for locking and unlocking mutex, so that the programmer
doesn't have to remember to unlock the mutex for each scenario.

-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
Renchi Raju | 1 Nov 2004 18:04
Picon

Re: Could not fnd strings to translate


On Mon, 1 Nov 2004, Oliver wrote:

> Hi,
>
> i'm just cheking if i have everything transalted and found that i did'nt
> have the schemas (Clean, Dreary, Marine and Standard) translated.... but
> i could'nt find them in the .pot files. Could somebody check that?

theme names are proper nouns and not meant to be translated. for eg, i
don't believe the name "Crystal" (for the icon-theme) is translated.

renchi

-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click

Gmane