diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bcb704366cb5e333a626c18c308c7e0448a8e69f (patch) | |
tree | f0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /kopete/protocols/winpopup/wpuserinfo.h | |
download | tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/winpopup/wpuserinfo.h')
-rw-r--r-- | kopete/protocols/winpopup/wpuserinfo.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/kopete/protocols/winpopup/wpuserinfo.h b/kopete/protocols/winpopup/wpuserinfo.h new file mode 100644 index 00000000..1c4ce0e9 --- /dev/null +++ b/kopete/protocols/winpopup/wpuserinfo.h @@ -0,0 +1,61 @@ +/*************************************************************************** + wpuserinfo.h - WinPopup User Info + ------------------- + begin : Tue May 06 2003 + copyright : (C) 2003 by Tais M. Hansen + email : tais.hansen@osd.dk + + Based on code from : (C) 2002-2003 by the Kopete developers + email : kopete-devel@kde.org + *************************************************************************** + + *************************************************************************** + * * + * This program 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. * + * * + ***************************************************************************/ + +#ifndef WPUSERINFO_H +#define WPUSERINFO_H + +// KDE Includes +#include <kdialogbase.h> +#include <kprocio.h> + +// Local Includes +#include "wpuserinfowidget.h" + +class WPAccount; +class WPContact; + +class WPUserInfo : public KDialogBase +{ + Q_OBJECT + + public: + WPUserInfo( WPContact *, WPAccount *, QWidget *parent = 0, const char* name = "WPUserInfo" ); + + void startDetailsProcess(const QString &host); + + private slots: + void slotDetailsProcessReady(KProcIO *d); + void slotDetailsProcessExited(KProcess *d); + void slotCloseClicked(); + + signals: + void closing(); + + private: + WPContact *m_contact; + WPUserInfoWidget *m_mainWidget; + + QString Comment, Workgroup, OS, Software; +}; + +#endif + +// vim: set noet ts=4 sts=4 sw=4: +// kate: tab-width 4; indent-width 4; replace-trailing-space-save on; |