7c002d8fcc
Explicit room-creation using protocol's own "room" template is now supported. Two new protocol API messages were added― IM_CREATE_ROOM and IM_ROOM_CREATED, which are parallels to IM_CREATE_CHAT and IM_CHAT_CREATED. Rather than the latter two, though, these are wholy based on the "room" template― their slots are completely determined by the protocol. A generic "TemplateWindow" was created, which allows catch-all creation of windows that leverage protocols' templates. It's used for the room-creation window (Chat->New Room / Alt+N), for example. At some point, it ideally should replace even the JoinRoom window, and maybe others.
38 lines
773 B
C++
38 lines
773 B
C++
/*
|
|
* Copyright 2009-2010, Pier Luigi Fiorini. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _ACCOUNT_DIALOG_H
|
|
#define _ACCOUNT_DIALOG_H
|
|
|
|
#include <String.h>
|
|
#include <Window.h>
|
|
|
|
class BTextControl;
|
|
|
|
class ProtocolSettings;
|
|
class TemplateView;
|
|
|
|
const uint32 kAccountAdded = 'acad';
|
|
const uint32 kAccountRenamed = 'acrd';
|
|
|
|
class AccountDialog : public BWindow {
|
|
public:
|
|
AccountDialog(const char* title,
|
|
ProtocolSettings* settings,
|
|
const char* account = NULL);
|
|
|
|
void SetTarget(BHandler* target);
|
|
|
|
virtual void MessageReceived(BMessage* msg);
|
|
|
|
private:
|
|
ProtocolSettings* fSettings;
|
|
BString fAccount;
|
|
TemplateView* fTop;
|
|
BTextControl* fAccountName;
|
|
BHandler* fTarget;
|
|
};
|
|
|
|
#endif // _ACCOUNT_DIALOG_H
|