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: sqledit.hxx,v $
10 * $Revision: 1.5.60.2 $
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 ************************************************************************/
30 #ifndef DBAUI_SQLEDIT_HXX
31 #define DBAUI_SQLEDIT_HXX
33 #include <svtools/editsyntaxhighlighter.hxx>
34 #include <svtools/lstner.hxx>
35 #include <svtools/colorcfg.hxx>
36 #include <svtools/sourceviewconfig.hxx>
41 class OSqlEdit
: public MultiLineEditSyntaxHighlight
, SfxListener
44 Timer m_timerInvalidate
;
45 Timer m_timerUndoActionCreation
;
46 Link m_lnkTextModifyHdl
;
47 String m_strOrigText
; // wird beim Undo wiederhergestellt
48 OQueryTextView
* m_pView
;
49 BOOL m_bAccelAction
; // Wird bei Cut, Copy, Paste gesetzt
51 svt::SourceViewConfig m_SourceViewConfig
;
52 svtools::ColorConfig m_ColorConfig
;
54 DECL_LINK(OnUndoActionTimer
, void*);
55 DECL_LINK(OnInvalidateTimer
, void*);
61 virtual void KeyInput( const KeyEvent
& rKEvt
);
62 virtual void GetFocus();
64 DECL_LINK(ModifyHdl
, void*);
67 OSqlEdit( OQueryTextView
* pParent
, WinBits nWinStyle
= WB_LEFT
| WB_VSCROLL
|WB_BORDER
);
71 virtual void SetText(const String
& rNewText
);
72 using MultiLineEditSyntaxHighlight::SetText
;
77 void SetTextModifyHdl(const Link
& lnk
) { m_lnkTextModifyHdl
= lnk
; }
78 // bitte nicht SetModifyHdl benutzen, den brauche ich selber, der hier wird von dem damit gesetzten Handler
80 // der Link bekommt einen Pointer-to-string, der nach dem Link nicht mehr gueltig ist
85 virtual void Notify( SfxBroadcaster
& rBC
, const SfxHint
& rHint
);
86 using MultiLineEditSyntaxHighlight::Notify
;
90 #endif // DBAUI_SQLEDIT_HXX