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.
kvirc/src/kvirc/module/kvi_modulemanager.h

72 lines
2.5 KiB

#ifndef _KVI_MODULEMANAGER_H_
#define _KVI_MODULEMANAGER_H_
//=============================================================================
//
// File : kvi_modulemanager.h
// Creation date : Sat Aug 12 2000 20:31:17 by Szymon Stefanek
//
// This file is part of the KVirc irc client distribution
// Copyright (C) 2000-2005 Szymon Stefanek (pragma at kvirc dot net)
//
// 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 <tqobject.h>
#include "kvi_pointerhashtable.h"
#include <tqtimer.h>
#include "kvi_pointerlist.h"
#include "kvi_module.h"
class KVIRC_API KviModuleManager : public TQObject
{
TQ_OBJECT
public:
KviModuleManager();
~KviModuleManager();
private:
KviPointerHashTable<const char *,KviModule> * m_pModuleDict;
TQTimer * m_pCleanupTimer;
KviStr m_szLastError;
public:
KviStr & lastError(){ return m_szLastError; };
KviModule * findModule(const char * modName);
KviModule * getModule(const char * modName);
bool loadModule(const char * modName);
bool unloadModule(const char * modName);
bool unloadModule(KviModule * module);
void unloadAllModules();
//void registerDefaultCommands(KviModule * module);
void loadModulesByCaps(const char * caps,const char * dir);
void loadModulesByCaps(const char * caps);
bool hasLockedModules();
void completeModuleNames(const TQString &word,KviPointerList<TQString> * matches);
protected:
void completeModuleNames(const TQString &path,const TQString &work,KviPointerList<TQString> * matches);
public slots:
void cleanupUnusedModules();
signals:
void moduleAboutToUnload(KviModule * m);
};
extern KVIRC_API KviModuleManager * g_pModuleManager;
#endif //_KVI_MODULEMANAGER_H_