mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-03 00:05:24 -04:00
50 lines
1.5 KiB
C++
50 lines
1.5 KiB
C++
/***************************************************************************
|
|
qgsattributeforminterface.cpp
|
|
--------------------------------------
|
|
Date : 12.5.2014
|
|
Copyright : (C) 2014 Matthias Kuhn
|
|
Email : matthias at opengis 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "qgsattributeforminterface.h"
|
|
|
|
#include "qgsattributeform.h"
|
|
#include "qgsfeature.h"
|
|
|
|
QgsAttributeFormInterface::QgsAttributeFormInterface( QgsAttributeForm *form )
|
|
: mForm( form )
|
|
{
|
|
}
|
|
|
|
bool QgsAttributeFormInterface::acceptChanges( const QgsFeature &feature )
|
|
{
|
|
Q_UNUSED( feature )
|
|
return true;
|
|
}
|
|
|
|
void QgsAttributeFormInterface::initForm()
|
|
{
|
|
}
|
|
|
|
void QgsAttributeFormInterface::featureChanged()
|
|
{
|
|
|
|
}
|
|
|
|
QgsAttributeForm *QgsAttributeFormInterface::form()
|
|
{
|
|
return mForm;
|
|
}
|
|
|
|
const QgsFeature &QgsAttributeFormInterface::feature()
|
|
{
|
|
return mForm->feature();
|
|
}
|