/* AbiWord * Copyright (C) 1998 AbiSource, Inc. * Copyright (C) 2001-2003 Hubert Figuiere * * 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 AP_COCOAFRAME_H #define AP_COCOAFRAME_H #import class XAP_CocoaApp; class XAP_Frame; class AP_CocoaFrame; class FL_DocLayout; class GR_Graphics; #include "ap_Frame.h" #include "ie_types.h" #include "ut_assert.h" /*****************************************************************/ class AP_CocoaFrame : public AP_Frame { public: AP_CocoaFrame(); AP_CocoaFrame(AP_CocoaFrame * f); virtual ~AP_CocoaFrame(void); virtual bool initialize(XAP_FrameMode frameMode=XAP_NormalFrame); virtual XAP_Frame * cloneFrame(void); virtual void setXScrollRange(void); virtual void setYScrollRange(void); virtual void translateDocumentToScreen(UT_sint32 &x, UT_sint32 &y); virtual void setStatusMessage(const char * szMsg); virtual void toggleRuler(bool bRulerOn); virtual void toggleTopRuler(bool bRulerOn); virtual void toggleLeftRuler(bool bRulerOn); virtual void toggleBar(UT_uint32 iBarNb, bool bBarOn); virtual void toggleStatusBar(bool bStatusBarOn); protected: virtual bool _createViewGraphics(GR_Graphics *& pG, UT_uint32 iZoom); static void _scrollFuncX(void * pData, UT_sint32 xoff, UT_sint32 xlimit); static void _scrollFuncY(void * pData, UT_sint32 yoff, UT_sint32 ylimit); virtual bool _createScrollBarListeners(AV_View * pView, AV_ScrollObj *& pScrollObj, ap_ViewListener *& pViewListener, ap_Scrollbar_ViewListener *& pScrollbarViewListener, AV_ListenerId &lid, AV_ListenerId &lidScrollbarViewListener); virtual void _bindToolbars(AV_View *pView); virtual void _setViewFocus(AV_View *pView); virtual UT_sint32 _getDocumentAreaWidth(); virtual UT_sint32 _getDocumentAreaHeight(); void _getHScrollValues (UT_sint32 &min, UT_sint32 &max, UT_sint32 ¤t); void _getVScrollValues (UT_sint32 &min, UT_sint32 &max, UT_sint32 ¤t); void _setHScrollValues (UT_sint32 min, UT_sint32 max, UT_sint32 current); void _setVScrollValues (UT_sint32 min, UT_sint32 max, UT_sint32 current); }; #endif /* AP_COCOAFRAME_H */