diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-08 12:31:36 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-08 12:31:36 -0600 |
commit | d796c9dd933ab96ec83b9a634feedd5d32e1ba3f (patch) | |
tree | 6e3dcca4f77e20ec8966c666aac7c35bd4704053 /doc/html/qmotifwidget.html | |
download | tqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.tar.gz tqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.zip |
Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731
Diffstat (limited to 'doc/html/qmotifwidget.html')
-rw-r--r-- | doc/html/qmotifwidget.html | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/doc/html/qmotifwidget.html b/doc/html/qmotifwidget.html new file mode 100644 index 000000000..ac6b8d7c3 --- /dev/null +++ b/doc/html/qmotifwidget.html @@ -0,0 +1,115 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/extensions/motif/src/qmotifwidget.cpp:272 --> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> +<title>TQMotifWidget Class</title> +<style type="text/css"><!-- +fn { margin-left: 1cm; text-indent: -1cm; } +a:link { color: #004faf; text-decoration: none } +a:visited { color: #672967; text-decoration: none } +body { background: #ffffff; color: black; } +--></style> +</head> +<body> + +<table border="0" cellpadding="0" cellspacing="0" width="100%"> +<tr bgcolor="#E5E5E5"> +<td valign=center> + <a href="index.html"> +<font color="#004faf">Home</font></a> + | <a href="classes.html"> +<font color="#004faf">All Classes</font></a> + | <a href="mainclasses.html"> +<font color="#004faf">Main Classes</font></a> + | <a href="annotated.html"> +<font color="#004faf">Annotated</font></a> + | <a href="groups.html"> +<font color="#004faf">Grouped Classes</font></a> + | <a href="functions.html"> +<font color="#004faf">Functions</font></a> +</td> +<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>TQMotifWidget Class Reference</h1> + +<p>The TQMotifWidget class provides the TQWidget API for Xt/Motif widgets. +<a href="#details">More...</a> +<p>This class is part of the <b>TQt Motif Extension</b>. +<p><tt>#include <<a href="qmotifwidget-h.html">qmotifwidget.h</a>></tt> +<p>Inherits <a href="qwidget.html">TQWidget</a>. +<p><a href="qmotifwidget-members.html">List of all member functions.</a> +<h2>Public Members</h2> +<ul> +<li class=fn><a href="#TQMotifWidget"><b>TQMotifWidget</b></a> ( TQWidget * parent, WidgetClass widgetclass, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, WFlags flags = 0 )</li> +<li class=fn>virtual <a href="#~TQMotifWidget"><b>~TQMotifWidget</b></a> ()</li> +<li class=fn>Widget <a href="#motifWidget"><b>motifWidget</b></a> () const</li> +</ul> +<h2>Protected Members</h2> +<ul> +<li class=fn>virtual bool <b>x11Event</b> ( XEvent * event )</li> +</ul> +<hr><a name="details"></a><h2>Detailed Description</h2> +<p> This class is defined in the <b>TQt <a href="motif-extension.html#Motif">Motif</a> Extension</b>, which can be found in the <tt>qt/extensions</tt> directory. It is not included in the main TQt API. +<p> + +The TQMotifWidget class provides the <a href="qwidget.html">TQWidget</a> API for Xt/Motif widgets. + +<p> +<p> TQMotifWidget exists to provide a TQWidget that can act as a parent +for any Xt/Motif widget. Since the TQMotifWidget is a proper +TQWidget, it can be used as a top-level widget (e.g. 0 parent) or +as a child of any other TQWidget. Note: Since TQMotifWidget acts as +a parent for Xt/Motif widgets, you should not create TQWidgets with +a TQMotifWidget parent. +<p> An Xt/Motif widget with a top-level TQMotifWidget parent can begin +using the standard TQt dialogs and custom TQDialogs while keeping +the main Xt/Motif interface of the application. Using a +TQMotifWidget as the parent for the various TQDialogs will ensure +that modality and stacking works properly throughout the entire +application. +<p> Applications moving to TQt may have custom Xt/Motif widgets that +will take time to rewrite with TQt. Such applications can use +these custom widgets as TQMotifWidget with TQWidget parents. This +allows the application's interface to be replaced gradually. +<p> <b>Warning:</b> TQMotifWidget uses the X11 window ID of the Motif widget +directly, instead of creating its own. Because ot this, +<a href="qwidget.html#reparent">TQWidget::reparent</a>() will not work. This includes the functions +<a href="qwidget.html#showFullScreen">TQWidget::showFullScreen</a>() and <a href="qwidget.html#showNormal">TQWidget::showNormal</a>(), which use +TQWidget::reparent(). + +<hr><h2>Member Function Documentation</h2> +<h3 class=fn><a name="TQMotifWidget"></a>TQMotifWidget::TQMotifWidget ( <a href="qwidget.html">TQWidget</a> * parent, WidgetClass widgetclass, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, WFlags flags = 0 ) +</h3> +Creates a TQMotifWidget of the given <em>widgetclass</em> as a child of +<em>parent</em>, with the name <em>name</em> and widget flags <em>flags</em>. +<p> The <em>args</em> and <em>argcount</em> arguments are passed on to +XtCreateWidget. +<p> The <a href="#motifWidget">motifWidget</a>() function returns the resulting Xt/Motif widget. +This widget can be used as a parent for any other Xt/Motif widget. +<p> If <em>parent</em> is a TQMotifWidget, the Xt/Motif widget is created as +a child of the parent's motifWidget(). If \ parent is 0 or a +normal <a href="qwidget.html">TQWidget</a>, the Xt/Motif widget is created as a child of a +special TopLevelShell widget. Xt/Motif widgets can use this +special TopLevelShell parent as the parent for existing +Xt/Motif dialogs or TQMotifDialogs. + +<h3 class=fn><a name="~TQMotifWidget"></a>TQMotifWidget::~TQMotifWidget ()<tt> [virtual]</tt> +</h3> +Destroys the TQMotifWidget. The special TopLevelShell is also +destroyed, if it was created during construction. + +<h3 class=fn>Widget <a name="motifWidget"></a>TQMotifWidget::motifWidget () const +</h3> +Returns the embedded Xt/Motif widget. If a Shell widget was +created by the constructor, you can access it with XtParent(). + +<!-- eof --> +<hr><p> +This file is part of the <a href="index.html">TQt toolkit</a>. +Copyright © 1995-2007 +<a href="http://www.trolltech.com/">Trolltech</a>. All Rights Reserved.<p><address><hr><div align=center> +<table width=100% cellspacing=0 border=0><tr> +<td>Copyright © 2007 +<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a> +<td align=right><div align=right>TQt 3.3.8</div> +</table></div></address></body> +</html> |