mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@1553 c8812cc2-4d05-0410-92ff-de0c093fc19c
82 lines
1.2 KiB
C
82 lines
1.2 KiB
C
/****************************************************************************
|
|
** ui.h extension file, included from the uic-generated form implementation.
|
|
**
|
|
** If you wish to add, delete or rename functions or slots use
|
|
** Qt Designer which will update this file, preserving your code. Create an
|
|
** init() function in place of a constructor, and a destroy() function in
|
|
** place of a destructor.
|
|
*****************************************************************************/
|
|
#include <qcolordialog.h>
|
|
|
|
void PluginGuiBase::pbnOK_clicked()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void PluginGuiBase::pbnCancel_clicked()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void PluginGuiBase::btnTopLeft_toggled( bool )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void PluginGuiBase::btnTopMiddle_toggled( bool )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void PluginGuiBase::btnTopRight_toggled( bool )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void PluginGuiBase::btnMiddleLeft_toggled( bool )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void PluginGuiBase::btnMiddleRight_toggled( bool )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void PluginGuiBase::btnBottomLeft_toggled( bool )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void PluginGuiBase::btnBottomMiddle_toggled( bool )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void PluginGuiBase::btnBottomRight_toggled( bool )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void PluginGuiBase::pbnChangeColour_clicked()
|
|
{
|
|
frameColour->setPaletteBackgroundColor(QColorDialog::getColor(QColor(black),this));
|
|
}
|