diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-09-04 11:53:23 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-09-04 13:56:43 +0900 | 
| commit | 0582c90a9ed4b965629267713f51c0da7c38b39d (patch) | |
| tree | cae95e850081d0a7f2be6cef5837f43a28d53d2c /extensions/nsplugin | |
| parent | 39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1 (diff) | |
| download | tqt-0582c90a.tar.gz tqt-0582c90a.zip | |
Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'extensions/nsplugin')
| -rw-r--r-- | extensions/nsplugin/doc/index.doc | 10 | ||||
| -rw-r--r-- | extensions/nsplugin/examples/grapher/grapher.cpp | 4 | ||||
| -rw-r--r-- | extensions/nsplugin/examples/grapher/grapher.doc | 4 | ||||
| -rw-r--r-- | extensions/nsplugin/examples/trivial/trivial.cpp | 4 | ||||
| -rw-r--r-- | extensions/nsplugin/src/tqnp.cpp (renamed from extensions/nsplugin/src/qnp.cpp) | 10 | ||||
| -rw-r--r-- | extensions/nsplugin/src/tqnp.h (renamed from extensions/nsplugin/src/ntqnp.h) | 0 | ||||
| -rw-r--r-- | extensions/nsplugin/src/tqnp.pro (renamed from extensions/nsplugin/src/qnp.pro) | 8 | 
7 files changed, 20 insertions, 20 deletions
| diff --git a/extensions/nsplugin/doc/index.doc b/extensions/nsplugin/doc/index.doc index 50835de4d..0d7bd2139 100644 --- a/extensions/nsplugin/doc/index.doc +++ b/extensions/nsplugin/doc/index.doc @@ -23,10 +23,10 @@ protocol. Modern versions of MSIE do not support this protocol.  The Netscape Plugin Extension consists of the follow classes:  \list -\i \l QNPlugin -\i \l QNPInstance -\i \l QNPWidget -\i \l QNPStream +\i \l TQNPlugin +\i \l TQNPInstance +\i \l TQNPWidget +\i \l TQNPStream  \endlist  \section1 How-to @@ -48,7 +48,7 @@ The Netscape Plugin Extension consists of the follow classes:   \i Build the Netscape Plugin extension library, found in the  	\c{extensions/nsplugin/src} directory of your TQt distribution.  	This produces a static library to be linked with your plugin code. - \i Read the \link qnplugin.html plugin class documentation \endlink, and + \i Read the \link tqnplugin.html plugin class documentation \endlink, and  	examine the \link nsplugin-examples.html example plugins \endlink.   \i Do most of your development as a stand-alone TQt application - debugging  	Netscape Plugins is cumbersome.  You may want to use \c{signal(2)} diff --git a/extensions/nsplugin/examples/grapher/grapher.cpp b/extensions/nsplugin/examples/grapher/grapher.cpp index 22b79f20e..22f7d09d6 100644 --- a/extensions/nsplugin/examples/grapher/grapher.cpp +++ b/extensions/nsplugin/examples/grapher/grapher.cpp @@ -1,5 +1,5 @@  // Include TQt Netscape Plugin classes. -#include "ntqnp.h" +#include "tqnp.h"  // Include other TQt classes.  #include <tqpainter.h> @@ -9,7 +9,7 @@  #include <tqmenubar.h>  #include <tqpushbutton.h>  #include <tqptrlist.h> -#include <ntqmessagebox.h> +#include <tqmessagebox.h>  // Include some C library functions.  #include <math.h> diff --git a/extensions/nsplugin/examples/grapher/grapher.doc b/extensions/nsplugin/examples/grapher/grapher.doc index 752499b9e..af6189cc4 100644 --- a/extensions/nsplugin/examples/grapher/grapher.doc +++ b/extensions/nsplugin/examples/grapher/grapher.doc @@ -4,8 +4,8 @@    \title Grapher Plugin    This example graphs data from a simple text file.  It -  demonstrates the use of the QNPInstance::writeReady() -  and QNPInstance::write() functions. +  demonstrates the use of the TQNPInstance::writeReady() +  and TQNPInstance::write() functions.    To build the example, you must first build the    <a href=nsplugin.html>TQt Netscape Plugin Extension</a> library. diff --git a/extensions/nsplugin/examples/trivial/trivial.cpp b/extensions/nsplugin/examples/trivial/trivial.cpp index 043c333de..d2c57843d 100644 --- a/extensions/nsplugin/examples/trivial/trivial.cpp +++ b/extensions/nsplugin/examples/trivial/trivial.cpp @@ -1,7 +1,7 @@  // TQt stuff -#include "ntqnp.h" +#include "tqnp.h"  #include <tqpainter.h> -#include <ntqmessagebox.h> +#include <tqmessagebox.h>  class Trivial : public TQNPWidget {      TQ_OBJECT diff --git a/extensions/nsplugin/src/qnp.cpp b/extensions/nsplugin/src/tqnp.cpp index 455ebd638..cd373ad45 100644 --- a/extensions/nsplugin/src/qnp.cpp +++ b/extensions/nsplugin/src/tqnp.cpp @@ -77,7 +77,7 @@  #include <tqfile.h>  #include <tqpainter.h> -#include "ntqnp.h" +#include "tqnp.h"  #include <stdlib.h>		// Must be here for Borland C++  #include <stdio.h> @@ -751,7 +751,7 @@ BOOL   WINAPI   DllMain (HANDLE hInst,  /*! -    \class TQNPWidget ntqnp.h +    \class TQNPWidget tqnp.h      \brief The TQNPWidget class provides a TQWidget that is a web browser plugin window.      \extension Netscape Plugin @@ -871,7 +871,7 @@ TQNPInstance* TQNPWidget::instance()  /*! -    \class TQNPInstance ntqnp.h +    \class TQNPInstance tqnp.h      \brief The TQNPInstance class provides a TQObject that is a web browser plugin.      \extension Netscape Plugin @@ -1272,7 +1272,7 @@ void* TQNPInstance::getJavaPeer() const  /*! -    \class TQNPStream ntqnp.h +    \class TQNPStream tqnp.h      \brief The TQNPStream class provides a stream of data provided to a TQNPInstance by the browser.      \extension Netscape Plugin @@ -1422,7 +1422,7 @@ int TQNPStream::write( int len, void* buffer )  /*! -    \class TQNPlugin ntqnp.h +    \class TQNPlugin tqnp.h      \brief The TQNPlugin class provides the main factory for plugin objects.      \extension Netscape Plugin diff --git a/extensions/nsplugin/src/ntqnp.h b/extensions/nsplugin/src/tqnp.h index 3451afbb9..3451afbb9 100644 --- a/extensions/nsplugin/src/ntqnp.h +++ b/extensions/nsplugin/src/tqnp.h diff --git a/extensions/nsplugin/src/qnp.pro b/extensions/nsplugin/src/tqnp.pro index 60cc240e8..e2d3047cf 100644 --- a/extensions/nsplugin/src/qnp.pro +++ b/extensions/nsplugin/src/tqnp.pro @@ -1,14 +1,14 @@  TEMPLATE = lib -TARGET	 = qnp +TARGET	 = tqnp  CONFIG  -= dll  CONFIG  += qt x11 release staticlib  DESTDIR	 = ../../../lib  VERSION	 = 0.4 -SOURCES		= qnp.cpp -unix:HEADERS   += ntqnp.h -win32:HEADERS	= ../../../include/ntqnp.h +SOURCES		= tqnp.cpp +unix:HEADERS   += tqnp.h +win32:HEADERS	= ../../../include/tqnp.h  win32:LIBS     += -lqtmain  MOC_DIR		= .  DESTINCDIR	= ../../../include | 
