qtvplugin_geomarker.h 8.5 KB
Newer Older
1 2 3 4 5 6
#ifndef QTVPLUGIN_GEOMARKER_H
#define QTVPLUGIN_GEOMARKER_H

#include <QWidget>
#include <QTranslator>
#include <QStandardItemModel>
7 8
#include <QMap>
#include <QXmlStreamAttributes>
9
#include <functional>
10 11 12 13 14 15 16 17
#include "geographicsscene.h"
#include "../qtviewer_planetosm/osmtiles/layer_interface.h"
#include "../qtviewer_planetosm/osmtiles/viewer_interface.h"
#include "geoitembase.h"
namespace Ui {
	class qtvplugin_geomarker;
}
using namespace QTVOSM;
18 19
/*!
 \brief qtvplugin_geomarker introduces QGraphicesView system, established a common approach for geo marking.
20 21 22
 GEO marker is a vector symbol that will be displayed on the background OSM raster map. there are 3 different mark types supported by this plugin.
 1. Point Marks. Include ellipse and rect style mark. these type of mark stand for a single point on earth, with a specified lat, lon .the width and height
 for rect / ellipse circumrect can be specified by user at runtime, in PIXEL. width and height will stay still during map zoom.
23 24 25 26

 2. Line Mark.	Line mark is a beeline on map. ATTENTION, in Mercator Projection system, the geo shortest path between 2 points on earth is NOT a beeline, that means
 beeline on a map is just for display performance and accessibility. the real path is a curve , which has 2 point of intersections exactly at start position and end position.

27
 3. Polygon (Polygon) Mark. Polygon mark is a polygon on map. borders of a polygon is painted with lines, for a same reason above, the geo shortest path between 2 points on earth is NOT a beeline either.
28 29 30 31 32 33 34 35 36 37 38

 Marks above shares a same style system provided by Qt painter system. pen, brush , font can be setted for each mark.

 Each mark has a Uinque ID called "name", and a type enum called "type". It can also contain several user-defined properties, with a key-value  style storage.
 Especial, a user-defined property called "LABEL"(Upper case) is different agains others. the value of LABEL will be displayed as text items on map all the time,
 but other properties will only visible when user click the mark.

 When the mark is clicked, or double clicked, a event will be fired, so that all plugins and OCX containers will be noticed that a mark (with ID) is clicked.

 \class qtvplugin_geomarker qtvplugin_geomarker.h "qtvplugin_geomarker/qtvplugin_geomarker.h"
*/
39 40 41 42 43
class qtvplugin_geomarker : public QWidget,public layer_interface
{
	Q_OBJECT
	Q_PLUGIN_METADATA(IID OSMLayerInterface_iid )
	Q_INTERFACES(QTVOSM::layer_interface)
44 45 46 47 48 49 50 51 52
private:
	struct tag_xml_mark{
		QString name;
		int		type;
		QPolygonF geoPoints;
		QMap<QString, QString> styles;
		QMap<QString, QString> props;
	};

53 54 55 56
public:
	qtvplugin_geomarker(QWidget *parent = 0);
	~qtvplugin_geomarker();
	QWidget *	get_propWindow() {return this;}
57
	QString		get_name();
58 59 60 61 62 63 64 65 66
	/*! Get graphicalScence, the scence is a World coord in current level.
	 * in plugin system and draw tasks, user should divide class from  QGraphicsItem
	 * and maintain lat, lon coords to world coords according to current level
	 * (through  CV_LLA2World for convenience).
	*/
	QTVP_GEOMARKER::geoGraphicsScene * scene(){return m_pScene;}
private:
	int m_nInstance;

67
	QTVP_GEOMARKER::geoGraphicsScene * m_pScene;	//! the graphics scene object pointer.
68 69
	QTranslator pluginTranslator;
	Ui::qtvplugin_geomarker *ui;
70
	viewer_interface * m_pVi;						//! viewer_interface interface provides coordinats convertions.
71 72 73 74
	bool m_bVisible;
	QString m_SLLibName;
	QString m_SLLibPath;
private:
75 76 77
	/*! a timer provides timing ui-refresh , instead of immediately refresh when item has been updated.
	 * This timer is just affects UI widgets, Map will be updated immediately otherwise.
	*/
78
	int m_nTimerID_refreshUI;
丁劲犇's avatar
丁劲犇 已提交
79
	int m_nTimerID_refreshMap;
80
	bool m_bNeedRefresh;
丁劲犇's avatar
丁劲犇 已提交
81 82
	bool m_bNeedUpdateView;

83
	QStandardItemModel * m_pLineStyleModel;
丁劲犇's avatar
丁劲犇 已提交
84
	QStandardItemModel * m_pFillStyleModel;
85 86
	QStandardItemModel * m_pGeoItemModel;
	QStandardItemModel * m_pGeoPropModel;
87 88

	//persistent functions
89
private:
90 91 92 93 94 95 96 97 98 99
	QString		ini_file();
	void		ini_save();
	void		ini_load();
	bool		xml_save		(QString xml);
	bool		xml_load		(QString xml);
	bool		xml_readMark	(QXmlStreamReader & reader, tag_xml_mark & mark,QString & errMsg);
	bool		xml_readGeo		(QXmlStreamReader & reader, tag_xml_mark & mark,QString & errMsg);
	bool		xml_readStyle	(QXmlStreamReader & reader, tag_xml_mark & mark,QString & errMsg);
	bool		xml_readProps	(QXmlStreamReader & reader, tag_xml_mark & mark,QString & errMsg);
	QMap<QString,QString> xml_attribs_map(const QXmlStreamAttributes & ats);
100 101

	//UI refreshing functions
102
private:
丁劲犇's avatar
丁劲犇 已提交
103 104
	void scheduleRefreshMarks();
	void scheduleUpdateMap();
105 106 107 108
	void refreshItemUI(QString markname);
	void refreshProps(QTVP_GEOMARKER::geoItemBase * itm);
	QColor string2color(const QString & s);
	QString color2string(const QColor & c);
109 110
	//Geo mark updating functions
private:
111
	//update methopd for UI
112
	template <class T>
113 114 115
	QTVP_GEOMARKER::geoItemBase *	update_point		(const QString & name,double lat, double lon, int width, int height, QPen pen, QBrush brush);
	QTVP_GEOMARKER::geoItemBase *	update_line			(const QString & name,double lat1, double lon1,double lat2, double lon2, QPen pen);
	QTVP_GEOMARKER::geoItemBase *	update_polygon		(const QString & name,const QPolygonF latlons, QPen pen, QBrush brush);
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
	//update method for XML
	bool							xml_update_mark		(tag_xml_mark & mark);
	//update method for plugin function calls
	QMap<QString, QVariant>			func_update_point	(const QMap<QString, QVariant> &);
	QMap<QString, QVariant>			func_update_line	(const QMap<QString, QVariant> &);
	QMap<QString, QVariant>			func_update_polygon	(const QMap<QString, QVariant> &);
	QMap<QString, QVariant>			func_update_props	(const QMap<QString, QVariant> &);
	//other function calls
private:
	void initialBindPluginFuntions();
	QMap<QString,
		std::function	<
			QMap<QString, QVariant> (const QMap<QString, QVariant> &)
						>
		> m_map_pluginFunctions;
	QMap<QString, QVariant>			func_exists		(const QMap<QString, QVariant> &);

133 134

	//overloaded virtual funtions
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
protected:
	layer_interface *		load_initial_plugin(QString strSLibPath,viewer_interface  * ptrviewer);
	QWidget *				load_prop_window();
	void					load_retranslate_UI();

	bool		is_visible();
	void		set_visible(bool vb);
	void		set_name(QString vb);

	void		cb_paintEvent( QPainter * pImage );
	void		cb_levelChanged(int);
	bool		cb_mousePressEvent(QMouseEvent *);
	bool		cb_mouseDoubleClickEvent(QMouseEvent *);
	bool		cb_event(const QMap<QString, QVariant>);

	void		timerEvent(QTimerEvent * e);
151
	QMap<QString, QVariant> call_func(const  QMap<QString, QVariant> & /*paras*/);
152
	void loadTranslations();
153
	//ui slots
154 155 156 157 158
protected slots:
	void on_pushButton_update_clicked();
	void on_radioButton_tool_point_toggled(bool);
	void on_radioButton_tool_line_toggled(bool);
	void on_radioButton_tool_polygon_toggled(bool);
丁劲犇's avatar
丁劲犇 已提交
159 160
	void on_toolButton_selColorPen_clicked();
	void on_toolButton_selColorFill_clicked();
161
	void on_toolButton_selColorText_clicked();
162 163 164 165 166 167
	void on_tableView_marks_doubleClicked(const QModelIndex & index);
	void on_pushButton_prop_update_clicked();
	void on_pushButton_prop_delete_clicked();
	void on_pushButton_del_clicked();
	void on_pushButton_pickToLine1_clicked();
	void on_pushButton_pickToLine2_clicked();
168
	void on_pushButton_getPolygon_clicked();
169 170
	void on_pushButton_save_clicked();
	void on_pushButton_load_clicked();
171 172 173
};

template <class T>
174
QTVP_GEOMARKER::geoItemBase * qtvplugin_geomarker::update_point(const QString & name,double lat, double lon, int width, int height, QPen pen, QBrush brush)
175
{
176
	QTVP_GEOMARKER::geoItemBase * res = 0;
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
	//Get raw Item by name
	QTVP_GEOMARKER::geoItemBase * base = m_pScene->geoitem_by_name(name);
	//Get Props
	QStringList propNames;
	QVariantList propValues;
	if (base)
	{
		propNames = base->prop_names();
		propValues = base->prop_values();
	}
	//type convertion to T
	T * pitem = base?dynamic_cast<T  *>(base):0;
	if (!pitem)
		pitem	= new T(name,
						this->m_pVi,
						lat,lon,
						width,height);
丁劲犇's avatar
丁劲犇 已提交
194 195
	pitem->setPen(pen);
	pitem->setBrush(brush);
196

197 198 199 200
	if (base == pitem)
	{
		pitem->setCenter(lat,lon);
		pitem->setSize(width,height);
201
		res = pitem;
202
	}
203
	else if (false==this->m_pScene->addItem(pitem,0))
204 205 206 207 208 209 210 211 212 213 214 215 216
	{
		if (base != pitem)
			delete pitem;
	}
	else
	{
		int cs = propNames.size();
		for (int i=0;i<cs && base != pitem;++i)
		{
			pitem->set_prop_data(propNames.first(), propValues.first());
			propNames.pop_front();
			propValues.pop_front();
		}
217
		res = pitem;
218 219
	}

220 221
	return res;

222 223 224 225 226
}

#endif // QTVPLUGIN_GEOMARKER_H