summaryrefslogtreecommitdiffstats
path: root/koffice-i18n-nl/docs
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-09-23 12:51:00 +0900
committerMichele Calgaro <[email protected]>2023-09-27 11:49:21 +0900
commit6fcd754ef7fbb65a893f0f3a34ba4145e5bc2419 (patch)
tree0ad3c4fd770a499b57b3e192a639b7fb32cbe1cd /koffice-i18n-nl/docs
parent799c052006d15e5f3819b4b2c7c0a1768e3c86c0 (diff)
downloadkoffice-i18n-6fcd754ef7fbb65a893f0f3a34ba4145e5bc2419.tar.gz
koffice-i18n-6fcd754ef7fbb65a893f0f3a34ba4145e5bc2419.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 15ea930a6b722a37b80a0e2d79791efb95c2ac2c)
Diffstat (limited to 'koffice-i18n-nl/docs')
-rw-r--r--koffice-i18n-nl/docs/koffice/chalk/developers-plugins.docbook20
-rw-r--r--koffice-i18n-nl/docs/koffice/kugar/progguide.docbook52
2 files changed, 36 insertions, 36 deletions
diff --git a/koffice-i18n-nl/docs/koffice/chalk/developers-plugins.docbook b/koffice-i18n-nl/docs/koffice/chalk/developers-plugins.docbook
index 12d3168f..8b1a2628 100644
--- a/koffice-i18n-nl/docs/koffice/chalk/developers-plugins.docbook
+++ b/koffice-i18n-nl/docs/koffice/chalk/developers-plugins.docbook
@@ -301,7 +301,7 @@ class ToolStar : public KParts::Plugin
{
TQ_OBJECT
public:
- ToolStar(QObject *parent, const char *name, const QStringList &amp;);
+ ToolStar(TQObject *parent, const char *name, const QStringList &amp;);
virtual ~ToolStar();
};
@@ -325,7 +325,7 @@ typedef KGenericFactory&lt;ToolStar&gt; ToolStarFactory;
K_EXPORT_COMPONENT_FACTORY( chalktoolstar, ToolStarFactory( "chalk" ) )
-ToolStar::ToolStar(QObject *parent, const char *name, const QStringList &amp;)
+ToolStar::ToolStar(TQObject *parent, const char *name, const QStringList &amp;)
: KParts::Plugin(parent, name)
{
setInstance(ToolStarFactory::instance());
@@ -486,7 +486,7 @@ ToolStar::~ToolStar()
<listitem
><para
>color: a <classname
->QColor</classname
+>TQColor</classname
> representation of this channel for user interface visualization, for instance in histograms.</para
></listitem>
<listitem
@@ -522,7 +522,7 @@ ToolStar::~ToolStar()
> pure virtual classs can be divided into a number of groups: conversion, identification and manipulation. </para
><para
>All classes must be able to convert a pixel from and to 8 bit RGB (i.e., a <classname
->QColor</classname
+>TQColor</classname
>), and preferably also to and from 16 bit L*a*b. Additionally, there is a method to convert to any colorspace from the current colorspace. </para
><para
>Colorspaces are described by the <classname
@@ -810,7 +810,7 @@ public:
>The oilpaint filter uses the multi integer widget: </para>
<programlisting
->KisFilterConfigWidget * KisOilPaintFilter::createConfigurationWidget(QWidget* parent, KisPaintDeviceSP /*dev*/)
+>KisFilterConfigWidget * KisOilPaintFilter::createConfigurationWidget(TQWidget* parent, KisPaintDeviceSP /*dev*/)
{
vKisIntegerWidgetParam param;
param.push_back( KisIntegerWidgetParam( 1, 5, 1, i18n("Brush size"), "brushSize" ) );
@@ -818,7 +818,7 @@ public:
return new KisMultiIntegerFilterWidget(parent, id().id().ascii(), id().id().ascii(), param );
}
-KisFilterConfiguration* KisOilPaintFilter::configuration(QWidget* nwidget)
+KisFilterConfiguration* KisOilPaintFilter::configuration(TQWidget* nwidget)
{
KisMultiIntegerFilterWidget* widget = (KisMultiIntegerFilterWidget*) nwidget;
if( widget == 0 )
@@ -1158,9 +1158,9 @@ void KisToolStar::buttonRelease(KisButtonReleaseEvent *event)
> method is called to create the option widget that &chalk; will show in the tab. Since there is a tool per input device per view, the state of a tool can be kept in the tool. This method is only called once: the option widget is stored and retrieved the next time the tool is activated. </para>
<programlisting
->QWidget* KisToolStar::createOptionWidget(QWidget* parent)
+>TQWidget* KisToolStar::createOptionWidget(TQWidget* parent)
{
- QWidget *widget = KisToolShape::createOptionWidget(parent);
+ TQWidget *widget = KisToolShape::createOptionWidget(parent);
m_optWidget = new WdgToolStar(widget);
TQ_CHECK_PTR(m_optWidget);
@@ -1216,7 +1216,7 @@ void KisToolStar::buttonRelease(KisButtonReleaseEvent *event)
virtual KisPaintOp * createOp(const KisPaintOpSettings *settings, KisPainter * painter);
virtual KisID id() { return KisID("paintSmeary", i18n("Smeary Brush")); }
virtual bool userVisible(KisColorSpace * ) { return false; }
- virtual QString pixmap() { return ""; }
+ virtual TQString pixmap() { return ""; }
};
</programlisting>
@@ -1453,7 +1453,7 @@ X-TDE-Library=libchalkXXXexport
KisDoc * doc = dynamic_cast&lt;KisDoc*&gt;(m_chain -> outputDocument()); <co id="import2" />
KisView * view = static_cast&lt;KisView*&gt;(doc -> views().getFirst()); <co id="import3" />
- QString filename = m_chain -> inputFile(); <co id="import4" />
+ TQString filename = m_chain -> inputFile(); <co id="import4" />
if (!doc)
return KoFilter::CreationError;
diff --git a/koffice-i18n-nl/docs/koffice/kugar/progguide.docbook b/koffice-i18n-nl/docs/koffice/kugar/progguide.docbook
index c462c6d0..bac7baa3 100644
--- a/koffice-i18n-nl/docs/koffice/kugar/progguide.docbook
+++ b/koffice-i18n-nl/docs/koffice/kugar/progguide.docbook
@@ -236,7 +236,7 @@ this prolog
>setReportData</function
></funcdef
> <paramdef
->const QString &amp;<parameter
+>const TQString &amp;<parameter
>data_file_name</parameter
></paramdef
> </funcprototype>
@@ -253,7 +253,7 @@ this prolog
>setReportData</function
></funcdef
> <paramdef
->const QIODevice &amp;<parameter
+>const TQIODevice &amp;<parameter
>data_io_device</parameter
></paramdef
> </funcprototype>
@@ -261,9 +261,9 @@ this prolog
>Gebruik het bestand <replaceable
>data_io_device</replaceable
> als bron voor rapportgegevens. IO-device kan elke successor van de <classname
->QIODevice</classname
+>TQIODevice</classname
>-class zijn. Om bijvoorbeeld records direct uit een database te halen cre&euml;ert u een <classname
->QIODevice</classname
+>TQIODevice</classname
>-successor en herdefinieert u de benodigde functionaliteit. </funcsynopsisinfo>
</funcsynopsis>
@@ -274,7 +274,7 @@ this prolog
>setReportTemplate</function
></funcdef
> <paramdef
->const QString &amp;<parameter
+>const TQString &amp;<parameter
>template_file_name</parameter
></paramdef
> </funcprototype>
@@ -291,7 +291,7 @@ this prolog
>setReportTemplate</function
></funcdef
> <paramdef
->const QIODevice &amp;<parameter
+>const TQIODevice &amp;<parameter
>template_io_device</parameter
></paramdef
> </funcprototype>
@@ -299,8 +299,8 @@ this prolog
>Gebruik het bestand <replaceable
>template_io_device</replaceable
> als bron voor de rapportsjabloon. IO-device kan elke successor van de <classname
->QIODevice</classname
->-class zijn. Om bijvoorbeeld een rapportsjabloon vanaf een netwerk of uit een database te halen creëert u een QIODevice-successor en herdefinieert u de benodigde functionaliteit. </funcsynopsisinfo>
+>TQIODevice</classname
+>-class zijn. Om bijvoorbeeld een rapportsjabloon vanaf een netwerk of uit een database te halen creëert u een TQIODevice-successor en herdefinieert u de benodigde functionaliteit. </funcsynopsisinfo>
</funcsynopsis>
</sect1>
@@ -409,14 +409,14 @@ public:
KugarWidgetPlugin ();
QStringList keys () const;
- QWidget *create (const QString &amp; classname, QWidget * parent =
+ TQWidget *create (const TQString &amp; classname, TQWidget * parent =
0, const char *name = 0);
- QString group (const QString &amp;) const;
- QIconSet iconSet (const QString &amp;) const;
- QString includeFile (const QString &amp;) const;
- QString toolTip (const QString &amp;) const;
- QString whatsThis (const QString &amp;) const;
- bool isContainer (const QString &amp;) const;
+ TQString group (const TQString &amp;) const;
+ QIconSet iconSet (const TQString &amp;) const;
+ TQString includeFile (const TQString &amp;) const;
+ TQString toolTip (const TQString &amp;) const;
+ TQString whatsThis (const TQString &amp;) const;
+ bool isContainer (const TQString &amp;) const;
};
</programlisting>
</sect3>
@@ -594,7 +594,7 @@ QStringList KugarWidgetPlugin::keys () const
return list;
}
-QWidget* KugarWidgetPlugin::create (const QString &amp; key, QWidget * parent,
+TQWidget* KugarWidgetPlugin::create (const TQString &amp; key, TQWidget * parent,
const char *name)
{
if (key == "KReportViewer")
@@ -602,40 +602,40 @@ QWidget* KugarWidgetPlugin::create (const QString &amp; key, QWidget * parent,
return 0;
}
-QString KugarWidgetPlugin::group (const QString &amp; feature) const
+TQString KugarWidgetPlugin::group (const TQString &amp; feature) const
{
if (feature == "KReportViewer")
return "Display";
- return QString::null;
+ return TQString::null;
}
-QIconSet KugarWidgetPlugin::iconSet (const QString &amp;) const
+QIconSet KugarWidgetPlugin::iconSet (const TQString &amp;) const
{
return QIconSet (QPixmap (kugar_pixmap));
}
-QString KugarWidgetPlugin::includeFile (const QString &amp; feature) const
+TQString KugarWidgetPlugin::includeFile (const TQString &amp; feature) const
{
if (feature == "KReportViewer")
return "kugar.h";
- return QString::null;
+ return TQString::null;
}
-QString KugarWidgetPlugin::toolTip (const QString &amp; feature) const
+TQString KugarWidgetPlugin::toolTip (const TQString &amp; feature) const
{
if (feature == "KReportViewer")
return "Kugar report viewer widget";
- return QString::null;
+ return TQString::null;
}
-QString KugarWidgetPlugin::whatsThis (const QString &amp; feature) const
+TQString KugarWidgetPlugin::whatsThis (const TQString &amp; feature) const
{
if (feature == "KReportViewer")
return "A widget to view xml reports";
- return QString::null;
+ return TQString::null;
}
-bool KugarWidgetPlugin::isContainer (const QString &amp;) const
+bool KugarWidgetPlugin::isContainer (const TQString &amp;) const
{
return FALSE;
}