/* * Copyright 2021, Jaidyn Levesque * * 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. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. */ #ifndef _PURPLE_PROTOCOL_H #define _PURPLE_PROTOCOL_H #include #include #include // Required protocol exports extern "C" _EXPORT ChatProtocol* protocol_at(int32 i); extern "C" _EXPORT int32 protocol_count(); extern "C" _EXPORT const char* signature(); extern "C" _EXPORT const char* friendly_signature(); extern "C" _EXPORT uint32 version(); BMessenger* ensure_app_messenger(); void ensure_app(); status_t connect_thread(void* data); BMessage receive_message(); class PurpleProtocol : public ChatProtocol { public: PurpleProtocol(BString name, BString id, BMessage settings); ~PurpleProtocol(); // ChatProtocol inheritance virtual status_t Init(ChatProtocolMessengerInterface* interface); virtual status_t Shutdown(); virtual status_t Process(BMessage* msg); virtual status_t UpdateSettings(BMessage* msg); virtual BMessage SettingsTemplate(const char* name); virtual BObjectList Commands(); virtual BObjectList UserPopUpItems(); virtual BObjectList ChatPopUpItems(); virtual BObjectList MenuBarItems(); virtual const char* Signature() const; virtual const char* FriendlySignature() const; virtual BBitmap* Icon() const; virtual void SetAddOnPath(BPath path); virtual BPath AddOnPath(); virtual const char* GetName(); virtual void SetName(const char* name); virtual uint32 GetEncoding(); virtual ChatProtocolMessengerInterface* MessengerInterface() const; void SendMessage(BMessage* msg); private: void _SendPrplMessage(BMessage* msg); ChatProtocolMessengerInterface* fMessenger; BMessenger* fPrplMessenger; thread_id fBirdThread; BString fName; BPath fAddOnPath; BString fSignature; BString fFriendlySignature; BMessage fSettingsTemplate; }; #endif // _PURPLE_PROTOCOL_H