summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/yahoo/ui/yahoouserinfodialog.h
blob: b7f9f3d282abb7bca7d619def9f4f3bc77138283 (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
/*
 Kopete Yahoo Protocol
 yahoouserinfodialog.h - Display Yahoo user info

 Copyright (c) 2005 Matt Rogers <mattr@kde.org>
 Copyright (c) 2006 Andre Duffeck <mattr@kde.org>

 Kopete (c) 2002-2006 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 Lesser General Public            *
 * License as published by the Free Software Foundation; either          *
 * version 2 of the License, or (at your option) any later version.      *
 *                                                                       *
 *************************************************************************
*/

#ifndef YAHOOUSERINFODIALOG_H_
#define YAHOOUSERINFODIALOG_H_

#include <kdialogbase.h>
#include "../libkyahoo/yabentry.h"

class KJanusWidget;
class YahooWorkInfoWidget;
class YahooGeneralInfoWidget;
class YahooOtherInfoWidget;
class YahooContact;

class YahooUserInfoDialog : public KDialogBase
{
Q_OBJECT
  TQ_OBJECT
public:
	YahooUserInfoDialog( YahooContact *c, TQWidget* tqparent = 0, const char* name = 0 );
	void setAccountConnected( bool isOnline );
signals:
	void saveYABEntry( YABEntry & );
public slots:
	void setData( const YABEntry &yab );
private slots:
	void slotSaveAndCloseClicked();
	void slotUser2();
private:
	YahooGeneralInfoWidget* m_genInfoWidget;
	YahooWorkInfoWidget* m_workInfoWidget;
	YahooOtherInfoWidget* m_otherInfoWidget;
	
	YABEntry m_yab;
	YahooContact *m_contact;
};

#endif

//kate: indent-mode csands; tab-width 4; space-indent off; replace-tabs off;