summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqwidgetplugin.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:07:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:22:42 +0900
commit8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch)
treeb95884617b9a37accc843676d5d42be4116a3f54 /doc/man/man3/tqwidgetplugin.3qt
parent68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff)
downloadtqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz
tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqwidgetplugin.3qt')
-rw-r--r--doc/man/man3/tqwidgetplugin.3qt38
1 files changed, 19 insertions, 19 deletions
diff --git a/doc/man/man3/tqwidgetplugin.3qt b/doc/man/man3/tqwidgetplugin.3qt
index 2f263c84..062f6b1b 100644
--- a/doc/man/man3/tqwidgetplugin.3qt
+++ b/doc/man/man3/tqwidgetplugin.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QWidgetPlugin 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQWidgetPlugin 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,17 +7,17 @@
.ad l
.nh
.SH NAME
-QWidgetPlugin \- Abstract base for custom TQWidget plugins
+TQWidgetPlugin \- Abstract base for custom TQWidget plugins
.SH SYNOPSIS
-\fC#include <ntqwidgetplugin.h>\fR
+\fC#include <tqwidgetplugin.h>\fR
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQWidgetPlugin\fR ()"
+.BI "\fBTQWidgetPlugin\fR ()"
.br
.ti -1c
-.BI "\fB~QWidgetPlugin\fR ()"
+.BI "\fB~TQWidgetPlugin\fR ()"
.br
.ti -1c
.BI "virtual QStringList \fBkeys\fR () const = 0"
@@ -45,61 +45,61 @@ QWidgetPlugin \- Abstract base for custom TQWidget plugins
.br
.in -1c
.SH DESCRIPTION
-The QWidgetPlugin class provides an abstract base for custom TQWidget plugins.
+The TQWidgetPlugin class provides an abstract base for custom TQWidget plugins.
.PP
The widget plugin is a simple plugin interface that makes it easy to create custom widgets that can be included in forms using TQt Designer and used by applications.
.PP
Writing a widget plugin is achieved by subclassing this base class, reimplementing the pure virtual functions keys(), create(), group(), iconSet(), includeFile(), toolTip(), whatsThis() and isContainer(), and exporting the class with the \fCQ_EXPORT_PLUGIN\fR macro.
.PP
-See the TQt Designer manual's, 'Creating Custom Widgets' section in the 'Creating Custom Widgets' chapter, for a complete example of a QWidgetPlugin.
+See the TQt Designer manual's, 'Creating Custom Widgets' section in the 'Creating Custom Widgets' chapter, for a complete example of a TQWidgetPlugin.
.PP
-See also the Plugins documentation and the QWidgetFactory class that is supplied with TQt Designer.
+See also the Plugins documentation and the TQWidgetFactory class that is supplied with TQt Designer.
.PP
See also Plugins.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QWidgetPlugin::QWidgetPlugin ()"
+.SH "TQWidgetPlugin::TQWidgetPlugin ()"
Constructs a widget plugin. This is invoked automatically by the \fCQ_EXPORT_PLUGIN\fR macro.
-.SH "QWidgetPlugin::~QWidgetPlugin ()"
+.SH "TQWidgetPlugin::~TQWidgetPlugin ()"
Destroys the widget plugin.
.PP
You never have to call this explicitly. TQt destroys a plugin automatically when it is no longer used.
-.SH "TQWidget * QWidgetPlugin::create ( const TQString & key, TQWidget * parent = 0, const char * name = 0 )\fC [pure virtual]\fR"
+.SH "TQWidget * TQWidgetPlugin::create ( const TQString & key, TQWidget * parent = 0, const char * name = 0 )\fC [pure virtual]\fR"
Creates and returns a TQWidget object for the widget key \fIkey\fR. The widget key is the class name of the required widget. The \fIname\fR and \fIparent\fR arguments are passed to the custom widget's constructor.
.PP
See also keys().
-.SH "TQString QWidgetPlugin::group ( const TQString & key ) const\fC [virtual]\fR"
+.SH "TQString TQWidgetPlugin::group ( const TQString & key ) const\fC [virtual]\fR"
Returns the group (toolbar name) that the custom widget of class \fIkey\fR should be part of when \fIQt Designer\fR loads it.
.PP
The default implementation returns TQString::null.
-.SH "QIconSet QWidgetPlugin::iconSet ( const TQString & key ) const\fC [virtual]\fR"
+.SH "QIconSet TQWidgetPlugin::iconSet ( const TQString & key ) const\fC [virtual]\fR"
Returns the iconset that \fIQt Designer\fR should use to represent the custom widget of class \fIkey\fR in the toolbar.
.PP
The default implementation returns an null iconset.
-.SH "TQString QWidgetPlugin::includeFile ( const TQString & key ) const\fC [virtual]\fR"
+.SH "TQString TQWidgetPlugin::includeFile ( const TQString & key ) const\fC [virtual]\fR"
Returns the name of the include file that \fIQt Designer\fR and \fCuic\fR should use to include the custom widget of class \fIkey\fR in generated code.
.PP
The default implementation returns TQString::null.
-.SH "bool QWidgetPlugin::isContainer ( const TQString & key ) const\fC [virtual]\fR"
+.SH "bool TQWidgetPlugin::isContainer ( const TQString & key ) const\fC [virtual]\fR"
Returns TRUE if the custom widget of class \fIkey\fR can contain other widgets, e.g. like QFrame; otherwise returns FALSE.
.PP
The default implementation returns FALSE.
-.SH "QStringList QWidgetPlugin::keys () const\fC [pure virtual]\fR"
+.SH "QStringList TQWidgetPlugin::keys () const\fC [pure virtual]\fR"
Returns the list of widget keys this plugin supports.
.PP
These keys must be the class names of the custom widgets that are implemented in the plugin.
.PP
See also create().
-.SH "TQString QWidgetPlugin::toolTip ( const TQString & key ) const\fC [virtual]\fR"
+.SH "TQString TQWidgetPlugin::toolTip ( const TQString & key ) const\fC [virtual]\fR"
Returns the text of the tooltip that \fIQt Designer\fR should use for the custom widget of class \fIkey\fR's toolbar button.
.PP
The default implementation returns TQString::null.
-.SH "TQString QWidgetPlugin::whatsThis ( const TQString & key ) const\fC [virtual]\fR"
+.SH "TQString TQWidgetPlugin::whatsThis ( const TQString & key ) const\fC [virtual]\fR"
Returns the text of the whatsThis text that \fIQt Designer\fR should use when the user requests whatsThis help for the custom widget of class \fIkey\fR.
.PP
The default implementation returns TQString::null.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqwidgetplugin.html
+.BR http://doc.trolltech.com/tqwidgetplugin.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the