From 0cf411b09cf5d8970b873a338a69eae98d5ce5d8 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 8 Jun 2024 12:56:43 +0900 Subject: Rename text nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tqtextcodecplugin.html | 114 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 doc/html/tqtextcodecplugin.html (limited to 'doc/html/tqtextcodecplugin.html') diff --git a/doc/html/tqtextcodecplugin.html b/doc/html/tqtextcodecplugin.html new file mode 100644 index 000000000..274af80d5 --- /dev/null +++ b/doc/html/tqtextcodecplugin.html @@ -0,0 +1,114 @@ + + + + + +TQTextCodecPlugin Class + + + + + + + +
+ +Home + | +All Classes + | +Main Classes + | +Annotated + | +Grouped Classes + | +Functions +

TQTextCodecPlugin Class Reference

+ +

The TQTextCodecPlugin class provides an abstract base for custom TQTextCodec plugins. +More... +

All the functions in this class are reentrant when TQt is built with thread support.

+

#include <tqtextcodecplugin.h> +

List of all member functions. +

Public Members

+ +

Detailed Description

+ + +The TQTextCodecPlugin class provides an abstract base for custom TQTextCodec plugins. + + +

The text codec plugin is a simple plugin interface that makes it +easy to create custom text codecs that can be loaded dynamically +into applications. +

Writing a text codec plugin is achieved by subclassing this base +class, reimplementing the pure virtual functions names(), +createForName(), mibEnums() and createForMib(), and exporting the +class with the TQ_EXPORT_PLUGIN macro. See the TQt Plugins documentation for details. +

See the IANA + character-sets encoding file for more information on mime +names and mib enums. +

See also Plugins. + +


Member Function Documentation

+

TQTextCodecPlugin::TQTextCodecPlugin () +

+Constructs a text codec plugin. This is invoked automatically by +the TQ_EXPORT_PLUGIN macro. + +

TQTextCodecPlugin::~TQTextCodecPlugin () +

+Destroys the text codec plugin. +

You never have to call this explicitly. TQt destroys a plugin +automatically when it is no longer used. + +

TQTextCodec * TQTextCodecPlugin::createForMib ( int mib ) [pure virtual] +

+ +

Creates a TQTextCodec object for the mib enum mib. +

(See the + IANA character-sets encoding file for more information) +

See also mibEnums(). + +

TQTextCodec * TQTextCodecPlugin::createForName ( const TQString & name ) [pure virtual] +

+ +

Creates a TQTextCodec object for the codec called name. +

See also names(). + +

TQValueList<int> TQTextCodecPlugin::mibEnums () const [pure virtual] +

+ +

Returns the list of mib enums supported by this plugin. +

See also createForMib(). + +

TQStringList TQTextCodecPlugin::names () const [pure virtual] +

+ +

Returns the list of mime names supported by this plugin. +

See also createForName(). + + +


+This file is part of the TQt toolkit. +Copyright © 1995-2007 +Trolltech. All Rights Reserved.


+ +
Copyright © 2007 +TrolltechTrademarks +
TQt 3.3.8
+
+ -- cgit v1.2.3