-
-
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.
custom widget for relation reference widget
- Loading branch information
Showing
3 changed files
with
168 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/*************************************************************************** | ||
qgsrelationreferencewidgetplugin.cpp | ||
-------------------------------------- | ||
Date : 18.08.2014 | ||
Copyright : (C) 2014 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 "qgsrelationreferencewidgetplugin.h" | ||
#include "qgsrelationreferencewidget.h" | ||
|
||
|
||
QgsRelationReferenceWidgetPlugin::QgsRelationReferenceWidgetPlugin( QObject *parent ) | ||
: QObject( parent ) | ||
, mInitialized( false ) | ||
{ | ||
} | ||
|
||
|
||
QString QgsRelationReferenceWidgetPlugin::name() const | ||
{ | ||
return "QgsRelationReferenceWidget"; | ||
} | ||
|
||
QString QgsRelationReferenceWidgetPlugin::group() const | ||
{ | ||
return QgisCustomWidgets::groupName(); | ||
} | ||
|
||
QString QgsRelationReferenceWidgetPlugin::includeFile() const | ||
{ | ||
return "qgsrelationreferencewidget.h"; | ||
} | ||
|
||
QIcon QgsRelationReferenceWidgetPlugin::icon() const | ||
{ | ||
return QIcon(); | ||
} | ||
|
||
bool QgsRelationReferenceWidgetPlugin::isContainer() const | ||
{ | ||
return false; | ||
} | ||
|
||
QWidget *QgsRelationReferenceWidgetPlugin::createWidget( QWidget *parent ) | ||
{ | ||
return new QgsRelationReferenceWidget( parent ); | ||
} | ||
|
||
bool QgsRelationReferenceWidgetPlugin::isInitialized() const | ||
{ | ||
return mInitialized; | ||
} | ||
|
||
void QgsRelationReferenceWidgetPlugin::initialize( QDesignerFormEditorInterface *core ) | ||
{ | ||
Q_UNUSED( core ); | ||
if ( mInitialized ) | ||
return; | ||
mInitialized = true; | ||
} | ||
|
||
|
||
QString QgsRelationReferenceWidgetPlugin::toolTip() const | ||
{ | ||
return "Select color"; | ||
} | ||
|
||
QString QgsRelationReferenceWidgetPlugin::whatsThis() const | ||
{ | ||
return ""; | ||
} | ||
|
||
QString QgsRelationReferenceWidgetPlugin::domXml() const | ||
{ | ||
return QString( "<ui language=\"c++\">\n" | ||
" <widget class=\"%1\" name=\"mColorButton\">\n" | ||
" <property name=\"geometry\">\n" | ||
" <rect>\n" | ||
" <x>0</x>\n" | ||
" <y>0</y>\n" | ||
" <width>27</width>\n" | ||
" <height>27</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 @@ | ||
/*************************************************************************** | ||
qgsrelationreferencewidgetplugin.h | ||
-------------------------------------- | ||
Date : 18.08.2014 | ||
Copyright : (C) 2014 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 QGSRELATIONREFERENCEWIDGETPLUGIN_H | ||
#define QGSRELATIONREFERENCEWIDGETPLUGIN_H | ||
|
||
#include <QDesignerExportWidget> | ||
#include <QDesignerCustomWidgetInterface> | ||
|
||
|
||
class CUSTOMWIDGETS_EXPORT QgsRelationReferenceWidgetPlugin : public QObject, public QDesignerCustomWidgetInterface | ||
{ | ||
Q_OBJECT | ||
Q_INTERFACES( QDesignerCustomWidgetInterface ) | ||
|
||
public: | ||
explicit QgsRelationReferenceWidgetPlugin( QObject *parent = 0 ); | ||
|
||
private: | ||
bool mInitialized; | ||
|
||
// QDesignerCustomWidgetInterface interface | ||
public: | ||
QString name() const; | ||
QString group() const; | ||
QString includeFile() const; | ||
QIcon icon() const; | ||
bool isContainer() const; | ||
QWidget *createWidget( QWidget *parent ); | ||
bool isInitialized() const; | ||
void initialize( QDesignerFormEditorInterface *core ); | ||
QString toolTip() const; | ||
QString whatsThis() const; | ||
QString domXml() const; | ||
}; | ||
#endif // QGSRELATIONREFERENCEWIDGETPLUGIN_H |