office-gobmx/soldep/source/graphwin.cxx

78 lines
2.6 KiB
C++
Raw Normal View History

2004-02-26 07:51:54 -06:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2004-02-26 07:51:54 -06:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2004-02-26 07:51:54 -06:00
*
* OpenOffice.org - a multi-platform office productivity suite
2004-02-26 07:51:54 -06:00
*
* This file is part of OpenOffice.org.
2004-02-26 07:51:54 -06: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.
2004-02-26 07:51:54 -06: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).
2004-02-26 07:51:54 -06: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.
2004-02-26 07:51:54 -06:00
*
************************************************************************/
#include <soldep/graphwin.hxx>
2006-04-20 09:16:35 -05:00
//#include "depapp.hxx"
#include <soldep/soldep.hxx>
2006-04-20 09:16:35 -05:00
2004-02-26 07:51:54 -06:00
2006-04-20 09:16:35 -05:00
GraphWin::GraphWin( Window * pParent, void * pClass )
2004-02-26 07:51:54 -06:00
: ScrollableWindow( pParent, 0L, SCRWIN_DEFAULT | SCRWIN_VCENTER | SCRWIN_HCENTER )
, aBufferWindow( this )
{
2006-04-20 09:16:35 -05:00
mpClass = pClass;
2004-02-26 07:51:54 -06:00
SetSizePixel( pParent->GetSizePixel());
SetPosPixel( pParent->GetPosPixel());
SetTotalSize( Size( 2000,2000 ));
2006-04-20 09:16:35 -05:00
aBufferWindow.SetBackground( Wallpaper( Color( COL_WHITE )));
2004-02-26 07:51:54 -06:00
aBufferWindow.SetPosSizePixel( PIXELS( 0, 0, 2000, 2000 ) );
2006-04-20 09:16:35 -05:00
aBufferWindow.Show(); // Content
Show(); // Window with Scrollbars
2004-02-26 07:51:54 -06:00
}
void GraphWin::EndScroll( long nDeltaX, long nDeltaY )
{
// get the visible area
Rectangle aArea( GetVisibleArea());
long nX = aArea.Right();
long nY = aArea.Bottom();
// set the new pos and size by using LogicToPixel (this is mandatory)
aBufferWindow.SetPosSizePixel( LogicToPixel( Point( 0, 0 )),
LogicToPixel( Size( nX, nY )));
aBufferWindow.Invalidate();
}
void GraphWin::Resize()
{
// get the visible area
ScrollableWindow::Resize();
Rectangle aArea( GetVisibleArea());
long nX = aArea.Right();
long nY = aArea.Bottom();
// set the new pos and size by using LogicToPixel (this is mandatory)
aBufferWindow.SetPosSizePixel( LogicToPixel( Point( 0, 0 )),
LogicToPixel( Size( nX, nY )));
}
void GraphWin::Command( const CommandEvent& rEvent)
{
ScrollableWindow::Command( rEvent );
}