summaryrefslogtreecommitdiffstats
path: root/doc/html/tqkeysequence.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-09-09 14:57:42 +0900
committerMichele Calgaro <[email protected]>2024-09-12 18:58:18 +0900
commit6f57abfc9cd3acf1d648aee696947ac9216adb71 (patch)
tree4ae374b1ce01d388bca2249c5d903d79a6cb814f /doc/html/tqkeysequence.html
parent0582c90a9ed4b965629267713f51c0da7c38b39d (diff)
downloadtqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.tar.gz
tqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.zip
Rename remaining ntq[s-z]* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/tqkeysequence.html')
-rw-r--r--doc/html/tqkeysequence.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/tqkeysequence.html b/doc/html/tqkeysequence.html
index 011025548..0836d9790 100644
--- a/doc/html/tqkeysequence.html
+++ b/doc/html/tqkeysequence.html
@@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
by accelerators.
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="tqkeysequence-h.html">tqkeysequence.h</a>&gt;</tt>
-<p>Inherits <a href="ntqt.html">TQt</a>.
+<p>Inherits <a href="tqt.html">TQt</a>.
<p><a href="tqkeysequence-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
@@ -67,12 +67,12 @@ The TQKeySequence class encapsulates a key sequence as used
by accelerators.
<p>
<p> A key sequence consists of up to four keyboard codes, each
-optionally combined with modifiers, e.g. <a href="ntqt.html#Modifier-enum">SHIFT</a>, <a href="ntqt.html#Modifier-enum">CTRL</a>, <a href="ntqt.html#Modifier-enum">ALT</a>, <a href="ntqt.html#Modifier-enum">META</a>, or <a href="ntqt.html#Modifier-enum">UNICODE_ACCEL</a>. For example, <tt>CTRL + Key_P</tt>
+optionally combined with modifiers, e.g. <a href="tqt.html#Modifier-enum">SHIFT</a>, <a href="tqt.html#Modifier-enum">CTRL</a>, <a href="tqt.html#Modifier-enum">ALT</a>, <a href="tqt.html#Modifier-enum">META</a>, or <a href="tqt.html#Modifier-enum">UNICODE_ACCEL</a>. For example, <tt>CTRL + Key_P</tt>
might be a sequence used as a shortcut for printing a document.
The key codes are listed in <a href="tqnamespace-h.html">tqnamespace.h</a>. As an alternative,
-use <a href="ntqt.html#Modifier-enum">UNICODE_ACCEL</a> with the unicode code point of the character.
+use <a href="tqt.html#Modifier-enum">UNICODE_ACCEL</a> with the unicode code point of the character.
For example, <tt>UNICODE_ACCEL + 'A'</tt> gives the same key sequence
-as <a href="ntqt.html#Key-enum">Key_A</a>.
+as <a href="tqt.html#Key-enum">Key_A</a>.
<p> Key sequences can be constructed either from an integer key code,
or from a human readable translatable string such as
"Ctrl+X,Alt+Space". A key sequence can be cast to a <a href="tqstring.html">TQString</a> to
@@ -109,14 +109,14 @@ necessary, but it provides some context for the human translator.
</h3>
Constructs a key sequence that has a single <em>key</em>.
<p> The key codes are listed in <a href="tqnamespace-h.html">tqnamespace.h</a> and can be
-combined with modifiers, e.g. with <a href="ntqt.html#Modifier-enum">SHIFT</a>, <a href="ntqt.html#Modifier-enum">CTRL</a>, <a href="ntqt.html#Modifier-enum">ALT</a>, <a href="ntqt.html#Modifier-enum">META</a> or <a href="ntqt.html#Modifier-enum">UNICODE_ACCEL</a>.
+combined with modifiers, e.g. with <a href="tqt.html#Modifier-enum">SHIFT</a>, <a href="tqt.html#Modifier-enum">CTRL</a>, <a href="tqt.html#Modifier-enum">ALT</a>, <a href="tqt.html#Modifier-enum">META</a> or <a href="tqt.html#Modifier-enum">UNICODE_ACCEL</a>.
<h3 class=fn><a name="TQKeySequence-4"></a>TQKeySequence::TQKeySequence ( int&nbsp;k1, int&nbsp;k2, int&nbsp;k3 = 0, int&nbsp;k4 = 0 )
</h3>
Constructs a key sequence with up to 4 keys <em>k1</em>, <em>k2</em>,
<em>k3</em> and <em>k4</em>.
<p> The key codes are listed in <a href="tqnamespace-h.html">tqnamespace.h</a> and can be
-combined with modifiers, e.g. with <a href="ntqt.html#Modifier-enum">SHIFT</a>, <a href="ntqt.html#Modifier-enum">CTRL</a>, <a href="ntqt.html#Modifier-enum">ALT</a>, <a href="ntqt.html#Modifier-enum">META</a> or <a href="ntqt.html#Modifier-enum">UNICODE_ACCEL</a>.
+combined with modifiers, e.g. with <a href="tqt.html#Modifier-enum">SHIFT</a>, <a href="tqt.html#Modifier-enum">CTRL</a>, <a href="tqt.html#Modifier-enum">ALT</a>, <a href="tqt.html#Modifier-enum">META</a> or <a href="tqt.html#Modifier-enum">UNICODE_ACCEL</a>.
<h3 class=fn><a name="TQKeySequence-5"></a>TQKeySequence::TQKeySequence ( const&nbsp;<a href="tqkeysequence.html">TQKeySequence</a>&nbsp;&amp;&nbsp;keysequence )
</h3>
@@ -136,12 +136,12 @@ The maximum is 4.
Returns TRUE if the key sequence is empty; otherwise returns
FALSE.
-<h3 class=fn><a href="ntqt.html#SequenceMatch-enum">TQt::SequenceMatch</a> <a name="matches"></a>TQKeySequence::matches ( const&nbsp;<a href="tqkeysequence.html">TQKeySequence</a>&nbsp;&amp;&nbsp;seq ) const
+<h3 class=fn><a href="tqt.html#SequenceMatch-enum">TQt::SequenceMatch</a> <a name="matches"></a>TQKeySequence::matches ( const&nbsp;<a href="tqkeysequence.html">TQKeySequence</a>&nbsp;&amp;&nbsp;seq ) const
</h3>
-Matches the sequence with <em>seq</em>. Returns <a href="ntqt.html#SequenceMatch-enum">TQt::Identical</a> if
-successful, <a href="ntqt.html#SequenceMatch-enum">TQt::PartialMatch</a> for matching but incomplete <em>seq</em>,
-and <a href="ntqt.html#SequenceMatch-enum">TQt::NoMatch</a> if the sequences have nothing in common.
-Returns <a href="ntqt.html#SequenceMatch-enum">TQt::NoMatch</a> if <em>seq</em> is shorter.
+Matches the sequence with <em>seq</em>. Returns <a href="tqt.html#SequenceMatch-enum">TQt::Identical</a> if
+successful, <a href="tqt.html#SequenceMatch-enum">TQt::PartialMatch</a> for matching but incomplete <em>seq</em>,
+and <a href="tqt.html#SequenceMatch-enum">TQt::NoMatch</a> if the sequences have nothing in common.
+Returns <a href="tqt.html#SequenceMatch-enum">TQt::NoMatch</a> if <em>seq</em> is shorter.
<h3 class=fn><a name="operator-TQString"></a>TQKeySequence::operator TQString () const
</h3>