/**************************************************************************** ** Form implementation generated from reading ui file 'select_addressee_base.ui' ** ** Created: Fri Feb 6 04:58:15 2004 ** by: The User Interface Compiler (uic) ** ** WARNING! All changes made in this file will be lost! ****************************************************************************/ #include "select_addressee_base.h" #include #include #include #include #include #include #include /* * Constructs a SelectAddressee which is a child of 'parent', with the * name 'name' and widget flags set to 'f' * * The dialog will by default be modeless, unless you set 'modal' to * TRUE to construct a modal dialog. */ SelectAddressee::SelectAddressee( QWidget* parent, const char* name, bool modal, WFlags fl ) : QDialog( parent, name, modal, fl ) { if ( !name ) setName( "SelectAddressee" ); resize( 208, 267 ); setCaption( tr( "Select adressee" ) ); SelectAddresseeLayout = new QVBoxLayout( this ); SelectAddresseeLayout->setSpacing( 6 ); SelectAddresseeLayout->setMargin( 11 ); contactList = new QListView( this, "contactList" ); contactList->addColumn( tr( "Name" ) ); contactList->addColumn( tr( "Email" ) ); SelectAddresseeLayout->addWidget( contactList ); } /* * Destroys the object and frees any allocated resources */ SelectAddressee::~SelectAddressee() { // no need to delete child widgets, Qt does it all for us }