Subversion Repositories public

Rev

Rev 274 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 274 Rev 276
Line 16... Line 16...
16
#include <QDialog>
16
#include <QDialog>
17
#include "ui_shapewidgetbase.h"
17
#include "ui_shapewidgetbase.h"
18
 
18
 
19
class shapeWidget : public QDialog, private Ui::shapeWidgetBase
19
class shapeWidget : public QDialog, private Ui::shapeWidgetBase
20
{
20
{
-
 
21
	public:
-
 
22
		enum maptype
-
 
23
		{
-
 
24
		   MAP_SHAPE,
-
 
25
		   MAP_GIS,
-
 
26
		   MAP_OSM,
-
 
27
		   maptype_MAX
-
 
28
		};
-
 
29
 
21
		Q_OBJECT
30
		Q_OBJECT
22
 
31
 
23
	public:
32
	public:
24
		shapeWidget (QWidget* parent = 0, Qt::WFlags fl = 0);
33
		shapeWidget (QWidget* parent = 0, Qt::WFlags fl = 0);
25
		~shapeWidget();
34
		~shapeWidget();
26
		/*$PUBLIC_FUNCTIONS$*/
35
		/*$PUBLIC_FUNCTIONS$*/
-
 
36
		void setMapType (maptype mt);
27
 
37
 
28
	public slots:
38
	public slots:
29
		/*$PUBLIC_SLOTS$*/
39
		/*$PUBLIC_SLOTS$*/
30
		virtual void accept();
40
		virtual void accept();
-
 
41
 
-
 
42
	private:
-
 
43
	   maptype __maptype;
31
};
44
};
32
 
45
 
33
#endif
46
#endif
34
 
47