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/kernel/kvi_actionmanager.h

120 lines
4.7 KiB

#ifndef _KVI_ACTIONMANAGER_H_
#define _KVI_ACTIONMANAGER_H_
//=============================================================================
//
// File : kvi_actionmanager.h
// Created on Sun 21 Nov 2004 03:37:57 by Szymon Stefanek
//
// This file is part of the KVIrc IRC Client distribution
// Copyright (C) 2004 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 "kvi_action.h"
#include <tqobject.h>
#include "kvi_pointerhashtable.h"
class KviActionDrawer;
class KviCustomToolBar;
class KVIRC_API KviActionManager : public TQObject
{
friend class KviActionDrawer;
friend class KviCustomizeToolBarsDialog;
friend class KviCustomToolBar;
friend class KviFrame;
Q_OBJECT
public:
KviActionManager();
~KviActionManager();
protected:
static KviActionManager * m_pInstance;
KviPointerHashTable<TQString,KviAction> * m_pActions;
KviPointerHashTable<TQString,KviActionCategory> * m_pCategories;
static bool m_bCustomizingToolBars;
// action categories
static KviActionCategory * m_pCategoryIrc;
static KviActionCategory * m_pCategoryGeneric;
static KviActionCategory * m_pCategorySettings;
static KviActionCategory * m_pCategoryScripting;
static KviActionCategory * m_pCategoryGUI;
static KviActionCategory * m_pCategoryChannel;
static KviActionCategory * m_pCategoryTools;
// internal , current toolbar to be edited (only when customizing)
static KviCustomToolBar * m_pCurrentToolBar;
bool m_bCoreActionsRegistered;
public:
static void init();
static void done();
static KviActionManager * instance(){ return m_pInstance; };
static void loadAllAvailableActions();
static bool customizingToolBars(){ return m_bCustomizingToolBars; };
static KviActionCategory * categoryIrc(){ return m_pCategoryIrc; };
static KviActionCategory * categoryGeneric(){ return m_pCategoryGeneric; };
static KviActionCategory * categorySettings(){ return m_pCategorySettings; };
static KviActionCategory * categoryScripting(){ return m_pCategoryScripting; };
static KviActionCategory * categoryGUI(){ return m_pCategoryGUI; };
static KviActionCategory * categoryChannel(){ return m_pCategoryChannel; };
static KviActionCategory * categoryTools(){ return m_pCategoryTools; };
KviPointerHashTable<TQString,KviAction> * actions(){ return m_pActions; };
KviActionCategory * category(const TQString &szName);
KviPointerHashTable<TQString,KviActionCategory> * categories(){ return m_pCategories; };
void killAllKvsUserActions();
static KviCustomToolBar * currentToolBar(){ return m_pCurrentToolBar; };
KviAction * getAction(const TQString &szName);
void listActionsByCategory(const TQString &szCatName,KviPointerList<KviAction> * pBuffer);
TQString nameForAutomaticAction(const TQString &szTemplate);
bool coreActionExists(const TQString &szName);
void load(const TQString &szFileName);
void save(const TQString &szFileName);
bool registerAction(KviAction * a);
bool unregisterAction(const TQString &szName);
void emitRemoveActionsHintRequest();
protected:
void setCurrentToolBar(KviCustomToolBar * t);
KviAction * findAction(const TQString &szName){ return m_pActions->find(szName); };
void customizeToolBarsDialogCreated();
void customizeToolBarsDialogDestroyed();
void tryFindCurrentToolBar();
void delayedRegisterAccelerators(); // this is called ONCE by KviFrame, at startup
protected slots:
void actionDestroyed();
signals:
void beginCustomizeToolBars();
void endCustomizeToolBars();
void currentToolBarChanged(); // emitted only when customizing!
void removeActionsHintRequest(); // connected by the KviCustomToolBarDialog to flash the trashcan
// when the user tries to remove an action from the toolbar
// and it fails to drag it on the trashcan
};
#define ACTION_POPUP_ITEM(__name,__popup) \
{ KviAction * a = KviActionManager::instance()->getAction(__name); if(a)a->addToPopupMenu(__popup); }
#endif //!_KVI_ACTIONMANAGER_H_