Coverage Report

Created: 2026-03-31 11:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/include/vcl/toolkit/edit.hxx
Line
Count
Source
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
 * This file is part of the LibreOffice project.
4
 *
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/.
8
 *
9
 * This file incorporates work covered by the following license notice:
10
 *
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 .
18
 */
19
20
#pragma once
21
22
#if !defined(VCL_DLLIMPLEMENTATION) && !defined(TOOLKIT_DLLIMPLEMENTATION) && !defined(VCL_INTERNALS)
23
#error "don't use this in new code"
24
#endif
25
26
#include <vcl/ctrl.hxx>
27
#include <vcl/textfilter.hxx>
28
29
#include <memory>
30
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>
37
38
namespace com::sun::star::i18n {
39
    class XBreakIterator;
40
    class XExtendedInputSequenceChecker;
41
}
42
namespace weld {
43
    class Widget;
44
}
45
46
class PopupMenu;
47
class VclBuilder;
48
struct DragDropInfo;
49
struct Impl_IMEInfos;
50
51
0
#define EDIT_NOLIMIT                SAL_MAX_INT32
52
53
class Timer;
54
55
class VCL_DLLPUBLIC Edit : public Control, public vcl::unohelper::DragAndDropClient
56
{
57
private:
58
    VclPtr<Edit>        mpSubEdit;
59
    TextFilter*         mpFilterText;
60
    std::unique_ptr<DragDropInfo, o3tl::default_delete<DragDropInfo>> 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;
85
86
    css::uno::Reference<css::i18n::XBreakIterator> mxBreakIterator;
87
    css::uno::Reference<css::i18n::XExtendedInputSequenceChecker> mxISC;
88
    rtl::Reference<vcl::unohelper::DragAndDropWrapper> mxDnDListener;
89
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();
116
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 );
127
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;
138
139
protected:
140
    SAL_DLLPRIVATE Edit(WindowType eType);
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;
146
147
    Edit( vcl::Window* pParent, WinBits nStyle = WB_BORDER );
148
    virtual ~Edit() override;
149
    virtual void dispose() override;
150
151
    virtual rtl::Reference<comphelper::OAccessible> CreateAccessible() override;
152
153
    virtual void        MouseButtonDown( const MouseEvent& rMEvt ) override;
154
    virtual void        MouseButtonUp( const MouseEvent& rMEvt ) override;
155
    virtual void        KeyInput( const KeyEvent& rKEvt ) override;
156
    virtual void        Paint( vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect ) override;
157
    virtual void        Resize() override;
158
    virtual void        Draw( OutputDevice* pDev, const Point& rPos, SystemTextColorFlags nFlags ) override;
159
    virtual void        GetFocus() override;
160
    virtual void        LoseFocus() override;
161
    virtual void        Tracking( const TrackingEvent& rTEvt ) override;
162
    virtual void        Command( const CommandEvent& rCEvt ) override;
163
    virtual void        StateChanged( StateChangedType nType ) override;
164
    virtual void        DataChanged( const DataChangedEvent& rDCEvt ) override;
165
    virtual bool        PreNotify(NotifyEvent& rNEvt) override;
166
167
    virtual void        Modify();
168
169
    SAL_DLLPRIVATE static bool IsCharInput( const KeyEvent& rKEvt );
170
171
    virtual void        SetModifyFlag();
172
173
    void                SetEchoChar( sal_Unicode c );
174
0
    sal_Unicode         GetEchoChar() const { return mcEchoChar; }
175
176
    virtual void        SetReadOnly( bool bReadOnly = true );
177
0
    virtual bool        IsReadOnly() const { return mbReadOnly; }
178
179
    SAL_DLLPRIVATE void SetInsertMode( bool bInsert );
180
    SAL_DLLPRIVATE bool IsInsertMode() const;
181
182
    virtual void        SetMaxTextLen( sal_Int32 nMaxLen );
183
0
    virtual sal_Int32   GetMaxTextLen() const { return mnMaxTextLen; }
184
185
    SAL_DLLPRIVATE void SetWidthInChars(sal_Int32 nWidthInChars);
186
0
    sal_Int32           GetWidthInChars() const { return mnWidthInChars; }
187
188
    SAL_DLLPRIVATE void setMaxWidthChars(sal_Int32 nWidth);
189
190
    virtual void        SetSelection( const Selection& rSelection );
191
    virtual const Selection&    GetSelection() const;
192
193
    virtual void        ReplaceSelected( const OUString& rStr );
194
    virtual void        DeleteSelected();
195
    virtual OUString    GetSelected() const;
196
197
    virtual void        Cut();
198
    virtual void        Copy();
199
    virtual void        Paste();
200
    SAL_DLLPRIVATE void Undo();
201
202
    virtual void        SetText( const OUString& rStr ) override;
203
    virtual void        SetText( const OUString& rStr, const Selection& rNewSelection );
204
    virtual OUString    GetText() const override;
205
206
    SAL_DLLPRIVATE void SetCursorAtLast();
207
208
    SAL_DLLPRIVATE void SetPlaceholderText( const OUString& rStr );
209
210
0
    void                SaveValue() { maSaveValue = GetText(); }
211
0
    const OUString&     GetSavedValue() const { return maSaveValue; }
212
213
0
    virtual void        SetModifyHdl( const Link<Edit&,void>& rLink ) { maModifyHdl = rLink; }
214
0
    virtual const Link<Edit&,void>& GetModifyHdl() const { return maModifyHdl; }
215
216
0
    void                SetActivateHdl(const Link<Edit&,bool>& rLink) { maActivateHdl = rLink; }
217
218
    SAL_DLLPRIVATE void SetSubEdit( Edit* pEdit );
219
0
    Edit*               GetSubEdit() const { return mpSubEdit; }
220
221
0
    void                SetAutocompleteHdl( const Link<Edit&,void>& rLink ) { maAutocompleteHdl = rLink; }
222
0
    const Link<Edit&,void>& GetAutocompleteHdl() const { return maAutocompleteHdl; }
223
224
    virtual Size        CalcMinimumSize() const;
225
    virtual Size        CalcMinimumSizeForText(const OUString &rString) const;
226
    virtual Size        GetOptimalSize() const override;
227
    virtual Size        CalcSize(sal_Int32 nChars) const;
228
    sal_Int32           GetMaxVisChars() const;
229
230
    // shows a warning box saying "text too long, truncated"
231
    SAL_DLLPRIVATE static void ShowTruncationWarning(weld::Widget* pParent);
232
233
    SAL_DLLPRIVATE VclPtr<PopupMenu>           CreatePopupMenu();
234
235
    virtual OUString GetSurroundingText() const override;
236
    virtual Selection GetSurroundingTextSelection() const override;
237
    virtual bool DeleteSurroundingText(const Selection& rSelection) override;
238
    virtual bool set_property(const OUString &rKey, const OUString &rValue) override;
239
240
0
    void SetTextFilter(TextFilter* pFilter) { mpFilterText = pFilter; }
241
242
    virtual FactoryFunction GetUITestFactory() const override;
243
244
0
    void SetForceControlBackground(bool b) { mbForceControlBackground = b; }
245
246
0
    bool IsPassword() const { return mbPassword; }
247
248
0
    bool IsActivePopup() const { return mbActivePopup; }
249
250
    virtual void DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) override;
251
};
252
253
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */