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.
71 lines
2.2 KiB
71 lines
2.2 KiB
/*
|
|
Kopete Groupwise Protocol
|
|
gwchatpropsdialog.h - dialog for viewing/modifying chat properties
|
|
|
|
Copyright (c) 2005 SUSE Linux AG http://www.suse.com
|
|
|
|
Kopete (c) 2002-2005 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. *
|
|
* *
|
|
*************************************************************************
|
|
*/
|
|
|
|
#ifndef GWCHATPROPSDIALOG_H
|
|
#define GWCHATPROPSDIALOG_H
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
#include "gwchatrooms.h"
|
|
|
|
class GroupWiseChatPropsWidget;
|
|
/**
|
|
* Dialog for viewing/modifying chat properties.
|
|
* Chatroom list dialog gets props from manager
|
|
* Chatroom list dialog opens chatpropsdlg using props, connects to OkClicked signal
|
|
* User makes changes
|
|
* CLD asks CPD for changes.
|
|
* CLD passes changes to manager
|
|
* manager sends ChatUpdate to server
|
|
* on success, manager updates own model.
|
|
|
|
1) Create dialog with populated widget from supplied Chatroom.
|
|
2) Add readonly mode.
|
|
3) Track which things changed? Easier to get the changed Chatroom back and diff in the manager, simpler api connecting
|
|
*/
|
|
class GroupWiseChatPropsDialog : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/**
|
|
* Construct an empty dialog
|
|
*/
|
|
GroupWiseChatPropsDialog( TQWidget * parent, const char * name );
|
|
/**
|
|
* Construct a populated dialog
|
|
*/
|
|
GroupWiseChatPropsDialog( const GroupWise::Chatroom & room, bool readOnly,
|
|
TQWidget * parent, const char * name );
|
|
|
|
~GroupWiseChatPropsDialog() {}
|
|
|
|
bool dirty() { return m_dirty; };
|
|
GroupWise::Chatroom room();
|
|
protected:
|
|
void initialise();
|
|
protected slots:
|
|
void slotWidgetChanged();
|
|
private:
|
|
GroupWiseChatPropsWidget * m_widget;
|
|
GroupWise::Chatroom m_room;
|
|
bool m_dirty;
|
|
};
|
|
|
|
#endif
|