mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-09 00:05:52 -04:00
90 lines
3.6 KiB
C++
90 lines
3.6 KiB
C++
/***************************************************************************
|
|
qgsattributesforminitcode.cpp
|
|
---------------------
|
|
begin : October 2017
|
|
copyright : (C) 2017 by David Signer
|
|
email : david 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 "qgsattributesforminitcode.h"
|
|
#include "ui_qgsattributesforminitcode.h"
|
|
#include "qgssettings.h"
|
|
|
|
#include <QFileDialog>
|
|
|
|
QgsAttributesFormInitCode::QgsAttributesFormInitCode()
|
|
{
|
|
setupUi( this );
|
|
|
|
// Init function stuff
|
|
mInitCodeSourceComboBox->addItem( QString() );
|
|
mInitCodeSourceComboBox->addItem( tr( "Load from external file" ) );
|
|
mInitCodeSourceComboBox->addItem( tr( "Provide code in this dialog" ) );
|
|
mInitCodeSourceComboBox->addItem( tr( "Load from the environment" ) );
|
|
|
|
QgsSettings settings;
|
|
mInitFileWidget->setDefaultRoot( settings.value( QStringLiteral( "style/lastInitFilePathDir" ), "." ).toString() );
|
|
mInitFileWidget->setDialogTitle( tr( "Select Python File" ) );
|
|
mInitFileWidget->setFilter( tr( "Python files (*.py *.PY)" ) );
|
|
|
|
connect( mInitCodeSourceComboBox, static_cast<void ( QComboBox::* )( int )>( &QComboBox::currentIndexChanged ), this, &QgsAttributesFormInitCode::mInitCodeSourceComboBox_currentIndexChanged );
|
|
connect( buttonBox, &QDialogButtonBox::helpRequested, this, &QgsAttributesFormInitCode::showHelp );
|
|
}
|
|
|
|
void QgsAttributesFormInitCode::setCodeSource( QgsEditFormConfig::PythonInitCodeSource initCodeSource )
|
|
{
|
|
mInitCodeSourceComboBox->setCurrentIndex( initCodeSource );
|
|
mInitCodeSourceComboBox_currentIndexChanged( mInitCodeSourceComboBox->currentIndex() );
|
|
|
|
}
|
|
void QgsAttributesFormInitCode::setInitFunction( const QString &initFunction )
|
|
{
|
|
mInitFunctionLineEdit->setText( initFunction );
|
|
}
|
|
void QgsAttributesFormInitCode::setInitFilePath( const QString &initFilePath )
|
|
{
|
|
mInitFileWidget->setFilePath( initFilePath );
|
|
}
|
|
void QgsAttributesFormInitCode::setInitCode( const QString &initCode )
|
|
{
|
|
mInitCodeEditorPython->setText( initCode );
|
|
}
|
|
|
|
QgsEditFormConfig::PythonInitCodeSource QgsAttributesFormInitCode::codeSource() const
|
|
{
|
|
return ( QgsEditFormConfig::PythonInitCodeSource )mInitCodeSourceComboBox->currentIndex();
|
|
}
|
|
|
|
QString QgsAttributesFormInitCode::initFunction() const
|
|
{
|
|
return mInitFunctionLineEdit->text();
|
|
}
|
|
QString QgsAttributesFormInitCode::initFilePath() const
|
|
{
|
|
return mInitFileWidget->filePath();
|
|
}
|
|
QString QgsAttributesFormInitCode::initCode() const
|
|
{
|
|
return mInitCodeEditorPython->text();
|
|
}
|
|
|
|
void QgsAttributesFormInitCode::mInitCodeSourceComboBox_currentIndexChanged( int codeSource )
|
|
{
|
|
mInitFunctionContainer->setVisible( codeSource != QgsEditFormConfig::CodeSourceNone );
|
|
mInitFilePathLabel->setVisible( codeSource == QgsEditFormConfig::CodeSourceFile );
|
|
mInitFileWidget->setVisible( codeSource == QgsEditFormConfig::CodeSourceFile );
|
|
mInitCodeEditorPython->setVisible( codeSource == QgsEditFormConfig::CodeSourceDialog );
|
|
}
|
|
|
|
void QgsAttributesFormInitCode::showHelp()
|
|
{
|
|
QgsHelp::openHelp( QStringLiteral( "working_with_vector/vector_properties.html#enhance-your-form-with-custom-functions" ) );
|
|
}
|