diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-19 12:26:47 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-19 15:32:00 +0000 |
commit | 49cecd8b41cac29cc9642944eaae5b5f63a1bd46 (patch) | |
tree | 133343199ab3a5f06e7ea1b858a88125466bcc5a /include/vcl/vclmedit.hxx | |
parent | e77819f578b4b01314359380e6f115bacb9967f5 (diff) |
Related: fdo#74242 hook up a selection and caret change for multiline edits
a) split the textengine selection changed broadcast into a text selection changed
and text caret change event
b) handle both in existing places that handled the text selection event
c) listen for them in VclMultiLineEdit and translate to
VCLEVENT_EDIT_SELECTIONCHANGED VCLEVENT_EDIT_CARETCHANGED events
d) profit from the VCLEVENT_EDIT_SELECTIONCHANGED and
VCLEVENT_EDIT_CARETCHANGED handling in
accessibility/source/standard/vclxaccessibleedit.cxx for VCLXAccessibleEdits
Change-Id: I09187e76ae4eb189ee9469e388374154087faf80
Diffstat (limited to 'include/vcl/vclmedit.hxx')
-rw-r--r-- | include/vcl/vclmedit.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/vcl/vclmedit.hxx b/include/vcl/vclmedit.hxx index 83c50c68d409..097d9e862680 100644 --- a/include/vcl/vclmedit.hxx +++ b/include/vcl/vclmedit.hxx @@ -63,6 +63,8 @@ public: virtual ~VclMultiLineEdit(); + void SelectionChanged(); + void CaretChanged(); virtual void Modify(); virtual void UpdateData(); |