mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
20 lines
429 B
Plaintext
20 lines
429 B
Plaintext
|
|
||
|
class QgsUserInputDockWidget : QDockWidget
|
||
|
{
|
||
|
%TypeHeaderCode
|
||
|
#include "qgsuserinputdockwidget.h"
|
||
|
%End
|
||
|
|
||
|
public:
|
||
|
QgsUserInputDockWidget( QWidget* parent /TransferThis/ = 0 );
|
||
|
~QgsUserInputDockWidget();
|
||
|
|
||
|
//! add a widget to be displayed in the dock
|
||
|
void addUserInputWidget( QWidget* widget );
|
||
|
|
||
|
protected:
|
||
|
//! will not display the dock if it contains no widget
|
||
|
void paintEvent( QPaintEvent *event );
|
||
|
|
||
|
};
|