From 39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 31 Aug 2024 19:56:49 +0900 Subject: Rename remaining ntq[i-l]* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tqwidget.html | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'doc/html/tqwidget.html') diff --git a/doc/html/tqwidget.html b/doc/html/tqwidget.html index ef72e7b5e..b73011dae 100644 --- a/doc/html/tqwidget.html +++ b/doc/html/tqwidget.html @@ -1263,36 +1263,36 @@ See the "iconText" property for detail This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code.

-

void TQWidget::imComposeEvent ( TQIMEvent * e ) [virtual protected] +

void TQWidget::imComposeEvent ( TQIMEvent * e ) [virtual protected]

This event handler, for event e, can be reimplemented in a subclass to receive Input Method composition events. This handler is called when the user has entered some text using an Input Method.

The default implementation calls e->ignore(), which rejects the -Input Method event. See the TQIMEvent documentation for more +Input Method event. See the TQIMEvent documentation for more details. -

See also event() and TQIMEvent. +

See also event() and TQIMEvent. -

void TQWidget::imEndEvent ( TQIMEvent * e ) [virtual protected] +

void TQWidget::imEndEvent ( TQIMEvent * e ) [virtual protected]

This event handler, for event e, can be reimplemented in a subclass to receive Input Method composition events. This handler is called when the user has finished inputting text via an Input Method.

The default implementation calls e->ignore(), which rejects the -Input Method event. See the TQIMEvent documentation for more +Input Method event. See the TQIMEvent documentation for more details. -

See also event() and TQIMEvent. +

See also event() and TQIMEvent. -

void TQWidget::imStartEvent ( TQIMEvent * e ) [virtual protected] +

void TQWidget::imStartEvent ( TQIMEvent * e ) [virtual protected]

This event handler, for event e, can be reimplemented in a subclass to receive Input Method composition events. This handler is called when the user begins entering text using an Input Method.

The default implementation calls e->ignore(), which rejects the -Input Method event. See the TQIMEvent documentation for more +Input Method event. See the TQIMEvent documentation for more details. -

See also event() and TQIMEvent. +

See also event() and TQIMEvent.

bool TQWidget::isActiveWindow () const

Returns TRUE if this widget is the active window; otherwise returns FALSE. @@ -1375,14 +1375,14 @@ or they were to be moved. This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code.

This function is deprecated. It is equivalent to isVisible() -

void TQWidget::keyPressEvent ( TQKeyEvent * e ) [virtual protected] +

void TQWidget::keyPressEvent ( TQKeyEvent * e ) [virtual protected]

This event handler, for event e, can be reimplemented in a subclass to receive key press events for the widget.

A widget must call setFocusPolicy() to accept focus initially and have focus in order to receive a key press event.

If you reimplement this handler, it is very important that you -explicitly ignore the event +explicitly ignore the event if you do not understand it, so that the widget's parent can interpret it; otherwise, the event will be implicitly accepted. Although top-level widgets are able to choose whether to accept @@ -1391,11 +1391,11 @@ could otherwise handle them, it is good practice to explicitly ignore events to make widgets as reusable as possible.

The default implementation closes popup widgets if the user presses Esc. Otherwise the event is ignored. -

See also keyReleaseEvent(), TQKeyEvent::ignore(), focusPolicy, focusInEvent(), focusOutEvent(), event(), and TQKeyEvent. +

See also keyReleaseEvent(), TQKeyEvent::ignore(), focusPolicy, focusInEvent(), focusOutEvent(), event(), and TQKeyEvent.

Example: picture/picture.cpp.

Reimplemented in TQLineEdit and TQTextEdit. -

void TQWidget::keyReleaseEvent ( TQKeyEvent * e ) [virtual protected] +

void TQWidget::keyReleaseEvent ( TQKeyEvent * e ) [virtual protected]

This event handler, for event e, can be reimplemented in a subclass to receive key release events for the widget. @@ -1403,10 +1403,10 @@ subclass to receive key release events for the widget. initially and have focus in order to receive a key release event.

If you reimplement this handler, it is very important that you -ignore() the release if you do not +ignore() the release if you do not understand it, so that the widget's parent can interpret it.

The default implementation ignores the event. -

See also keyPressEvent(), TQKeyEvent::ignore(), focusPolicy, focusInEvent(), focusOutEvent(), event(), and TQKeyEvent. +

See also keyPressEvent(), TQKeyEvent::ignore(), focusPolicy, focusInEvent(), focusOutEvent(), event(), and TQKeyEvent.

TQWidget * TQWidget::keyboardGrabber () [static]

@@ -1921,7 +1921,7 @@ See the "cursor" property for details. Disables widget input events if disable is TRUE; otherwise enables input events.

See the enabled documentation for more information. -

See also isEnabledTo(), TQKeyEvent, TQMouseEvent, and enabledChange(). +

See also isEnabledTo(), TQKeyEvent, TQMouseEvent, and enabledChange().

void TQWidget::setEnabled ( bool ) [virtual slot]

Sets whether the widget is enabled. @@ -2040,7 +2040,7 @@ and your program doesn't keep up with key input, TQt may try to compress key events so that more than one character can be processed in each event.

For example, a word processor widget might receive 2, 3 or more -characters in each TQKeyEvent::text(), if the layout recalculation +characters in each TQKeyEvent::text(), if the layout recalculation takes too long for the CPU.

If a widget supports multiple character unicode input, it is always safe to turn the compression on. @@ -2051,7 +2051,7 @@ PrintScreen) will stop key event compression, even if there are more compressible key events available.

Not all platforms support this compression, in which case turning it on will have no effect. -

See also TQKeyEvent::text(). +

See also TQKeyEvent::text().

void TQWidget::setMask ( const TQBitmap & bitmap ) [virtual]

@@ -2706,7 +2706,7 @@ can reimplement the enabledChange() function.

Disabling a widget implicitly disables all its children. Enabling respectively enables all child widgets unless they have been explicitly disabled. -

See also enabled, isEnabledTo(), TQKeyEvent, TQMouseEvent, and enabledChange(). +

See also enabled, isEnabledTo(), TQKeyEvent, TQMouseEvent, and enabledChange().

Set this property's value with setEnabled() and get this property's value with isEnabled().

bool focus

-- cgit v1.2.1