1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: bibshortcuthandler.hxx,v $
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
45 Window
* pBaseClass
; // in cases, where BibShortCutHandler also has to be a window
48 inline BibShortCutHandler( Window
* pBaseClass
);
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 )
67 class BibWindow
: public Window
, public BibShortCutHandler
70 BibWindow( Window
* pParent
,WinBits nStyle
= WB_3DLOOK
);
75 class BibSplitWindow
: public SplitWindow
, public BibShortCutHandler
78 BibSplitWindow( Window
* pParent
,WinBits nStyle
= WB_3DLOOK
);
79 virtual ~BibSplitWindow();
83 class BibTabPage
: public TabPage
, public BibShortCutHandler
86 BibTabPage( Window
* pParent
, const ResId
& rResId
);
87 virtual ~BibTabPage();