#ifndef _KVI_KVS_EVENT_H_ #define _KVI_KVS_EVENT_H_ //============================================================================= // // File : kvi_kvs_event.h // Created on Mon 23 Feb 2004 03:00:02 by Szymon Stefanek // // This file is part of the KVIrc IRC client distribution // Copyright (C) 2004 Szymon Stefanek // // 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 opinion) 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. // //============================================================================= #include "kvi_settings.h" #include "kvi_qstring.h" #include "kvi_pointerlist.h" #include "kvi_kvs_eventhandler.h" class KVIRC_API KviKvsEvent { protected: TQString m_szName; TQString m_szParameterDescription; KviPointerList * m_pHandlers; public: // the event name and the parameter description are NOT translated KviKvsEvent(const char * szEventName,const char * szParameterDescription) : m_szName(szEventName), m_szParameterDescription(szParameterDescription), m_pHandlers(0) {}; ~KviKvsEvent(); void clear(); void clearScriptHandlers(); bool hasHandlers(){ return m_pHandlers != 0; }; KviPointerList * handlers(){ return m_pHandlers; }; void addHandler(KviKvsEventHandler * h); void removeHandler(KviKvsEventHandler * h); const TQString & name(){ return m_szName; }; const TQString & parameterDescription(){ return m_szParameterDescription; }; }; #endif //!_KVI_KVS_EVENT_H_