You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.8 KiB
60 lines
1.8 KiB
/***************************************************************************
|
|
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
|
|
{
|
|
TQ_OBJECT
|
|
|
|
|
|
public:
|
|
WPUserInfo( WPContact *, WPAccount *, TQWidget *parent = 0, const char* name = "WPUserInfo" );
|
|
|
|
void startDetailsProcess(const TQString &host);
|
|
|
|
private slots:
|
|
void slotDetailsProcessReady(KProcIO *d);
|
|
void slotDetailsProcessExited(TDEProcess *d);
|
|
void slotCloseClicked();
|
|
|
|
signals:
|
|
void closing();
|
|
|
|
private:
|
|
WPContact *m_contact;
|
|
WPUserInfoWidget *m_mainWidget;
|
|
|
|
TQString Comment, Workgroup, OS, Software;
|
|
};
|
|
|
|
#endif
|