Source Code (Use browser search to find items of interest.)

Class Index

kmail'KMFaComboBox (./kdenetwork/kmail/kmfilterdlg.h:106)

class KMFaComboBox: public QComboBox
{
  Q_OBJECT
public:
  KMFaComboBox(QWidget* parent, const char* name=0);

signals:
  void selectType(KMFaComboBox* self, int index);

protected slots:
  void slotSelected(int);
};

kmail'KMFaComboBox::KMFaComboBox() (./kdenetwork/kmail/kmfilterdlg.cpp:34)

KMFaComboBox::KMFaComboBox(QWidget* p, const char* n):
  KMFaComboBoxInherited(false, p, n)
{
  initMetaObject();
  connect(this, SIGNAL(activated(int)), SLOT(slotSelected(int)));
}


kmail'KMFaComboBox::slotSelected() (./kdenetwork/kmail/kmfilterdlg.cpp:41)

void KMFaComboBox::slotSelected(int idx)
{
  emit selectType(this, idx);
}


//=============================================================================