1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 #ifndef _DEPAPP_HXX 29 #define _DEPAPP_HXX 30 31 32 #define EVENT_RESIZE 0x00000001 33 34 35 #include <svl/solar.hrc> 36 #include <tools/resmgr.hxx> 37 #include <soldep/sstring.hxx> 38 #include <vcl/event.hxx> 39 #include <vcl/svapp.hxx> 40 #include <vcl/wrkwin.hxx> 41 #include <vcl/msgbox.hxx> 42 #include <vcl/help.hxx> 43 #include <vcl/button.hxx> 44 #include <vcl/menu.hxx> 45 #include <soldep/soldep.hxx> 46 //#include <soldep/soldlg.hrc> 47 //#include <soldep/tbox.hxx> 48 // ----------------------------------------------------------------------- 49 #include <sal/main.h> 50 #include <com/sun/star/lang/XMultiServiceFactory.hpp> 51 #include <comphelper/processfactory.hxx> 52 #include <cppuhelper/servicefactory.hxx> 53 #include <cppuhelper/bootstrap.hxx> 54 #include <cppuhelper/weak.hxx> 55 #include <soldep/soldep.hxx> 56 57 using namespace ::com::sun::star::uno; 58 using namespace ::com::sun::star::lang; 59 class MyWin; 60 61 class MyApp : public Application 62 { 63 ResMgr* pResMgr; 64 SolDep* pSolDep; 65 Application* pMyApp; 66 MyWin* pAppWindow; 67 68 public: 69 // MyApp(); 70 // ~MyApp() {}; 71 #if defined(WNT) 72 FILE* pDebugFile; 73 #endif 74 75 void Main(); 76 ResMgr* GetResMgr() const { return pResMgr; } 77 Application* GetMyApp() { return pMyApp; } 78 MyWin* GetAppWin() { return pAppWindow; } 79 SolDep* GetSolDep() { return pSolDep; } 80 }; 81 82 // ----------------------------------------------------------------------- 83 84 class MyWin : public WorkWindow 85 { 86 protected: 87 MenuBar aMenuBar; 88 // SoldepToolBox aToolBox; //->depper.hxx 89 Wallpaper aWallpaper; 90 // FloatingWindow aTaskBarFrame; // For ToolBox 91 92 public: 93 MyWin( Window* pParent, WinBits nWinStyle ); 94 95 void MouseMove( const MouseEvent& rMEvt ); 96 void MouseButtonDown( const MouseEvent& rMEvt ); 97 void MouseButtonUp( const MouseEvent& rMEvt ); 98 void KeyInput( const KeyEvent& rKEvt ); 99 void KeyUp( const KeyEvent& rKEvt ); 100 void Paint( const Rectangle& rRect ); 101 void Resize(); 102 // FloatingWindow* GetTaskBarFrame() { return &aTaskBarFrame; } 103 // SoldepToolBox* GetSoldepToolBox() { return &aToolBox; } 104 105 }; 106 static MyApp aMyApp; 107 108 #endif 109 110