33 lines
485 B
C++
33 lines
485 B
C++
|
#include "RoundedCorners.h"
|
|||
|
#include "frmRoundedCorners.h"
|
|||
|
|
|||
|
RoundedCorners::RoundedCorners()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
QString RoundedCorners::name()
|
|||
|
{
|
|||
|
return "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Բȱ<EFBFBD><EFBFBD>";
|
|||
|
}
|
|||
|
|
|||
|
QString RoundedCorners::information()
|
|||
|
{
|
|||
|
return "<EFBFBD><EFBFBD><EFBFBD>β<EFBFBD><EFBFBD><EFBFBD>";
|
|||
|
}
|
|||
|
|
|||
|
QDialog* showDialog(QString toolName, QToolBase* toolBase)
|
|||
|
{
|
|||
|
frmRoundedCorners* ss = new frmRoundedCorners(toolName, toolBase);
|
|||
|
return ss;
|
|||
|
}
|
|||
|
|
|||
|
int ShowFormState()
|
|||
|
{
|
|||
|
return QConfig::nFormState;
|
|||
|
}
|
|||
|
|
|||
|
void SetFormState()
|
|||
|
{
|
|||
|
QConfig::nFormState = 0;
|
|||
|
}
|