mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-07 00:03:52 -05:00
32 lines
1.3 KiB
Plaintext
32 lines
1.3 KiB
Plaintext
/***************************************************************************
|
|
qgseditorconfigwidget.sip
|
|
--------------------------------------
|
|
Date : 24.4.2013
|
|
Copyright : (C) 2013 Matthias Kuhn
|
|
Email : matthias dot kuhn at gmx dot ch
|
|
***************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
class QgsEditorConfigWidget : QWidget
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgseditorconfigwidget.h>
|
|
%End
|
|
|
|
public:
|
|
explicit QgsEditorConfigWidget( QgsVectorLayer* vl, int fieldIdx, QWidget* parent /TransferThis/ );
|
|
int field();
|
|
|
|
QgsVectorLayer* layer();
|
|
|
|
virtual QgsEditorWidgetConfig config() = 0;
|
|
virtual void setConfig( const QgsEditorWidgetConfig& config ) = 0;
|
|
};
|
|
|