1
0
mirror of https://github.com/qgis/QGIS.git synced 2025-04-03 00:05:24 -04:00
QGIS/src/app/layout/qgslayoutpagepropertieswidget.h

65 lines
2.0 KiB
C++

/***************************************************************************
qgslayoutpagepropertieswidget.h
-------------------------------
Date : July 2017
Copyright : (C) 2017 Nyall Dawson
Email : nyall dot dawson at gmail dot com
***************************************************************************
* *
* 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 QGSLAYOUTPAGEPROPERTIESWIDGET_H
#define QGSLAYOUTPAGEPROPERTIESWIDGET_H
#include "qgis.h"
#include "ui_qgslayoutpagepropertieswidget.h"
#include "qgslayoutsize.h"
#include "qgslayoutpoint.h"
#include "qgslayoutitemwidget.h"
#include "qgslayoutmeasurementconverter.h"
class QgsLayoutItem;
class QgsLayoutItemPage;
/**
* A widget for configuring properties of pages in a layout
*/
class QgsLayoutPagePropertiesWidget : public QgsLayoutItemBaseWidget, private Ui::QgsLayoutPagePropertiesWidget
{
Q_OBJECT
public:
/**
* Constructor for QgsLayoutPagePropertiesWidget.
*/
QgsLayoutPagePropertiesWidget( QWidget *parent, QgsLayoutItem *page );
private slots:
void pageSizeChanged( int index );
void orientationChanged( int index );
void updatePageSize();
void setToCustomSize();
void symbolChanged();
private:
QgsLayoutItemPage *mPage = nullptr;
QgsLayoutMeasurementConverter mConverter;
bool mSettingPresetSize = false;
void showCurrentPageSize();
};
#endif // QGSLAYOUTPAGEPROPERTIESWIDGET_H