diff options
Diffstat (limited to 'tools/designer/examples/addressbook/addressbook.ui.h')
-rw-r--r-- | tools/designer/examples/addressbook/addressbook.ui.h | 137 |
1 files changed, 137 insertions, 0 deletions
diff --git a/tools/designer/examples/addressbook/addressbook.ui.h b/tools/designer/examples/addressbook/addressbook.ui.h new file mode 100644 index 000000000..ef5fc8022 --- /dev/null +++ b/tools/designer/examples/addressbook/addressbook.ui.h @@ -0,0 +1,137 @@ +/**************************************************************************** +** ui.h extension file, included from the uic-generated form implementation. +** +** If you wish to add, delete or rename slots use TQt Designer which will +** update this file, preserving your code. Create an init() slot in place of +** a constructor, and a destroy() slot in place of a destructor. +*****************************************************************************/ + +#include "addressdetails.h" +#include "search.h" +#include <qfile.h> +#include <qtextstream.h> +#include <qfiledialog.h> +#include <qapplication.h> + +void AddressBook::fileNew() +{ + AddressDetails dia( this, 0, TRUE ); + connect( &dia, SIGNAL( newAddress( const TQString &, + const TQString &, + const TQString &, + const TQString &, + const TQString &, + const TQString &, + const TQString & ) ), + this, SLOT( insertAddress( const TQString &, + const TQString &, + const TQString &, + const TQString &, + const TQString &, + const TQString &, + const TQString & ) ) ); + dia.exec(); +} + +void AddressBook::insertAddress( const TQString &firstName, + const TQString &lastName, + const TQString &phoneNumber, + const TQString &street, + const TQString &city, + const TQString &country, + const TQString &zipCode ) +{ + TQListViewItem *i = new TQListViewItem( addressView ); + i->setText( 0, firstName ); + i->setText( 1, lastName ); + i->setText( 2, phoneNumber ); + i->setText( 3, street ); + i->setText( 4, city ); + i->setText( 5, country ); + i->setText( 6, zipCode ); +} + +void AddressBook::deleteAddress() +{ + TQListViewItemIterator it( addressView ); + while ( it.current() ) { + TQListViewItem *i = it.current(); + ++it; + if ( i->isSelected() ) + delete i; + } +} + +void AddressBook::fileOpen() +{ + addressView->clear(); + TQString fn = TQFileDialog::getOpenFileName(); + if ( fn.isEmpty() ) + return; + currentFileName = fn; + TQFile f( currentFileName ); + if ( !f.open( IO_ReadOnly ) ) + return; + TQTextStream ts( &f ); + + while ( !ts.eof() ) { + TQListViewItem *item = new TQListViewItem( addressView ); + for ( int i = 0; i < 7; ++i ) + item->setText( i, ts.readLine() ); + } + +} + +void AddressBook::fileSave() +{ + if ( currentFileName.isEmpty() ) + fileSaveAs(); + TQFile f( currentFileName ); + if ( !f.open( IO_WriteOnly ) ) + return; + TQTextStream ts( &f ); + + TQListViewItemIterator it( addressView ); + while ( it.current() ) { + for ( int i = 0; i < 7; ++i ) + ts << it.current()->text( i ) << endl; + ++it; + } + + f.close(); +} + +void AddressBook::fileSaveAs() +{ + TQString fn = TQFileDialog::getSaveFileName(); + if ( fn.isEmpty() ) + return; + currentFileName = fn; + fileSave(); +} + +void AddressBook::fileExit() +{ + qApp->exit(); +} + +void AddressBook::editFind() +{ + SearchDialog dia( this, 0, TRUE ); + connect( &dia, SIGNAL( searchAddress( const TQString & ) ), + this, SLOT( searchAddress( const TQString & ) ) ); + dia.exec(); +} + +void AddressBook::searchAddress( const TQString &expr ) +{ + addressView->clearSelection(); + TQListViewItemIterator it( addressView ); + while ( it.current() ) { + for ( int i = 0; i < 7; ++i ) { + if ( it.current()->text( i ).find( expr ) != -1 ) + addressView->setSelected( it.current(), TRUE ); + } + ++it; + } +}
\ No newline at end of file |