summaryrefslogtreecommitdiffstats
path: root/doc/html/focus.html
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
commitea318d1431c89e647598c510c4245c6571aa5f46 (patch)
tree996d29b80c30d453dda86d1a23162d441628f169 /doc/html/focus.html
parentaaf89d4b48f69c9293feb187db26362e550b5561 (diff)
downloadtqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz
tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip
Update to latest tqt3 automated conversion
Diffstat (limited to 'doc/html/focus.html')
-rw-r--r--doc/html/focus.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/focus.html b/doc/html/focus.html
index f9456559..ed04ba41 100644
--- a/doc/html/focus.html
+++ b/doc/html/focus.html
@@ -68,11 +68,11 @@ keyboard focus to the next widget in a circular per-window list. Tab
moves focus along the circular list in one direction, Shift+Tab in the
other. The order in which Tab presses move from widget to widget is
called the tab order.
-<p> In TQt, this list is kept in the <a href="qfocusdata.html">TQFocusData</a> class. There is one
-<a href="qfocusdata.html">TQFocusData</a> object per window, and widgets automatically append
-themselves to the end of it when <a href="qwidget.html#setFocusPolicy">TQWidget::setFocusPolicy</a>() is
-called with an appropriate <a href="qwidget.html#FocusPolicy-enum">TQWidget::FocusPolicy</a>. You can customize
-the tab order using <a href="qwidget.html#setTabOrder">TQWidget::setTabOrder</a>(). (If you don't, Tab
+<p> In TQt, this list is kept in the <a href="ntqfocusdata.html">TQFocusData</a> class. There is one
+<a href="ntqfocusdata.html">TQFocusData</a> object per window, and widgets automatically append
+themselves to the end of it when <a href="ntqwidget.html#setFocusPolicy">TQWidget::setFocusPolicy</a>() is
+called with an appropriate <a href="ntqwidget.html#FocusPolicy-enum">TQWidget::FocusPolicy</a>. You can customize
+the tab order using <a href="ntqwidget.html#setTabOrder">TQWidget::setTabOrder</a>(). (If you don't, Tab
generally moves focus in the order of widget construction.) <a href="designer-manual.html">TQt Designer</a> provides a means of visually
changing the tab order.
<p> Since pressing Tab is so common, most widgets that can have focus
@@ -96,8 +96,8 @@ focus to this field.
<p> Another exception to Tab support is text-entry widgets that must
support the insertion of tabs; almost all text editors fall into this
class. TQt treats Control+Tab as Tab and Control+Shift+Tab as
-Shift+Tab, and such widgets can reimplement <a href="qwidget.html#event">TQWidget::event</a>() and
-handle Tab before calling <a href="qwidget.html#event">TQWidget::event</a>() to get normal processing of
+Shift+Tab, and such widgets can reimplement <a href="ntqwidget.html#event">TQWidget::event</a>() and
+handle Tab before calling <a href="ntqwidget.html#event">TQWidget::event</a>() to get normal processing of
all other keys. However, since some systems use Control+Tab for other
purposes, and many users aren't aware of Control+Tab anyway, this
isn't a complete solution.
@@ -120,14 +120,14 @@ it move to the 'B' button?
<p> We advise supporting click-to-focus for widgets that support text
entry, and to avoid it for most widgets where a mouse click has a
different effect. (For buttons, we also recommend adding a keyboard
-shortcut: <a href="qbutton.html">TQButton</a> and its subclasses make this very easy.)
-<p> In TQt, only the <a href="qwidget.html#setFocusPolicy">TQWidget::setFocusPolicy</a>() function affects
+shortcut: <a href="ntqbutton.html">TQButton</a> and its subclasses make this very easy.)
+<p> In TQt, only the <a href="ntqwidget.html#setFocusPolicy">TQWidget::setFocusPolicy</a>() function affects
click-to-focus.
<p> <h3> The user presses a keyboard shortcut.
</h3>
<a name="1-3"></a><p> It's not unusual for keyboard shortcuts to move the focus. This can
happen implicitly by opening modal dialogs, but also explicitly using
-focus accelerators such as those provided by <a href="qlabel.html#setBuddy">TQLabel::setBuddy</a>(), <a href="qgroupbox.html">TQGroupBox</a> and <a href="qtabbar.html">TQTabBar</a>.
+focus accelerators such as those provided by <a href="ntqlabel.html#setBuddy">TQLabel::setBuddy</a>(), <a href="ntqgroupbox.html">TQGroupBox</a> and <a href="ntqtabbar.html">TQTabBar</a>.
<p> We advise supporting shortcut focus for all widgets that the user may
want to jump to. For example, a tab dialog can have keyboard shortcuts
for each of its pages, so the user can press e.g. Alt+P to step to the
@@ -153,8 +153,8 @@ the window should receive the focus.
the last widget to have focus should regain it. TQt does this
automatically.
<p> If focus has never been in this window before and you know where focus
-should start out, call <a href="qwidget.html#setFocus">TQWidget::setFocus</a>() on the widget which
-should receive focus before you <a href="qwidget.html#show">TQWidget::show</a>() it. If you don't,
+should start out, call <a href="ntqwidget.html#setFocus">TQWidget::setFocus</a>() on the widget which
+should receive focus before you <a href="ntqwidget.html#show">TQWidget::show</a>() it. If you don't,
TQt will pick a suitable widget.
<p>
<!-- eof -->