23 #include "qgssettings.h"
29 mGridPen = QPen( QColor( 190, 190, 190, 100 ), 0 );
30 mGridPen.setCosmetic(
true );
41 mLayout->
undoStack()->
beginCommand(
this, QObject::tr(
"Change Grid Resolution" ), UndoGridResolution );
58 QString gridStyleString;
59 gridStyleString = s.value( QStringLiteral(
"LayoutDesigner/gridStyle" ),
"Dots", QgsSettings::Gui ).toString();
61 int gridRed, gridGreen, gridBlue, gridAlpha;
62 gridRed = s.value( QStringLiteral(
"LayoutDesigner/gridRed" ), 190, QgsSettings::Gui ).toInt();
63 gridGreen = s.value( QStringLiteral(
"LayoutDesigner/gridGreen" ), 190, QgsSettings::Gui ).toInt();
64 gridBlue = s.value( QStringLiteral(
"LayoutDesigner/gridBlue" ), 190, QgsSettings::Gui ).toInt();
65 gridAlpha = s.value( QStringLiteral(
"LayoutDesigner/gridAlpha" ), 100, QgsSettings::Gui ).toInt();
66 QColor gridColor = QColor( gridRed, gridGreen, gridBlue, gridAlpha );
68 mGridPen.setColor( gridColor );
69 mGridPen.setWidthF( 0 );
70 mGridPen.setCosmetic(
true );
72 if ( gridStyleString == QLatin1String(
"Dots" ) )
76 else if ( gridStyleString == QLatin1String(
"Crosses" ) )
87 mGridOffset =
QgsLayoutPoint( s.value( QStringLiteral(
"LayoutDesigner/defaultSnapGridOffsetX" ), 0, QgsSettings::Gui ).toDouble(),
93 QDomElement element = document.createElement( QStringLiteral(
"Grid" ) );
95 element.setAttribute( QStringLiteral(
"resolution" ), mGridResolution.
length() );
98 element.setAttribute( QStringLiteral(
"offsetX" ), mGridOffset.
x() );
99 element.setAttribute( QStringLiteral(
"offsetY" ), mGridOffset.
y() );
102 parentElement.appendChild( element );
108 QDomElement element = e;
109 if ( element.nodeName() != QLatin1String(
"Grid" ) )
111 element = element.firstChildElement( QStringLiteral(
"Grid" ) );
114 if ( element.nodeName() != QLatin1String(
"Grid" ) )
119 double res = element.attribute( QStringLiteral(
"resolution" ), QStringLiteral(
"10" ) ).toDouble();
123 double offsetX = element.attribute( QStringLiteral(
"offsetX" ) ).toDouble();
124 double offsetY = element.attribute( QStringLiteral(
"offsetY" ) ).toDouble();
QgsLayoutMeasurement resolution() const
Returns the page/snap grid resolution.
QgsLayout * layout() override
Returns the layout the object belongs to.
QgsLayoutGridSettings(QgsLayout *layout)
Constructor for QgsLayoutGridSettings.
QgsLayoutPoint offset() const
Returns the offset of the page/snap grid.
void setOffset(const QgsLayoutPoint &offset)
Sets the offset of the page/snap grid.
bool writeXml(QDomElement &parentElement, QDomDocument &document, const QgsReadWriteContext &context) const override
Stores the grid's state in a DOM element.
bool readXml(const QDomElement &gridElement, const QDomDocument &document, const QgsReadWriteContext &context) override
Sets the grid's state from a DOM element.
void loadFromSettings()
Loads grid settings from the application layout settings.
void setResolution(QgsLayoutMeasurement resolution)
Sets the page/snap grid resolution.
This class provides a method of storing measurements for use in QGIS layouts using a variety of diffe...
double length() const
Returns the length of the measurement.
QgsUnitTypes::LayoutUnit units() const
Returns the units for the measurement.
void redraw()
Triggers a redraw for all pages.
This class provides a method of storing points, consisting of an x and y coordinate,...
double x() const
Returns x coordinate of point.
QgsUnitTypes::LayoutUnit units() const
Returns the units for the point.
double y() const
Returns y coordinate of point.
void endCommand()
Saves final state of an object and pushes the active command to the undo history.
void beginCommand(QgsLayoutUndoObjectInterface *object, const QString &commandText, int id=0)
Begins a new undo command for the specified object.
Base class for layouts, which can contain items such as maps, labels, scalebars, etc.
QgsLayoutPageCollection * pageCollection()
Returns a pointer to the layout's page collection, which stores and manages page items in the layout.
QgsLayoutUndoStack * undoStack()
Returns a pointer to the layout's undo stack, which manages undo/redo states for the layout and it's ...
The class is used as a container of context for various read/write operations on other objects.
LayoutUnit
Layout measurement units.
@ LayoutMillimeters
Millimeters.
static Q_INVOKABLE QString encodeUnit(QgsUnitTypes::DistanceUnit unit)
Encodes a distance unit to a string.
static Q_INVOKABLE QgsUnitTypes::LayoutUnit decodeLayoutUnit(const QString &string, bool *ok=nullptr)
Decodes a layout unit from a string.