summaryrefslogtreecommitdiffstats
path: root/doc/html/qnpwidget.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qnpwidget.html')
-rw-r--r--doc/html/qnpwidget.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/qnpwidget.html b/doc/html/qnpwidget.html
index a11968cf..6c9ef703 100644
--- a/doc/html/qnpwidget.html
+++ b/doc/html/qnpwidget.html
@@ -34,8 +34,8 @@ body { background: #ffffff; color: black; }
<p>The TQNPWidget class provides a TQWidget that is a web browser plugin window.
<a href="#details">More...</a>
<p>This class is part of the <b>TQt Netscape Extension</b>.
-<p><tt>#include &lt;<a href="qnp-h.html">qnp.h</a>&gt;</tt>
-<p>Inherits <a href="qwidget.html">TQWidget</a>.
+<p><tt>#include &lt;<a href="qnp-h.html">ntqnp.h</a>&gt;</tt>
+<p>Inherits <a href="ntqwidget.html">TQWidget</a>.
<p><a href="qnpwidget-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
@@ -49,7 +49,7 @@ body { background: #ffffff; color: black; }
<p> This class is defined in the <b>TQt <a href="netscape-plugin.html#Netscape">Netscape</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 TQNPWidget class provides a <a href="qwidget.html">TQWidget</a> that is a web browser plugin window.
+The TQNPWidget class provides a <a href="ntqwidget.html">TQWidget</a> that is a web browser plugin window.
<p>
<p> Derive from TQNPWidget to create a widget that can be used as a
web browser plugin window, or create one and add child widgets.
@@ -61,7 +61,7 @@ plugin widget to use it as a browser plugin. The technique is:
<p> <pre>
class MyPluginWindow : public TQNPWidget
{
- <a href="qwidget.html">TQWidget</a>* child;
+ <a href="ntqwidget.html">TQWidget</a>* child;
public:
MyPluginWindow()
{
@@ -69,16 +69,16 @@ public:
child = new MyIndependentlyDevelopedWidget();
// Use the background color of the web page
- child-&gt;<a href="qwidget.html#setBackgroundColor">setBackgroundColor</a>( <a href="qwidget.html#backgroundColor">backgroundColor</a>() );
+ child-&gt;<a href="ntqwidget.html#setBackgroundColor">setBackgroundColor</a>( <a href="ntqwidget.html#backgroundColor">backgroundColor</a>() );
// Fill the plugin widget
- child-&gt;<a href="qwidget.html#setGeometry">setGeometry</a>( 0, 0, width(), height() );
+ child-&gt;<a href="ntqwidget.html#setGeometry">setGeometry</a>( 0, 0, width(), height() );
}
void resizeEvent(TQResizeEvent*)
{
// Fill the plugin widget
- child-&gt;<a href="qwidget.html#resize">resize</a>(<a href="qwidget.html#size">size</a>());
+ child-&gt;<a href="ntqwidget.html#resize">resize</a>(<a href="ntqwidget.html#size">size</a>());
}
};
</pre>
@@ -95,7 +95,7 @@ Creates a TQNPWidget.
Destroys the window. This will be called by the plugin binding
code when the window is no longer required. The web browser will
delete windows when they leave the page. The bindings will change
-the <a href="qwidget.html#winId">TQWidget::winId</a>() of the window when the window is resized, but
+the <a href="ntqwidget.html#winId">TQWidget::winId</a>() of the window when the window is resized, but
this should not affect normal widget behavior.
<h3 class=fn>void <a name="enterInstance"></a>TQNPWidget::enterInstance ()<tt> [virtual]</tt>