/* AbiSource Program Utilities * Copyright (C) 1998 AbiSource, Inc. * * 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., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #include #include "ev_Menu_Actions.h" #include "ut_types.h" #include "ut_assert.h" #include "ut_string.h" /*****************************************************************/ /*****************************************************************/ EV_Menu_Action::EV_Menu_Action(XAP_Menu_Id id, UT_Bool bHoldsSubMenu, UT_Bool bRaisesDialog, UT_Bool bCheckable, const char * szMethodName, EV_GetMenuItemState_pFn pfnGetState, EV_GetMenuItemComputedLabel_pFn pfnGetLabel) { UT_ASSERT((bHoldsSubMenu + bRaisesDialog + bCheckable) < 2); // a 3-way exclusive OR UT_ASSERT((!bCheckable) || pfnGetState); m_id = id; m_bHoldsSubMenu = bHoldsSubMenu; m_bRaisesDialog = bRaisesDialog; m_bCheckable = bCheckable; UT_cloneString(m_szMethodName,szMethodName); m_pfnGetState = pfnGetState; m_pfnGetLabel = pfnGetLabel; } EV_Menu_Action::~EV_Menu_Action(void) { FREEP(m_szMethodName); } XAP_Menu_Id EV_Menu_Action::getMenuId(void) const { return m_id; } UT_Bool EV_Menu_Action::hasDynamicLabel(void) const { return (m_pfnGetLabel != NULL); } const char * EV_Menu_Action::getDynamicLabel(XAP_Frame * pFrame, const EV_Menu_Label * pLabel) const { if (m_pfnGetLabel) return m_pfnGetLabel(pFrame,pLabel,m_id); else return NULL; } UT_Bool EV_Menu_Action::hasGetStateFunction(void) const { return (m_pfnGetState != NULL); } EV_Menu_ItemState EV_Menu_Action::getMenuItemState(AV_View * pView) const { if (m_pfnGetState) return m_pfnGetState(pView,m_id); else return EV_MIS_ZERO; } const char * EV_Menu_Action::getMethodName(void) const { return m_szMethodName; } UT_Bool EV_Menu_Action::raisesDialog(void) const { return m_bRaisesDialog; } UT_Bool EV_Menu_Action::isCheckable(void) const { return m_bCheckable; } /*****************************************************************/ /*****************************************************************/ EV_Menu_ActionSet::EV_Menu_ActionSet(XAP_Menu_Id first, XAP_Menu_Id last) { // TODO tis bad to call malloc/calloc from a constructor, since we cannot report failure. // TODO move this allocation to somewhere else. m_actionTable = (EV_Menu_Action **)calloc((last-first+1),sizeof(EV_Menu_Action *)); m_first = first; m_last = last; } EV_Menu_ActionSet::~EV_Menu_ActionSet(void) { if (!m_actionTable) return; UT_uint32 k, kLimit; for (k=0, kLimit=(m_last-m_first+1); (k m_last)) return UT_FALSE; UT_uint32 index = (id - m_first); DELETEP(m_actionTable[index]); m_actionTable[index] = new EV_Menu_Action(id,bHoldsSubMenu,bRaisesDialog,bCheckable, szMethodName,pfnGetState,pfnGetLabel); return (m_actionTable[index] != NULL); } EV_Menu_Action * EV_Menu_ActionSet::getAction(XAP_Menu_Id id) const { if ((id < m_first) || (id > m_last)) return NULL; UT_uint32 index = (id - m_first); EV_Menu_Action * pAction = m_actionTable[index]; UT_ASSERT(pAction && (pAction->getMenuId()==id)); return pAction; }