-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add expression builder to custom widgets
- Loading branch information
Showing
4 changed files
with
150 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/*************************************************************************** | ||
qgsexpressionbuilderwidgetplugin.cpp | ||
-------------------------------------- | ||
Date : 03.11.2015 | ||
Copyright : (C) 2015 Denis Rouzaud | ||
Email : denis.rouzaud@gmail.com | ||
*************************************************************************** | ||
* * | ||
* 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 "qgiscustomwidgets.h" | ||
#include "qgsexpressionbuilderwidget.h" | ||
#include "qgsexpressionbuilderwidgetplugin.h" | ||
|
||
|
||
QgsExpressionBuilderWidgetPlugin::QgsExpressionBuilderWidgetPlugin( QObject *parent ) | ||
: QObject( parent ) | ||
, mInitialized( false ) | ||
{ | ||
} | ||
|
||
|
||
QString QgsExpressionBuilderWidgetPlugin::name() const | ||
{ | ||
return "QgsExpressionBuilderWidget"; | ||
} | ||
|
||
QString QgsExpressionBuilderWidgetPlugin::group() const | ||
{ | ||
return QgisCustomWidgets::groupName(); | ||
} | ||
|
||
QString QgsExpressionBuilderWidgetPlugin::includeFile() const | ||
{ | ||
return "qgsexpressionbuilderwidget.h"; | ||
} | ||
|
||
QIcon QgsExpressionBuilderWidgetPlugin::icon() const | ||
{ | ||
return QIcon(); | ||
} | ||
|
||
bool QgsExpressionBuilderWidgetPlugin::isContainer() const | ||
{ | ||
return true; | ||
} | ||
|
||
QWidget *QgsExpressionBuilderWidgetPlugin::createWidget( QWidget *parent ) | ||
{ | ||
return new QgsExpressionBuilderWidget( parent ); | ||
} | ||
|
||
bool QgsExpressionBuilderWidgetPlugin::isInitialized() const | ||
{ | ||
return mInitialized; | ||
} | ||
|
||
void QgsExpressionBuilderWidgetPlugin::initialize( QDesignerFormEditorInterface *core ) | ||
{ | ||
Q_UNUSED( core ); | ||
if ( mInitialized ) | ||
return; | ||
mInitialized = true; | ||
} | ||
|
||
|
||
QString QgsExpressionBuilderWidgetPlugin::toolTip() const | ||
{ | ||
return tr( "Edit expression" ); | ||
} | ||
|
||
QString QgsExpressionBuilderWidgetPlugin::whatsThis() const | ||
{ | ||
return tr( "Edit expression" ); | ||
} | ||
|
||
QString QgsExpressionBuilderWidgetPlugin::domXml() const | ||
{ | ||
return QString( "<ui language=\"c++\">\n" | ||
" <widget class=\"%1\" name=\"mExpressionBuilderWidget\">\n" | ||
" <property name=\"geometry\">\n" | ||
" <rect>\n" | ||
" <x>0</x>\n" | ||
" <y>0</y>\n" | ||
" <width>700</width>\n" | ||
" <height>400</height>\n" | ||
" </rect>\n" | ||
" </property>\n" | ||
" </widget>\n" | ||
"</ui>\n" ) | ||
.arg( name() ); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/*************************************************************************** | ||
qgsexpressionbuilderwidgetplugin.h | ||
-------------------------------------- | ||
Date : 03.11.2015 | ||
Copyright : (C) 2015 Denis Rouzaud | ||
Email : denis.rouzaud@gmail.com | ||
*************************************************************************** | ||
* * | ||
* 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. * | ||
* * | ||
***************************************************************************/ | ||
|
||
#ifndef QGSEXPRESSIONBUILDERWIDGETPLUGIN_H | ||
#define QGSEXPRESSIONBUILDERWIDGETPLUGIN_H | ||
|
||
#include <QDesignerExportWidget> | ||
#include <QDesignerCustomWidgetInterface> | ||
|
||
|
||
class CUSTOMWIDGETS_EXPORT QgsExpressionBuilderWidgetPlugin : public QObject, public QDesignerCustomWidgetInterface | ||
{ | ||
Q_OBJECT | ||
Q_INTERFACES( QDesignerCustomWidgetInterface ) | ||
|
||
public: | ||
explicit QgsExpressionBuilderWidgetPlugin( QObject *parent = 0 ); | ||
|
||
private: | ||
bool mInitialized; | ||
|
||
// QDesignerCustomWidgetInterface interface | ||
public: | ||
QString name() const override; | ||
QString group() const override; | ||
QString includeFile() const override; | ||
QIcon icon() const override; | ||
bool isContainer() const override; | ||
QWidget *createWidget( QWidget *parent ) override; | ||
bool isInitialized() const override; | ||
void initialize( QDesignerFormEditorInterface *core ) override; | ||
QString toolTip() const override; | ||
QString whatsThis() const override; | ||
QString domXml() const override; | ||
}; | ||
#endif // QGSEXPRESSIONBUILDERWIDGETPLUGIN_H |