diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
commit | dcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch) | |
tree | d57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/tqkeyevent.html | |
parent | 649c4c61a1f1f479f4532b196f68df476cef2680 (diff) | |
download | tqt-rename/true-false-4.tar.gz tqt-rename/true-false-4.zip |
Replace TRUE/FALSE with boolean values true/false - part 4rename/true-false-4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqkeyevent.html')
-rw-r--r-- | doc/html/tqkeyevent.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/tqkeyevent.html b/doc/html/tqkeyevent.html index d9960e6db..58aae0b0b 100644 --- a/doc/html/tqkeyevent.html +++ b/doc/html/tqkeyevent.html @@ -37,7 +37,7 @@ body { background: #ffffff; color: black; } <p><a href="tqkeyevent-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> -<li class=fn><a href="#TQKeyEvent"><b>TQKeyEvent</b></a> ( Type type, int key, int ascii, int state, const TQString & text = TQString::null, bool autorep = FALSE, ushort count = 1 )</li> +<li class=fn><a href="#TQKeyEvent"><b>TQKeyEvent</b></a> ( Type type, int key, int ascii, int state, const TQString & text = TQString::null, bool autorep = false, ushort count = 1 )</li> <li class=fn>int <a href="#key"><b>key</b></a> () const</li> <li class=fn>int <a href="#ascii"><b>ascii</b></a> () const</li> <li class=fn>ButtonState <a href="#state"><b>state</b></a> () const</li> @@ -70,7 +70,7 @@ mouse and keyboard events for a widget. <p> <p>See also <a href="tqfocusevent.html">TQFocusEvent</a>, <a href="tqwidget.html#grabKeyboard">TQWidget::grabKeyboard</a>(), and <a href="events.html">Event Classes</a>. <hr><h2>Member Function Documentation</h2> -<h3 class=fn><a name="TQKeyEvent"></a>TQKeyEvent::TQKeyEvent ( <a href="tqevent.html#Type-enum">Type</a> type, int key, int ascii, int state, const <a href="tqstring.html">TQString</a> & text = TQString::null, bool autorep = FALSE, ushort count = 1 ) +<h3 class=fn><a name="TQKeyEvent"></a>TQKeyEvent::TQKeyEvent ( <a href="tqevent.html#Type-enum">Type</a> type, int key, int ascii, int state, const <a href="tqstring.html">TQString</a> & text = TQString::null, bool autorep = false, ushort count = 1 ) </h3> <p> Constructs a key event object. @@ -78,9 +78,9 @@ mouse and keyboard events for a widget. known key (e.g. it may be the result of a compose sequence or keyboard macro). <em>ascii</em> is the ASCII code of the key that was pressed or released. <em>state</em> holds the keyboard modifiers. <em>text</em> is the Unicode text that the key generated. If <em>autorep</em> is -TRUE, <a href="#isAutoRepeat">isAutoRepeat</a>() will be TRUE. <em>count</em> is the number of +true, <a href="#isAutoRepeat">isAutoRepeat</a>() will be true. <em>count</em> is the number of single keys. -<p> The accept flag is set to TRUE. +<p> The accept flag is set to true. <h3 class=fn>void <a name="accept"></a>TQKeyEvent::accept () </h3> @@ -120,17 +120,17 @@ parent widget. <h3 class=fn>bool <a name="isAccepted"></a>TQKeyEvent::isAccepted () const </h3> -<p> Returns TRUE if the receiver of the event wants to keep the key; -otherwise returns FALSE +<p> Returns true if the receiver of the event wants to keep the key; +otherwise returns false <h3 class=fn>bool <a name="isAutoRepeat"></a>TQKeyEvent::isAutoRepeat () const </h3> -<p> Returns TRUE if this event comes from an auto-repeating key and -FALSE if it comes from an initial key press. +<p> Returns true if this event comes from an auto-repeating key and +false if it comes from an initial key press. <p> Note that if the event is a multiple-key compressed event that is -partly due to auto-repeat, this function could return either TRUE -or FALSE indeterminately. +partly due to auto-repeat, this function could return either true +or false indeterminately. <h3 class=fn>int <a name="key"></a>TQKeyEvent::key () const </h3> |