/* -*- c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */ /* 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. */ #ifndef EV_MACTOOLBAR_H #define EV_MACTOOLBAR_H #include #include "ut_types.h" #include "ut_vector.h" #include "xap_Types.h" #include "ev_Toolbar.h" #include "xav_Listener.h" class XAP_MacApp; class XAP_MacFrame; class AP_MacToolbar_Icons; class EV_MacToolbar_ViewListener; class EV_Toolbar_Action; // HACK: it'd be nice to guarantee that menu and toolbar IDs don't overlap #ifdef AP_MENU_ID__BOGUS2__ #define _ev_MENU_OFFSET AP_MENU_ID__BOGUS2__ #else #define _ev_MENU_OFFSET 1000 #endif class EV_MacToolbar : public EV_Toolbar { public: EV_MacToolbar(XAP_MacApp * pMacApp, XAP_MacFrame * pMacFrame, const char * szToolbarLayoutName, const char * szToolbarLabelSetName); virtual ~EV_MacToolbar(void); bool toolbarEvent(XAP_Toolbar_Id id, UT_UCSChar * pData = 0, UT_uint32 dataLength = 0); virtual bool synthesize(void); bool bindListenerToView(AV_View * pView); bool refreshToolbar(AV_View * pView, AV_ChangeMask mask); WindowPtr getWindow(void) const; bool getToolTip(long lParam); ControlHandle getControl () { return m_hMainControl; }; UT_Vector & getWidgets () { return m_vecToolbarWidgets; }; XAP_MacApp * getApp() { return m_pMacApp; }; // refactor and put it in EV_Toolbar enum { ABI_TOOLBAR_COMMAND = 'TLBR' }; protected: void _releaseListener(void); private: // void _calcToolbarRect (); XAP_MacApp * m_pMacApp; XAP_MacFrame * m_pMacFrame; EV_MacToolbar_ViewListener * m_pViewListener; AV_ListenerId m_lid; /* view listener id */ AP_MacToolbar_Icons * m_pMacToolbarIcons; UT_Vector m_vecToolbarWidgets; WindowPtr m_MacWindow; ControlHandle m_hMainControl; // Rect m_toolbarRect; bool _refreshItem(AV_View * pView, const EV_Toolbar_Action * pAction, UT_uint32 k); bool _refreshID(XAP_Toolbar_Id id); }; #endif /* EV_MACTOOLBAR_H */