diff options
Diffstat (limited to 'src/libs/widgets/metadata/worldmapwidget.h')
-rw-r--r-- | src/libs/widgets/metadata/worldmapwidget.h | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/src/libs/widgets/metadata/worldmapwidget.h b/src/libs/widgets/metadata/worldmapwidget.h new file mode 100644 index 00000000..bfb8ad8f --- /dev/null +++ b/src/libs/widgets/metadata/worldmapwidget.h @@ -0,0 +1,73 @@ +/* ============================================================ + * + * This file is a part of digiKam project + * http://www.digikam.org + * + * Date : 2006-02-20 + * Description : a widget to display GPS info on a world map + * + * Copyright (C) 2006-2008 by Gilles Caulier <caulier dot gilles at gmail dot com> + * + * This program is free software; you can redistribute it + * and/or modify it under the terms of the GNU General + * Public License as published by the Free Software Foundation; + * either version 2, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * ============================================================ */ + +#ifndef WORLDMAPWIDGET_H +#define WORLDMAPWIDGET_H + +// TQt includes. + +#include <tqscrollview.h> + +// Local includes. + +#include "digikam_export.h" + +namespace Digikam +{ + +class WorldMapWidgetPriv; + +class DIGIKAM_EXPORT WorldMapWidget : public TQScrollView +{ +TQ_OBJECT + + +public: + + WorldMapWidget(int w, int h, TQWidget *parent); + ~WorldMapWidget(); + + void setGPSPosition(double lat, double lng); + + double getLatitude(); + double getLongitude(); + void setEnabled(bool); + +private: + + void drawContents(TQPainter *p, int x, int y, int w, int h); + void contentsMousePressEvent ( TQMouseEvent * e ); + void contentsMouseReleaseEvent ( TQMouseEvent * e ); + void contentsMouseMoveEvent( TQMouseEvent * e ); + + TQPixmap &worldMapPixmap(); + +private: + + WorldMapWidgetPriv *d; + +}; + +} // namespace Digikam + +#endif /* WORLDMAPWIDGET_H */ |