Files
libreoffice/starmath/inc/view.hxx

299 lines
9.3 KiB
C++
Raw Normal View History

2000-09-18 16:07:07 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 16:07:07 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 16:07:07 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 16:07:07 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 16:07:07 +00:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2000-09-18 16:07:07 +00:00
*
* OpenOffice.org 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 Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2000-09-18 16:07:07 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2000-09-18 16:07:07 +00:00
*
************************************************************************/
#ifndef VIEW_HXX
#define VIEW_HXX
#include <sfx2/dockwin.hxx>
#include <sfx2/viewsh.hxx>
#include <svtools/scrwin.hxx>
#include <sfx2/ctrlitem.hxx>
#include <sfx2/shell.hxx>
#include <sfx2/viewfac.hxx>
#include <sfx2/viewfrm.hxx>
#include <svtools/colorcfg.hxx>
2000-09-18 16:07:07 +00:00
#include "edit.hxx"
#include "node.hxx"
2002-05-15 12:47:45 +00:00
#include "accessibility.hxx"
2000-09-18 16:07:07 +00:00
class Menu;
class DataChangedEvent;
class SmClipboardChangeListener;
2000-09-18 16:07:07 +00:00
class SmDocShell;
class SmViewShell;
2009-04-27 05:45:59 +00:00
class SmPrintUIOptions;
2000-09-18 16:07:07 +00:00
/**************************************************************************/
2002-05-15 12:47:45 +00:00
class SmGraphicWindow : public ScrollableWindow
2000-09-18 16:07:07 +00:00
{
Point aFormulaDrawPos;
Rectangle aCursorRect;
2002-05-15 12:47:45 +00:00
::com::sun::star::uno::Reference<
::com::sun::star::accessibility::XAccessible > xAccessible;
SmGraphicAccessible * pAccessible;
2002-05-15 12:47:45 +00:00
2000-09-18 16:07:07 +00:00
SmViewShell *pViewShell;
USHORT nZoom;
short nModifyCount;
BOOL bIsCursorVisible;
protected:
void SetFormulaDrawPos(const Point &rPos) { aFormulaDrawPos = rPos; }
void SetIsCursorVisible(BOOL bVis) { bIsCursorVisible = bVis; }
using Window::SetCursor;
2000-09-18 16:07:07 +00:00
void SetCursor(const SmNode *pNode);
void SetCursor(const Rectangle &rRect);
virtual void DataChanged( const DataChangedEvent& );
virtual void Paint(const Rectangle&);
virtual void KeyInput(const KeyEvent& rKEvt);
virtual void Command(const CommandEvent& rCEvt);
virtual void StateChanged( StateChangedType eChanged );
DECL_LINK(MenuSelectHdl, Menu *);
public:
SmGraphicWindow(SmViewShell* pShell);
2002-05-15 12:47:45 +00:00
~SmGraphicWindow();
2000-09-18 16:07:07 +00:00
2002-05-15 12:47:45 +00:00
// Window
virtual void MouseButtonDown(const MouseEvent &rMEvt);
virtual void GetFocus();
virtual void LoseFocus();
SmViewShell * GetView() { return pViewShell; }
2000-09-18 16:07:07 +00:00
using Window::SetZoom;
2000-09-18 16:07:07 +00:00
void SetZoom(USHORT Factor);
using Window::GetZoom;
2000-09-18 16:07:07 +00:00
USHORT GetZoom() const { return nZoom; }
2002-05-31 13:23:22 +00:00
const Point & GetFormulaDrawPos() const { return aFormulaDrawPos; }
2000-09-18 16:07:07 +00:00
void ZoomToFitInWindow();
using ScrollableWindow::SetTotalSize;
2000-09-18 16:07:07 +00:00
void SetTotalSize();
BOOL IsCursorVisible() const { return bIsCursorVisible; }
void ShowCursor(BOOL bShow);
const SmNode * SetCursorPos(USHORT nRow, USHORT nCol);
2002-05-15 12:47:45 +00:00
void ApplyColorConfigValues( const svtools::ColorConfig &rColorCfg );
2002-05-15 12:47:45 +00:00
// for Accessibility
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible();
2002-05-31 13:23:22 +00:00
using Window::GetAccessible;
SmGraphicAccessible * GetAccessible_Impl() { return pAccessible; }
2000-09-18 16:07:07 +00:00
};
/**************************************************************************/
class SmGraphicController: public SfxControllerItem
{
protected:
SmGraphicWindow &rGraphic;
public:
SmGraphicController(SmGraphicWindow &, USHORT, SfxBindings & );
virtual void StateChanged(USHORT nSID,
SfxItemState eState,
const SfxPoolItem* pState);
};
/**************************************************************************/
class SmEditController: public SfxControllerItem
{
protected:
SmEditWindow &rEdit;
public:
SmEditController(SmEditWindow &, USHORT, SfxBindings & );
#if OSL_DEBUG_LEVEL > 1
virtual ~SmEditController();
#endif
2000-09-18 16:07:07 +00:00
virtual void StateChanged(USHORT nSID,
SfxItemState eState,
const SfxPoolItem* pState);
};
/**************************************************************************/
class SmCmdBoxWindow : public SfxDockingWindow
{
SmEditWindow aEdit;
SmEditController aController;
BOOL bExiting;
2000-09-18 16:07:07 +00:00
Timer aInitialFocusTimer;
DECL_LINK(InitialFocusTimerHdl, Timer *);
2000-09-18 16:07:07 +00:00
protected :
2002-05-15 12:47:45 +00:00
// Window
virtual void GetFocus();
virtual void Resize();
virtual void Paint(const Rectangle& rRect);
virtual void StateChanged( StateChangedType nStateChange );
virtual Size CalcDockingSize(SfxChildAlignment eAlign);
virtual SfxChildAlignment CheckAlignment(SfxChildAlignment eActual,
SfxChildAlignment eWish);
virtual void ToggleFloatingMode();
2002-05-15 12:47:45 +00:00
2000-09-18 16:07:07 +00:00
public:
SmCmdBoxWindow(SfxBindings *pBindings,
SfxChildWindow *pChildWindow,
Window *pParent);
virtual ~SmCmdBoxWindow ();
void AdjustPosition();
SmEditWindow *GetEditWindow() { return (&aEdit); }
SmViewShell *GetView();
2000-09-18 16:07:07 +00:00
};
/**************************************************************************/
class SmCmdBoxWrapper : public SfxChildWindow
{
SFX_DECL_CHILDWINDOW(SmCmdBoxWrapper);
protected:
SmCmdBoxWrapper(Window *pParentWindow,
USHORT nId,
SfxBindings *pBindings,
SfxChildWinInfo *pInfo);
#if OSL_DEBUG_LEVEL > 1
virtual ~SmCmdBoxWrapper();
#endif
2000-09-18 16:07:07 +00:00
public:
SmEditWindow *GetEditWindow()
{
return (((SmCmdBoxWindow *)pWindow)->GetEditWindow());
}
};
/**************************************************************************/
namespace sfx2 { class FileDialogHelper; }
struct SmViewShell_Impl;
2000-09-18 16:07:07 +00:00
class SmViewShell: public SfxViewShell
{
// for handling the PasteClipboardState
friend class SmClipboardChangeListener;
2000-09-18 16:07:07 +00:00
SmGraphicWindow aGraphic;
SmGraphicController aGraphicController;
String StatusText;
::com::sun::star::uno:: Reference <
::com::sun::star::lang:: XEventListener > xClipEvtLstnr;
SmClipboardChangeListener* pClipEvtLstnr;
SmViewShell_Impl* pImpl;
BOOL bPasteState;
DECL_LINK( DialogClosedHdl, sfx2::FileDialogHelper* );
virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint );
2000-09-18 16:07:07 +00:00
protected:
Size GetTextLineSize(OutputDevice& rDevice,
const String& rLine);
Size GetTextSize(OutputDevice& rDevice,
const String& rText,
long MaxWidth);
void DrawTextLine(OutputDevice& rDevice,
const Point& rPosition,
const String& rLine);
void DrawText(OutputDevice& rDevice,
const Point& rPosition,
const String& rText,
USHORT MaxWidth);
virtual USHORT Print(SfxProgress &rProgress, BOOL bIsAPI, PrintDialog *pPrintDialog = 0);
2000-09-18 16:07:07 +00:00
virtual SfxPrinter *GetPrinter(BOOL bCreate = FALSE);
virtual USHORT SetPrinter(SfxPrinter *pNewPrinter,
USHORT nDiffFlags = SFX_PRINTER_ALL, bool bIsAPI=false);
2000-09-18 16:07:07 +00:00
BOOL Insert( SfxMedium& rMedium );
BOOL InsertFrom(SfxMedium &rMedium);
2000-09-18 16:07:07 +00:00
virtual SfxTabPage *CreatePrintOptionsPage(Window *pParent,
const SfxItemSet &rOptions);
virtual void Deactivate(BOOL IsMDIActivate);
virtual void Activate(BOOL IsMDIActivate);
virtual Size GetOptimalSizePixel() const;
virtual void AdjustPosSizePixel(const Point &rPos, const Size &rSize);
virtual void InnerResizePixel(const Point &rOfs, const Size &rSize);
virtual void OuterResizePixel(const Point &rOfs, const Size &rSize);
virtual void QueryObjAreaPixel( Rectangle& rRect ) const;
virtual void SetZoomFactor( const Fraction &rX, const Fraction &rY );
public:
TYPEINFO();
SmViewShell(SfxViewFrame *pFrame, SfxViewShell *pOldSh);
~SmViewShell();
2000-09-18 16:07:07 +00:00
SmDocShell * GetDoc()
{
return (SmDocShell *) GetViewFrame()->GetObjectShell();
}
SmEditWindow * GetEditWindow();
SmGraphicWindow & GetGraphicWindow() { return aGraphic; }
const SmGraphicWindow & GetGraphicWindow() const { return aGraphic; }
void SetStatusText(const String& Text);
void ShowError( const SmErrorDesc *pErrorDesc );
void NextError();
void PrevError();
SFX_DECL_INTERFACE(SFX_INTERFACE_SMA_START+2)
2000-09-18 16:07:07 +00:00
SFX_DECL_VIEWFACTORY(SmViewShell);
virtual void Execute( SfxRequest& rReq );
virtual void GetState(SfxItemSet &);
2009-04-27 05:45:59 +00:00
void Impl_Print( OutputDevice &rOutDev, const SmPrintUIOptions &rPrintUIOptions,
Rectangle aOutRect, Point aZeroPoint );
2000-09-18 16:07:07 +00:00
};
#endif