You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
2.3 KiB
115 lines
2.3 KiB
|
|
#include "combobutton.h"
|
|
|
|
#include <tqlayout.h>
|
|
#include <tqstring.h>
|
|
#include <tqpixmap.h>
|
|
#include <tqstyle.h>
|
|
#include <kpushbutton.h>
|
|
#include <kcombobox.h>
|
|
|
|
ComboButton::ComboButton( TQWidget *parent, const char *name )
|
|
: TQWidget( parent, name )
|
|
{
|
|
m_increaseHeight = 0;
|
|
|
|
TQGridLayout *grid = new TQGridLayout( this, 1, 1 );
|
|
|
|
m_box = new KComboBox(this);
|
|
grid->addWidget(m_box,0,0);
|
|
|
|
connect( m_box, TQT_SIGNAL(activated(int)),
|
|
this, TQT_SLOT(boxActivated(int))
|
|
);
|
|
|
|
m_button = new KPushButton( TQString(), this, "pushbutton" );
|
|
grid->addWidget( m_button, 0, 0 );
|
|
|
|
connect( m_button, TQT_SIGNAL(clicked()),
|
|
this, TQT_SLOT(buttonClicked())
|
|
);
|
|
|
|
m_sizeMode = Max;
|
|
|
|
balanceSize();
|
|
}
|
|
|
|
ComboButton::~ComboButton()
|
|
{
|
|
}
|
|
|
|
void ComboButton::balanceSize()
|
|
{
|
|
int width;
|
|
|
|
if( m_sizeMode == Max )
|
|
width = m_box->tqsizeHint().width()-17;
|
|
else
|
|
width = m_button->tqsizeHint().width();
|
|
|
|
int height = ( m_box->tqsizeHint().height() > m_button->tqsizeHint().height() ) ? m_box->tqsizeHint().height() : m_button->tqsizeHint().height();
|
|
|
|
m_box->setFixedSize( width+17, height+m_increaseHeight );
|
|
m_button->setFixedSize( width, height+m_increaseHeight );
|
|
}
|
|
|
|
void ComboButton::repaintButton()
|
|
{
|
|
m_button->setText( m_box->currentText() );
|
|
if(m_box->pixmap( m_box->currentItem()) )
|
|
m_button->setIconSet( *m_box->pixmap(m_box->currentItem()) );
|
|
balanceSize();
|
|
}
|
|
|
|
void ComboButton::insertItem( const TQString &text, int index )
|
|
{
|
|
m_box->insertItem( text, index );
|
|
repaintButton();
|
|
}
|
|
|
|
void ComboButton::insertItem( const TQPixmap &pixmap, const TQString &text, int index )
|
|
{
|
|
m_box->insertItem( pixmap, text, index );
|
|
repaintButton();
|
|
}
|
|
|
|
void ComboButton::increaseHeight( int height )
|
|
{
|
|
m_increaseHeight = height;
|
|
balanceSize();
|
|
}
|
|
|
|
void ComboButton::boxActivated( int index )
|
|
{
|
|
repaintButton();
|
|
emit clicked( index );
|
|
}
|
|
|
|
void ComboButton::buttonClicked()
|
|
{
|
|
emit clicked( m_box->currentItem() );
|
|
}
|
|
|
|
void ComboButton::setSizeMode( int mode )
|
|
{
|
|
m_sizeMode = mode;
|
|
balanceSize();
|
|
}
|
|
|
|
int ComboButton::sizeMode()
|
|
{
|
|
return m_sizeMode;
|
|
}
|
|
|
|
void ComboButton::setFont( const TQFont& font )
|
|
{
|
|
m_button->setFont( font );
|
|
m_box->setFont( font );
|
|
}
|
|
|
|
TQFont ComboButton::font()
|
|
{
|
|
return m_button->font();
|
|
}
|
|
|