2004-06-09 16:03:02 +00:00
|
|
|
/****************************************************************************
|
|
|
|
** 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.
|
|
|
|
*****************************************************************************/
|
2004-06-10 15:41:40 +00:00
|
|
|
#include <qcolordialog.h>
|
2004-06-09 16:03:02 +00:00
|
|
|
|
|
|
|
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 )
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2004-06-10 15:41:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
void PluginGuiBase::pbnChangeColour_clicked()
|
|
|
|
{
|
|
|
|
frameColour->setPaletteBackgroundColor(QColorDialog::getColor(QColor(black),this));
|
|
|
|
}
|