From 88413aaa75cee53adc0477ebdb39f55f867e2a77 Mon Sep 17 00:00:00 2001 From: Mavridis Philippe Date: Thu, 4 Nov 2021 12:26:35 +0200 Subject: [PATCH] Added "renamed" signal to KEditListBox. This does not break the existing API, it only adds one new signal. Signed-off-by: Mavridis Philippe --- tdeui/keditlistbox.cpp | 2 ++ tdeui/keditlistbox.h | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/tdeui/keditlistbox.cpp b/tdeui/keditlistbox.cpp index bd7bb76b5..4b224ede0 100644 --- a/tdeui/keditlistbox.cpp +++ b/tdeui/keditlistbox.cpp @@ -174,10 +174,12 @@ void KEditListBox::typedSomething(const TQString& text) // of currentItem() ... like changing it or emitting signals ... // but TT disagree with me on this one (it's been that way since ages ... grrr) bool block = m_listBox->signalsBlocked(); + const TQString& oldText = currentText(); m_listBox->blockSignals( true ); m_listBox->changeItem(text, currentItem()); m_listBox->blockSignals( block ); emit changed(); + emit renamed(oldText, text); } } diff --git a/tdeui/keditlistbox.h b/tdeui/keditlistbox.h index 2bb8de6b8..4a00b0cb7 100644 --- a/tdeui/keditlistbox.h +++ b/tdeui/keditlistbox.h @@ -212,6 +212,12 @@ public: */ void removed( const TQString & text ); + /** + * This signal is emitted when the user renames a list item. + * @since R14.1.0 + */ + void renamed( const TQString &from, const TQString &to ); + protected slots: //the names should be self-explaining void moveItemUp();