diff options
Diffstat (limited to 'doc/html/qnpwidget.html')
-rw-r--r-- | doc/html/qnpwidget.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/qnpwidget.html b/doc/html/qnpwidget.html index 6c9ef703c..501776a1c 100644 --- a/doc/html/qnpwidget.html +++ b/doc/html/qnpwidget.html @@ -35,7 +35,7 @@ body { background: #ffffff; color: black; } <a href="#details">More...</a> <p>This class is part of the <b>TQt Netscape Extension</b>. <p><tt>#include <<a href="qnp-h.html">ntqnp.h</a>></tt> -<p>Inherits <a href="ntqwidget.html">TQWidget</a>. +<p>Inherits <a href="tqwidget.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="ntqwidget.html">TQWidget</a> that is a web browser plugin window. +The TQNPWidget class provides a <a href="tqwidget.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="ntqwidget.html">TQWidget</a>* child; + <a href="tqwidget.html">TQWidget</a>* child; public: MyPluginWindow() { @@ -69,16 +69,16 @@ public: child = new MyIndependentlyDevelopedWidget(); // Use the background color of the web page - child-><a href="ntqwidget.html#setBackgroundColor">setBackgroundColor</a>( <a href="ntqwidget.html#backgroundColor">backgroundColor</a>() ); + child-><a href="tqwidget.html#setBackgroundColor">setBackgroundColor</a>( <a href="tqwidget.html#backgroundColor">backgroundColor</a>() ); // Fill the plugin widget - child-><a href="ntqwidget.html#setGeometry">setGeometry</a>( 0, 0, width(), height() ); + child-><a href="tqwidget.html#setGeometry">setGeometry</a>( 0, 0, width(), height() ); } void resizeEvent(TQResizeEvent*) { // Fill the plugin widget - child-><a href="ntqwidget.html#resize">resize</a>(<a href="ntqwidget.html#size">size</a>()); + child-><a href="tqwidget.html#resize">resize</a>(<a href="tqwidget.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="ntqwidget.html#winId">TQWidget::winId</a>() of the window when the window is resized, but +the <a href="tqwidget.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> |