[Digikam-devel] [Bug 127584] minimum width of sidebar too large
Gilles Caulier
caulier.gilles at free.fr
Tue Jun 27 06:54:17 BST 2006
------- 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=127584
caulier.gilles free fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From caulier.gilles free fr 2006-06-27 07:54 -------
SVN commit 555353 by cgilles:
digikam from trunk : GPSWidget : size of map is 256*128 instead 300*150 to reduce at minimum lenght of right sidebar. We cannot reduce again this size because this is dependiong of histogram size now from Color tab. This is suitable and enought for 0.9.0.
Later 0.9.0 release a new GPS position editor will be add and the map in sidebar will use a QScrollView
CCMAIL: digikam-devel kde org
BUG: 127584
M +33 -13 worldmapwidget.cpp
M +4 -5 worldmapwidget.h
--- trunk/extragear/graphics/digikam/libs/widgets/metadata/worldmapwidget.cpp #555352:555353
@ -23,6 +23,7 @
#include <qimage.h>
#include <qpainter.h>
#include <qstring.h>
+#include <qpixmap.h>
// KDE includes.
@ -37,43 +38,62 @
namespace Digikam
{
-WorldMapWidget::WorldMapWidget( QWidget *parent, const char *name )
- : QWidget( parent, name ), m_latitude( 0 ), m_longitude( 0 )
+class WorldMapWidgetPriv
{
+
+public:
+
+ WorldMapWidgetPriv()
+ {
+ latitude = 0;
+ longitude = 0;
+ }
+
+ double latitude;
+ double longitude;
+
+ QPixmap worldMap;
+};
+
+WorldMapWidget::WorldMapWidget( QWidget *parent, const char *name, int mapLenght )
+ : QWidget( parent, name )
+{
+ d = new WorldMapWidgetPriv;
KGlobal::dirs()->addResourceType("worldmap", KGlobal::dirs()->kde_default("data") + "digikam/data");
QString directory = KGlobal::dirs()->findResourceDir("worldmap", "worldmap.png");
QImage map(directory + "worldmap.png");
- m_worldMap = QPixmap(map.scale(300, 150));
+ d->worldMap = QPixmap(map.scale(mapLenght, mapLenght/2));
setBackgroundMode( Qt::NoBackground );
- setFixedSize( m_worldMap.size() );
+ setFixedSize( d->worldMap.size() );
update();
}
WorldMapWidget::~WorldMapWidget()
{
+ delete d;
}
double WorldMapWidget::getLatitude(void)
{
- return m_latitude;
+ return d->latitude;
}
double WorldMapWidget::getLongitude(void)
{
- return m_longitude;
+ return d->longitude;
}
void WorldMapWidget::setGPSPosition(double lat, double lng)
{
- m_latitude = lat;
- m_longitude = lng;
+ d->latitude = lat;
+ d->longitude = lng;
repaint(false);
}
void WorldMapWidget::paintEvent( QPaintEvent* )
{
- QPixmap pm( m_worldMap );
+ QPixmap pm( d->worldMap );
if (isEnabled())
{
@ -81,13 +101,13 @
p.begin( &pm, this );
double latMid = height() / 2.0;
- double longMid = width() / 2.0;
+ double longMid = width() / 2.0;
- double latOffset = ( m_latitude * latMid ) / 90.0;
- double longOffset = ( m_longitude * longMid ) / 180.0;
+ double latOffset = ( d->latitude * latMid ) / 90.0;
+ double longOffset = ( d->longitude * longMid ) / 180.0;
int xPos = (int)(longMid + longOffset);
- int yPos = (int)(latMid - latOffset);
+ int yPos = (int)(latMid - latOffset);
p.setPen(QPen(Qt::white, 0, Qt::SolidLine));
p.drawLine(xPos, 0, xPos, height());
--- trunk/extragear/graphics/digikam/libs/widgets/metadata/worldmapwidget.h #555352:555353
@ -24,7 +24,6 @
// Qt includes.
#include <qwidget.h>
-#include <qpixmap.h>
// Local includes
@ -33,13 +32,15 @
namespace Digikam
{
+class WorldMapWidgetPriv;
+
class DIGIKAM_EXPORT WorldMapWidget : public QWidget
{
Q_OBJECT
public:
- WorldMapWidget( QWidget *parent, const char *name = 0 );
+ WorldMapWidget( QWidget *parent, const char *name = 0, int mapLenght=256 );
~WorldMapWidget();
void setGPSPosition(double lat, double lng);
@ -53,10 +54,8 @
private:
- double m_latitude;
- double m_longitude;
+ WorldMapWidgetPriv *d;
- QPixmap m_worldMap;
};
} // namespace Digikam
More information about the Digikam-devel
mailing list