83 lines
1.7 KiB
C++
83 lines
1.7 KiB
C++
// File: fradiobutton.cpp
|
|
// Provides: class FRadioButton
|
|
|
|
#include "fapp.h"
|
|
#include "fradiobutton.h"
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
// class FRadioButton
|
|
//----------------------------------------------------------------------
|
|
|
|
// constructor and destructor
|
|
//----------------------------------------------------------------------
|
|
FRadioButton::FRadioButton(FWidget* parent)
|
|
: FToggleButton(parent)
|
|
{
|
|
init();
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
FRadioButton::FRadioButton ( const FString& txt, FWidget* parent )
|
|
: FToggleButton(txt, parent)
|
|
{
|
|
init();
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
FRadioButton::~FRadioButton() // destructor
|
|
{ }
|
|
|
|
|
|
// private methods of FRadioButton
|
|
//----------------------------------------------------------------------
|
|
void FRadioButton::init()
|
|
{
|
|
label_offset_pos = 4;
|
|
button_width = 4;
|
|
setVisibleCursor();
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
void FRadioButton::draw()
|
|
{
|
|
setUpdateVTerm(false);
|
|
drawRadioButton();
|
|
drawLabel();
|
|
setUpdateVTerm(true);
|
|
|
|
FToggleButton::draw();
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
void FRadioButton::drawRadioButton()
|
|
{
|
|
if ( ! isVisible() )
|
|
return;
|
|
gotoxy (xpos+xmin-1, ypos+ymin-1);
|
|
setColor (foregroundColor, backgroundColor);
|
|
if ( checked )
|
|
{
|
|
if ( isNewFont() )
|
|
print (CHECKED_RADIO_BUTTON);
|
|
else
|
|
{
|
|
print ('(');
|
|
print (fc::Bullet); // Bullet •
|
|
print (')');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if ( isNewFont() )
|
|
print (RADIO_BUTTON);
|
|
else
|
|
{
|
|
print ('(');
|
|
print (' ');
|
|
print (')');
|
|
}
|
|
}
|
|
}
|
|
|