blob: 093acf97bce7165f8c90819a2485a5b6bce026b6 (
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
|
/*
This file is part of libkabc.
Copyright (c) 2002 Helge Deller <deller@gmx.de>
2002 Lubos Lunak <llunak@suse.cz>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KABC_ADDRESSLINEEDIT_H
#define KABC_ADDRESSLINEEDIT_H
// $Id$
#include <tqobject.h>
#include <tqptrlist.h>
#include <tqtimer.h>
#include "klineedit.h"
#include "kcompletion.h"
class KConfig;
namespace KABC {
class LdapSearch;
/**
* A lineedit with LDAP and kabc completion
*
* This lineedit is supposed to be used wherever the user types email addresses
* and might want a completion. You can simply use it as a replacement for
* KLineEdit or TQLineEdit.
*
* You can enable or disable the lineedit at any time.
*
* @see AddressLineEdit::enableCompletion()
*/
class KABC_EXPORT AddressLineEdit : public KLineEdit
{
Q_OBJECT
public:
AddressLineEdit(TQWidget* parent, bool useCompletion = true,
const char *name = 0L);
virtual ~AddressLineEdit();
/**
* Reimplented for internal reasons.
* @ see KLineEdit::setFont()
*/
virtual void setFont( const TQFont& );
static KConfig *config();
public slots:
/**
* Set cursor to end of line.
*/
void cursorAtEnd();
/**
* Toggle completion.
*/
void enableCompletion( bool enable );
protected:
/**
* Always call AddressLineEdit::loadAddresses() as the first thing.
* Use addAddress() to add addresses.
*/
virtual void loadAddresses();
void addAddress( const TQString& );
virtual void keyPressEvent(TQKeyEvent*);
virtual void dropEvent(TQDropEvent *e);
virtual void paste();
virtual void insert(const TQString &t);
virtual void mouseReleaseEvent( TQMouseEvent * e );
void doCompletion(bool ctrlT);
private slots:
void slotCompletion() { doCompletion(false); }
void slotPopupCompletion( const TQString& );
void slotStartLDAPLookup();
void slotLDAPSearchData( const TQStringList& );
private:
void init();
void startLoadingLDAPEntries();
void stopLDAPLookup();
TQStringList addresses();
TQStringList removeMailDupes( const TQStringList& adrs );
TQString m_previousAddresses;
bool m_useCompletion;
bool m_completionInitialized;
bool m_smartPaste;
TQString m_typedText; // unused
static bool s_addressesDirty;
static KCompletion *s_completion;
static TQTimer *s_LDAPTimer;
static LdapSearch *s_LDAPSearch;
static TQString *s_LDAPText;
static AddressLineEdit *s_LDAPLineEdit;
static KConfig *s_config;
private:
class AddressLineEditPrivate* d;
};
}
#endif /* KABC_ADDRESSLINEEDIT_H */
|