Update ooo320-m1
[ooovba.git] / extensions / source / bibliography / bibshortcuthandler.hxx
blob39cffdeadc1c24bb4c9d730546174958ce93044b
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: bibshortcuthandler.hxx,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _BIBSHORTCUTHANDLER_HXX
32 #define _BIBSHORTCUTHANDLER_HXX
34 #include <vcl/window.hxx>
35 #include <vcl/splitwin.hxx>
36 #include <vcl/tabpage.hxx>
38 // additional classes to handle shortcuts
39 // code in bibcont.cxx
42 class BibShortCutHandler
44 private:
45 Window* pBaseClass; // in cases, where BibShortCutHandler also has to be a window
47 protected:
48 inline BibShortCutHandler( Window* pBaseClass );
50 public:
51 virtual ~BibShortCutHandler();
52 virtual BOOL HandleShortCutKey( const KeyEvent& rKeyEvent ); // returns true, if key was handled
54 inline Window* GetWindow( void );
57 inline BibShortCutHandler::BibShortCutHandler( Window* _pBaseClass ) : pBaseClass( _pBaseClass )
61 inline Window* BibShortCutHandler::GetWindow( void )
63 return pBaseClass;
67 class BibWindow : public Window, public BibShortCutHandler
69 public:
70 BibWindow( Window* pParent,WinBits nStyle = WB_3DLOOK);
71 virtual ~BibWindow();
75 class BibSplitWindow : public SplitWindow, public BibShortCutHandler
77 public:
78 BibSplitWindow( Window* pParent,WinBits nStyle = WB_3DLOOK);
79 virtual ~BibSplitWindow();
83 class BibTabPage : public TabPage, public BibShortCutHandler
85 public:
86 BibTabPage( Window* pParent, const ResId& rResId );
87 virtual ~BibTabPage();
90 #endif