-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06976d0
commit 28cd9ad
Showing
14 changed files
with
781 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
/************************************************************************ | ||
* This file has been generated automatically from * | ||
* * | ||
* src/gui/layout/qgslayoutruler.h * | ||
* * | ||
* Do not edit manually ! Edit header and run scripts/sipify.pl again * | ||
************************************************************************/ | ||
|
||
|
||
|
||
class QgsLayoutRuler: QWidget | ||
{ | ||
%Docstring | ||
A custom ruler widget for use with QgsLayoutView, displaying the | ||
current zoom and position of the visible layout and for interacting | ||
with guides in a layout. | ||
|
||
.. versionadded:: 3.0 | ||
%End | ||
|
||
%TypeHeaderCode | ||
#include "qgslayoutruler.h" | ||
%End | ||
public: | ||
|
||
explicit QgsLayoutRuler( QWidget *parent /TransferThis/ = 0, Qt::Orientation orientation = Qt::Horizontal ); | ||
%Docstring | ||
Constructor for QgsLayoutRuler, with the specified ``parent`` widget and ``orientation``. | ||
%End | ||
|
||
virtual QSize minimumSizeHint() const; | ||
|
||
|
||
void setSceneTransform( const QTransform &transform ); | ||
%Docstring | ||
Sets the current scene ``transform``. This is usually the transform set for a view | ||
showing the associated scene, in order to synchronize the view's display of | ||
the scene with the rulers. | ||
%End | ||
|
||
QgsLayoutView *layoutView(); | ||
%Docstring | ||
Returns the current layout view associated with the ruler. | ||
.. seealso:: setLayoutView() | ||
:rtype: QgsLayoutView | ||
%End | ||
|
||
void setLayoutView( QgsLayoutView *view ); | ||
%Docstring | ||
Sets the current layout ``view`` to synchronize the ruler with. | ||
.. seealso:: layoutView() | ||
%End | ||
|
||
int rulerSize() const; | ||
%Docstring | ||
Returns the ruler size (either the height of a horizontal ruler or the | ||
width of a vertical rule). | ||
:rtype: int | ||
%End | ||
|
||
public slots: | ||
|
||
void setCursorPosition( QPointF position ); | ||
%Docstring | ||
Updates the ``position`` of the marker showing the current mouse position within | ||
the view. | ||
``position`` is in layout coordinates. | ||
%End | ||
|
||
protected: | ||
virtual void paintEvent( QPaintEvent *event ); | ||
|
||
virtual void mouseMoveEvent( QMouseEvent *event ); | ||
|
||
|
||
signals: | ||
void cursorPosChanged( QPointF ); | ||
%Docstring | ||
Is emitted when mouse cursor coordinates change | ||
%End | ||
|
||
}; | ||
|
||
/************************************************************************ | ||
* This file has been generated automatically from * | ||
* * | ||
* src/gui/layout/qgslayoutruler.h * | ||
* * | ||
* Do not edit manually ! Edit header and run scripts/sipify.pl again * | ||
************************************************************************/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.