1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir // ----------------------------------------------------------------------- 29*cdf0e10cSrcweir #include "depapp.hxx" 30*cdf0e10cSrcweir #include <ucbhelper/contentbroker.hxx> 31*cdf0e10cSrcweir #include <ucbhelper/configurationkeys.hxx> 32*cdf0e10cSrcweir 33*cdf0e10cSrcweir void MyApp::Main() 34*cdf0e10cSrcweir { 35*cdf0e10cSrcweir #if defined(WNT) 36*cdf0e10cSrcweir pDebugFile = fopen( "fprintf.out", "w" ); 37*cdf0e10cSrcweir #endif 38*cdf0e10cSrcweir 39*cdf0e10cSrcweir pMyApp = GetpApp(); 40*cdf0e10cSrcweir MyWin aMainWin( NULL, WB_APP | WB_STDWORK ); 41*cdf0e10cSrcweir pAppWindow = &aMainWin; 42*cdf0e10cSrcweir // pToolBarFrame = new FloatingWindow( aMainWin, WB_STDWORK ); 43*cdf0e10cSrcweir //pToolBox = new ToolBox(pToolBarFrame,DtSodResId(TID_SOLDEP_MAIN)); 44*cdf0e10cSrcweir 45*cdf0e10cSrcweir pSolDep = new SolDep( &aMainWin ); 46*cdf0e10cSrcweir pSolDep->Init(); 47*cdf0e10cSrcweir aMainWin.SetText( String::CreateFromAscii( SOLDEPL_NAME )); 48*cdf0e10cSrcweir pSolDep->Hide(); 49*cdf0e10cSrcweir aMainWin.Show(); 50*cdf0e10cSrcweir Help aHelp; 51*cdf0e10cSrcweir SetHelp(&aHelp); 52*cdf0e10cSrcweir aHelp.EnableContextHelp(); 53*cdf0e10cSrcweir aHelp.EnableQuickHelp(); 54*cdf0e10cSrcweir Execute(); 55*cdf0e10cSrcweir delete pResMgr; 56*cdf0e10cSrcweir delete pSolDep; 57*cdf0e10cSrcweir } 58*cdf0e10cSrcweir 59*cdf0e10cSrcweir // ----------------------------------------------------------------------- 60*cdf0e10cSrcweir 61*cdf0e10cSrcweir MyWin::MyWin( Window* pParent, WinBits nWinStyle ) : 62*cdf0e10cSrcweir WorkWindow( pParent, nWinStyle )//,aToolBox( this, DtSodResId(TID_SOLDEP_MAIN)), 63*cdf0e10cSrcweir // depper aTaskBarFrame(this, 0) 64*cdf0e10cSrcweir { 65*cdf0e10cSrcweir //depper aTaskBarFrame.EnableAlwaysOnTop(); 66*cdf0e10cSrcweir 67*cdf0e10cSrcweir //depper aMenuBar.InsertItem( 1, XubString( RTL_CONSTASCII_USTRINGPARAM( "~Source" ) ) ); 68*cdf0e10cSrcweir //depper aMenuBar.InsertItem( 2, XubString( RTL_CONSTASCII_USTRINGPARAM( "~Exit" ) ) ); 69*cdf0e10cSrcweir //depper SetMenuBar( &aMenuBar ); 70*cdf0e10cSrcweir //depper aToolBox.SetPosSizePixel( Point( 0,0 ), Size( 1100,35 )); 71*cdf0e10cSrcweir // aToolBox.Show(); 72*cdf0e10cSrcweir } 73*cdf0e10cSrcweir 74*cdf0e10cSrcweir // ----------------------------------------------------------------------- 75*cdf0e10cSrcweir 76*cdf0e10cSrcweir void MyWin::MouseMove( const MouseEvent& rMEvt ) 77*cdf0e10cSrcweir { 78*cdf0e10cSrcweir WorkWindow::MouseMove( rMEvt ); 79*cdf0e10cSrcweir } 80*cdf0e10cSrcweir 81*cdf0e10cSrcweir // ----------------------------------------------------------------------- 82*cdf0e10cSrcweir 83*cdf0e10cSrcweir void MyWin::MouseButtonDown( const MouseEvent& rMEvt ) 84*cdf0e10cSrcweir { 85*cdf0e10cSrcweir WorkWindow::MouseButtonDown( rMEvt ); 86*cdf0e10cSrcweir } 87*cdf0e10cSrcweir 88*cdf0e10cSrcweir // ----------------------------------------------------------------------- 89*cdf0e10cSrcweir 90*cdf0e10cSrcweir void MyWin::MouseButtonUp( const MouseEvent& rMEvt ) 91*cdf0e10cSrcweir { 92*cdf0e10cSrcweir WorkWindow::MouseButtonUp( rMEvt ); 93*cdf0e10cSrcweir } 94*cdf0e10cSrcweir 95*cdf0e10cSrcweir // ----------------------------------------------------------------------- 96*cdf0e10cSrcweir 97*cdf0e10cSrcweir void MyWin::KeyInput( const KeyEvent& rKEvt ) 98*cdf0e10cSrcweir { 99*cdf0e10cSrcweir WorkWindow::KeyInput( rKEvt ); 100*cdf0e10cSrcweir } 101*cdf0e10cSrcweir 102*cdf0e10cSrcweir // ----------------------------------------------------------------------- 103*cdf0e10cSrcweir 104*cdf0e10cSrcweir void MyWin::KeyUp( const KeyEvent& rKEvt ) 105*cdf0e10cSrcweir { 106*cdf0e10cSrcweir WorkWindow::KeyUp( rKEvt ); 107*cdf0e10cSrcweir } 108*cdf0e10cSrcweir 109*cdf0e10cSrcweir // ----------------------------------------------------------------------- 110*cdf0e10cSrcweir 111*cdf0e10cSrcweir void MyWin::Paint( const Rectangle& rRect ) 112*cdf0e10cSrcweir { 113*cdf0e10cSrcweir WorkWindow::Paint( rRect ); 114*cdf0e10cSrcweir } 115*cdf0e10cSrcweir 116*cdf0e10cSrcweir // ----------------------------------------------------------------------- 117*cdf0e10cSrcweir 118*cdf0e10cSrcweir void MyWin::Resize() 119*cdf0e10cSrcweir { 120*cdf0e10cSrcweir ((MyApp*)GetpApp())->GetSolDep()->Resize(); 121*cdf0e10cSrcweir WorkWindow::Resize(); 122*cdf0e10cSrcweir } 123*cdf0e10cSrcweir 124*cdf0e10cSrcweir SAL_IMPLEMENT_MAIN() 125*cdf0e10cSrcweir { 126*cdf0e10cSrcweir //Reference< XMultiServiceFactory > xMS; 127*cdf0e10cSrcweir 128*cdf0e10cSrcweir // for this to work make sure an <appname>.ini file is available, you can just copy soffice.ini 129*cdf0e10cSrcweir Reference< XComponentContext > xComponentContext = ::cppu::defaultBootstrap_InitialComponentContext(); 130*cdf0e10cSrcweir 131*cdf0e10cSrcweir //xMS = cppu::createRegistryServiceFactory( 132*cdf0e10cSrcweir // rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "applicat.rdb" ) ), sal_True ); 133*cdf0e10cSrcweir 134*cdf0e10cSrcweir Reference< XMultiServiceFactory > xMS( xComponentContext->getServiceManager(), UNO_QUERY); 135*cdf0e10cSrcweir 136*cdf0e10cSrcweir InitVCL( xMS ); 137*cdf0e10cSrcweir ::comphelper::setProcessServiceFactory(xMS); 138*cdf0e10cSrcweir com::sun::star::uno::Sequence< com::sun::star::uno::Any > aArgs(2); 139*cdf0e10cSrcweir aArgs[0] <<= rtl::OUString::createFromAscii( UCB_CONFIGURATION_KEY1_LOCAL ); 140*cdf0e10cSrcweir aArgs[1] <<= rtl::OUString::createFromAscii( UCB_CONFIGURATION_KEY2_OFFICE ); 141*cdf0e10cSrcweir 142*cdf0e10cSrcweir ::ucbhelper::ContentBroker::initialize( xMS, aArgs ); 143*cdf0e10cSrcweir 144*cdf0e10cSrcweir aMyApp.Main(); 145*cdf0e10cSrcweir DeInitVCL(); 146*cdf0e10cSrcweir return 0; 147*cdf0e10cSrcweir } 148