mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-23 00:05:43 -04:00
34 lines
1.5 KiB
C++
34 lines
1.5 KiB
C++
/***************************************************************************
|
|
qgsmaptoolcircularstringcurvepoint.h - map tool for adding circular
|
|
strings by start / curve / endpoint
|
|
---------------------
|
|
begin : Feb 2015
|
|
copyright : (C) 2015 by Marco Hugentobler
|
|
email : marco dot hugentobler at sourcepole dot ch
|
|
***************************************************************************
|
|
* *
|
|
* 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 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef QGSMAPTOOLCIRCULARSTRINGCURVEPOINT_H
|
|
#define QGSMAPTOOLCIRCULARSTRINGCURVEPOINT_H
|
|
|
|
#include "qgsmaptooladdcircularstring.h"
|
|
|
|
class QgsMapToolCircularStringCurvePoint: public QgsMapToolAddCircularString
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QgsMapToolCircularStringCurvePoint( QgsMapToolCapture *parentTool, QgsMapCanvas *canvas, CaptureMode mode = CaptureLine );
|
|
|
|
void cadCanvasReleaseEvent( QgsMapMouseEvent *e ) override;
|
|
void cadCanvasMoveEvent( QgsMapMouseEvent *e ) override;
|
|
};
|
|
|
|
#endif // QGSMAPTOOLCIRCULARSTRINGCURVEPOINT_H
|