summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/tools/designer/examples/addressbook/addressbook.ui.h
blob: 208c6280487e33036215a9d2321766bd5a4b77e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/****************************************************************************
** ui.h extension file, included from the uic-generated form implementation.
**
** If you wish to add, delete or rename Q_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 <tqfile.h>
#include <tqtextstream.h>
#include <tqfiledialog.h>
#include <tqapplication.h>

void AddressBook::fileNew()
{
    AddressDetails dia( this, 0, TRUE );
    connect( &dia, TQT_SIGNAL( newAddress( const TQString &,
				       const TQString &,
				       const TQString &,
				       const TQString &,
				       const TQString &,
				       const TQString &,
				       const TQString & ) ),
	     this, TQT_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()
{
    tqApp->exit();
}

void AddressBook::editFind()
{
    SearchDialog dia( this, 0, TRUE );
    connect( &dia, TQT_SIGNAL( searchAddress( const TQString & ) ),
	     this, TQT_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;
    }  
}