summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqbuttongroup.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-12 22:02:11 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-12 22:02:11 +0900
commit42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch)
tree0928f4e01a3dcc0698b46c7608d8310e471bdb49 /doc/man/man3/tqbuttongroup.3qt
parentfef846914f8db6dc117e206ef913d519bf6bb33e (diff)
downloadtqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.tar.gz
tqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.zip
Rename more widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqbuttongroup.3qt')
-rw-r--r--doc/man/man3/tqbuttongroup.3qt70
1 files changed, 35 insertions, 35 deletions
diff --git a/doc/man/man3/tqbuttongroup.3qt b/doc/man/man3/tqbuttongroup.3qt
index da6fc1c13..1b80ed5c0 100644
--- a/doc/man/man3/tqbuttongroup.3qt
+++ b/doc/man/man3/tqbuttongroup.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QButtonGroup 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQButtonGroup 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,9 +7,9 @@
.ad l
.nh
.SH NAME
-QButtonGroup \- Organizes QButton widgets in a group
+TQButtonGroup \- Organizes TQButton widgets in a group
.SH SYNOPSIS
-\fC#include <ntqbuttongroup.h>\fR
+\fC#include <tqbuttongroup.h>\fR
.PP
Inherits QGroupBox.
.PP
@@ -18,16 +18,16 @@ Inherited by QHButtonGroup and QVButtonGroup.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQButtonGroup\fR ( TQWidget * parent = 0, const char * name = 0 )"
+.BI "\fBTQButtonGroup\fR ( TQWidget * parent = 0, const char * name = 0 )"
.br
.ti -1c
-.BI "\fBQButtonGroup\fR ( const TQString & title, TQWidget * parent = 0, const char * name = 0 )"
+.BI "\fBTQButtonGroup\fR ( const TQString & title, TQWidget * parent = 0, const char * name = 0 )"
.br
.ti -1c
-.BI "\fBQButtonGroup\fR ( int strips, Orientation orientation, TQWidget * parent = 0, const char * name = 0 )"
+.BI "\fBTQButtonGroup\fR ( int strips, Orientation orientation, TQWidget * parent = 0, const char * name = 0 )"
.br
.ti -1c
-.BI "\fBQButtonGroup\fR ( int strips, Orientation orientation, const TQString & title, TQWidget * parent = 0, const char * name = 0 )"
+.BI "\fBTQButtonGroup\fR ( int strips, Orientation orientation, const TQString & title, TQWidget * parent = 0, const char * name = 0 )"
.br
.ti -1c
.BI "bool \fBisExclusive\fR () const"
@@ -42,16 +42,16 @@ Inherited by QHButtonGroup and QVButtonGroup.
.BI "virtual void \fBsetRadioButtonExclusive\fR ( bool )"
.br
.ti -1c
-.BI "int \fBinsert\fR ( QButton * button, int id = -1 )"
+.BI "int \fBinsert\fR ( TQButton * button, int id = -1 )"
.br
.ti -1c
-.BI "void \fBremove\fR ( QButton * button )"
+.BI "void \fBremove\fR ( TQButton * button )"
.br
.ti -1c
-.BI "QButton * \fBfind\fR ( int id ) const"
+.BI "TQButton * \fBfind\fR ( int id ) const"
.br
.ti -1c
-.BI "int \fBid\fR ( QButton * button ) const"
+.BI "int \fBid\fR ( TQButton * button ) const"
.br
.ti -1c
.BI "int \fBcount\fR () const"
@@ -63,7 +63,7 @@ Inherited by QHButtonGroup and QVButtonGroup.
.BI "virtual void \fBmoveFocus\fR ( int key )"
.br
.ti -1c
-.BI "QButton * \fBselected\fR () const"
+.BI "TQButton * \fBselected\fR () const"
.br
.ti -1c
.BI "int \fBselectedId\fR () const"
@@ -94,7 +94,7 @@ Inherited by QHButtonGroup and QVButtonGroup.
.br
.in -1c
.SH DESCRIPTION
-The QButtonGroup widget organizes QButton widgets in a group.
+The TQButtonGroup widget organizes TQButton widgets in a group.
.PP
A button group widget makes it easier to deal with groups of buttons. Each button in a button group has a unique identifier. The button group emits a clicked() signal with this identifier when a button in the group is clicked. This makes a button group particularly useful when you have several similar buttons and want to connect all their clicked() signals to a single slot.
.PP
@@ -102,7 +102,7 @@ An exclusive button group switches off all toggle buttons except the one that wa
.PP
There are two ways of using a button group:
.TP
-The button group is the parent widget of a number of buttons, i.e. the button group is the parent argument in the button constructor. The buttons are assigned identifiers 0, 1, 2, etc., in the order they are created. A QButtonGroup can display a frame and a title because it inherits QGroupBox.
+The button group is the parent widget of a number of buttons, i.e. the button group is the parent argument in the button constructor. The buttons are assigned identifiers 0, 1, 2, etc., in the order they are created. A TQButtonGroup can display a frame and a title because it inherits QGroupBox.
.TP
The button group is an invisible widget and the contained buttons have some other parent widget. In this usage, each button must be manually inserted, using insert(), into the button group and given an identifier.
.PP
@@ -117,38 +117,38 @@ A button can be removed from the group with remove(). A pointer to a button with
.PP
See also TQPushButton, TQCheckBox, TQRadioButton, Widget Appearance and Style, Layout Management, and Organizers.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QButtonGroup::QButtonGroup ( TQWidget * parent = 0, const char * name = 0 )"
+.SH "TQButtonGroup::TQButtonGroup ( TQWidget * parent = 0, const char * name = 0 )"
Constructs a button group with no title.
.PP
The \fIparent\fR and \fIname\fR arguments are passed to the TQWidget constructor.
-.SH "QButtonGroup::QButtonGroup ( const TQString & title, TQWidget * parent = 0, const char * name = 0 )"
+.SH "TQButtonGroup::TQButtonGroup ( const TQString & title, TQWidget * parent = 0, const char * name = 0 )"
Constructs a button group with the title \fItitle\fR.
.PP
The \fIparent\fR and \fIname\fR arguments are passed to the TQWidget constructor.
-.SH "QButtonGroup::QButtonGroup ( int strips, Orientation orientation, TQWidget * parent = 0, const char * name = 0 )"
+.SH "TQButtonGroup::TQButtonGroup ( int strips, Orientation orientation, TQWidget * parent = 0, const char * name = 0 )"
Constructs a button group with no title. Child widgets will be arranged in \fIstrips\fR rows or columns (depending on \fIorientation\fR).
.PP
The \fIparent\fR and \fIname\fR arguments are passed to the TQWidget constructor.
-.SH "QButtonGroup::QButtonGroup ( int strips, Orientation orientation, const TQString & title, TQWidget * parent = 0, const char * name = 0 )"
+.SH "TQButtonGroup::TQButtonGroup ( int strips, Orientation orientation, const TQString & title, TQWidget * parent = 0, const char * name = 0 )"
Constructs a button group with title \fItitle\fR. Child widgets will be arranged in \fIstrips\fR rows or columns (depending on \fIorientation\fR).
.PP
The \fIparent\fR and \fIname\fR arguments are passed to the TQWidget constructor.
-.SH "void QButtonGroup::clicked ( int id )\fC [signal]\fR"
+.SH "void TQButtonGroup::clicked ( int id )\fC [signal]\fR"
This signal is emitted when a button in the group is clicked. The \fIid\fR argument is the button's identifier.
.PP
See also insert().
.PP
Examples:
.)l drawdemo/drawdemo.cpp and xform/xform.cpp.
-.SH "int QButtonGroup::count () const"
+.SH "int TQButtonGroup::count () const"
Returns the number of buttons in the group.
-.SH "QButton * QButtonGroup::find ( int id ) const"
+.SH "TQButton * TQButtonGroup::find ( int id ) const"
Returns the button with the specified identifier \fIid\fR, or 0 if the button was not found.
-.SH "int QButtonGroup::id ( QButton * button ) const"
+.SH "int TQButtonGroup::id ( TQButton * button ) const"
Returns the id of \fIbutton\fR, or -1 if \fIbutton\fR is not a member of this group.
.PP
See also selectedId.
-.SH "int QButtonGroup::insert ( QButton * button, int id = -1 )"
+.SH "int TQButtonGroup::insert ( TQButton * button, int id = -1 )"
Inserts the \fIbutton\fR with the identifier \fIid\fR into the button group. Returns the button identifier.
.PP
Buttons are normally inserted into a button group automatically by passing the button group as the parent when the button is constructed. So it is not necessary to manually insert buttons that have this button group as their parent widget. An exception is when you want custom identifiers instead of the default 0, 1, 2, etc., or if you want the buttons to have some other parent.
@@ -159,37 +159,37 @@ See also find(), remove(), and exclusive.
.PP
Examples:
.)l listbox/listbox.cpp and xform/xform.cpp.
-.SH "bool QButtonGroup::isExclusive () const"
+.SH "bool TQButtonGroup::isExclusive () const"
Returns TRUE if the button group is exclusive; otherwise returns FALSE. See the "exclusive" property for details.
-.SH "bool QButtonGroup::isRadioButtonExclusive () const"
+.SH "bool TQButtonGroup::isRadioButtonExclusive () const"
Returns TRUE if the radio buttons in the group are exclusive; otherwise returns FALSE. See the "radioButtonExclusive" property for details.
-.SH "void QButtonGroup::moveFocus ( int key )\fC [virtual]\fR"
+.SH "void TQButtonGroup::moveFocus ( int key )\fC [virtual]\fR"
Moves the keyboard focus according to \fIkey\fR, and if appropriate checks the new focus item.
.PP
This function does nothing unless the keyboard focus points to one of the button group members and \fIkey\fR is one of Key_Up, Key_Down, Key_Left and Key_Right.
-.SH "void QButtonGroup::pressed ( int id )\fC [signal]\fR"
+.SH "void TQButtonGroup::pressed ( int id )\fC [signal]\fR"
This signal is emitted when a button in the group is pressed. The \fIid\fR argument is the button's identifier.
.PP
See also insert().
-.SH "void QButtonGroup::released ( int id )\fC [signal]\fR"
+.SH "void TQButtonGroup::released ( int id )\fC [signal]\fR"
This signal is emitted when a button in the group is released. The \fIid\fR argument is the button's identifier.
.PP
See also insert().
-.SH "void QButtonGroup::remove ( QButton * button )"
+.SH "void TQButtonGroup::remove ( TQButton * button )"
Removes the \fIbutton\fR from the button group.
.PP
See also insert().
-.SH "QButton * QButtonGroup::selected () const"
+.SH "TQButton * TQButtonGroup::selected () const"
Returns the selected toggle button if exactly one is selected; otherwise returns 0.
.PP
See also selectedId.
-.SH "int QButtonGroup::selectedId () const"
+.SH "int TQButtonGroup::selectedId () const"
Returns the selected toggle button. See the "selectedId" property for details.
-.SH "void QButtonGroup::setButton ( int id )\fC [virtual]\fR"
+.SH "void TQButtonGroup::setButton ( int id )\fC [virtual]\fR"
Sets the selected toggle button to \fIid\fR. See the "selectedId" property for details.
-.SH "void QButtonGroup::setExclusive ( bool )\fC [virtual]\fR"
+.SH "void TQButtonGroup::setExclusive ( bool )\fC [virtual]\fR"
Sets whether the button group is exclusive. See the "exclusive" property for details.
-.SH "void QButtonGroup::setRadioButtonExclusive ( bool )\fC [virtual]\fR"
+.SH "void TQButtonGroup::setRadioButtonExclusive ( bool )\fC [virtual]\fR"
Sets whether the radio buttons in the group are exclusive. See the "radioButtonExclusive" property for details.
.SS "Property Documentation"
.SH "bool exclusive"
@@ -218,7 +218,7 @@ See also selected().
Set this property's value with setButton() and get this property's value with selectedId().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqbuttongroup.html
+.BR http://doc.trolltech.com/tqbuttongroup.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the