mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-28 00:17:30 -05:00
Add missing sip file
This commit is contained in:
parent
384a280f71
commit
223262e2db
37
python/gui/symbology-ng/qgsrendererwidgetcontainer.sip
Normal file
37
python/gui/symbology-ng/qgsrendererwidgetcontainer.sip
Normal file
@ -0,0 +1,37 @@
|
||||
/**
|
||||
* @brief A container widget that can be used to show a renderer widget with a title and close button.
|
||||
* @note Mainly used for the style dock panels at the moment.
|
||||
*/
|
||||
class QgsRendererWidgetContainer : QWidget
|
||||
{
|
||||
%TypeHeaderCode
|
||||
#include <qgsrendererwidgetcontainer.h>
|
||||
%End
|
||||
public:
|
||||
/**
|
||||
* @brief A container widget that can be used to show a renderer widget with a title and close button.
|
||||
* @param widget The internal widget to be shown to the user.
|
||||
* @param title The title to show on the widget.
|
||||
* @param parent The parent of the widget.
|
||||
*/
|
||||
QgsRendererWidgetContainer( QWidget* widget, const QString &title, QWidget *parent = 0 );
|
||||
|
||||
/**
|
||||
* @brief Returns the current internal widget.
|
||||
* @return The internal widget.
|
||||
*/
|
||||
QWidget* widget();
|
||||
|
||||
signals:
|
||||
/**
|
||||
* @brief Emitted when the container is accpeted and closed.
|
||||
* Listen to this to clean up the callers state.
|
||||
*/
|
||||
void accepted();
|
||||
|
||||
public slots:
|
||||
|
||||
protected:
|
||||
void keyPressEvent( QKeyEvent* event );
|
||||
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user