/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: ipwin.hxx,v $ * * $Revision: 1.4 $ * * last change: $Author: rt $ $Date: 2005-09-08 15:51:15 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library 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 for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * ************************************************************************/ #ifndef _IPWIN_HXX #define _IPWIN_HXX #ifndef _GEN_HXX //autogen #include #endif #ifndef _WINDOW_HXX //autogen #include #endif #ifndef _SVBORDER_HXX #include #endif /********************** SvResizeHelper *********************************** *************************************************************************/ class SvResizeHelper { Size aBorder; Rectangle aOuter; short nGrab; // -1 kein Grab, 0 - 7, 8 = Move, siehe FillHandle... Point aSelPos; BOOL bResizeable; public: SvResizeHelper(); void SetResizeable( BOOL b ) { bResizeable = b; } short GetGrab() const { return nGrab; } void SetBorderPixel( const Size & rBorderP ) { aBorder = rBorderP; } const Size & GetBorderPixel() const { return aBorder; } const Rectangle & GetOuterRectPixel() const { return aOuter; } void SetOuterRectPixel( const Rectangle & rRect ) { aOuter = rRect; } Rectangle GetInnerRectPixel() const { Rectangle aRect( aOuter ); aRect.Top() += aBorder.Height(); aRect.Left() += aBorder.Width(); aRect.Bottom() -= aBorder.Height(); aRect.Right() -= aBorder.Width(); return aRect; } // Im Uhrzeigersinn, beginnend bei Linksoben void FillHandleRectsPixel( Rectangle aRects[ 8 ] ) const; void FillMoveRectsPixel( Rectangle aRects[ 4 ] ) const; void Draw( OutputDevice * ); void InvalidateBorder( Window * ); BOOL SelectBegin( Window *, const Point & rPos ); void SelectBegin( Window *, short nGrab ); short SelectMove( Window * pWin, const Point & rPos ); Point GetTrackPosPixel( const Rectangle & rRect ) const; Rectangle GetTrackRectPixel( const Point & rTrackPos ) const; void ValidateRect( Rectangle & rValidate ) const; BOOL SelectRelease( Window *, const Point & rPos, Rectangle & rOutPosSize ); void Release( Window * pWin ); }; /********************** SvResizeWindow *********************************** *************************************************************************/ class VCLXHatchWindow; class SvResizeWindow : public Window { Pointer m_aOldPointer; short m_nMoveGrab; // Letzer Pointertyp SvResizeHelper m_aResizer; VCLXHatchWindow* m_pWrapper; public: SvResizeWindow( Window* pParent, VCLXHatchWindow* pWrapper ); void SetHatchBorderPixel( const Size & rSize ); const Size & GetHatchBorderPixel() const; void TerminateResizing() ; SvBorder GetAllBorderPixel() const; void SelectMouse( const Point & rPos ); void MouseButtonUp( const MouseEvent & rEvt ); void MouseMove( const MouseEvent & rEvt ); void MouseButtonDown( const MouseEvent & rEvt ); void KeyInput( const KeyEvent & rEvt ); void Resize(); void Paint( const Rectangle & ); void QueryObjAreaPixel( Rectangle & ); void RequestObjAreaPixel( const Rectangle & ); }; #endif // _IPWIN_HXX