summaryrefslogtreecommitdiff
path: root/noncore/net/mail/addresspicker.cpp
blob: c6dec359e35ad44a1816a13336b2e6684ffdd7d2 (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
#include <qpushbutton.h>
#include <qmessagebox.h>
#include <qtextstream.h>
#include <qlistbox.h>
#include <qfile.h>

#include <qpe/resource.h>
#include <opie/ocontactaccess.h>
#include <opie/ocontact.h>


#include <stdlib.h>

#include "composemail.h"

AddressPicker::AddressPicker( QWidget *parent, const char *name, bool modal, WFlags flags ) 
    : AddressPickerUI( parent, name, modal, flags )
{
    okButton->setIconSet( Resource::loadPixmap( "enter" ) );
    cancelButton->setIconSet( Resource::loadPixmap( "editdelete" ) );

    connect(okButton, SIGNAL(clicked()), SLOT(accept()));
    connect(cancelButton, SIGNAL(clicked()), SLOT(close()));
    OContactAccess::List::Iterator it;

    QString lineEmail, lineName, contactLine;
    /* what name has to set here???? */
    OContactAccess m_contactdb("opiemail");
    QStringList mails;
    QString pre,suf;
    OContactAccess::List m_list = m_contactdb.sorted( true, 0, 0, 0 );
    for ( it = m_list.begin(); it != m_list.end(); ++it ) {
        if ((*it).defaultEmail().length()!=0) {
            mails = (*it).emailList();
            if ((*it).fileAs().length()>0) {
                pre = "\""+(*it).firstName()+" "+(*it).lastName()+"\" <";
                suf = ">";
            } else {
                pre = "";
                suf = "";
            }
            QStringList::ConstIterator sit = mails.begin();
            for (;sit!=mails.end();++sit) {
                contactLine=pre+(*sit)+suf;
                addressList->insertItem(contactLine);
            }            
        }
    }
	if ( addressList->count() <= 0 ) {
#if 0
    // makes this realy sense??
		addressList->insertItem( 
            tr( "There are no entries in the addressbook." ) );
#endif
		addressList->setEnabled( false );
		okButton->setEnabled( false );
	} else {
//        addressList->sort();
    }
}

void AddressPicker::accept()
{
	QListBoxItem *item = addressList->firstItem();
	QString names;

	while ( item ) {
		if ( item->selected() )
			names += item->text() + ", ";
		item = item->next();
	}
	names.replace( names.length() - 2, 2, "" );

	if ( names.isEmpty() ) {
		QMessageBox::information(this, tr("Error"), tr("<p>You have to select"
			" at least one address entry.</p>"), tr("Ok"));
		return;
	}

	selectedNames = names;
	QDialog::accept();
}

QString AddressPicker::getNames()
{
	QString names = 0;
	
	AddressPicker picker(0, 0, true);
	picker.showMaximized();
	picker.show();

	int ret = picker.exec();
	if ( QDialog::Accepted == ret ) {
		return picker.selectedNames;
	}

	return 0;
}