Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
add Qgs(Double)SpinBox to custom widgets
- Loading branch information
Showing
6 changed files
with
300 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 @@ | ||
/*************************************************************************** | ||
qgsdoublespinboxplugin.cpp | ||
-------------------------------------- | ||
Date : 01.09.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 "qgsdoublespinboxplugin.h" | ||
#include "qgsdoublespinbox.h" | ||
|
||
|
||
QgsDoubleSpinBoxPlugin::QgsDoubleSpinBoxPlugin( QObject *parent ) | ||
: QObject( parent ) | ||
, mInitialized( false ) | ||
{ | ||
} | ||
|
||
|
||
QString QgsDoubleSpinBoxPlugin::name() const | ||
{ | ||
return "QgsDoubleSpinBox"; | ||
} | ||
|
||
QString QgsDoubleSpinBoxPlugin::group() const | ||
{ | ||
return QgisCustomWidgets::groupName(); | ||
} | ||
|
||
QString QgsDoubleSpinBoxPlugin::includeFile() const | ||
{ | ||
return "qgsdoublespinbox.h"; | ||
} | ||
|
||
QIcon QgsDoubleSpinBoxPlugin::icon() const | ||
{ | ||
return QIcon(); | ||
} | ||
|
||
bool QgsDoubleSpinBoxPlugin::isContainer() const | ||
{ | ||
return false; | ||
} | ||
|
||
QWidget *QgsDoubleSpinBoxPlugin::createWidget( QWidget *parent ) | ||
{ | ||
return new QgsDoubleSpinBox( parent ); | ||
} | ||
|
||
bool QgsDoubleSpinBoxPlugin::isInitialized() const | ||
{ | ||
return mInitialized; | ||
} | ||
|
||
void QgsDoubleSpinBoxPlugin::initialize( QDesignerFormEditorInterface *core ) | ||
{ | ||
Q_UNUSED( core ); | ||
if ( mInitialized ) | ||
return; | ||
mInitialized = true; | ||
} | ||
|
||
|
||
QString QgsDoubleSpinBoxPlugin::toolTip() const | ||
{ | ||
return ""; | ||
} | ||
|
||
QString QgsDoubleSpinBoxPlugin::whatsThis() const | ||
{ | ||
return ""; | ||
} | ||
|
||
QString QgsDoubleSpinBoxPlugin::domXml() const | ||
{ | ||
return QString( "<ui language=\"c++\">\n" | ||
" <widget class=\"%1\" name=\"mQgsDoubleSpinBox\">\n" | ||
" <property name=\"geometry\">\n" | ||
" <rect>\n" | ||
" <x>0</x>\n" | ||
" <y>0</y>\n" | ||
" <width>90</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 @@ | ||
/*************************************************************************** | ||
qgsdoublespinboxplugin.h | ||
-------------------------------------- | ||
Date : 01.09.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 QGSDOUBLESPINBOXPLUGIN_H | ||
#define QGSDOUBLESPINBOXPLUGIN_H | ||
|
||
#include <QDesignerExportWidget> | ||
#include <QDesignerCustomWidgetInterface> | ||
|
||
|
||
class CUSTOMWIDGETS_EXPORT QgsDoubleSpinBoxPlugin : public QObject, public QDesignerCustomWidgetInterface | ||
{ | ||
Q_OBJECT | ||
Q_INTERFACES( QDesignerCustomWidgetInterface ) | ||
|
||
public: | ||
explicit QgsDoubleSpinBoxPlugin( 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 // QGSDOUBLESPINBOXPLUGIN_H |
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 @@ | ||
/*************************************************************************** | ||
qgsspinboxplugin.cpp | ||
-------------------------------------- | ||
Date : 01.09.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 "qgsspinboxplugin.h" | ||
#include "qgsspinbox.h" | ||
|
||
|
||
QgsSpinBoxPlugin::QgsSpinBoxPlugin( QObject *parent ) | ||
: QObject( parent ) | ||
, mInitialized( false ) | ||
{ | ||
} | ||
|
||
|
||
QString QgsSpinBoxPlugin::name() const | ||
{ | ||
return "QgsSpinBox"; | ||
} | ||
|
||
QString QgsSpinBoxPlugin::group() const | ||
{ | ||
return QgisCustomWidgets::groupName(); | ||
} | ||
|
||
QString QgsSpinBoxPlugin::includeFile() const | ||
{ | ||
return "qgsspinbox.h"; | ||
} | ||
|
||
QIcon QgsSpinBoxPlugin::icon() const | ||
{ | ||
return QIcon(); | ||
} | ||
|
||
bool QgsSpinBoxPlugin::isContainer() const | ||
{ | ||
return false; | ||
} | ||
|
||
QWidget *QgsSpinBoxPlugin::createWidget( QWidget *parent ) | ||
{ | ||
return new QgsSpinBox( parent ); | ||
} | ||
|
||
bool QgsSpinBoxPlugin::isInitialized() const | ||
{ | ||
return mInitialized; | ||
} | ||
|
||
void QgsSpinBoxPlugin::initialize( QDesignerFormEditorInterface *core ) | ||
{ | ||
Q_UNUSED( core ); | ||
if ( mInitialized ) | ||
return; | ||
mInitialized = true; | ||
} | ||
|
||
|
||
QString QgsSpinBoxPlugin::toolTip() const | ||
{ | ||
return ""; | ||
} | ||
|
||
QString QgsSpinBoxPlugin::whatsThis() const | ||
{ | ||
return ""; | ||
} | ||
|
||
QString QgsSpinBoxPlugin::domXml() const | ||
{ | ||
return QString( "<ui language=\"c++\">\n" | ||
" <widget class=\"%1\" name=\"mQgsSpinBox\">\n" | ||
" <property name=\"geometry\">\n" | ||
" <rect>\n" | ||
" <x>0</x>\n" | ||
" <y>0</y>\n" | ||
" <width>90</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 @@ | ||
/*************************************************************************** | ||
qgsspinboxplugin.h | ||
-------------------------------------- | ||
Date : 01.09.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 QGSSPINBOXPLUGIN_H | ||
#define QGSSPINBOXPLUGIN_H | ||
|
||
#include <QDesignerExportWidget> | ||
#include <QDesignerCustomWidgetInterface> | ||
|
||
|
||
class CUSTOMWIDGETS_EXPORT QgsSpinBoxPlugin : public QObject, public QDesignerCustomWidgetInterface | ||
{ | ||
Q_OBJECT | ||
Q_INTERFACES( QDesignerCustomWidgetInterface ) | ||
|
||
public: | ||
explicit QgsSpinBoxPlugin( 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 // QGSSPINBOXPLUGIN_H |