xref: /aoo41x/main/basctl/source/inc/dlgedfunc.hxx (revision cdf0e10c)
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 _BASCTL_DLGEDFUNC_HXX
29 #define _BASCTL_DLGEDFUNC_HXX
30 
31 #include <vcl/timer.hxx>
32 
33 class DlgEditor;
34 class Timer;
35 class MouseEvent;
36 class Point;
37 
38 //============================================================================
39 // DlgEdFunc
40 //============================================================================
41 
42 class DlgEdFunc /* : public LinkHdl */
43 {
44 protected:
45 	DlgEditor* pParent;
46 	Timer		 aScrollTimer;
47 
48 	DECL_LINK( ScrollTimeout, Timer * );
49 	void	ForceScroll( const Point& rPos );
50 
51 public:
52 	DlgEdFunc( DlgEditor* pParent );
53 	virtual ~DlgEdFunc();
54 
55 	virtual sal_Bool MouseButtonDown( const MouseEvent& rMEvt );
56 	virtual sal_Bool MouseButtonUp( const MouseEvent& rMEvt );
57 	virtual sal_Bool MouseMove( const MouseEvent& rMEvt );
58 	virtual sal_Bool KeyInput( const KeyEvent& rKEvt );
59 };
60 
61 //============================================================================
62 // DlgEdFuncInsert
63 //============================================================================
64 
65 class DlgEdFuncInsert : public DlgEdFunc
66 {
67 public:
68 	DlgEdFuncInsert( DlgEditor* pParent );
69 	~DlgEdFuncInsert();
70 
71 	virtual sal_Bool MouseButtonDown( const MouseEvent& rMEvt );
72 	virtual sal_Bool MouseButtonUp( const MouseEvent& rMEvt );
73 	virtual sal_Bool MouseMove( const MouseEvent& rMEvt );
74 };
75 
76 //============================================================================
77 // DlgEdFuncSelect
78 //============================================================================
79 
80 class DlgEdFuncSelect : public DlgEdFunc
81 {
82 protected:
83 	sal_Bool	bMarkAction;
84 
85 public:
86 	DlgEdFuncSelect( DlgEditor* pParent );
87 	~DlgEdFuncSelect();
88 
89 	virtual sal_Bool MouseButtonDown( const MouseEvent& rMEvt );
90 	virtual sal_Bool MouseButtonUp( const MouseEvent& rMEvt );
91 	virtual sal_Bool MouseMove( const MouseEvent& rMEvt );
92 };
93 
94 
95 #endif //_BASCTL_DLGEDFUNC_HXX
96