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
138
139
140
141
142
143
144
|
/*
Kopete Groupwise Protocol
gwcontactproperties.cpp - dialog showing a contact's server side properties
Copyright (c) 2004 SUSE Linux AG http://www.suse.com
Kopete (c) 2002-2004 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
*************************************************************************
*/
#include <tqclipboard.h>
#include <tqheader.h>
#include <tqlabel.h>
#include <tqlineedit.h>
#include <klistview.h>
#include <tqmap.h>
#include <tqpopupmenu.h>
#include <kapplication.h>
#include <kdebug.h>
#include <kdialogbase.h>
#include <klocale.h>
#include <kopeteglobal.h>
#include <kopeteonlinestatus.h>
#include <kopetemetacontact.h>
#include <kopeteuiglobal.h>
#include <kaction.h>
#include <kstdaction.h>
#include "gwcontact.h"
#include "gwcontactpropswidget.h"
#include "gwprotocol.h"
#include "gwcontactproperties.h"
GroupWiseContactProperties::GroupWiseContactProperties( GroupWiseContact * contact, TQWidget *parent, const char *name)
: TQObject(parent, name)
{
init();
// set up the contents of the props widget
m_propsWidget->m_userId->setText( contact->contactId() );
m_propsWidget->m_status->setText( contact->onlineStatus().description() );
m_propsWidget->m_displayName->setText( contact->metaContact()->displayName() );
m_propsWidget->m_firstName->setText( contact->property( Kopete::Global::Properties::self()->firstName() ).value().toString() );
m_propsWidget->m_lastName->setText( contact->property( Kopete::Global::Properties::self()->lastName() ).value().toString() );
setupProperties( contact->serverProperties() );
m_dialog->show();
}
GroupWiseContactProperties::GroupWiseContactProperties( GroupWise::ContactDetails cd, TQWidget *parent, const char *name )
: TQObject(parent, name)
{
init();
// set up the contents of the props widget
m_propsWidget->m_userId->setText( GroupWiseProtocol::protocol()->dnToDotted( cd.dn ) );
m_propsWidget->m_status->setText( GroupWiseProtocol::protocol()->gwStatusToKOS( cd.status ).description() );
m_propsWidget->m_displayName->setText( cd.fullName.isEmpty() ? ( cd.givenName + " " + cd.surname ) : cd.fullName );
m_propsWidget->m_firstName->setText( cd.givenName );
m_propsWidget->m_lastName->setText( cd.surname );
setupProperties( cd.properties );
m_dialog->show();
}
GroupWiseContactProperties::~GroupWiseContactProperties()
{
}
void GroupWiseContactProperties::init()
{
m_dialog = new KDialogBase( ::tqqt_cast<TQWidget*>( parent() ), "gwcontactpropsdialog", false, i18n( "Contact Properties" ), KDialogBase::Ok );
m_propsWidget = new GroupWiseContactPropsWidget( m_dialog );
// set up the context menu and copy action
m_copyAction = KStdAction::copy( this, TQT_SLOT( slotCopy() ), 0 );
connect( m_propsWidget->m_propsView,
TQT_SIGNAL( contextMenuRequested( TQListViewItem *, const TQPoint & , int) ),
TQT_SLOT( slotShowContextMenu( TQListViewItem *, const TQPoint & ) ) );
// insert the props widget into the dialog
m_dialog->setMainWidget( m_propsWidget );
}
void GroupWiseContactProperties::setupProperties( TQMap< TQString, TQString > serverProps )
{
m_propsWidget->m_propsView->header()->hide();
TQMap< TQString, TQString >::Iterator it;
TQMap< TQString, TQString >::Iterator end = serverProps.end();
for ( it = serverProps.begin(); it != end; ++it )
{
kdDebug( GROUPWISE_DEBUG_GLOBAL ) << " adding property: " << it.key() << ", " << it.data() << endl;
TQString key = it.key();
TQString localised;
if ( key == "telephoneNumber" )
localised = i18n( "Telephone Number" );
else if ( key == "OU" )
localised = i18n( "Department" );
else if ( key == "L" )
localised = i18n( "Location" );
else if ( key == "mailstop" )
localised = i18n( "Mailstop" );
else if ( key == "personalTitle" )
localised = i18n( "Personal Title" );
else if ( key == "title" )
localised = i18n( "Title" );
else if ( key == "Internet EMail Address" )
localised = i18n( "Email Address" );
else
localised = key;
new TDEListViewItem( m_propsWidget->m_propsView, localised, it.data() );
}
}
void GroupWiseContactProperties::slotShowContextMenu( TQListViewItem * item, const TQPoint & pos )
{
if ( item )
kdDebug( GROUPWISE_DEBUG_GLOBAL ) << "for item " << item->text(0) << ", " << item->text(1) << endl;
else
kdDebug( GROUPWISE_DEBUG_GLOBAL ) << "no selected item" << endl;
TQPopupMenu * popupMenu = new TQPopupMenu( m_propsWidget->m_propsView );
m_copyAction->plug( popupMenu );
popupMenu->exec( pos );
}
void GroupWiseContactProperties::slotCopy()
{
kdDebug( GROUPWISE_DEBUG_GLOBAL ) << k_funcinfo << endl;
if ( m_propsWidget->m_propsView->currentItem() )
{
TQClipboard *cb = kapp->clipboard();
cb->setText( m_propsWidget->m_propsView->currentItem()->text( 1 ) );
}
}
#include "gwcontactproperties.moc"
|