From 397b7afa8e3f32268c4454bf4783ac2a5a799658 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 15 Oct 2024 13:05:33 +0900 Subject: Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tqcustomevent.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/tqcustomevent.html') diff --git a/doc/html/tqcustomevent.html b/doc/html/tqcustomevent.html index e29b1c0dd..f8626d291 100644 --- a/doc/html/tqcustomevent.html +++ b/doc/html/tqcustomevent.html @@ -49,8 +49,8 @@ The TQCustomEvent class provides support for custom events.

TQCustomEvent is a generic event class for user-defined events. User defined events can be sent to widgets or other TQObject -instances using TQApplication::postEvent() or -TQApplication::sendEvent(). Subclasses of TQObject can easily +instances using TQApplication::postEvent() or +TQApplication::sendEvent(). Subclasses of TQObject can easily receive custom events by implementing the TQObject::customEvent() event handler function.

TQCustomEvent objects should be created with a type ID that @@ -81,7 +81,7 @@ suitable for your event type. // To send an event of this custom event type: ColorChangeEvent* ce = new ColorChangeEvent( blue ); - TQApplication::postEvent( receiver, ce ); // TQt will delete it when done + TQApplication::postEvent( receiver, ce ); // TQt will delete it when done // To receive an event of this custom event type: @@ -94,7 +94,7 @@ suitable for your event type. } -

See also TQWidget::customEvent(), TQApplication::notify(), and Event Classes. +

See also TQWidget::customEvent(), TQApplication::notify(), and Event Classes.


Member Function Documentation

TQCustomEvent::TQCustomEvent ( int type ) -- cgit v1.2.1