diff options
author | Michele Calgaro <[email protected]> | 2024-08-25 15:36:25 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-08-29 22:23:36 +0900 |
commit | 0917fbb5387978eb7b2e2fd68bcb6beaa8c46505 (patch) | |
tree | 0ef68a6a92087957855c7607ac176821d10d049d /doc/man/man3/tqaccessibleinterface.3qt | |
parent | 7b1d2ad2df8cd011b487c43336aa67639fa359c9 (diff) | |
download | tqt3-0917fbb5387978eb7b2e2fd68bcb6beaa8c46505.tar.gz tqt3-0917fbb5387978eb7b2e2fd68bcb6beaa8c46505.zip |
Rename remaining ntq[a-c]* related files to equivalent tq* (except ntqapplication.h and ntqconfig.h)
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqaccessibleinterface.3qt')
-rw-r--r-- | doc/man/man3/tqaccessibleinterface.3qt | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/doc/man/man3/tqaccessibleinterface.3qt b/doc/man/man3/tqaccessibleinterface.3qt index d15314269..b5e5c71d5 100644 --- a/doc/man/man3/tqaccessibleinterface.3qt +++ b/doc/man/man3/tqaccessibleinterface.3qt @@ -1,5 +1,5 @@ '\" t -.TH QAccessibleInterface 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQAccessibleInterface 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. @@ -7,13 +7,13 @@ .ad l .nh .SH NAME -QAccessibleInterface \- Defines an interface that exposes information about accessible objects +TQAccessibleInterface \- Defines an interface that exposes information about accessible objects .SH SYNOPSIS -\fC#include <ntqaccessible.h>\fR +\fC#include <tqaccessible.h>\fR .PP -Inherits QAccessible. +Inherits TQAccessible. .PP -Inherited by QAccessibleObject. +Inherited by TQAccessibleObject. .PP .SS "Public Members" .in +1c @@ -24,10 +24,10 @@ Inherited by QAccessibleObject. .BI "virtual int \fBchildCount\fR () const = 0" .br .ti -1c -.BI "virtual QRESULT \fBqueryChild\fR ( int control, QAccessibleInterface ** iface ) const = 0" +.BI "virtual QRESULT \fBqueryChild\fR ( int control, TQAccessibleInterface ** iface ) const = 0" .br .ti -1c -.BI "virtual QRESULT \fBqueryParent\fR ( QAccessibleInterface ** iface ) const = 0" +.BI "virtual QRESULT \fBqueryParent\fR ( TQAccessibleInterface ** iface ) const = 0" .br .ti -1c .BI "virtual int \fBcontrolAt\fR ( int x, int y ) const = 0" @@ -67,75 +67,75 @@ Inherited by QAccessibleObject. .br .in -1c .SH DESCRIPTION -The QAccessibleInterface class defines an interface that exposes information about accessible objects. +The TQAccessibleInterface class defines an interface that exposes information about accessible objects. .PP See also Miscellaneous Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "int QAccessibleInterface::childCount () const\fC [pure virtual]\fR" +.SH "int TQAccessibleInterface::childCount () const\fC [pure virtual]\fR" Returns the number of children that belong to this object. A child can provide accessibility information on it's own (e.g. a child widget), or be a sub-element of this accessible object. .PP All objects provide this information. .PP See also queryChild(). -.SH "void QAccessibleInterface::clearSelection ()\fC [pure virtual]\fR" +.SH "void TQAccessibleInterface::clearSelection ()\fC [pure virtual]\fR" Removes any selection from the object. .PP See also setSelected(). -.SH "int QAccessibleInterface::controlAt ( int x, int y ) const\fC [pure virtual]\fR" +.SH "int TQAccessibleInterface::controlAt ( int x, int y ) const\fC [pure virtual]\fR" Returns the ID of the child that contains the screen coordinates (\fIx\fR, \fIy\fR). This function returns 0 if the point is positioned on the object itself. If the tested point is outside the boundaries of the object this function returns -1. .PP All visual objects provide this information. -.SH "bool QAccessibleInterface::doDefaultAction ( int control )\fC [pure virtual]\fR" +.SH "bool TQAccessibleInterface::doDefaultAction ( int control )\fC [pure virtual]\fR" Calling this function performs the default action of the child object specified by \fIcontrol\fR, or the default action of the object itself if \fIcontrol\fR is 0. -.SH "bool QAccessibleInterface::isValid () const\fC [pure virtual]\fR" +.SH "bool TQAccessibleInterface::isValid () const\fC [pure virtual]\fR" Returns TRUE if all the data necessary to use this interface implementation is valid (e.g. all pointers are non-null), otherwise returns FALSE. -.SH "int QAccessibleInterface::navigate ( NavDirection direction, int startControl ) const\fC [pure virtual]\fR" +.SH "int TQAccessibleInterface::navigate ( NavDirection direction, int startControl ) const\fC [pure virtual]\fR" This function traverses to another object, or to a sub-element of the current object. \fIdirection\fR specifies in which direction to navigate, and \fIstartControl\fR specifies the start point of the navigation, which is either 0 if the navigation starts at the object itself, or an ID of one of the object's sub-elements. .PP The function returns the ID of the sub-element located in the \fIdirection\fR specified. If there is nothing in the navigated \fIdirection\fR, this function returns -1. .PP All objects support navigation. -.SH "QRESULT QAccessibleInterface::queryChild ( int control, QAccessibleInterface ** iface ) const\fC [pure virtual]\fR" -Sets \fIiface\fR to point to the implementation of the QAccessibleInterface for the child specified with \fIcontrol\fR. If the child doesn't provide accessibility information on it's own, the value of \fIiface\fR is set to 0. For those elements, this object is responsible for exposing the child's properties. +.SH "QRESULT TQAccessibleInterface::queryChild ( int control, TQAccessibleInterface ** iface ) const\fC [pure virtual]\fR" +Sets \fIiface\fR to point to the implementation of the TQAccessibleInterface for the child specified with \fIcontrol\fR. If the child doesn't provide accessibility information on it's own, the value of \fIiface\fR is set to 0. For those elements, this object is responsible for exposing the child's properties. .PP All objects provide this information. .PP See also childCount() and queryParent(). -.SH "QRESULT QAccessibleInterface::queryParent ( QAccessibleInterface ** iface ) const\fC [pure virtual]\fR" -Sets \fIiface\fR to point to the implementation of the QAccessibleInterface for the parent object, or to 0 if there is no such implementation or object. +.SH "QRESULT TQAccessibleInterface::queryParent ( TQAccessibleInterface ** iface ) const\fC [pure virtual]\fR" +Sets \fIiface\fR to point to the implementation of the TQAccessibleInterface for the parent object, or to 0 if there is no such implementation or object. .PP All objects provide this information. .PP See also queryChild(). -.SH "TQRect QAccessibleInterface::rect ( int control ) const\fC [pure virtual]\fR" +.SH "TQRect TQAccessibleInterface::rect ( int control ) const\fC [pure virtual]\fR" Returns the location of the child specified with \fIcontrol\fR in screen coordinates. This function returns the location of the object itself if \fIcontrol\fR is 0. .PP All visual objects provide this information. -.SH "Role QAccessibleInterface::role ( int control ) const\fC [pure virtual]\fR" +.SH "Role TQAccessibleInterface::role ( int control ) const\fC [pure virtual]\fR" Returns the role of the object if \fIcontrol\fR is 0, or the role of the object's sub-element with ID \fIcontrol\fR. The role of an object is usually static. All accessible objects have a role. .PP See also text(), state(), and selection(). -.SH "TQMemArray<int> QAccessibleInterface::selection () const\fC [pure virtual]\fR" +.SH "TQMemArray<int> TQAccessibleInterface::selection () const\fC [pure virtual]\fR" Returns the list of all the element IDs that are selected. .PP See also text(), role(), and state(). -.SH "bool QAccessibleInterface::setFocus ( int control )\fC [pure virtual]\fR" +.SH "bool TQAccessibleInterface::setFocus ( int control )\fC [pure virtual]\fR" Gives the focus to the child object specified by \fIcontrol\fR, or to the object itself if \fIcontrol\fR is 0. .PP Returns TRUE if the focus could be set; otherwise returns FALSE. -.SH "bool QAccessibleInterface::setSelected ( int control, bool on, bool extend )\fC [pure virtual]\fR" +.SH "bool TQAccessibleInterface::setSelected ( int control, bool on, bool extend )\fC [pure virtual]\fR" Sets the selection of the child object with ID \fIcontrol\fR to \fIon\fR. If \fIextend\fR is TRUE, all child elements between the focused item and the specified child object have their selection set to \fIon\fR. .PP Returns TRUE if the selection could be set; otherwise returns FALSE. .PP See also setFocus() and clearSelection(). -.SH "void QAccessibleInterface::setText ( Text t, int control, const TQString & text )\fC [pure virtual]\fR" +.SH "void TQAccessibleInterface::setText ( Text t, int control, const TQString & text )\fC [pure virtual]\fR" Sets the text property \fIt\fR of the child object \fIcontrol\fR to \fItext\fR. If \fIcontrol\fR is 0, the text property of the object itself is set. -.SH "State QAccessibleInterface::state ( int control ) const\fC [pure virtual]\fR" +.SH "State TQAccessibleInterface::state ( int control ) const\fC [pure virtual]\fR" Returns the current state of the object if \fIcontrol\fR is 0, or the state of the object's sub-element element with ID \fIcontrol\fR. All objects have a state. .PP See also text(), role(), and selection(). -.SH "TQString QAccessibleInterface::text ( Text t, int control ) const\fC [pure virtual]\fR" +.SH "TQString TQAccessibleInterface::text ( Text t, int control ) const\fC [pure virtual]\fR" Returns a string property \fIt\fR of the child object specified by \fIcontrol\fR, or the string property of the object itself if \fIcontrol\fR is 0. .PP The \fIName\fR is a string used by clients to identify, find or announce an accessible object for the user. All objects must have a name that is unique within their container. @@ -153,7 +153,7 @@ The accelerator is a keyboard shortcut that activates the default action of the See also role(), state(), and selection(). .SH "SEE ALSO" -.BR http://doc.trolltech.com/qaccessibleinterface.html +.BR http://doc.trolltech.com/tqaccessibleinterface.html .BR http://www.trolltech.com/faq/tech.html .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the |