2010-10-14 01:27:31 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-18 11:07:07 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 04:53:19 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-11 04:53:19 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-11 04:53:19 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-11 04:53:19 -05: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 11:07:07 -05:00
|
|
|
*
|
2008-04-11 04:53:19 -05: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 11:07:07 -05:00
|
|
|
*
|
2008-04-11 04:53:19 -05: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 11:07:07 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
2001-03-12 08:57:06 -06:00
|
|
|
|
2006-09-17 06:48:02 -05:00
|
|
|
|
2001-03-12 08:57:06 -06:00
|
|
|
#include <sal/main.h>
|
2008-01-07 02:53:37 -06:00
|
|
|
#include <tools/extendapplicationenvironment.hxx>
|
2001-03-12 08:57:06 -06:00
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
|
2007-06-27 14:58:52 -05:00
|
|
|
#include <vcl/event.hxx>
|
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
#include <vcl/wrkwin.hxx>
|
|
|
|
#include <vcl/msgbox.hxx>
|
2000-09-18 11:07:07 -05:00
|
|
|
|
2001-08-10 05:20:10 -05:00
|
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
#include <cppuhelper/servicefactory.hxx>
|
|
|
|
#include <cppuhelper/bootstrap.hxx>
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::lang;
|
2000-09-18 11:07:07 -05:00
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2001-03-12 08:57:06 -06:00
|
|
|
// Forward declaration
|
2001-02-22 09:03:13 -06:00
|
|
|
void Main();
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2011-07-18 12:30:24 -05:00
|
|
|
SAL_IMPLEMENT_MAIN_WITH_GUI()
|
2001-02-22 09:03:13 -06:00
|
|
|
{
|
2008-01-07 02:53:37 -06:00
|
|
|
tools::extendApplicationEnvironment();
|
|
|
|
|
2001-08-10 05:20:10 -05:00
|
|
|
Reference< XMultiServiceFactory > xMS;
|
2010-09-10 06:10:07 -05:00
|
|
|
xMS = cppu::createRegistryServiceFactory( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "types.rdb" ) ), rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "applicat.rdb" ) ), sal_True );
|
2001-08-10 05:20:10 -05:00
|
|
|
|
2001-02-22 09:03:13 -06:00
|
|
|
InitVCL( xMS );
|
2001-02-23 11:08:12 -06:00
|
|
|
::Main();
|
2001-02-22 09:03:13 -06:00
|
|
|
DeInitVCL();
|
2001-08-10 05:20:10 -05:00
|
|
|
|
2001-02-22 09:03:13 -06:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-03-12 08:57:06 -06:00
|
|
|
// -----------------------------------------------------------------------
|
2001-02-22 09:03:13 -06:00
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
class MyWin : public WorkWindow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MyWin( Window* pParent, WinBits nWinStyle );
|
|
|
|
|
|
|
|
void MouseMove( const MouseEvent& rMEvt );
|
|
|
|
void MouseButtonDown( const MouseEvent& rMEvt );
|
|
|
|
void MouseButtonUp( const MouseEvent& rMEvt );
|
|
|
|
void KeyInput( const KeyEvent& rKEvt );
|
|
|
|
void KeyUp( const KeyEvent& rKEvt );
|
|
|
|
void Paint( const Rectangle& rRect );
|
|
|
|
void Resize();
|
|
|
|
};
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
2001-03-12 08:57:06 -06:00
|
|
|
|
2001-02-22 09:03:13 -06:00
|
|
|
void Main()
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
MyWin aMainWin( NULL, WB_APP | WB_STDWORK );
|
|
|
|
aMainWin.SetText( XubString( RTL_CONSTASCII_USTRINGPARAM( "VCL - Workbench" ) ) );
|
|
|
|
aMainWin.Show();
|
|
|
|
|
2001-02-22 09:03:13 -06:00
|
|
|
Application::Execute();
|
2000-09-18 11:07:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
MyWin::MyWin( Window* pParent, WinBits nWinStyle ) :
|
|
|
|
WorkWindow( pParent, nWinStyle )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void MyWin::MouseMove( const MouseEvent& rMEvt )
|
|
|
|
{
|
|
|
|
WorkWindow::MouseMove( rMEvt );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void MyWin::MouseButtonDown( const MouseEvent& rMEvt )
|
|
|
|
{
|
|
|
|
WorkWindow::MouseButtonDown( rMEvt );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void MyWin::MouseButtonUp( const MouseEvent& rMEvt )
|
|
|
|
{
|
|
|
|
WorkWindow::MouseButtonUp( rMEvt );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void MyWin::KeyInput( const KeyEvent& rKEvt )
|
|
|
|
{
|
|
|
|
WorkWindow::KeyInput( rKEvt );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void MyWin::KeyUp( const KeyEvent& rKEvt )
|
|
|
|
{
|
|
|
|
WorkWindow::KeyUp( rKEvt );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void MyWin::Paint( const Rectangle& rRect )
|
|
|
|
{
|
|
|
|
WorkWindow::Paint( rRect );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void MyWin::Resize()
|
|
|
|
{
|
|
|
|
WorkWindow::Resize();
|
|
|
|
}
|
2010-10-14 01:27:31 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|