Chat-O-Matic/application/ProtocolSettings.h

42 lines
996 B
C
Raw Normal View History

/*
2011-12-03 16:38:03 -06:00
* Copyright 2009-2011, Pier Luigi Fiorini. All rights reserved.
* Copyright 2003-2009, IM Kit Team. All rights reserved.
* Copyright 2021, Jaidyn Levesque. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _PROTOCOL_SETTINGS_H
#define _PROTOCOL_SETTINGS_H
#include <ObjectList.h>
#include <String.h>
#include "ProtocolTemplate.h"
2010-05-08 14:35:28 -05:00
class BMessage;
class CayaProtocolAddOn;
class ProtocolSettings {
public:
ProtocolSettings(CayaProtocolAddOn* addOn);
2010-05-08 14:35:28 -05:00
status_t InitCheck() const;
CayaProtocolAddOn* AddOn() const;
BObjectList<BString> Accounts() const;
2010-05-08 14:35:28 -05:00
status_t Load(const char* account, BView* parent);
status_t Save(const char* account, BView* parent);
status_t Rename(const char* from, const char* to);
2010-05-08 14:35:28 -05:00
status_t Delete(const char* account);
private:
2010-05-08 14:35:28 -05:00
status_t _Load(const char* account, BMessage** settings);
CayaProtocolAddOn* fAddOn;
ProtocolTemplate fTemplate;
status_t fStatus;
};
#endif // _PROTOCOL_SETTINGS_H