Update git submodules
[LibreOffice.git] / include / vcl / toolkit / edit.hxx
blob93abf1c5dd63041e54e7db9dd37aa38fd880a2c5
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #pragma once
22 #if !defined(VCL_DLLIMPLEMENTATION) && !defined(TOOLKIT_DLLIMPLEMENTATION) && !defined(VCL_INTERNALS)
23 #error "don't use this in new code"
24 #endif
26 #include <vcl/ctrl.hxx>
27 #include <vcl/textfilter.hxx>
29 #include <memory>
31 #include <rtl/ustrbuf.hxx>
32 #include <o3tl/deleter.hxx>
33 #include <vcl/dllapi.h>
34 #include <vcl/dndhelp.hxx>
35 #include <vcl/vclptr.hxx>
36 #include <com/sun/star/uno/Reference.h>
38 namespace com::sun::star::i18n {
39 class XBreakIterator;
40 class XExtendedInputSequenceChecker;
42 namespace weld {
43 class Widget;
46 class PopupMenu;
47 class VclBuilder;
48 struct DDInfo;
49 struct Impl_IMEInfos;
51 #define EDIT_NOLIMIT SAL_MAX_INT32
53 class Timer;
55 class VCL_DLLPUBLIC Edit : public Control, public vcl::unohelper::DragAndDropClient
57 private:
58 VclPtr<Edit> mpSubEdit;
59 TextFilter* mpFilterText;
60 std::unique_ptr<DDInfo, o3tl::default_delete<DDInfo>> mpDDInfo;
61 std::unique_ptr<Impl_IMEInfos> mpIMEInfos;
62 OUStringBuffer maText;
63 OUString maPlaceholderText;
64 OUString maSaveValue;
65 OUString maUndoText;
66 tools::Long mnXOffset;
67 Selection maSelection;
68 sal_uInt16 mnAlign;
69 sal_Int32 mnMaxTextLen;
70 sal_Int32 mnWidthInChars;
71 sal_Int32 mnMaxWidthChars;
72 sal_Unicode mcEchoChar;
73 bool mbInternModified:1,
74 mbReadOnly:1,
75 mbInsertMode:1,
76 mbClickedInSelection:1,
77 mbIsSubEdit:1,
78 mbActivePopup:1,
79 mbForceControlBackground:1,
80 mbPassword;
81 Link<Edit&,void> maModifyHdl;
82 Link<Edit&,void> maAutocompleteHdl;
83 Link<Edit&,bool> maActivateHdl;
84 std::unique_ptr<VclBuilder> mpUIBuilder;
86 css::uno::Reference<css::i18n::XBreakIterator> mxBreakIterator;
87 css::uno::Reference<css::i18n::XExtendedInputSequenceChecker> mxISC;
88 rtl::Reference<vcl::unohelper::DragAndDropWrapper> mxDnDListener;
90 SAL_DLLPRIVATE bool ImplTruncateToMaxLen( OUString&, sal_Int32 nSelectionLen ) const;
91 SAL_DLLPRIVATE void ImplInitEditData();
92 SAL_DLLPRIVATE OUString ImplGetText() const;
93 SAL_DLLPRIVATE void ImplRepaint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRectangle);
94 SAL_DLLPRIVATE void ImplInvalidateOrRepaint();
95 SAL_DLLPRIVATE void ImplDelete( const Selection& rSelection, sal_uInt8 nDirection, sal_uInt8 nMode );
96 SAL_DLLPRIVATE void ImplSetText( const OUString& rStr, const Selection* pNewSelection );
97 SAL_DLLPRIVATE void ImplInsertText( const OUString& rStr, const Selection* pNewSelection = nullptr, bool bIsUserInput = false );
98 SAL_DLLPRIVATE static OUString ImplGetValidString( const OUString& rString );
99 SAL_DLLPRIVATE void ImplClearBackground(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRectangle, tools::Long nXStart, tools::Long nXEnd);
100 SAL_DLLPRIVATE void ImplPaintBorder(vcl::RenderContext const & rRenderContext);
101 SAL_DLLPRIVATE void ImplShowCursor( bool bOnlyIfVisible = true );
102 SAL_DLLPRIVATE void ImplAlign();
103 SAL_DLLPRIVATE void ImplAlignAndPaint();
104 SAL_DLLPRIVATE sal_Int32 ImplGetCharPos( const Point& rWindowPos ) const;
105 SAL_DLLPRIVATE void ImplSetCursorPos( sal_Int32 nChar, bool bSelect );
106 SAL_DLLPRIVATE void ImplShowDDCursor();
107 SAL_DLLPRIVATE void ImplHideDDCursor();
108 SAL_DLLPRIVATE bool ImplHandleKeyEvent( const KeyEvent& rKEvt );
109 SAL_DLLPRIVATE void ImplCopyToSelectionClipboard();
110 SAL_DLLPRIVATE void ImplCopy(css::uno::Reference<css::datatransfer::clipboard::XClipboard> const & rxClipboard);
111 SAL_DLLPRIVATE void ImplPaste(css::uno::Reference<css::datatransfer::clipboard::XClipboard> const & rxClipboard);
112 SAL_DLLPRIVATE tools::Long ImplGetTextYPosition() const;
113 SAL_DLLPRIVATE css::uno::Reference<css::i18n::XExtendedInputSequenceChecker> const& ImplGetInputSequenceChecker();
114 SAL_DLLPRIVATE css::uno::Reference<css::i18n::XBreakIterator> const& ImplGetBreakIterator();
115 SAL_DLLPRIVATE void filterText();
117 protected:
118 using Control::ImplInitSettings;
119 using Window::ImplInit;
120 SAL_DLLPRIVATE void ImplInit( vcl::Window* pParent, WinBits nStyle );
121 SAL_DLLPRIVATE static WinBits ImplInitStyle( WinBits nStyle );
122 SAL_DLLPRIVATE void ImplSetSelection( const Selection& rSelection, bool bPaint = true );
123 SAL_DLLPRIVATE ControlType ImplGetNativeControlType() const;
124 SAL_DLLPRIVATE tools::Long ImplGetExtraXOffset() const;
125 SAL_DLLPRIVATE tools::Long ImplGetExtraYOffset() const;
126 static SAL_DLLPRIVATE void ImplInvalidateOutermostBorder( vcl::Window* pWin );
128 // DragAndDropClient
129 using vcl::unohelper::DragAndDropClient::dragEnter;
130 using vcl::unohelper::DragAndDropClient::dragExit;
131 using vcl::unohelper::DragAndDropClient::dragOver;
132 virtual void dragGestureRecognized(const css::datatransfer::dnd::DragGestureEvent& dge) override;
133 virtual void dragDropEnd(const css::datatransfer::dnd::DragSourceDropEvent& dsde) override;
134 virtual void drop(const css::datatransfer::dnd::DropTargetDropEvent& dtde) override;
135 virtual void dragEnter(const css::datatransfer::dnd::DropTargetDragEnterEvent& dtdee) override;
136 virtual void dragExit(const css::datatransfer::dnd::DropTargetEvent& dte) override;
137 virtual void dragOver(const css::datatransfer::dnd::DropTargetDragEvent& dtde) override;
139 protected:
140 SAL_DLLPRIVATE Edit(WindowType nType);
141 virtual void FillLayoutData() const override;
142 virtual void ApplySettings(vcl::RenderContext& rRenderContext) override;
143 public:
144 // public because needed in button.cxx
145 SAL_DLLPRIVATE bool ImplUseNativeBorder(vcl::RenderContext const & rRenderContext, WinBits nStyle) const;
147 Edit( vcl::Window* pParent, WinBits nStyle = WB_BORDER );
148 virtual ~Edit() override;
149 virtual void dispose() override;
151 virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
152 virtual void MouseButtonUp( const MouseEvent& rMEvt ) override;
153 virtual void KeyInput( const KeyEvent& rKEvt ) override;
154 virtual void Paint( vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect ) override;
155 virtual void Resize() override;
156 virtual void Draw( OutputDevice* pDev, const Point& rPos, SystemTextColorFlags nFlags ) override;
157 virtual void GetFocus() override;
158 virtual void LoseFocus() override;
159 virtual void Tracking( const TrackingEvent& rTEvt ) override;
160 virtual void Command( const CommandEvent& rCEvt ) override;
161 virtual void StateChanged( StateChangedType nType ) override;
162 virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
163 virtual bool PreNotify(NotifyEvent& rNEvt) override;
165 virtual void Modify();
167 SAL_DLLPRIVATE static bool IsCharInput( const KeyEvent& rKEvt );
169 virtual void SetModifyFlag();
171 void SetEchoChar( sal_Unicode c );
172 sal_Unicode GetEchoChar() const { return mcEchoChar; }
174 virtual void SetReadOnly( bool bReadOnly = true );
175 virtual bool IsReadOnly() const { return mbReadOnly; }
177 SAL_DLLPRIVATE void SetInsertMode( bool bInsert );
178 SAL_DLLPRIVATE bool IsInsertMode() const;
180 virtual void SetMaxTextLen( sal_Int32 nMaxLen );
181 virtual sal_Int32 GetMaxTextLen() const { return mnMaxTextLen; }
183 SAL_DLLPRIVATE void SetWidthInChars(sal_Int32 nWidthInChars);
184 sal_Int32 GetWidthInChars() const { return mnWidthInChars; }
186 SAL_DLLPRIVATE void setMaxWidthChars(sal_Int32 nWidth);
188 virtual void SetSelection( const Selection& rSelection );
189 virtual const Selection& GetSelection() const;
191 virtual void ReplaceSelected( const OUString& rStr );
192 virtual void DeleteSelected();
193 virtual OUString GetSelected() const;
195 virtual void Cut();
196 virtual void Copy();
197 virtual void Paste();
198 SAL_DLLPRIVATE void Undo();
200 virtual void SetText( const OUString& rStr ) override;
201 virtual void SetText( const OUString& rStr, const Selection& rNewSelection );
202 virtual OUString GetText() const override;
204 SAL_DLLPRIVATE void SetCursorAtLast();
206 SAL_DLLPRIVATE void SetPlaceholderText( const OUString& rStr );
208 void SaveValue() { maSaveValue = GetText(); }
209 const OUString& GetSavedValue() const { return maSaveValue; }
211 virtual void SetModifyHdl( const Link<Edit&,void>& rLink ) { maModifyHdl = rLink; }
212 virtual const Link<Edit&,void>& GetModifyHdl() const { return maModifyHdl; }
214 void SetActivateHdl(const Link<Edit&,bool>& rLink) { maActivateHdl = rLink; }
216 SAL_DLLPRIVATE void SetSubEdit( Edit* pEdit );
217 Edit* GetSubEdit() const { return mpSubEdit; }
219 void SetAutocompleteHdl( const Link<Edit&,void>& rLink ) { maAutocompleteHdl = rLink; }
220 const Link<Edit&,void>& GetAutocompleteHdl() const { return maAutocompleteHdl; }
222 virtual Size CalcMinimumSize() const;
223 virtual Size CalcMinimumSizeForText(const OUString &rString) const;
224 virtual Size GetOptimalSize() const override;
225 virtual Size CalcSize(sal_Int32 nChars) const;
226 sal_Int32 GetMaxVisChars() const;
228 // shows a warning box saying "text too long, truncated"
229 SAL_DLLPRIVATE static void ShowTruncationWarning(weld::Widget* pParent);
231 SAL_DLLPRIVATE VclPtr<PopupMenu> CreatePopupMenu();
233 virtual OUString GetSurroundingText() const override;
234 virtual Selection GetSurroundingTextSelection() const override;
235 virtual bool DeleteSurroundingText(const Selection& rSelection) override;
236 virtual bool set_property(const OUString &rKey, const OUString &rValue) override;
238 void SetTextFilter(TextFilter* pFilter) { mpFilterText = pFilter; }
240 virtual FactoryFunction GetUITestFactory() const override;
242 void SetForceControlBackground(bool b) { mbForceControlBackground = b; }
244 bool IsPassword() const { return mbPassword; }
246 virtual void DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) override;
249 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */