xref: /trunk/main/dbaccess/source/ui/inc/sqledit.hxx (revision cdf0e10c)
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 #ifndef DBAUI_SQLEDIT_HXX
28*cdf0e10cSrcweir #define DBAUI_SQLEDIT_HXX
29*cdf0e10cSrcweir 
30*cdf0e10cSrcweir #include <svtools/editsyntaxhighlighter.hxx>
31*cdf0e10cSrcweir #include <svl/lstner.hxx>
32*cdf0e10cSrcweir #include <svtools/colorcfg.hxx>
33*cdf0e10cSrcweir #include <unotools/sourceviewconfig.hxx>
34*cdf0e10cSrcweir 
35*cdf0e10cSrcweir namespace dbaui
36*cdf0e10cSrcweir {
37*cdf0e10cSrcweir 	class OQueryTextView;
38*cdf0e10cSrcweir     class OSqlEdit : public MultiLineEditSyntaxHighlight, utl::ConfigurationListener
39*cdf0e10cSrcweir 	{
40*cdf0e10cSrcweir 	private:
41*cdf0e10cSrcweir 		Timer					m_timerInvalidate;
42*cdf0e10cSrcweir 		Timer					m_timerUndoActionCreation;
43*cdf0e10cSrcweir 		Link					m_lnkTextModifyHdl;
44*cdf0e10cSrcweir 		String					m_strOrigText;		// wird beim Undo wiederhergestellt
45*cdf0e10cSrcweir 		OQueryTextView*			m_pView;
46*cdf0e10cSrcweir 		sal_Bool					m_bAccelAction;		// Wird bei Cut, Copy, Paste gesetzt
47*cdf0e10cSrcweir 		sal_Bool					m_bStopTimer;
48*cdf0e10cSrcweir         utl::SourceViewConfig   m_SourceViewConfig;
49*cdf0e10cSrcweir 		svtools::ColorConfig	m_ColorConfig;
50*cdf0e10cSrcweir 
51*cdf0e10cSrcweir 		DECL_LINK(OnUndoActionTimer, void*);
52*cdf0e10cSrcweir 		DECL_LINK(OnInvalidateTimer, void*);
53*cdf0e10cSrcweir 
54*cdf0e10cSrcweir 	private:
55*cdf0e10cSrcweir 		void			ImplSetFont();
56*cdf0e10cSrcweir 
57*cdf0e10cSrcweir 	protected:
58*cdf0e10cSrcweir 		virtual void KeyInput( const KeyEvent& rKEvt );
59*cdf0e10cSrcweir 		virtual void GetFocus();
60*cdf0e10cSrcweir 
61*cdf0e10cSrcweir 		DECL_LINK(ModifyHdl, void*);
62*cdf0e10cSrcweir 
63*cdf0e10cSrcweir 	public:
64*cdf0e10cSrcweir 		OSqlEdit( OQueryTextView* pParent,  WinBits nWinStyle = WB_LEFT | WB_VSCROLL |WB_BORDER);
65*cdf0e10cSrcweir 		virtual ~OSqlEdit();
66*cdf0e10cSrcweir 
67*cdf0e10cSrcweir         // Edit overridables
68*cdf0e10cSrcweir 		virtual void SetText(const String& rNewText);
69*cdf0e10cSrcweir         using MultiLineEditSyntaxHighlight::SetText;
70*cdf0e10cSrcweir 
71*cdf0e10cSrcweir         // own functionality
72*cdf0e10cSrcweir 		sal_Bool IsInAccelAct();
73*cdf0e10cSrcweir 
74*cdf0e10cSrcweir 		void SetTextModifyHdl(const Link& lnk) { m_lnkTextModifyHdl = lnk; }
75*cdf0e10cSrcweir 			// bitte nicht SetModifyHdl benutzen, den brauche ich selber, der hier wird von dem damit gesetzten Handler
76*cdf0e10cSrcweir 			// gerufen
77*cdf0e10cSrcweir 			// der Link bekommt einen Pointer-to-string, der nach dem Link nicht mehr gueltig ist
78*cdf0e10cSrcweir 
79*cdf0e10cSrcweir 		void stopTimer();
80*cdf0e10cSrcweir 		void startTimer();
81*cdf0e10cSrcweir 
82*cdf0e10cSrcweir         virtual void    ConfigurationChanged( utl::ConfigurationBroadcaster*, sal_uInt32 );
83*cdf0e10cSrcweir 		using MultiLineEditSyntaxHighlight::Notify;
84*cdf0e10cSrcweir 	};
85*cdf0e10cSrcweir }
86*cdf0e10cSrcweir 
87*cdf0e10cSrcweir #endif // DBAUI_SQLEDIT_HXX
88*cdf0e10cSrcweir 
89*cdf0e10cSrcweir 
90