Replace Qt with TQt

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/63/head
Michele Calgaro 2 months ago
parent ea7a0b4d73
commit 7a7827396f
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -901,6 +901,7 @@
<item find="todays" replace="today's" /> <item find="todays" replace="today's" />
<item find="tommorrow" replace="tomorrow" /> <item find="tommorrow" replace="tomorrow" />
<item find="tonihgt" replace="tonight" /> <item find="tonihgt" replace="tonight" />
<item find="tqt" replace="TQt" />
<item find="tryed" replace="tried" /> <item find="tryed" replace="tried" />
<item find="twonship" replace="township" /> <item find="twonship" replace="township" />
<item find="unconciousness" replace="unconsciousness" /> <item find="unconciousness" replace="unconsciousness" />

@ -31,7 +31,7 @@ Shared pointers
Getter/setter Getter/setter
Chalk doesn't use Qt's properties -- yet. If you want to introduce use of Chalk doesn't use TQt's properties -- yet. If you want to introduce use of
properties, convert any and all classes in Chalk before committing. properties, convert any and all classes in Chalk before committing.
Getter/setters are named 'x() for getters and setX(int x) for setters. If you Getter/setters are named 'x() for getters and setX(int x) for setters. If you
@ -49,7 +49,7 @@ Class naming
Function naming Function naming
Functions should be named in camelBackedFashion, to conform to Qt's standards. Functions should be named in camelBackedFashion, to conform to TQt's standards.
If you encounter functions in c_style_like_this, feel free to rename. Also: If you encounter functions in c_style_like_this, feel free to rename. Also:
verbNoun -- i.e., rotateLayer, not layer_rotate. The latter is a true c-ism, verbNoun -- i.e., rotateLayer, not layer_rotate. The latter is a true c-ism,
introduced by a language that needs to prefix the 'class' name to every function introduced by a language that needs to prefix the 'class' name to every function
@ -90,4 +90,4 @@ Slots and signals
Prefix slots with slot and signals with sig: slotUpdateSelection, sigSelectionUpdated. Prefix slots with slot and signals with sig: slotUpdateSelection, sigSelectionUpdated.
Boudewijn Rempt Boudewijn Rempt

@ -247,7 +247,7 @@ too big to easily evaluate for me.
Advantages Advantages
- It is used in other Qt applications, like Julius - It is used in other TQt applications, like Julius
- Probably very good - Probably very good
Disadvantages Disadvantages

@ -91,7 +91,7 @@ User interface
ui ui
The dialogs appear to be created by hand, not with Qt The dialogs appear to be created by hand, not with TQt
Designer. Besides, many are inoperational. Designer. Besides, many are inoperational.
other other

@ -983,7 +983,7 @@ pixels in the brush." visibility="public" xmi.id="705" type="virtual KisAlphaMas
</UML:Class> </UML:Class>
<UML:Class stereotype="class" visibility="public" xmi.id="740" name="KisGuide" > <UML:Class stereotype="class" visibility="public" xmi.id="740" name="KisGuide" >
<UML:Operation visibility="public" xmi.id="745" type="" name="KisGuide" > <UML:Operation visibility="public" xmi.id="745" type="" name="KisGuide" >
<UML:Parameter visibility="private" xmi.id="746" value="" type="Qt :: Orientation" name="o" /> <UML:Parameter visibility="private" xmi.id="746" value="" type="TQt :: Orientation" name="o" />
</UML:Operation> </UML:Operation>
<UML:Operation visibility="public" xmi.id="747" type="bool" name="isSelected" /> <UML:Operation visibility="public" xmi.id="747" type="bool" name="isSelected" />
<UML:Operation visibility="public" xmi.id="748" type="double" name="position" /> <UML:Operation visibility="public" xmi.id="748" type="double" name="position" />
@ -1050,7 +1050,7 @@ pixels in the brush." visibility="public" xmi.id="705" type="virtual KisAlphaMas
<UML:Operation visibility="public" xmi.id="802" type="" name="KisGuideMgr" /> <UML:Operation visibility="public" xmi.id="802" type="" name="KisGuideMgr" />
<UML:Operation visibility="public" xmi.id="803" type="KisGuideSP" name="add" > <UML:Operation visibility="public" xmi.id="803" type="KisGuideSP" name="add" >
<UML:Parameter visibility="private" xmi.id="804" value="" type="double" name="pos" /> <UML:Parameter visibility="private" xmi.id="804" value="" type="double" name="pos" />
<UML:Parameter visibility="private" xmi.id="805" value="" type="Qt :: Orientation" name="o" /> <UML:Parameter visibility="private" xmi.id="805" value="" type="TQt :: Orientation" name="o" />
</UML:Operation> </UML:Operation>
<UML:Operation visibility="public" xmi.id="806" type="void" name="erase" > <UML:Operation visibility="public" xmi.id="806" type="void" name="erase" >
<UML:Parameter visibility="private" xmi.id="807" value="" type="QPaintDevice *" name="device" /> <UML:Parameter visibility="private" xmi.id="807" value="" type="QPaintDevice *" name="device" />

@ -1,7 +1,7 @@
The goal of this howto is to explain how to create a filter for chalk The goal of this howto is to explain how to create a filter for chalk
2) using Qt/Designer for the ConfigurationWidget 2) using TQt/Designer for the ConfigurationWidget
Just copy the following in a file named (for instance) myfiltercw.ui : Just copy the following in a file named (for instance) myfiltercw.ui :
<!DOCTYPE UI><UI version="3.3" stdsetdef="1"> <!DOCTYPE UI><UI version="3.3" stdsetdef="1">
@ -25,6 +25,6 @@ Just copy the following in a file named (for instance) myfiltercw.ui :
<layoutdefaults spacing="6" margin="11"/> <layoutdefaults spacing="6" margin="11"/>
</UI> </UI>
And then open Qt/Designer And then open TQt/Designer
NOTE: it would be nicer if I knew how to copy (using autoconf/automake) this file in $(TQTDIR)/tools/designer/templates NOTE: it would be nicer if I knew how to copy (using autoconf/automake) this file in $(TQTDIR)/tools/designer/templates

@ -60,7 +60,7 @@ Paste from clipboard Two cases: Chalk has placed a clip on the
copy profile set in the Settings, or none. copy profile set in the Settings, or none.
An external clip is always RGB8 (for now, no An external clip is always RGB8 (for now, no
doubt Qt will extend its clipboard once RGB16 doubt TQt will extend its clipboard once RGB16
images or RGB half images become widespread), images or RGB half images become widespread),
so in those cases we always need an RGB so in those cases we always need an RGB
profile. profile.

@ -33,10 +33,8 @@ the combination of a unique untranslated string (used when saving, for
instance) and a translated string for GUI purposes. instance) and a translated string for GUI purposes.
</para><para> </para><para>
A word on compatibility: &chalk; is still in development. From &chalk; 1.5 to A word on compatibility: &chalk; is still in development. From &chalk; 1.5 to
1.6 not many API changes are expected, but there may be some. From &chalk; 1.6 1.6 not many API changes are expected, but there may be some.
to 2.0 we will move from &Qt;3 to &Qt;4, from &tde;3 to &tde;4, from If you develop a plugin for &chalk; and choose to do so in
<command>automake</command> to <command>cmake</command>: many changes are to
be expected. If you develop a plugin for &chalk; and choose to do so in
&chalk;s subversion repository, chances are excellent that well help you &chalk;s subversion repository, chances are excellent that well help you
porting. These changes may also render parts of this document out of date. porting. These changes may also render parts of this document out of date.
Always check with the latest API documentation or the header files installed Always check with the latest API documentation or the header files installed
@ -143,7 +141,7 @@ import/export filter could be a PDF filter. Filters are loaded by the
<title>Creating plugins</title> <title>Creating plugins</title>
<para> <para>
Plugins are written in C++ and can use all of &tde; and &Qt; and the &chalk; Plugins are written in C++ and can use all of &tde; and &TQt; and the &chalk;
developer API. Only viewplugins should use the &koffice; API. Dont worry: developer API. Only viewplugins should use the &koffice; API. Dont worry:
&chalk;s APIs are quite clear and rather extensively documented (for free &chalk;s APIs are quite clear and rather extensively documented (for free
software) and coding your first filter is really easy. software) and coding your first filter is really easy.
@ -763,7 +761,7 @@ an option widget:
</para> </para>
<itemizedlist> <itemizedlist>
<listitem><para>Use &Qt; Designer to create a widget base, and subclass it for <listitem><para>Use &TQt; Designer to create a widget base, and subclass it for
your filter</para></listitem> your filter</para></listitem>
<listitem><para>Use one of the simple widgets that show a number of sliders <listitem><para>Use one of the simple widgets that show a number of sliders
for lists of integers, doubles or bools. These are useful if, like the above for lists of integers, doubles or bools. These are useful if, like the above
@ -773,7 +771,7 @@ bools. See the API dox for <classname>KisMultiIntegerFilterWidget</classname>,
<classname>KisMultiBoolFilterWidget</classname>.</para></listitem> <classname>KisMultiBoolFilterWidget</classname>.</para></listitem>
<listitem><para>Hand-code a widget. This is not recommended, and if you do so <listitem><para>Hand-code a widget. This is not recommended, and if you do so
and want your filter to become part of &chalk;s official release, then Ill ask and want your filter to become part of &chalk;s official release, then Ill ask
you to replate your hand-coded widget with a &Qt; Designer you to replate your hand-coded widget with a &TQt; Designer
widget.</para></listitem> widget.</para></listitem>
</itemizedlist> </itemizedlist>
@ -871,7 +869,7 @@ non-painting tasks and shape painting tasks.
A tool has an option widget, just like filters. Currently, the option widgets A tool has an option widget, just like filters. Currently, the option widgets
are shown in a tab in a dock window. We may change that to a strip under the are shown in a tab in a dock window. We may change that to a strip under the
main menu (which then replaces the toolbar) for &chalk; 2.0, but for now, main menu (which then replaces the toolbar) for &chalk; 2.0, but for now,
design your option widget to fit in a tab. As always, its best to use &Qt; design your option widget to fit in a tab. As always, its best to use &TQt;
Designer for the design of the option widget. Designer for the design of the option widget.
</para><para> </para><para>
A good example of a tool is the star tool: A good example of a tool is the star tool:
@ -927,9 +925,9 @@ The following methods (<methodname>buttonPress</methodname>,
<methodname>move</methodname> and <methodname>buttonRelease</methodname>) are <methodname>move</methodname> and <methodname>buttonRelease</methodname>) are
called by &chalk; when the input device (mouse, stylus, eraser etc.) is called by &chalk; when the input device (mouse, stylus, eraser etc.) is
pressed down, moved or released. Note that you also get move events if the pressed down, moved or released. Note that you also get move events if the
mouse button isnt pressed. The events are not the regular &Qt; events, but mouse button isnt pressed. The events are not the regular &TQt; events, but
synthetic &chalk; events because we make use of low-level trickery to get synthetic &chalk; events because we make use of low-level trickery to get
enough events to draw a smooth line. By default, toolkits like &Qt; (and GTK) enough events to draw a smooth line. By default, toolkits like &TQt; (and GTK)
drop events if they are too busy to handle them, and we want them all. drop events if they are too busy to handle them, and we want them all.
</para> </para>

@ -413,7 +413,7 @@ letters and use certain templates, there is no need for much more
functionality than saving, loading, printing, &etc; functionality than saving, loading, printing, &etc;
</para> </para>
<para> Thanks to the <quote>action</quote> concept of &Qt; and &tde;, <para> Thanks to the <quote>action</quote> concept of &TQt; and &tde;,
you can freely customize &koffice; menubars and tool you can freely customize &koffice; menubars and tool
bars. Unfortunately, at the moment, there are no easy-to-use dialogs bars. Unfortunately, at the moment, there are no easy-to-use dialogs
to do this. &koffice; stores its &GUI; configuration in &XML; files to do this. &koffice; stores its &GUI; configuration in &XML; files
@ -510,7 +510,7 @@ absolutely free desktop environment for unix-like operating systems.
</para></listitem> </para></listitem>
<listitem> <listitem>
<para><ulink url="http://www.trolltech.com">Trolltech</ulink>. The creators <para><ulink url="http://www.trolltech.com">Trolltech</ulink>. The creators
of the C++-toolkit &Qt;. &tde; and &koffice; make use of &Qt;. of the C++-toolkit &TQt;. &tde; and &koffice; make use of &TQt;.
</para></listitem> </para></listitem>
</itemizedlist> </itemizedlist>
@ -531,7 +531,7 @@ be of interest:
<itemizedlist> <itemizedlist>
<listitem><para> At <ulink <listitem><para> At <ulink
url="http://developer.kde.org">http://developer.kde.org</ulink> you'll url="http://developer.kde.org">http://developer.kde.org</ulink> you'll
find many documents about programming with &Qt; and &tde;. Here you can find find many documents about programming with &TQt; and &tde;. Here you can find
the online version of the complete &tde; library documentation. the online version of the complete &tde; library documentation.
</para></listitem> </para></listitem>
<listitem><para> <listitem><para>
@ -642,13 +642,10 @@ A functioning &UNIX; system (for example, &Linux; or BSD)
with a configured &X-Window; (for example, XFree86 or X.Org). with a configured &X-Window; (for example, XFree86 or X.Org).
</para></listitem> </para></listitem>
<listitem><para> <listitem><para>
The &Qt; 3.3 libraries from Trolltech. See The &TQt; libraries.
<ulink url="http://www.trolltech.com/">www.trolltech.com</ulink>
for more information.
</para></listitem> </para></listitem>
<listitem><para> <listitem><para>
The Trinity Desktop Environment (&tde;) or newer. &koffice; cannot be compiled The Trinity Desktop Environment (&tde;). Information on obtaining and installing
with earlier versions of &kde;. Information on obtaining and installing
&tde; can be found at: &tde-http; &tde; can be found at: &tde-http;
</para></listitem> </para></listitem>
<listitem><para> <listitem><para>
@ -659,7 +656,7 @@ using a networked computer, check with your administrator first.
</itemizedlist> </itemizedlist>
<para> <para>
Please note that, while you need the &tde; 3.3 (or newer) libraries Please note that, while you need the &tde; libraries
on your system, you can still use &koffice; in a different desktop on your system, you can still use &koffice; in a different desktop
environment (for example, XFCE or GNOME). environment (for example, XFCE or GNOME).
</para> </para>
@ -684,12 +681,12 @@ A C++ compiler which supports exceptions, preferably a recent version of GCC.
for info about getting and installing it.) for info about getting and installing it.)
</para></listitem> </para></listitem>
<listitem><para> <listitem><para>
Troll Tech's &Qt; 3.3 development packages. If these packages are not installed on &TQt; development packages. If these packages are not installed on
your system and they are not included in the distribution of your operating your system and they are not included in the distribution of your operating
system, you should probably have to compile &Qt; from source. system, you should probably have to compile &TQt; from source.
These sources can be obtained from These sources can be obtained from
<ulink url="http://www.trolltech.com/download/index.html"> <ulink url="https://mirror.git.trinitydesktop.org/gitea/TDE/tqt3">
http://www.trolltech.com/download/index.html</ulink>. https://mirror.git.trinitydesktop.org/gitea/TDE/tqt3</ulink>.
</para></listitem> </para></listitem>
</itemizedlist> </itemizedlist>

@ -79,7 +79,7 @@
<chapter id="introduction"> <chapter id="introduction">
<title>Introduction</title> <title>Introduction</title>
<para> &kugar; is a report creation tool for &Qt; and &tde;. It includes <para> &kugar; is a report creation tool for &TQt; and &tde;. It includes
a &GUI; report template designer, a report engine, a &konqueror; part a &GUI; report template designer, a report engine, a &konqueror; part
for easy report preview and a set of examples.</para> for easy report preview and a set of examples.</para>

@ -61,15 +61,15 @@ for a detailed description.
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Create a &Qt; designer plugin, use it to build the application &GUI; in the designer and Create a &TQt; designer plugin, use it to build the application &GUI; in the designer and
link it to the program dynamically. link it to the program dynamically.
See <link linkend="prog-designer-plugin">Creating a &Qt; designer plugin</link> See <link linkend="prog-designer-plugin">Creating a &TQt; designer plugin</link>
for a detailed description. for a detailed description.
</para> </para>
</listitem> </listitem>
</itemizedlist> </itemizedlist>
<para> The last two ways are acceptable for &Qt; and &tde; developers; <para> The last two ways are acceptable for &TQt; and &tde; developers;
but &kugar; is designed to be a report generator, independent from a but &kugar; is designed to be a report generator, independent from a
programming language and/or <acronym>IDE</acronym>. It uses &XML; programming language and/or <acronym>IDE</acronym>. It uses &XML;
format for describing report templates and data files. So any program format for describing report templates and data files. So any program
@ -125,7 +125,7 @@ developers. It supports a &tde; printing system and &UNIX; localization
via <function>i18n()</function> calls. via <function>i18n()</function> calls.
</para> </para>
<para> <para>
The <classname>MReportViewer</classname> class is designed for &Qt; The <classname>MReportViewer</classname> class is designed for &TQt;
developers and provides real crossplatforming. It can be used not developers and provides real crossplatforming. It can be used not
only on &UNIX; platforms, but also on &Windows; and &MacOS;. only on &UNIX; platforms, but also on &Windows; and &MacOS;.
</para> </para>
@ -136,7 +136,7 @@ with <filename>libkugar.so</filename> shared library, which is provided with the
</para> </para>
<para> <para>
Include files are <filename>kugarqt.h</filename> and <filename>kugar.h</filename> Include files are <filename>kugarqt.h</filename> and <filename>kugar.h</filename>
for &Qt; and &tde; programs respectively. for &TQt; and &tde; programs respectively.
</para> </para>
<para>For a detailed example of how &kugar; classes can be used, look in the <filename class="directory">/shell</filename> <para>For a detailed example of how &kugar; classes can be used, look in the <filename class="directory">/shell</filename>
folder in the &kugar; sources. folder in the &kugar; sources.
@ -214,7 +214,7 @@ create a TQIODevice successor and redefine all necessary functionality.
</sect1> </sect1>
<sect1 id="prog-designer-plugin"> <sect1 id="prog-designer-plugin">
<title>Creating &Qt; designer plugin</title> <title>Creating &TQt; designer plugin</title>
<para> <para>
This is the example code of how a designer plugin is created. The code below creates a plugin for This is the example code of how a designer plugin is created. The code below creates a plugin for
@ -222,7 +222,7 @@ a &tde; <classname>KReportViewer</classname> widget.
</para> </para>
<para> <para>
If a &Qt; If a &TQt;
widget is desired, replace <classname>KReportViewer</classname> with widget is desired, replace <classname>KReportViewer</classname> with
<classname>MReportViewer</classname> and <filename>kugar.h</filename> with <classname>MReportViewer</classname> and <filename>kugar.h</filename> with
<filename>kugarqt.h</filename> in the plugin code. <filename>kugarqt.h</filename> in the plugin code.
@ -231,7 +231,7 @@ widget is desired, replace <classname>KReportViewer</classname> with
<sect2 id="plugin-usage"> <sect2 id="plugin-usage">
<title>Plugin usage</title> <title>Plugin usage</title>
<para> <para>
The designer plugin will allow the usage of &Qt; Designer to place a <classname>KReportViewer</classname> The designer plugin will allow the usage of &TQt; Designer to place a <classname>KReportViewer</classname>
widget onto a window and preview it correctly. widget onto a window and preview it correctly.
</para> </para>
@ -240,7 +240,7 @@ Programs that make use of this plugin must be linked dynamically with it.
The corresponding library is called <filename>libkugar_plugin.so</filename>. The corresponding library is called <filename>libkugar_plugin.so</filename>.
Widgets or dialogs that include <classname>KReportViewer</classname> Widgets or dialogs that include <classname>KReportViewer</classname>
widget must include &lt;kugar.h&gt; in implementation and have a forward declaration widget must include &lt;kugar.h&gt; in implementation and have a forward declaration
of <classname>class KReportViewer</classname>. Includes can be done with &Qt; of <classname>class KReportViewer</classname>. Includes can be done with &TQt;
Designer's Object Explorer (Source tab). Designer's Object Explorer (Source tab).
</para> </para>

@ -661,7 +661,7 @@ Any software updates, bug fixes or announcements of new releases of &koffice; wi
<para>How do themes affect &kword;?</para> <para>How do themes affect &kword;?</para>
</question> </question>
<answer> <answer>
<para>&kword; (like all of &koffice;) is completely themeable. You can use any QT or &tde; theme to customize the look of &kword;.</para> <para>&kword; (like all of &koffice;) is completely themeable. You can use any TQt or &tde; theme to customize the look of &kword;.</para>
</answer> </answer>
</qandaentry> </qandaentry>
@ -805,20 +805,14 @@ main ftp site of the &tde; project. </para>
<itemizedlist> <itemizedlist>
<listitem> <listitem>
<para>&Qt; Toolkit 3.2 or later. This can be obtained from <ulink <para>&TQt; Toolkit. This can be obtained from <ulink
url="http://www.trolltech.com">Trolltech</ulink>.</para> url="https://mirror.git.trinitydesktop.org/gitea/TDE/tqt3">https://mirror.git.trinitydesktop.org/gitea/TDE/tqt3</ulink>.</para>
<tip><para>While &koffice; will compile and run with any version of &Qt; 3.2 or later, it is recommended that you compile and install
&Qt; 3.3.4 to take advantage of all the bug fixes (including some security fixes) that have occurred.</para></tip>
</listitem> </listitem>
<listitem> <listitem>
<para>&tde; 3.3.0 libraries (tdelibs) and the &tde; 3.3.0 base package <para>&tde; libraries (tdelibs) and the &tde; base package
(tdebase). These can be obtained from the <ulink (tdebase). These can be obtained from the <ulink
url="http://www.kde.org">&tde; web page.</ulink></para> url="https://mirror.git.trinitydesktop.org/gitea/explore/repos">&tde; web page.</ulink></para>
<tip><para>While &koffice; will compile and run with any version of &tde; 3.3.0 or later, it is recommended that you compile and install
&tde; 3.4 to take advantage of all the bug fixes that have occurred.</para>
<para>It is also recommended that you install the arts package 1.3.2 from the
<ulink url="ftp://ftp.kde.org">&tde; &FTP; site</ulink>.</para></tip>
</listitem> </listitem>
<listitem> <listitem>
@ -832,7 +826,7 @@ your distribution's web site.</para>
</itemizedlist> </itemizedlist>
<note><para>In order to use external databases for mail merging documents, you must have <note><para>In order to use external databases for mail merging documents, you must have
the QT toolkit compiled with SQL support. To add SQL support (as a plugin), simply include the TQt toolkit compiled with SQL support. To add SQL support (as a plugin), simply include
<option>-plugin-sql-<replaceable>driver</replaceable></option> in your configure line.</para> <option>-plugin-sql-<replaceable>driver</replaceable></option> in your configure line.</para>
<para><replaceable>driver</replaceable> should be replaced with <replaceable>mysql</replaceable>, <replaceable>odbc</replaceable>, <para><replaceable>driver</replaceable> should be replaced with <replaceable>mysql</replaceable>, <replaceable>odbc</replaceable>,
<replaceable>CVS</replaceable>, or <replaceable>psql</replaceable> as is appropriate for your database needs.</para></note> <replaceable>CVS</replaceable>, or <replaceable>psql</replaceable> as is appropriate for your database needs.</para></note>
@ -874,7 +868,7 @@ the file to edit.</para>
<para><emphasis>Show &kword; version</emphasis></para> <para><emphasis>Show &kword; version</emphasis></para>
<para>To see the version numbers for the QT toolkit, &tde;, and &kword; type:</para> <para>To see the version numbers for the TQt toolkit, &tde;, and &kword; type:</para>
<screen width="40"> <screen width="40">
<prompt>$</prompt> <userinput><command>kword -v</command></userinput> <prompt>$</prompt> <userinput><command>kword -v</command></userinput>

@ -38,7 +38,7 @@ SQL database for your data source.</para></listitem>
<para>&kword; has the ability to use several of the most popular open source databases as a source of data for personalized documents.</para> <para>&kword; has the ability to use several of the most popular open source databases as a source of data for personalized documents.</para>
<note><para>In order to access an outside database using SQL, your machine needs to have the appropriate database module compiled <note><para>In order to access an outside database using SQL, your machine needs to have the appropriate database module compiled
into your copy of QT.</para> into your copy of TQt.</para>
<para>For more information see the <link linkend="installation">installation section of this documentation</link>.</para></note> <para>For more information see the <link linkend="installation">installation section of this documentation</link>.</para></note>
<para>The database can be located on the same machine as &kword;, or on any computer which is accessable through your computer <para>The database can be located on the same machine as &kword;, or on any computer which is accessable through your computer
network or the Internet.</para> network or the Internet.</para>
@ -82,7 +82,7 @@ the menubar. A dialog box will appear.</para>
</mediaobject> </mediaobject>
</screenshot> </screenshot>
<para>Select <guilabel>QT-SQL Source</guilabel> and click on <para>Select <guilabel>TQt-SQL Source</guilabel> and click on
<guibutton>OK</guibutton>. A new dialog box will appear.<anchor id="mail-merge-login"/></para> <guibutton>OK</guibutton>. A new dialog box will appear.<anchor id="mail-merge-login"/></para>
<screenshot> <screenshot>

@ -822,8 +822,8 @@ void SvgImport::parsePA( VObject *obj, SvgGraphicsContext *gc, const TQString &c
{ {
int weight = TQFont::Normal; int weight = TQFont::Normal;
// map svg weight to qt weight // map svg weight to tqt weight
// svg value qt value // svg value tqt value
// 100,200,300 1, 17, 33 // 100,200,300 1, 17, 33
// 400 50 (normal) // 400 50 (normal)
// 500,600 58,66 // 500,600 58,66

@ -2189,7 +2189,7 @@ void OoImpressImport::appendField(TQDomDocument& doc, TQDomElement& e, const TQD
} }
else if (isTextNS && tag == "time") else if (isTextNS && tag == "time")
{ {
// Use TQDateTime to work around a possible problem of TQTime::FromString in TQt 3.2.2 // Use TQDateTime to work around a possible problem of TQTime::FromString in Qt 3.2.2
TQDateTime dt(TQDateTime::fromString(object.attributeNS( ooNS::text, "time-value", TQString()), TQt::ISODate)); TQDateTime dt(TQDateTime::fromString(object.attributeNS( ooNS::text, "time-value", TQString()), TQt::ISODate));
bool fixed = (object.hasAttributeNS( ooNS::text, "fixed") && object.attributeNS( ooNS::text, "fixed", TQString())=="true"); bool fixed = (object.hasAttributeNS( ooNS::text, "fixed") && object.attributeNS( ooNS::text, "fixed", TQString())=="true");

@ -1196,7 +1196,7 @@ void GNUMERICFilter::setStyleInfo(TQDomNode * sheet, Sheet * table)
else if (shade == "4") else if (shade == "4")
{ {
kspread_cell->format()->setBackGroundBrushStyle(TQt::Dense5Pattern); kspread_cell->format()->setBackGroundBrushStyle(TQt::Dense5Pattern);
/* This should be 25%... All qt has is 37% */ /* This should be 25%... All tqt has is 37% */
/* 4 25% */ /* 4 25% */
} }

@ -14,11 +14,11 @@ spreadsheet program as part of the Quattro Pro filter. I have tried to write
it as a reusable set of classes so that it may used by other people, it as a reusable set of classes so that it may used by other people,
particularly those writing spreadsheet filters. particularly those writing spreadsheet filters.
KOffice programs rely heavily on the QT set of classes. A QT interface to KOffice programs rely heavily on the TQt set of classes. A TQt interface to
the library provides a lot of advantages. However I realise that not everyone the library provides a lot of advantages. However I realise that not everyone
wants to include QT in their code and so the package produces either one or wants to include TQt in their code and so the package produces either one or
two libraries. If QT is installed on the build machine then both libraries two libraries. If TQt is installed on the build machine then both libraries
are built, otherwise only the non-QT library is produced. are built, otherwise only the non-TQt library is produced.
Installation Installation
------------ ------------

@ -1,4 +1,4 @@
1. Add USE_QT option to build a QT version of the library 1. Add USE_QT option to build a TQt version of the library
2. Add options to FormulaAsText function. e.g. optionRemoveAt to 2. Add options to FormulaAsText function. e.g. optionRemoveAt to
make removal of leading @ on functions optional. make removal of leading @ on functions optional.
3. Split classes into individual files 3. Split classes into individual files

@ -28,7 +28,7 @@
* Helpers for the AbiWord import filter * Helpers for the AbiWord import filter
* *
* Rough rule for including code in this file: * Rough rule for including code in this file:
* use nothing of QT except TQMap, TQValueList and TQString * use nothing of TQt except TQMap, TQValueList and TQString
*/ */
class AbiProps class AbiProps

@ -217,7 +217,7 @@ bool AbiWordWorker::doOpenDocument(void)
// Make the file header // Make the file header
// First the XML header in UTF-8 version // First the XML header in UTF-8 version
// (AbiWord and QT handle UTF-8 well, so we stay with this encoding!) // (AbiWord and TQt handle UTF-8 well, so we stay with this encoding!)
*m_streamOut << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"; *m_streamOut << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
// NOTE: AbiWord CVS 2002-02-?? has a new DOCTYPE // NOTE: AbiWord CVS 2002-02-?? has a new DOCTYPE

@ -459,7 +459,7 @@ static const TQColor parsecolor(const TQString& colorstring)
else else
{ {
// H'm, we have still not found the color! // H'm, we have still not found the color!
// Let us see if QT can do better! // Let us see if TQt can do better!
color.setNamedColor(colorstring); color.setNamedColor(colorstring);
} }
} }

@ -11,7 +11,7 @@ The filter is a 4 pass filter.
1. Parsing 1. Parsing
1a parsing documentinfo,xml (done classicaly with QDom) 1a parsing documentinfo,xml (done classicaly with QDom)
1b parsing maindoc.xml (class KWord13Parser, done with Qt's SAX parser: QXml) 1b parsing maindoc.xml (class KWord13Parser, done with TQt's SAX parser: TQXml)
2. Postprocessing of parsing (class KWord13PostParsing) 2. Postprocessing of parsing (class KWord13PostParsing)
* loading of pictures * loading of pictures
* grouping tables cells (currently not done) * grouping tables cells (currently not done)

@ -531,7 +531,7 @@ TQString KWordTextHandler::getFont(unsigned fc) const
TQFontInfo info( xFont ); TQFontInfo info( xFont );
#ifdef FONT_DEBUG #ifdef FONT_DEBUG
kdDebug(30513) << " QT-FONT: " << info.family() << endl; kdDebug(30513) << " TQt-FONT: " << info.family() << endl;
#endif #endif
return info.family(); return info.family();

@ -792,7 +792,7 @@ void OoWriterImport::importDateTimeStyle( const TQDomElement& parent )
#endif #endif
TQString styleName = parent.attributeNS( ooNS::style, "name", TQString() ); TQString styleName = parent.attributeNS( ooNS::style, "name", TQString() );
kdDebug(30518) << "datetime style: " << styleName << " qt format=" << format << endl; kdDebug(30518) << "datetime style: " << styleName << " tqt format=" << format << endl;
m_dateTimeFormats.insert( styleName, format ); m_dateTimeFormats.insert( styleName, format );
} }
@ -1989,7 +1989,7 @@ void OoWriterImport::appendField(TQDomDocument& doc, TQDomElement& outputFormats
} }
else if (localName == "time") else if (localName == "time")
{ {
// Use TQDateTime to work around a possible problem of TQTime::FromString in TQt 3.2.2 // Use TQDateTime to work around a possible problem of TQTime::FromString in Qt 3.2.2
TQDateTime dt(TQDateTime::fromString(object.attributeNS( ooNS::text, "time-value", TQString()), TQt::ISODate)); TQDateTime dt(TQDateTime::fromString(object.attributeNS( ooNS::text, "time-value", TQString()), TQt::ISODate));
bool fixed = (object.hasAttributeNS( ooNS::text, "fixed") && object.attributeNS( ooNS::text, "fixed", TQString())=="true"); bool fixed = (object.hasAttributeNS( ooNS::text, "fixed") && object.attributeNS( ooNS::text, "fixed", TQString())=="true");

@ -15,7 +15,7 @@ able to open PDF files transparently by using this module.
Requirements: You need the following libraries and headers (found usually Requirements: You need the following libraries and headers (found usually
in the "devel" packages of distributions): in the "devel" packages of distributions):
- Qt >= 3.0 - TQt
- KDE >= 3.0 - TDE
- KOffice >= 1.2 - KOffice

@ -18,7 +18,7 @@ CONTENTS
this is from the KD Chart webpage: this is from the KD Chart webpage:
''KD Chart is a tool for creating business charts and is ''KD Chart is a tool for creating business charts and is
the most powerful Qt component of its kind. the most powerful TQt component of its kind.
Besides having all the standard features, KD Chart(...)'' Besides having all the standard features, KD Chart(...)''

@ -22,7 +22,7 @@ libkexikolibs_la_METASOURCES = AUTO
SUBDIRS = . SUBDIRS = .
# set the include path for X, qt and KDE # set the include path for X, tqt and TDE
INCLUDES= -I$(top_srcdir)/kexi $(all_includes) INCLUDES= -I$(top_srcdir)/kexi $(all_includes)

@ -37,10 +37,10 @@ install-data-local:
# kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS. # kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS.
# kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES. # kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES.
# kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES. # kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES.
# kde_styledir Where Qt/KDE widget styles should go to (new in KDE 3). # kde_styledir Where TQt/TDE widget styles should go to.
# kde_designerdir Where Qt Designer plugins should go to (new in KDE 3). # kde_designerdir Where TQt Designer plugins should go to.
# set the include path for X, qt and KDE # set the include path for X, tqt and TDE
INCLUDES = $(LIB_KEXI_KMDI_INCLUDES) $(all_includes) INCLUDES = $(LIB_KEXI_KMDI_INCLUDES) $(all_includes)
METASOURCES = AUTO METASOURCES = AUTO

@ -17,8 +17,8 @@ include $(top_srcdir)/kexi/Makefile.global
# kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS. # kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS.
# kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES. # kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES.
# kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES. # kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES.
# kde_styledir Where Qt/KDE widget styles should go to (new in KDE 3). # kde_styledir Where TQt/TDE widget styles should go to.
# kde_designerdir Where Qt Designer plugins should go to (new in KDE 3). # kde_designerdir Where TQt Designer plugins should go to.
rcdir = $(kde_datadir)/kexi rcdir = $(kde_datadir)/kexi
rc_DATA = kexiui.rc rc_DATA = kexiui.rc

@ -246,7 +246,7 @@ I am using update_kexi_po to recreate kexi.po file. THis will run cd koffice/ &&
- add action "restore original column order" - add action "restore original column order"
- add possibility of renaming column by 1) dbl-clicking header 2) "rename column" action - add possibility of renaming column by 1) dbl-clicking header 2) "rename column" action
- more actions (as in Format and Insert menus of MSA2k3) - more actions (as in Format and Insert menus of MSA2k3)
- add own impl. (based on Qt) for date/time editor because: - add own impl. (based on TQt) for date/time editor because:
-- no focusSection(), etc. is available in current impl. -- no focusSection(), etc. is available in current impl.
-- frames cannot be easily removed -- frames cannot be easily removed
-store last sorting column (and type) and load it on KexiTableView::setData() -store last sorting column (and type) and load it on KexiTableView::setData()
@ -341,7 +341,7 @@ HINT: removing WStaticContents from KexiTableView ctor fixed repaint problem
- fix repainting form's surface boundaries repainting when its size is changed by entering - fix repainting form's surface boundaries repainting when its size is changed by entering
value in the propeditor value in the propeditor
- fix spring behaviour: it cannot be shrinked if its inside a layout - fix spring behaviour: it cannot be shrinked if its inside a layout
- KTextEdit doesn't allow to set custom cursor (also in Qt Designer) - KTextEdit doesn't allow to set custom cursor (also in TQt Designer)
- support for multiple widgets selection in the property editor (requires changes to kexiproperty) - support for multiple widgets selection in the property editor (requires changes to kexiproperty)
- handle older and newer formats in FormIO::loadFormFromDom() - handle older and newer formats in FormIO::loadFormFromDom()
- TDEAcceleratorManager::setNoAccel(TQWidget*) - use it in data mode, - TDEAcceleratorManager::setNoAccel(TQWidget*) - use it in data mode,

@ -20,7 +20,7 @@ to developers with a bug report to help find a bug context.
- This is a step for making KDE apps packages distribution-neutral on Linux. - This is a step for making KDE apps packages distribution-neutral on Linux.
Notes: Notes:
- The Service guis and backend should be build from two parts: - The Service guis and backend should be build from two parts:
- First: qt-only that is used to initialize the process and check the system, independently - First: tqt-only that is used to initialize the process and check the system, independently
from existing KDE sybsystem. from existing KDE sybsystem.
- Second: used when we already know we already have a working KDE subsystem. This part can use - Second: used when we already know we already have a working KDE subsystem. This part can use
TDEConfig, KLibLoader, etc. to change the KDE settings. TDEConfig, KLibLoader, etc. to change the KDE settings.

@ -9,9 +9,9 @@ These tests can be later turned to command line options for Kexi what will allow
GUI operations o databases/projects. GUI operations o databases/projects.
Idea 2 Idea 2
Look at QSQL module from QT. E.g. there is efficient cursor feature (it works quite good with mysql). Look at TQSQL module from TQt. E.g. there is efficient cursor feature (it works quite good with mysql).
We have KexiDBRecordSet instead, but this is just the same thing. We have KexiDBRecordSet instead, but this is just the same thing.
In fact many KexiDB features are compatible with QSQL. In fact many KexiDB features are compatible with TQSQL.
Focus on: Focus on:
- avoid loading all result data to client memory (fetch some records instead) - avoid loading all result data to client memory (fetch some records instead)
- avoid blocking operations (do asynchronously as many things as possible) - avoid blocking operations (do asynchronously as many things as possible)

@ -123,7 +123,7 @@ void mymethod()
} }
} }
This is good, because made qt and kde sources readable. This is good, because made tqt and tde sources readable.
4.3 Indentation within classes declaration 4.3 Indentation within classes declaration

@ -11,7 +11,7 @@
because of violating their licenses, if we'd like to expose because of violating their licenses, if we'd like to expose
all their technologies so plainly all their technologies so plainly
(at least commercial) license mentions that there cannot be (at least commercial) license mentions that there cannot be
a project that is a replacement of the Qt developed out of the Qt) a project that is a replacement of the TQt developed out of the TQt)
4. It wouldn't hurt to ask them, as well. 4. It wouldn't hurt to ask them, as well.
* Add many other widgets :-) * Add many other widgets :-)
* Create db-aware widget factory * Create db-aware widget factory

@ -196,7 +196,7 @@ class KFORMEDITOR_EXPORT FormIO : public TQObject
/*! \return the loaded pixmap /*! \return the loaded pixmap
This function loads the pixmap named \a name in the DOM document \a domDoc. This function loads the pixmap named \a name in the DOM document \a domDoc.
Decoding code is taken from QT Designer. Decoding code is taken from TQt Designer.
*/ */
static TQPixmap loadImage(TQDomDocument domDoc, const TQString& name); static TQPixmap loadImage(TQDomDocument domDoc, const TQString& name);

@ -6,7 +6,7 @@ include $(top_srcdir)/kexi/Makefile.global
# of the other Makefile.am variables # of the other Makefile.am variables
bin_PROGRAMS = kformdesigner bin_PROGRAMS = kformdesigner
# set the include path for X, qt and KDE # set the include path for X, tqt and TDE
INCLUDES = -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/formeditor \ INCLUDES = -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/formeditor \
-I$(top_srcdir)/kexi/widget -I$(top_srcdir)/kexi/core \ -I$(top_srcdir)/kexi/widget -I$(top_srcdir)/kexi/core \
-I$(top_srcdir)/lib -I$(top_srcdir)/lib/kofficecore $(all_includes) -I$(top_srcdir)/lib -I$(top_srcdir)/lib/kofficecore $(all_includes)

@ -91,7 +91,7 @@ bool DriverManagerInternal::lookupDrivers()
if (tqApp) { if (tqApp) {
connect(tqApp,TQ_SIGNAL(aboutToQuit()),this,TQ_SLOT(slotAppQuits())); connect(tqApp,TQ_SIGNAL(aboutToQuit()),this,TQ_SLOT(slotAppQuits()));
} }
//TODO: for QT-only version check for TDEInstance wrapper //TODO: for TQt-only version check for TDEInstance wrapper
// KexiDBWarn << "DriverManagerInternal::lookupDrivers(): cannot work without TDEInstance (TDEGlobal::instance()==0)!" << endl; // KexiDBWarn << "DriverManagerInternal::lookupDrivers(): cannot work without TDEInstance (TDEGlobal::instance()==0)!" << endl;
// setError("Driver Manager cannot work without TDEInstance (TDEGlobal::instance()==0)!"); // setError("Driver Manager cannot work without TDEInstance (TDEGlobal::instance()==0)!");

@ -22,7 +22,7 @@
#include <sqlext.h> #include <sqlext.h>
#include <sqltypes.h> #include <sqltypes.h>
//QT Includes //TQt Includes
#include <tqfile.h> #include <tqfile.h>
#include <tqdir.h> #include <tqdir.h>

@ -17,7 +17,7 @@
* Boston, MA 02110-1301, USA. * Boston, MA 02110-1301, USA.
*/ */
//QT Includes //TQt Includes
#include <tqfile.h> #include <tqfile.h>
#include <tqdir.h> #include <tqdir.h>
#include <tqstring.h> #include <tqstring.h>

@ -21,7 +21,7 @@ libkeximainprinting_la_METASOURCES = AUTO
SUBDIRS = . SUBDIRS = .
# set the include path for X, qt and KDE # set the include path for X, tqt and TDE
INCLUDES= -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/main/printing \ INCLUDES= -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/main/printing \
-I$(top_srcdir)/kexi/core -I$(top_srcdir)/kexi/widget \ -I$(top_srcdir)/kexi/core -I$(top_srcdir)/kexi/widget \

@ -39,9 +39,9 @@ SUBDIRS = .
# kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS. # kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS.
# kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES. # kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES.
# kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES. # kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES.
# kde_styledir Where Qt/KDE widget styles should go to (new in KDE 3). # kde_styledir Where TQt/TDE widget styles should go to.
# kde_designerdir Where Qt Designer plugins should go to (new in KDE 3). # kde_designerdir Where TQt Designer plugins should go to.
# set the include path for X, qt and KDE # set the include path for X, tqt and TDE
INCLUDES= -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/main/startup -I$(top_srcdir)/kexi/core -I$(top_srcdir)/kexi/widget -I$(top_builddir)/kexi/widget $(all_includes) INCLUDES= -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/main/startup -I$(top_srcdir)/kexi/core -I$(top_srcdir)/kexi/widget -I$(top_builddir)/kexi/widget $(all_includes)

@ -94,7 +94,7 @@ bool MigrateManagerInternal::lookupDrivers()
if (tqApp) { if (tqApp) {
connect(tqApp,TQ_SIGNAL(aboutToQuit()),this,TQ_SLOT(slotAppQuits())); connect(tqApp,TQ_SIGNAL(aboutToQuit()),this,TQ_SLOT(slotAppQuits()));
} }
//TODO: for QT-only version check for TDEInstance wrapper //TODO: for TQt-only version check for TDEInstance wrapper
// KexiDBWarn << "DriverManagerInternal::lookupDrivers(): cannot work without TDEInstance (TDEGlobal::instance()==0)!" << endl; // KexiDBWarn << "DriverManagerInternal::lookupDrivers(): cannot work without TDEInstance (TDEGlobal::instance()==0)!" << endl;
// setError("Driver Manager cannot work without TDEInstance (TDEGlobal::instance()==0)!"); // setError("Driver Manager cannot work without TDEInstance (TDEGlobal::instance()==0)!");

@ -23,6 +23,6 @@ libkexiformutilswidgets_la_METASOURCES = AUTO
SUBDIRS = . SUBDIRS = .
# set the include path for X, qt and KDE # set the include path for X, tqt and TDE
INCLUDES= -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/plugins/forms -I$(top_srcdir)/kexi/core $(all_includes) INCLUDES= -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/plugins/forms -I$(top_srcdir)/kexi/core $(all_includes)

@ -8,7 +8,7 @@ plugin-architecture allows transparent copies between different backends.</p>
<ul> <ul>
<li>Read+write Kexi Databases. This includes all database backends supported by Kexi (like SQLite, MySQL or PostgreSQL).</li> <li>Read+write Kexi Databases. This includes all database backends supported by Kexi (like SQLite, MySQL or PostgreSQL).</li>
<li>Read+write QtSQL Databases. MySQL, PostgreSQL and UnixODBC are supported. There might even be more like Oracle in the commercial Qt version or 3rd party backends.</li> <li>Read+write TQtSQL Databases. MySQL, PostgreSQL and UnixODBC are supported.</li>
<li>Runs embedded in Kexi (from the tools=>scripts menu) as well as independent of Kexi (use "krossrunner ~/.trinity/share/apps/kexi/scripts/copycenter/CopyCenter.py" or python direct).</li> <li>Runs embedded in Kexi (from the tools=>scripts menu) as well as independent of Kexi (use "krossrunner ~/.trinity/share/apps/kexi/scripts/copycenter/CopyCenter.py" or python direct).</li>
<li>Depends only on PyQt. PyKDE is not used at all and Kross (included in KOffice 1.5) is optional.</li> <li>Depends only on PyQt. PyKDE is not used at all and Kross (included in KOffice 1.5) is optional.</li>
</ul> </ul>

@ -36,10 +36,10 @@ SUBDIRS = utils tableview . relations
# kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS. # kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS.
# kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES. # kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES.
# kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES. # kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES.
# kde_styledir Where Qt/KDE widget styles should go to (new in KDE 3). # kde_styledir Where TQt/TDE widget styles should go to.
# kde_designerdir Where Qt Designer plugins should go to (new in KDE 3). # kde_designerdir Where TQt Designer plugins should go to.
# set the include path for X, qt and KDE - all_includes must remain last! # set the include path for X, tqt and TDE - all_includes must remain last!
INCLUDES = -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/widget/tableview \ INCLUDES = -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/widget/tableview \
$(LIB_KEXI_KMDI_INCLUDES) \ $(LIB_KEXI_KMDI_INCLUDES) \
-I$(top_srcdir)/kexi/core \ -I$(top_srcdir)/kexi/core \

@ -29,10 +29,10 @@ SUBDIRS = .
# kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS. # kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS.
# kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES. # kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES.
# kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES. # kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES.
# kde_styledir Where Qt/KDE widget styles should go to (new in KDE 3). # kde_styledir Where TQt/TDE widget styles should go to.
# kde_designerdir Where Qt Designer plugins should go to (new in KDE 3). # kde_designerdir Where TQt Designer plugins should go to.
# set the include path for X, qt and KDE # set the include path for X, tqt and TDE
INCLUDES= -I$(top_srcdir)/kexi $(LIB_KEXI_KMDI_INCLUDES) \ INCLUDES= -I$(top_srcdir)/kexi $(LIB_KEXI_KMDI_INCLUDES) \
-I$(top_srcdir)/kexi/core $(all_includes) -I$(top_srcdir)/kexi/core $(all_includes)

@ -38,10 +38,10 @@ SUBDIRS = .
# kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS. # kde_bindir Where executables should go to. Use bin_PROGRAMS or bin_SCRIPTS.
# kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES. # kde_libdir Where shared libraries should go to. Use lib_LTLIBRARIES.
# kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES. # kde_moduledir Where modules (e.g. parts) should go to. Use kde_module_LTLIBRARIES.
# kde_styledir Where Qt/KDE widget styles should go to (new in KDE 3). # kde_styledir Where TQt/TDE widget styles should go to.
# kde_designerdir Where Qt Designer plugins should go to (new in KDE 3). # kde_designerdir Where TQt Designer plugins should go to.
# set the include path for X, qt and KDE # set the include path for X, tqt and TDE
INCLUDES= -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/core -I$(top_srcdir)/kexi/kexidb \ INCLUDES= -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/core -I$(top_srcdir)/kexi/kexidb \
-I$(top_srcdir)/lib -I$(top_srcdir)/lib/kofficecore -I$(top_srcdir)/lib/koproperty/ $(all_includes) -I$(top_srcdir)/lib -I$(top_srcdir)/lib/kofficecore -I$(top_srcdir)/lib/koproperty/ $(all_includes)

@ -11,7 +11,7 @@ libkexiguiutils_la_LIBADD = $(LIB_TDEUI)
SUBDIRS = . SUBDIRS = .
# set the include path for X, qt and KDE - all_includes must remain last! # set the include path for X, tqt and TDE - all_includes must remain last!
INCLUDES = -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/widget/utils $(all_includes) INCLUDES = -I$(top_srcdir)/kexi -I$(top_srcdir)/kexi/widget/utils $(all_includes)
METASOURCES = AUTO METASOURCES = AUTO

@ -32,7 +32,7 @@
#include <tqcolor.h> #include <tqcolor.h>
#include <tqfont.h> #include <tqfont.h>
/* slots gets defined in TQt 3.2 and conflicts with python 2.3 headers */ /* slots gets defined in TQt and conflicts with python headers */
#undef slots #undef slots
#include <Python.h> #include <Python.h>
#define slots #define slots

@ -57,7 +57,7 @@ public:
CalendarPanel(TQWidget *parent=0, TQDate=TQDate::currentDate(), const char *name=0, WFlags f=0); CalendarPanel(TQWidget *parent=0, TQDate=TQDate::currentDate(), const char *name=0, WFlags f=0);
/** /**
* Standard qt widget constructor. The initial date will be the * Standard tqt widget constructor. The initial date will be the
* current date. * current date.
*/ */
CalendarPanel( TQWidget *parent, const char *name ); CalendarPanel( TQWidget *parent, const char *name );

@ -630,7 +630,7 @@ void KPrPixmapObject::draw( TQPainter *_painter, KoTextZoomHandler*_zoomHandler,
{ {
TQRect rect( 0, 0, (int)( _zoomHandler->zoomItX( ow ) ), TQRect rect( 0, 0, (int)( _zoomHandler->zoomItX( ow ) ),
(int)( _zoomHandler->zoomItY( oh ) ) ); (int)( _zoomHandler->zoomItY( oh ) ) );
// ### HACK QT seems not to be able to correctly compare TQVariant // ### HACK TQt seems not to be able to correctly compare TQVariant
bool variants1; bool variants1;
if (m_ie_par1.isNull()) if (m_ie_par1.isNull())
variants1=m_cachedPar1.isNull(); variants1=m_cachedPar1.isNull();

@ -115,7 +115,7 @@ SHORT_NAMES = NO
# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
# will interpret the first line (until the first dot) of a JavaDoc-style # will interpret the first line (until the first dot) of a JavaDoc-style
# comment as the brief description. If set to NO, the JavaDoc # comment as the brief description. If set to NO, the JavaDoc
# comments will behave just like the Qt-style comments (thus requiring an # comments will behave just like the TQt-style comments (thus requiring an
# explicit @brief command for a brief description. # explicit @brief command for a brief description.
JAVADOC_AUTOBRIEF = YES JAVADOC_AUTOBRIEF = YES

@ -153,7 +153,7 @@ private:
TQLineEdit *fiveElement; TQLineEdit *fiveElement;
/** /**
* Tells which of the lineedits has the logical focus currently. * Tells which of the lineedits has the logical focus currently.
* It may happen that a lineedit does not have qt focus but * It may happen that a lineedit does not have tqt focus but
* logical focus but not the other way round. * logical focus but not the other way round.
*/ */
TQLineEdit* m_focus; TQLineEdit* m_focus;

@ -99,7 +99,7 @@ class GoalSeekDialog : public KDialog
/** /**
* Tells which of the lineedits has the logical focus currently. * Tells which of the lineedits has the logical focus currently.
* It may happen that a lineedit does not have qt focus but * It may happen that a lineedit does not have tqt focus but
* logical focus but not the other way round. * logical focus but not the other way round.
*/ */
TQLineEdit * m_focus; TQLineEdit * m_focus;

@ -2730,7 +2730,7 @@ void Cell::paintBackground( TQPainter& painter, const KoRect &cellRect,
painter.setBackgroundColor( defaultColorGroup.base() ); painter.setBackgroundColor( defaultColorGroup.base() );
} }
else { else {
//bad hack but there is a qt bug //bad hack but there is a tqt bug
//so I can print backgroundcolor //so I can print backgroundcolor
TQBrush bb( bg ); TQBrush bb( bg );
if ( !bg.isValid() ) if ( !bg.isValid() )

@ -1292,7 +1292,7 @@ void EmbeddedPictureObject::draw( TQPainter *_painter/*, KoZoomHandler*_zoomHand
{ {
TQRect rect( 0, 0, (int)( _zoomHandler->zoomItX( ow ) ), TQRect rect( 0, 0, (int)( _zoomHandler->zoomItX( ow ) ),
(int)( _zoomHandler->zoomItY( oh ) ) ); (int)( _zoomHandler->zoomItY( oh ) ) );
// ### HACK QT seems not to be able to correctly compare TQVariant // ### HACK TQt seems not to be able to correctly compare TQVariant
bool variants1; bool variants1;
if (m_ie_par1.isNull()) if (m_ie_par1.isNull())
variants1=m_cachedPar1.isNull(); variants1=m_cachedPar1.isNull();

@ -22,7 +22,7 @@ ABOUT KUGAR:
Current features: Current features:
* KDE GUI report designer. * KDE GUI report designer.
* Qt report viewer widget for previewing reports from within a Qt application * TQt report viewer widget for previewing reports from within a TQt application
(WYSIWYG). (WYSIWYG).
* KDE report viewer widget that utilizes KDE print dialog * KDE report viewer widget that utilizes KDE print dialog
* KDE report viewer utility. * KDE report viewer utility.
@ -38,7 +38,7 @@ Current features:
* Grand totals: count, sum, average, variance and standard deviation. * Grand totals: count, sum, average, variance and standard deviation.
* Report print progress and cancellation. * Report print progress and cancellation.
* Report rendering progress and cancellation. * Report rendering progress and cancellation.
* Complete implementation of (Qt) printer setup options. * Complete implementation of (TQt) printer setup options.
* Additional formatting (negative numbers, currency, commas for numbers and * Additional formatting (negative numbers, currency, commas for numbers and
dates). dates).
* Direct database support. * Direct database support.
@ -53,8 +53,8 @@ REQUIREMENTS:
The following items must be installed prior to building Kugar: The following items must be installed prior to building Kugar:
1. Qt version 3.1+ - http://www.trolltech.com 1. TQt
2. KDE 3.1.0+ - http://www.kde.org 2. TDE
BUILDING KUGAR: BUILDING KUGAR:

@ -1,5 +1,5 @@
/*************************************************************************** /***************************************************************************
mreportviewer.cpp - Kugar QT report viewer widget mreportviewer.cpp - Kugar TQt report viewer widget
------------------- -------------------
begin : Fri Aug 13 1999 begin : Fri Aug 13 1999
copyright : (C) 1999 by Mutiny Bay Software copyright : (C) 1999 by Mutiny Bay Software

@ -1,5 +1,5 @@
/*************************************************************************** /***************************************************************************
mreportviewer.h - Kugar QT report viewer widget mreportviewer.h - Kugar TQt report viewer widget
------------------- -------------------
begin : Fri Aug 13 1999 begin : Fri Aug 13 1999
copyright : (C) 1999 by Mutiny Bay Software copyright : (C) 1999 by Mutiny Bay Software
@ -31,7 +31,7 @@ class KPrinter;
/** Application reference, required for event processing */ /** Application reference, required for event processing */
extern TQApplication *mAppRef; extern TQApplication *mAppRef;
/**Kugar QT report viewer widget /**Kugar TQt report viewer widget
*@author Mutiny Bay Software *@author Mutiny Bay Software
*/ */

@ -54,7 +54,7 @@ Please write publicly available KWord documents only in one of these two encodin
Of course, if you do not use UTF-8, replace any occurrence of UTF-8 in the text below by the Of course, if you do not use UTF-8, replace any occurrence of UTF-8 in the text below by the
encoding that you have chosen. And please be sure to correctly define the XML declaration <?xml encoding that you have chosen. And please be sure to correctly define the XML declaration <?xml
(Sorry, ISO-10646-UCS4 (also known as UTF-32) is not available, as QT cannot handle it.) (Sorry, ISO-10646-UCS4 (also known as UTF-32) is not available, as TQt cannot handle it.)
Some basic notes on XML Some basic notes on XML
======================= =======================
@ -1227,7 +1227,7 @@ don't put a </?xml...> at the end of the file!).
<!ELEMENT DATASOURCE <!ELEMENT DATASOURCE
ANY> ANY>
<!-- <!--
For the QtSQL-power-plugin, the contents of DATASOURCE is For the TQtSQL-power-plugin, the contents of DATASOURCE is
(DEFINITION,SAMPLERECORD) (DEFINITION,SAMPLERECORD)
DEFINITION is (DATABASE,QUERY) DEFINITION is (DATABASE,QUERY)
DATABASE has port, driver, username, databasename, hostname attributes. DATABASE has port, driver, username, databasename, hostname attributes.

@ -1,7 +1,7 @@
dnl only compile the sql plugin if qt was compiled with sql support dnl only compile the sql plugin if tqt was compiled with sql support
AC_MSG_CHECKING([for SQL support in QT]) AC_MSG_CHECKING([for SQL support in TQt])
LIBS_SAVE_KWSL="$LIBS" LIBS_SAVE_KWSL="$LIBS"
CXXFLAGS_SAVE_KWSL="$CXXFLAGS" CXXFLAGS_SAVE_KWSL="$CXXFLAGS"
@ -18,7 +18,7 @@ AC_TRY_COMPILE([
], ],
[ [
#ifdef TQT_NO_SQL #ifdef TQT_NO_SQL
#error "No QT-SQL support" #error "No TQt-SQL support"
#endif #endif
], ],
ac_trycompile_kwsl_qtsql=yes, ac_trycompile_kwsl_qtsql=yes,
@ -31,11 +31,11 @@ AC_LANG_RESTORE
if eval "test \"`echo $ac_trycompile_kwsl_qtsql`\" = yes"; then if eval "test \"`echo $ac_trycompile_kwsl_qtsql`\" = yes"; then
SQLDIR=sql SQLDIR=sql
AC_SUBST(SQLDIR) AC_SUBST(SQLDIR)
AC_MSG_RESULT([QT supports SQL - compile qtsqlmailmerge]) AC_MSG_RESULT([TQt supports SQL - compile qtsqlmailmerge])
else else
SQLDIR= SQLDIR=
AC_SUBST(SQLDIR) AC_SUBST(SQLDIR)
AC_MSG_RESULT([QT supports SQL -- qtsqlmailmerge will not be built]) AC_MSG_RESULT([TQt supports SQL -- qtsqlmailmerge will not be built])
fi fi
AM_CONDITIONAL(include_sql, test -n "$SQLDIR") AM_CONDITIONAL(include_sql, test -n "$SQLDIR")

@ -29,7 +29,7 @@
* *
* DIRTY HACK FOR SOME INFLEXIBILITY IN QT3's SQL stuff * DIRTY HACK FOR SOME INFLEXIBILITY IN QT3's SQL stuff
* *
* This class is rom some Trolltech guy on QT-interest * This class is from some Trolltech guy on QT-interest
******************************************************************/ ******************************************************************/

@ -3,14 +3,14 @@ AM_CPPFLAGS = $(KOFFICE_INCLUDES) -I$(top_srcdir)/lib/kformula \
kde_module_LTLIBRARIES = kwmailmerge_qtsqldb.la kwmailmerge_qtsqldb_power.la kde_module_LTLIBRARIES = kwmailmerge_qtsqldb.la kwmailmerge_qtsqldb_power.la
## Plugin encapsulating the QT SQL database interface ## Plugin encapsulating the TQt SQL database interface
kwmailmerge_qtsqldb_la_SOURCES = KWQtSqlSerialDataSource.cpp qtsqldatasourceeditor.ui \ kwmailmerge_qtsqldb_la_SOURCES = KWQtSqlSerialDataSource.cpp qtsqldatasourceeditor.ui \
KWQtSqlEasyFilter.cpp KWQtSqlEasyFilter.cpp
kwmailmerge_qtsqldb_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -lDCOP -ltdecore -ltdeui $(LIB_TQT) -lkjs -ltdefx -ltdeio -ltdeparts kwmailmerge_qtsqldb_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -lDCOP -ltdecore -ltdeui $(LIB_TQT) -lkjs -ltdefx -ltdeio -ltdeparts
kwmailmerge_qtsqldb_la_LIBADD = $(KOFFICE_LIBS) libmailmergesqlcommon.la ../../libkwmailmerge_interface.la $(LIB_TDEUI) kwmailmerge_qtsqldb_la_LIBADD = $(KOFFICE_LIBS) libmailmergesqlcommon.la ../../libkwmailmerge_interface.la $(LIB_TDEUI)
kwmailmerge_qtsqldb_la_COMPILE_FIRST = qtsqlopenwidget.h kwmailmerge_qtsqldb_la_COMPILE_FIRST = qtsqlopenwidget.h
## 2. Plugin encapsulating the QT SQL database interface ## 2. Plugin encapsulating the TQt SQL database interface
kwmailmerge_qtsqldb_power_la_SOURCES = KWQtSqlPowerSerialDataSource.cpp kwqtsqlpower.ui KWQtSqlPowerSerialDataSource.skel kwmailmerge_qtsqldb_power_la_SOURCES = KWQtSqlPowerSerialDataSource.cpp kwqtsqlpower.ui KWQtSqlPowerSerialDataSource.skel
kwmailmerge_qtsqldb_power_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -lDCOP -ltdecore -ltdeui $(LIB_TQT) -lkjs -ltdefx -ltdeio -ltdeparts kwmailmerge_qtsqldb_power_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -lDCOP -ltdecore -ltdeui $(LIB_TQT) -lkjs -ltdefx -ltdeio -ltdeparts
kwmailmerge_qtsqldb_power_la_LIBADD = $(KOFFICE_LIBS) libmailmergesqlcommon.la ../../libkwmailmerge_interface.la $(LIB_TDEUI) kwmailmerge_qtsqldb_power_la_LIBADD = $(KOFFICE_LIBS) libmailmergesqlcommon.la ../../libkwmailmerge_interface.la $(LIB_TDEUI)

@ -2,103 +2,103 @@
Type=Service Type=Service
X-TDE-ServiceTypes=KWord/MailMergePlugin X-TDE-ServiceTypes=KWord/MailMergePlugin
Name=Qt-SQL Source (single table) Name=TQt-SQL Source (single table)
Name[bg]=Източник Qt-SQL (една таблица) Name[bg]=Източник TQt-SQL (една таблица)
Name[ca]=Font Qt-SQL (taula única) Name[ca]=Font TQt-SQL (taula única)
Name[cy]=Ffynhonell Qt-SQL (tabl sengl) Name[cy]=Ffynhonell TQt-SQL (tabl sengl)
Name[da]=Qt-SQL-kilde (enkelt tabel) Name[da]=TQt-SQL-kilde (enkelt tabel)
Name[de]=Qt-SQL (Einzeltabelle) Name[de]=TQt-SQL (Einzeltabelle)
Name[el]=Πηγή Qt-SQL (απλός πίνακας) Name[el]=Πηγή TQt-SQL (απλός πίνακας)
Name[eo]=Qt-SQL-fonto (sola tabelo) Name[eo]=TQt-SQL-fonto (sola tabelo)
Name[es]=Fuente Qt-SQL (una sola tabla) Name[es]=Fuente TQt-SQL (una sola tabla)
Name[et]=Qt-SQL allikas (üksik tabel) Name[et]=TQt-SQL allikas (üksik tabel)
Name[eu]=Qt-SQL iturburua (taula bakarra) Name[eu]=TQt-SQL iturburua (taula bakarra)
Name[fa]=متن Qt-SQL )جدول تک ( Name[fa]=متن TQt-SQL )جدول تک (
Name[fi]=Qt-SQL lähde (ykai taulu) Name[fi]=TQt-SQL lähde (ykai taulu)
Name[fr]=Source Qt-SQL (table simple) Name[fr]=Source TQt-SQL (table simple)
Name[fy]=Qt-SQL-boarne (inkelfâldige tabel) Name[fy]=TQt-SQL-boarne (inkelfâldige tabel)
Name[gl]=Fonte de Qt-SQL (táboa única) Name[gl]=Fonte de TQt-SQL (táboa única)
Name[he]=מקור Qt-SQL (טבלה בודדת) Name[he]=מקור TQt-SQL (טבלה בודדת)
Name[hr]=Qt-SQL izvor (jedna tablica) Name[hr]=TQt-SQL izvor (jedna tablica)
Name[hu]=Qt-SQL adatforrás (egy tábla) Name[hu]=TQt-SQL adatforrás (egy tábla)
Name[is]=QT-SQL ská (ein tafla) Name[is]=TQt-SQL ská (ein tafla)
Name[it]=Fonte Qt-SQL (tabella singola) Name[it]=Fonte TQt-SQL (tabella singola)
Name[ja]=Qt-SQL ソース (シングルテーブル) Name[ja]=TQt-SQL ソース (シングルテーブル)
Name[km]=ប្រភព Qt-SQL (តារាង​តែ​មួយ) Name[km]=ប្រភព TQt-SQL (តារាង​តែ​មួយ)
Name[lv]=Qt-SQL avots (viena tabula) Name[lv]=TQt-SQL avots (viena tabula)
Name[ms]=Sumber Qt-SQL (jadual tunggal) Name[ms]=Sumber TQt-SQL (jadual tunggal)
Name[nb]=Qt-SQL-kilde (en tabell) Name[nb]=TQt-SQL-kilde (en tabell)
Name[nds]=Qt-SQL-Born (Enkeltabell) Name[nds]=TQt-SQL-Born (Enkeltabell)
Name[ne]=Qt-SQL स्रोत (एकल तालिका) Name[ne]=TQt-SQL स्रोत (एकल तालिका)
Name[nl]=Qt-SQL-bron (enkelvoudige tabel) Name[nl]=TQt-SQL-bron (enkelvoudige tabel)
Name[nn]=Qt-SQL-kjelde (enkel tabell) Name[nn]=TQt-SQL-kjelde (enkel tabell)
Name[pl]=Źródło Qt-SQL (pojedyncza tabela) Name[pl]=Źródło TQt-SQL (pojedyncza tabela)
Name[pt]=Fonte do Qt-SQL (tabela única) Name[pt]=Fonte do TQt-SQL (tabela única)
Name[pt_BR]=Qt-SQL (tabela única) Name[pt_BR]=TQt-SQL (tabela única)
Name[ru]=Исходный текст Qt-SQL (одна таблица) Name[ru]=Исходный текст TQt-SQL (одна таблица)
Name[se]=Qt-SQL-gáldu (oktageardanis tabealla) Name[se]=TQt-SQL-gáldu (oktageardanis tabealla)
Name[sk]=Qt-SQL zdroj (jedna tabuľka) Name[sk]=TQt-SQL zdroj (jedna tabuľka)
Name[sl]=Vir Qt-SQL (enojna tabela) Name[sl]=Vir TQt-SQL (enojna tabela)
Name[sr]=Qt-SQL извор (једна табела) Name[sr]=TQt-SQL извор (једна табела)
Name[sr@Latn]=Qt-SQL izvor (jedna tabela) Name[sr@Latn]=TQt-SQL izvor (jedna tabela)
Name[sv]=QT-SQL-källa (enkel tabell) Name[sv]=TQt-SQL-källa (enkel tabell)
Name[uk]=Джерело Qt-SQL (одна таблиця) Name[uk]=Джерело TQt-SQL (одна таблиця)
Name[uz]=Qt-SQL manbasi (bitta jadval) Name[uz]=TQt-SQL manbasi (bitta jadval)
Name[uz@cyrillic]=Qt-SQL манбаси (битта жадвал) Name[uz@cyrillic]=TQt-SQL манбаси (битта жадвал)
Name[zh_CN]=Qt-SQL 源(单表) Name[zh_CN]=TQt-SQL 源(单表)
Name[zh_TW]=Qt-SQL 來源 (單一表格) Name[zh_TW]=TQt-SQL 來源 (單一表格)
Comment=This datasource type lets you use SQL database tables stored on a SQL Server. Depending on your system configuration, MySQL, PostgreSQL and UnixODBC are among the supported database backends. There might even be more (Oracle in commercial Qt versions or 3rd party backends). Comment=This datasource type lets you use SQL database tables stored on a SQL Server. Depending on your system configuration, MySQL, PostgreSQL and UnixODBC are among the supported database backends.
Comment[ar]=هذا النّوع من المصادر البيانيّة يتيح لك إمكانية استخدام جداول قاعدة بيانيّة SQL مُخَزَّنة على خادم SQL. بحسب تهيئة نظامك، فإنّ MySQL، PostgreSQL و UnixODBC تُعتبر من بين ما هو مدعوم من وُجهات خلفيّة للقواعد البيانيّة. يمكن حتى أن يتواجد المزيد (Oracle في إصدارات Qt التِّجاريّة أو الوُجهات الخلفيّة المملوكة لطرف ثالث). Comment[ar]=هذا النّوع من المصادر البيانيّة يتيح لك إمكانية استخدام جداول قاعدة بيانيّة SQL مُخَزَّنة على خادم SQL. بحسب تهيئة نظامك، فإنّ MySQL، PostgreSQL و UnixODBC تُعتبر من بين ما هو مدعوم من وُجهات خلفيّة للقواعد البيانيّة. يمكن حتى أن يتواجد المزيد (Oracle في إصدارات TQt التِّجاريّة أو الوُجهات الخلفيّة المملوكة لطرف ثالث).
Comment[az]=Bu mənbə sizə SQL verilənlər bazasını istifadə etməyə imkan verir. Sistem qurğularınızdan asılı olaraq : MySQL,Postgres,(Oracle, lisenziyalı QT buraxılışını işlədirsinizsə),.... Comment[az]=Bu mənbə sizə SQL verilənlər bazasını istifadə etməyə imkan verir. Sistem qurğularınızdan asılı olaraq : MySQL,Postgres,(Oracle, lisenziyalı TQt buraxılışını işlədirsinizsə),....
Comment[bg]=Този източник на данни използва таблица за съхранение на данните в СУБД (сървър SQL). В зависимост от настройките, поддръжка имат MySQL, PostgreSQL и UnixODBC. Може да има и още (Oracle в комерсиалните версии на Qt или други). Comment[bg]=Този източник на данни използва таблица за съхранение на данните в СУБД (сървър SQL). В зависимост от настройките, поддръжка имат MySQL, PostgreSQL и UnixODBC. Може да има и още (Oracle в комерсиалните версии на TQt или други).
Comment[bs]=Ovaj tip izvora podataka vam omogućuje da koristiti SQL tabele smještene na SQL serveru. Ovisno o konfiguraciji vašeg sistema, MySQL, PostgreSQL i UnixODBC su među podržanim bazama podataka. Možda čak i više od toga (Oracle u komercijalnim verzijama Qt-a ili backendima iz trećeg izvora). Comment[bs]=Ovaj tip izvora podataka vam omogućuje da koristiti SQL tabele smještene na SQL serveru. Ovisno o konfiguraciji vašeg sistema, MySQL, PostgreSQL i UnixODBC su među podržanim bazama podataka. Možda čak i više od toga (Oracle u komercijalnim verzijama TQt-a ili backendima iz trećeg izvora).
Comment[ca]=Aquest tipus de font de dades permet usar una base de dades SQL guardada a un servidor SQL. Depenent de la configuració del sistema, MySQL, PostgreSQL i UnixODBC estan entre les bases de dades permeses. Inclús n'hi poden haver més(Oracle comercial a la versió Qt i d'altres servidors). Comment[ca]=Aquest tipus de font de dades permet usar una base de dades SQL guardada a un servidor SQL. Depenent de la configuració del sistema, MySQL, PostgreSQL i UnixODBC estan entre les bases de dades permeses. Inclús n'hi poden haver més(Oracle comercial a la versió TQt i d'altres servidors).
Comment[cs]=Tento zdroj dat vám umožní požívat tabulky SQL databází uložených na SQL serveru. V závislosti na vašem nastavení systému jsou podporovány databázové systémy MySQL, PostgreSQL a UnixODBC (Oracle je podporována v komerční verzi Qt nebo v databázových systémech jiných výrobců). Comment[cs]=Tento zdroj dat vám umožní požívat tabulky SQL databází uložených na SQL serveru. V závislosti na vašem nastavení systému jsou podporovány databázové systémy MySQL, PostgreSQL a UnixODBC (Oracle je podporována v komerční verzi TQt nebo v databázových systémech jiných výrobců).
Comment[cy]=Mae'r math yma o ffynhonnell ddata yn eich galluogi i ddefnyddio tablau cronfa ddata SQL sydd wedi eu storio ar weinydd SQL. Yn dibynnu ar ffurfweddiad eich system, mae MySQL, PostgreSQL a UnixODBC ymysg y cronfeydd data cefndirol a gynhelir. Efallai bod mwy ohonynt (Oracle mewn fersiynau masnachol Qt neu ôl-wynebau 3ydd blaid). Comment[cy]=Mae'r math yma o ffynhonnell ddata yn eich galluogi i ddefnyddio tablau cronfa ddata SQL sydd wedi eu storio ar weinydd SQL. Yn dibynnu ar ffurfweddiad eich system, mae MySQL, PostgreSQL a UnixODBC ymysg y cronfeydd data cefndirol a gynhelir. Efallai bod mwy ohonynt (Oracle mewn fersiynau masnachol TQt neu ôl-wynebau 3ydd blaid).
Comment[da]=Denne datakildetype lader dig bruge SQL-databasetabeller gemt på en SQL-server. Afhængig af dine systemindstillinger er MySQL, PostgreSQL og UnixODBC blandt de understøttede underliggende databaser. Der er måske endda flere (Oracle i kommercielle Qt-versioner eller underliggende programmer fra tredjepartsudviklere). Comment[da]=Denne datakildetype lader dig bruge SQL-databasetabeller gemt på en SQL-server. Afhængig af dine systemindstillinger er MySQL, PostgreSQL og UnixODBC blandt de understøttede underliggende databaser. Der er måske endda flere (Oracle i kommercielle TQt-versioner eller underliggende programmer fra tredjepartsudviklere).
Comment[de]= Mit diesem Datenquellentyp können Sie Tabellen von SQL-Datenbanken verwenden, die sich auf einem SQL-Server befinden. Abhängig von der Systemeinrichtung: MySQL, PostgresSQL oder UnixODBC. Möglicherweise sogar weitere (etwa Oracle bei einer kommerziellen QT-Version oder Paketen von Drittanbietern). Comment[de]= Mit diesem Datenquellentyp können Sie Tabellen von SQL-Datenbanken verwenden, die sich auf einem SQL-Server befinden. Abhängig von der Systemeinrichtung: MySQL, PostgresSQL oder UnixODBC. Möglicherweise sogar weitere (etwa Oracle bei einer kommerziellen TQt-Version oder Paketen von Drittanbietern).
Comment[el]=Αυτός ο τύπος πηγής δεδομένων σας επιτρέπει να χρησιμοποιείτε πίνακες βάσεων δεδομένων SQL αποθηκευμένες σε έναν εξυπηρετητή SQL. Ανάλογα με τη ρύθμιση του συστήματος σας, οι MySQL, PostgreSQL και UnixODBC είναι μέσα στις υποστηριζόμενες βάσεις δεδομένων. Μπορεί να υπάρχουν και περισσότερες (Η Oracle σε εμπορικές εκδόσεις της Qt ή άλλες τρίτων κατασκευαστών). Comment[el]=Αυτός ο τύπος πηγής δεδομένων σας επιτρέπει να χρησιμοποιείτε πίνακες βάσεων δεδομένων SQL αποθηκευμένες σε έναν εξυπηρετητή SQL. Ανάλογα με τη ρύθμιση του συστήματος σας, οι MySQL, PostgreSQL και UnixODBC είναι μέσα στις υποστηριζόμενες βάσεις δεδομένων. Μπορεί να υπάρχουν και περισσότερες (Η Oracle σε εμπορικές εκδόσεις της TQt ή άλλες τρίτων κατασκευαστών).
Comment[eo]=Tiu datumfonta tipo permesas uzi SQL-datumbazan tabelon en SQL-servilo. Depende de la konfiguraĵo de via sistemo estas subtenataj MySQL, PostgreSQL kaj UnixODBC. Povas esti pliaj (Orakolo en komercaj Qt-versioj aŭ triapartiaj datumbazajinterfacoj). Comment[eo]=Tiu datumfonta tipo permesas uzi SQL-datumbazan tabelon en SQL-servilo. Depende de la konfiguraĵo de via sistemo estas subtenataj MySQL, PostgreSQL kaj UnixODBC. Povas esti pliaj (Orakolo en komercaj TQt-versioj aŭ triapartiaj datumbazajinterfacoj).
Comment[es]=Este tipo de fuente de datos le permite utilizar tablas de bases de datos almacenadas en un servidor SQL. Dependiendo de la configuración de su sistema, MySQL, PostgreSQL, y UnixODBC están entre los interfaces de bases de datos soportados. Puede que haya incluso más (Oracle, si utiliza una versión de QT con licencia o interfaces de terceras partes). Comment[es]=Este tipo de fuente de datos le permite utilizar tablas de bases de datos almacenadas en un servidor SQL. Dependiendo de la configuración de su sistema, MySQL, PostgreSQL, y UnixODBC están entre los interfaces de bases de datos soportados. Puede que haya incluso más (Oracle, si utiliza una versión de TQt con licencia o interfaces de terceras partes).
Comment[et]=See andmeallika tüüp lubab kasutada SQL-andmebaasi tabeleid, mida hoitakse SQL-serveris. Sõltuvalt süsteemi seadistustest on MySQL, PostgreSQL ja UnixODBC toetatud andmebaasisüsteemide hulgas. Neid võib olla isegi rohkem (Oracle kommertslikes Qt versioonides või kolmandate osapoolte mootorites). Comment[et]=See andmeallika tüüp lubab kasutada SQL-andmebaasi tabeleid, mida hoitakse SQL-serveris. Sõltuvalt süsteemi seadistustest on MySQL, PostgreSQL ja UnixODBC toetatud andmebaasisüsteemide hulgas. Neid võib olla isegi rohkem (Oracle kommertslikes TQt versioonides või kolmandate osapoolte mootorites).
Comment[eu]=Datu-iturburu honek SQL zerbitzari batean gordetako SQL datu-baseko taulak erabiltzeko aukera ematen dizu. Zure sistemaren konfigurazioaren arabera, MySQL, PostgreSQL eta UnixODBC euskarriak onartzen dira. Gehiago ere egon daitezke (Oracle (Qt-ren bertsio komertzialetan) edo hirugarrenen beste euskarri batzuk). Comment[eu]=Datu-iturburu honek SQL zerbitzari batean gordetako SQL datu-baseko taulak erabiltzeko aukera ematen dizu. Zure sistemaren konfigurazioaren arabera, MySQL, PostgreSQL eta UnixODBC euskarriak onartzen dira. Gehiago ere egon daitezke (Oracle (TQt-ren bertsio komertzialetan) edo hirugarrenen beste euskarri batzuk).
Comment[fa]=این نوع متن داده به شما اجازۀ استفاده از جدولهای دادگان SQL ذخیره‌شده در یک کارساز SQL را می‌دهد. بسته به پیکربندی سیستمتان، MySQL، PostgreSQL و UnixODBC، در میان پایانه‌های دادگان پشتیبانی‌شده می‌باشند. حتی ممکن است بیشتر باشند )Oracle در نسخه‌های تجاری Qt یا پایانه‌های گروه 3rd(. Comment[fa]=این نوع متن داده به شما اجازۀ استفاده از جدولهای دادگان SQL ذخیره‌شده در یک کارساز SQL را می‌دهد. بسته به پیکربندی سیستمتان، MySQL، PostgreSQL و UnixODBC، در میان پایانه‌های دادگان پشتیبانی‌شده می‌باشند. حتی ممکن است بیشتر باشند )Oracle در نسخه‌های تجاری TQt یا پایانه‌های گروه 3rd(.
Comment[fi]=Tämä tietolähde käyttää SQL-tietokantojen tauluja. Riippuen järjestelmäsi asetuksista tuetaan MySQL, Postgres ja UnixODBC -tietokantoja. Kantoja voi myös olla enemmän (Oracle, jos omistat kaupallisen version QT:sta). Comment[fi]=Tämä tietolähde käyttää SQL-tietokantojen tauluja. Riippuen järjestelmäsi asetuksista tuetaan MySQL, Postgres ja UnixODBC -tietokantoja. Kantoja voi myös olla enemmän (Oracle, jos omistat kaupallisen version TQt:sta).
Comment[fr]=Ce type de source de données vous permet d'utiliser des tables de base de données SQL stockées sur un serveur SQL. Selon votre configuration, ces tables peuvent venir de MySQL, PostgreSQL et UnixODBC, et d'autres encore (comme Oracle, si vous avez la licence commerciale de Qt, par exemple). Comment[fr]=Ce type de source de données vous permet d'utiliser des tables de base de données SQL stockées sur un serveur SQL. Selon votre configuration, ces tables peuvent venir de MySQL, PostgreSQL et UnixODBC, et d'autres encore (comme Oracle, si vous avez la licence commerciale de TQt, par exemple).
Comment[fy]=Mei dit type gegevensboarne kinne jo SQL-databanktabellen dy bewarre binne op in SQL-tsjinner brûke. Ofhinklik fan jo systeemkonfiguraasje hearre MySQL, PostgreSQL en UnixOBC ta de stipe backends. Der binne mooglik mear (bgl. Oracle yn de kommersje Qt-ferzjes fan backends fan tredden). Comment[fy]=Mei dit type gegevensboarne kinne jo SQL-databanktabellen dy bewarre binne op in SQL-tsjinner brûke. Ofhinklik fan jo systeemkonfiguraasje hearre MySQL, PostgreSQL en UnixOBC ta de stipe backends. Der binne mooglik mear (bgl. Oracle yn de kommersje TQt-ferzjes fan backends fan tredden).
Comment[gl]=Este tipo de fonte de datos permítelle usar as táboas de base de datos armacenadas nun servidor de SQL. Dependendo da configuración do seu sistema, MySQL, PostgreSQL e UnixODBC encóntranse entre os sistemas soportados. Poden até existir máis (Oracle nas versións comerciais de Qt ou mesmo sistemas de terceiros). Comment[gl]=Este tipo de fonte de datos permítelle usar as táboas de base de datos armacenadas nun servidor de SQL. Dependendo da configuración do seu sistema, MySQL, PostgreSQL e UnixODBC encóntranse entre os sistemas soportados. Poden até existir máis (Oracle nas versións comerciais de TQt ou mesmo sistemas de terceiros).
Comment[he]=טיפוס מקור נתונים זה מאפשר לך להשתמש בטבלאות של מסדי נתונים של SQL שמאוחסנות בשרת SQL. בין ממשקי מסדי הנתונים הנתמכים ניתן למנות את MySQL ,PostgreSQL ו־UnixODBC (התמיכה תלויה בהגדרות המערכת שלך). עשויים להיות אף ממשקים נתמכים נוספים, כמו Oracle בגירסאות מסחריות של Qt או ממשקי צד שלישי. Comment[he]=טיפוס מקור נתונים זה מאפשר לך להשתמש בטבלאות של מסדי נתונים של SQL שמאוחסנות בשרת SQL. בין ממשקי מסדי הנתונים הנתמכים ניתן למנות את MySQL ,PostgreSQL ו־UnixODBC (התמיכה תלויה בהגדרות המערכת שלך). עשויים להיות אף ממשקים נתמכים נוספים, כמו Oracle בגירסאות מסחריות של TQt או ממשקי צד שלישי.
Comment[hu]=Ez az adatforrástípus SQL-kiszolgálón tárolt SQL táblák elérését teszi lehetővé. A rendszer konfigurációjától függően MySQL, PostgreSQL és UnixODBC adatbázistípust lehet választani. Ezeken felül még más is előfordulhat (pl. Oracle a Qt fizetős változatában). Comment[hu]=Ez az adatforrástípus SQL-kiszolgálón tárolt SQL táblák elérését teszi lehetővé. A rendszer konfigurációjától függően MySQL, PostgreSQL és UnixODBC adatbázistípust lehet választani. Ezeken felül még más is előfordulhat (pl. Oracle a TQt fizetős változatában).
Comment[is]=Þessi tegund gerir þér kleyft að nota SQL gagnagrunnstöflur sem liggja á SQL þjóni. MySQL, PostgreSQL og UnixODBC eru meðal studdra gagnagrunnsbakenda, háð kerfisuppsetningu þinni. Það gætu jafnvel verið fleiri (Oracle í verslunarútgáfu Qt eða þriðja aðila bakendar). Comment[is]=Þessi tegund gerir þér kleyft að nota SQL gagnagrunnstöflur sem liggja á SQL þjóni. MySQL, PostgreSQL og UnixODBC eru meðal studdra gagnagrunnsbakenda, háð kerfisuppsetningu þinni. Það gætu jafnvel verið fleiri (Oracle í verslunarútgáfu TQt eða þriðja aðila bakendar).
Comment[it]=Questa fonte di dati permette di usare le tabelle di banche dati SQL memorizzate in un server SQL. A seconda della configurazione del tuo sistema, MySQL, PostgreSQL e UnixODBC potrebbero essere alcune delle banche dati supportate. Potrebbero essere supportate anche altre banche dati (Oracle nelle versioni commerciali di Qt o moduli di terze parti). Comment[it]=Questa fonte di dati permette di usare le tabelle di banche dati SQL memorizzate in un server SQL. A seconda della configurazione del tuo sistema, MySQL, PostgreSQL e UnixODBC potrebbero essere alcune delle banche dati supportate. Potrebbero essere supportate anche altre banche dati (Oracle nelle versioni commerciali di TQt o moduli di terze parti).
Comment[ja]=このデータソースタイプは SQL サーバに保存されている SQL データベーステーブルを使用します。システム設定によりますが、MySQL, PostgreSQL, UnixODBC がサポートされているデータベース バックエンドです。他のものも使用可能かもしれません (Qt の商用バージョンでの Oracle や、サードパーティのバックエンドなど)。 Comment[ja]=このデータソースタイプは SQL サーバに保存されている SQL データベーステーブルを使用します。システム設定によりますが、MySQL, PostgreSQL, UnixODBC がサポートされているデータベース バックエンドです。他のものも使用可能かもしれません (TQt の商用バージョンでの Oracle や、サードパーティのバックエンドなど)。
Comment[km]=ប្រភេទ​ប្រភព​ទិន្នន័យ​នេះ​អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​តារាង​មូលដ្ឋាន​ទិន្នន័យ SQL ដែល​បាន​រក្សា​លើ​ម៉ាស៊ីន​បម្រើ SQL ។ ការ​ពឹងផ្អែក​លើ​ការ​កំណត់​រចនា​សម្ព័ន្ធ​ប្រព័ន្ធ​របស់​អ្នក MySQL, PostgreSQL និង UnixODBC គឺ​ក្នុង​ចំណោម​មូលដ្ឋាន​ទិន្នន័យ​ខាងក្រោយ​ដែល​បាន​គាំទ្រ ។ ប្រហែល​ជា​មាន​ច្រើន (Oracle ក្នុង​កំណែ​ពាណិជ្ជកម្ម Qt ឬ ភាគី​ខាងក្រោយ​ទីបី) ។ Comment[km]=ប្រភេទ​ប្រភព​ទិន្នន័យ​នេះ​អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​តារាង​មូលដ្ឋាន​ទិន្នន័យ SQL ដែល​បាន​រក្សា​លើ​ម៉ាស៊ីន​បម្រើ SQL ។ ការ​ពឹងផ្អែក​លើ​ការ​កំណត់​រចនា​សម្ព័ន្ធ​ប្រព័ន្ធ​របស់​អ្នក MySQL, PostgreSQL និង UnixODBC គឺ​ក្នុង​ចំណោម​មូលដ្ឋាន​ទិន្នន័យ​ខាងក្រោយ​ដែល​បាន​គាំទ្រ ។ ប្រហែល​ជា​មាន​ច្រើន (Oracle ក្នុង​កំណែ​ពាណិជ្ជកម្ម TQt ឬ ភាគី​ខាងក្រោយ​ទីបី) ។
Comment[lt]=Šis duomenų šaltinio tipas leidžia jums naudoti SQL duombazės lenteles išsaugotas SQL serveryje. Priklausomai nuo jūsų sistemos konfigūracijos MySQL, PostgreSQL ir UnixODBC yra tarp palaikomų duombazių tipų. Jų gali būti ir daugiau (Oracle komercinėse Qt versijose ar trečių šalių duombazių tipai). Comment[lt]=Šis duomenų šaltinio tipas leidžia jums naudoti SQL duombazės lenteles išsaugotas SQL serveryje. Priklausomai nuo jūsų sistemos konfigūracijos MySQL, PostgreSQL ir UnixODBC yra tarp palaikomų duombazių tipų. Jų gali būti ir daugiau (Oracle komercinėse TQt versijose ar trečių šalių duombazių tipai).
Comment[lv]=Šis datu avota tips ļauj jums izmantot SQL datubāzes tabulas, kas glabājas uz SQL servera. Atkarībā no jūsu sistēmas konfigurācijas: MySQL,PostgreSQL un UnixODBC ir starp atbalstītajām datubāzēm. Šeit var būt arī vairāk (Oracle, ja jūs izmantojiet komerciālu QT versiju vai trešo pušu risinājumus). Comment[lv]=Šis datu avota tips ļauj jums izmantot SQL datubāzes tabulas, kas glabājas uz SQL servera. Atkarībā no jūsu sistēmas konfigurācijas: MySQL,PostgreSQL un UnixODBC ir starp atbalstītajām datubāzēm. Šeit var būt arī vairāk (Oracle, ja jūs izmantojiet komerciālu TQt versiju vai trešo pušu risinājumus).
Comment[ms]=Jenis sumber data ini membenarkan anda menggunakan jadual pangkalan data SQL yang distor dalam Pelayan SQL. Bergantung kepada konfigurasi sistem anda, MySQL, PostgreSQL dan UnixODBC antara bahagian belakang pangkalan data yang disokong. Mungkin terdapat lebih banyak lagi pilihan (Oracle dalam versi Qt komersil atau bahagian belakang pihak ketiga). Comment[ms]=Jenis sumber data ini membenarkan anda menggunakan jadual pangkalan data SQL yang distor dalam Pelayan SQL. Bergantung kepada konfigurasi sistem anda, MySQL, PostgreSQL dan UnixODBC antara bahagian belakang pangkalan data yang disokong. Mungkin terdapat lebih banyak lagi pilihan (Oracle dalam versi TQt komersil atau bahagian belakang pihak ketiga).
Comment[mt]=Dan it-tip ta' sors iħallik tuża tabelli minn databases SQL fuq server SQL. Skond il-konfigurazzjoni tas-sistema tiegħek, jista' jkollok MySQL, PostgreSQL jew UnixODBC bħala sistemi sapportiti, u jista' jkun hemm oħrajn (Oracle fuq verżjonijiet kummerċjali ta' Qt jew oħrajn ta' terzi partiti). Comment[mt]=Dan it-tip ta' sors iħallik tuża tabelli minn databases SQL fuq server SQL. Skond il-konfigurazzjoni tas-sistema tiegħek, jista' jkollok MySQL, PostgreSQL jew UnixODBC bħala sistemi sapportiti, u jista' jkun hemm oħrajn (Oracle fuq verżjonijiet kummerċjali ta' TQt jew oħrajn ta' terzi partiti).
Comment[nb]=Datakilden lar deg bruke en databasetabell lagret på en SQL-tjener. Avhengig av oppsettet støttes databasetjenere som MySQL, PostgreSQL og UnixODBC. I tillegg finnes støtte for flere system (som Oracle i den kommersielle QT-utgaven eller tredjepartsystem). Comment[nb]=Datakilden lar deg bruke en databasetabell lagret på en SQL-tjener. Avhengig av oppsettet støttes databasetjenere som MySQL, PostgreSQL og UnixODBC. I tillegg finnes støtte for flere system (som Oracle i den kommersielle TQt-utgaven eller tredjepartsystem).
Comment[nds]= Mit dissen Datenborntyp laat sik SQL-Datenbanken vun en SQL-Server bruken. Afhängig vun Dien Systeeminstellen warrt Datenbankplegers för MySQL, PostgresSQL un UnixODBC ünnerstütt. Villicht ok mehr (t.B. Oracle in en warflich Qt-Verschoon oder Plegers vun anner Anbeders). Comment[nds]= Mit dissen Datenborntyp laat sik SQL-Datenbanken vun en SQL-Server bruken. Afhängig vun Dien Systeeminstellen warrt Datenbankplegers för MySQL, PostgresSQL un UnixODBC ünnerstütt. Villicht ok mehr (t.B. Oracle in en warflich TQt-Verschoon oder Plegers vun anner Anbeders).
Comment[ne]=यो डेटासंसाधन प्रकारले तपाईंलाई एसक्यूएल सर्भरमा संग्रह भएको एसक्यूएल डाटाबेस प्रयोग गर्न दिन्छ ।तपाईंको प्रणाली कन्फिगरेसनमा, माइएसक्यूएल, पोस्टग्रेएसक्यूएल र युनीक्सओडीबीसी भर परेर जुन समर्थित डाटाबेस ब्याकेन्डहरू हुन् । त्यहाँ पक्कै पनि अझ बढी (व्यापारिक क्यूटी संस्करणहरू वा तेस्रो पार्टीको ब्याकेन्डमा आकाशवाणी हुन्छन्) Comment[ne]=यो डेटासंसाधन प्रकारले तपाईंलाई एसक्यूएल सर्भरमा संग्रह भएको एसक्यूएल डाटाबेस प्रयोग गर्न दिन्छ ।तपाईंको प्रणाली कन्फिगरेसनमा, माइएसक्यूएल, पोस्टग्रेएसक्यूएल र युनीक्सओडीबीसी भर परेर जुन समर्थित डाटाबेस ब्याकेन्डहरू हुन् । त्यहाँ पक्कै पनि अझ बढी (व्यापारिक क्यूटी संस्करणहरू वा तेस्रो पार्टीको ब्याकेन्डमा आकाशवाणी हुन्छन्)
Comment[nl]=Met dit type gegevensbron kunt u SQL-databasetabellen die zijn opgeslagen op een SQL-server gebruiken. Afhankelijk van uw systeemconfiguratie behoren MySQL, PostgreSQL en UnixOBC tot de ondersteunde backends. Er zijn er mogelijk meer (bijv. Oracle in de commerciële Qt-versies of backends van derden). Comment[nl]=Met dit type gegevensbron kunt u SQL-databasetabellen die zijn opgeslagen op een SQL-server gebruiken. Afhankelijk van uw systeemconfiguratie behoren MySQL, PostgreSQL en UnixOBC tot de ondersteunde backends. Er zijn er mogelijk meer (bijv. Oracle in de commerciële TQt-versies of backends van derden).
Comment[nn]=Med denne datakjeldetypen kan du bruka SQL-databasetabellar lagra på ein SQL-tenar. Avhengig av systemoppsettet kan du bruka MySQL, PostgreSQL og UnixODBC. Det finst kanskje til og med fleire. (Oracle i kommersielle Qt-versjonar eller tredjepartstillegg.) Comment[nn]=Med denne datakjeldetypen kan du bruka SQL-databasetabellar lagra på ein SQL-tenar. Avhengig av systemoppsettet kan du bruka MySQL, PostgreSQL og UnixODBC. Det finst kanskje til og med fleire. (Oracle i kommersielle TQt-versjonar eller tredjepartstillegg.)
Comment[pl]=To źródło danych pozwala na przechowywanie tabel w bazach danych na serwerze SQL. W zależności od konfiguracji systemu: MySQL, PostgreSQL oraz UnixODBC są obsługiwane. Oczywiście może ich być więcej, np. Oracle w komercyjnej wersji Qt lub poprzez rozszerzenia innych firm. Comment[pl]=To źródło danych pozwala na przechowywanie tabel w bazach danych na serwerze SQL. W zależności od konfiguracji systemu: MySQL, PostgreSQL oraz UnixODBC są obsługiwane. Oczywiście może ich być więcej, np. Oracle w komercyjnej wersji TQt lub poprzez rozszerzenia innych firm.
Comment[pt]=Este tipo de fonte de dados permite-lhe usar as tabelas de base de dados armazenadas num servidor de SQL. Dependendo da configuração do seu sistema, o MySQL, o PostgreSQL e o UnixODBC encontram-se entre os sistemas suportados. Podem até existir mais (o Oracle nas versões comerciais do Qt ou mesmo sistemas de terceiros). Comment[pt]=Este tipo de fonte de dados permite-lhe usar as tabelas de base de dados armazenadas num servidor de SQL. Dependendo da configuração do seu sistema, o MySQL, o PostgreSQL e o UnixODBC encontram-se entre os sistemas suportados. Podem até existir mais (o Oracle nas versões comerciais do TQt ou mesmo sistemas de terceiros).
Comment[pt_BR]=Esta fonte de dados deixa você usar as tabelas do banco de dados SQL em seu Servidor SQL. Dependendo da configuração do seu sistema, MySQL, PostgreSQL e Unix ODBC estão entre os bancos de dados suportados. Podem existir outros (o Oracle em versões comerciais da Qt). Comment[pt_BR]=Esta fonte de dados deixa você usar as tabelas do banco de dados SQL em seu Servidor SQL. Dependendo da configuração do seu sistema, MySQL, PostgreSQL e Unix ODBC estão entre os bancos de dados suportados. Podem existir outros (o Oracle em versões comerciais da TQt).
Comment[ro]=Acest tip de sursă de date vă permite să utilizaţi tabelele SQL dintr-o bază de date a unui server SQL. În funcţie de configuraţia sistemului dumneavoastră aveţi acces la subsistemul MySQL, PostgreSQL şi UnixODBC. S-ar putea să existe chiar şi mai multe(Oracle în versiunile comerciale Qt sau subsisteme terţe). Comment[ro]=Acest tip de sursă de date vă permite să utilizaţi tabelele SQL dintr-o bază de date a unui server SQL. În funcţie de configuraţia sistemului dumneavoastră aveţi acces la subsistemul MySQL, PostgreSQL şi UnixODBC. S-ar putea să existe chiar şi mai multe(Oracle în versiunile comerciale TQt sau subsisteme terţe).
Comment[ru]=Этот тип данных позволит вам использовать таблицы на сервере баз данных. В зависимости от наличия в системе поддерживаются MySQL, PostgreSQL и UnixODBC. Помимо этого могут быть доступны Oracle в коммерческом Qt и прочие драйвера к базам данным от сторонних производителей Comment[ru]=Этот тип данных позволит вам использовать таблицы на сервере баз данных. В зависимости от наличия в системе поддерживаются MySQL, PostgreSQL и UnixODBC. Помимо этого могут быть доступны Oracle в коммерческом TQt и прочие драйвера к базам данным от сторонних производителей
Comment[se]=Dáinna diehtogáldošlájain sáhtát geavahit SQL-diehtovuođuid SQL-bálvás. MySQL, PostgreSQL ja UnixODBC leat dorjojuvvon diehtovuođđoduogážat. Dáidá gávdnot vel eanet, omd. Oracle kommersiealla QT-veršuvnnain dahje eará moduvllain. Comment[se]=Dáinna diehtogáldošlájain sáhtát geavahit SQL-diehtovuođuid SQL-bálvás. MySQL, PostgreSQL ja UnixODBC leat dorjojuvvon diehtovuođđoduogážat. Dáidá gávdnot vel eanet, omd. Oracle kommersiealla TQt-veršuvnnain dahje eará moduvllain.
Comment[sk]=Tento zdroj dát umožňuje používať databázové tabuľky SQL. Podporované databáze sú MySQL, PostgreSQL, UnixODBC. (Prípadne aj Oracle, ak máte licencovanú verziu Qt alebo databáze iných výrobcov),... Comment[sk]=Tento zdroj dát umožňuje používať databázové tabuľky SQL. Podporované databáze sú MySQL, PostgreSQL, UnixODBC. (Prípadne aj Oracle, ak máte licencovanú verziu TQt alebo databáze iných výrobcov),...
Comment[sl]=Ta tip vira podatkov vam omogoča uporabo zbirke tabel SQL, ki so shranjene na strežniku SQL. Glede na vašo konfiguracijo sistema so podprte med drugim zbirke MySQL, PostgreSQL in UnixODBC. Mogoče bodo tudi druge (Oracle v komercialnih različicah Qt ali podpore tretjih strani). Comment[sl]=Ta tip vira podatkov vam omogoča uporabo zbirke tabel SQL, ki so shranjene na strežniku SQL. Glede na vašo konfiguracijo sistema so podprte med drugim zbirke MySQL, PostgreSQL in UnixODBC. Mogoče bodo tudi druge (Oracle v komercialnih različicah TQt ali podpore tretjih strani).
Comment[sr]=Овај тип извора података вам омогућава да користите табеле из SQL базе података која се налази на SQL серверу. У зависности од подешавања вашег рачунара, MySQL, PostgreSQL и UnixODBC се налазе међу подржаним приступима бази. Могуће је да постоје и додатни приступи (Oracle у комерцијалним Qt верзијама итд.) Comment[sr]=Овај тип извора података вам омогућава да користите табеле из SQL базе података која се налази на SQL серверу. У зависности од подешавања вашег рачунара, MySQL, PostgreSQL и UnixODBC се налазе међу подржаним приступима бази. Могуће је да постоје и додатни приступи (Oracle у комерцијалним TQt верзијама итд.)
Comment[sr@Latn]=Ovaj tip izvora podataka vam omogućava da koristite tabele iz SQL baze podataka koja se nalazi na SQL serveru. U zavisnosti od podešavanja vašeg računara, MySQL, PostgreSQL i UnixODBC se nalaze među podržanim pristupima bazi. Moguće je da postoje i dodatni pristupi (Oracle u komercijalnim Qt verzijama itd.) Comment[sr@Latn]=Ovaj tip izvora podataka vam omogućava da koristite tabele iz SQL baze podataka koja se nalazi na SQL serveru. U zavisnosti od podešavanja vašeg računara, MySQL, PostgreSQL i UnixODBC se nalaze među podržanim pristupima bazi. Moguće je da postoje i dodatni pristupi (Oracle u komercijalnim TQt verzijama itd.)
Comment[sv]=Den här typen av datakälla låter dig använda SQL-databastabeller lagrade på en SQL-server. Beroende på systeminställningarna finns MySQL, Postgres och UnixODBC bland de databaser som stöds. Det kan till och med finnas ännu fler (Oracle, om du använder en licensierad version av QT eller tredjepartsdatabaser). Comment[sv]=Den här typen av datakälla låter dig använda SQL-databastabeller lagrade på en SQL-server. Beroende på systeminställningarna finns MySQL, Postgres och UnixODBC bland de databaser som stöds. Det kan till och med finnas ännu fler (Oracle, om du använder en licensierad version av TQt eller tredjepartsdatabaser).
Comment[tg]=Ин намуди манбаъи маълумот ба шумо имкони истифодаи SQL асоси маълумот мизҳои дар Сервери SQL ҷойгир шуда.Аз шакли системаи шумо вобастааст, MySQL,PostSQL ва UnixODBC дар мобайни асоси маълумот дар анҷом.Дар он ҷо мумкин,ки бошад(Oracle дар коммерсияи Qt тафсир ё 3-ум қисми анҷом). Comment[tg]=Ин намуди манбаъи маълумот ба шумо имкони истифодаи SQL асоси маълумот мизҳои дар Сервери SQL ҷойгир шуда.Аз шакли системаи шумо вобастааст, MySQL,PostSQL ва UnixODBC дар мобайни асоси маълумот дар анҷом.Дар он ҷо мумкин,ки бошад(Oracle дар коммерсияи TQt тафсир ё 3-ум қисми анҷом).
Comment[tr]=Bu verikaynağı tipi bir SQL sunucusundaki SQL veritabanı tablolarını kullanmanıza izin verir.Sistem ayarlarınıza bağlı olarak MySQL, PostgreSQL ve UnixODBC desteklenen veritabanları arasındadır. Daha fazlası da olabilir. (Ticari Qt sürümlerindeki Oracle veya 3. şahıs veritabanları) Comment[tr]=Bu verikaynağı tipi bir SQL sunucusundaki SQL veritabanı tablolarını kullanmanıza izin verir.Sistem ayarlarınıza bağlı olarak MySQL, PostgreSQL ve UnixODBC desteklenen veritabanları arasındadır. Daha fazlası da olabilir. (Ticari TQt sürümlerindeki Oracle veya 3. şahıs veritabanları)
Comment[uk]=Цей тип джерела даних дозволяє вам використовувати таблиці баз даних в серверах SQL. Відповідно до конфігурації вашої системи, підтримуються MySQL, PostgreSQL та UnixODBC. Можливо підтримуються і інші сервери БД (Oracle в комерційній поставці Qt або сервери сторонніх компаній). Comment[uk]=Цей тип джерела даних дозволяє вам використовувати таблиці баз даних в серверах SQL. Відповідно до конфігурації вашої системи, підтримуються MySQL, PostgreSQL та UnixODBC. Можливо підтримуються і інші сервери БД (Oracle в комерційній поставці TQt або сервери сторонніх компаній).
Comment[xh]=Uhlobo lwe mvelaphi ye data ikuvumela ukuba usebenzise iitafile zesiseko sedata ze SQL ezigcinwe Kumncedisi we SQL.Kuxhomekeke kuqwalaselo lwendlela yokusebenza, I SQL yam, PostgreSQL ne UnixODBC zikunye neziphelo zesiseko sedata esixhasiweyo. Kusenokuba nezingaphezulu (I Oracle ekwi thengiso lwenguqulelo ye QT okanye iziphelo zomntu wesithathu). Comment[xh]=Uhlobo lwe mvelaphi ye data ikuvumela ukuba usebenzise iitafile zesiseko sedata ze SQL ezigcinwe Kumncedisi we SQL.Kuxhomekeke kuqwalaselo lwendlela yokusebenza, I SQL yam, PostgreSQL ne UnixODBC zikunye neziphelo zesiseko sedata esixhasiweyo. Kusenokuba nezingaphezulu (I Oracle ekwi thengiso lwenguqulelo ye TQt okanye iziphelo zomntu wesithathu).
Comment[zh_CN]=此数据库类型允许您使用存储于 SQL 服务器的 SQL 数据库表。根据您的系统配置不同MySQL、PostgreSQL 和 UnixODBC 都是支持的后端数据库。可能还有更多(Qt 商业版中附带 Oracle 支持,或使用第三方后端)。 Comment[zh_CN]=此数据库类型允许您使用存储于 SQL 服务器的 SQL 数据库表。根据您的系统配置不同MySQL、PostgreSQL 和 UnixODBC 都是支持的后端数据库。可能还有更多(TQt 商业版中附带 Oracle 支持,或使用第三方后端)。
Comment[zh_TW]=這個資料來源類別讓你使用在一個 SQL 伺服器上面的 SQL 資料表格。根據你的系統設定MySQL、PostgreSQL 與 UnixODBC 都在支援之列。還會有更多(例如在商業版本的 QT 或是第三廠商提供相關支援)。 Comment[zh_TW]=這個資料來源類別讓你使用在一個 SQL 伺服器上面的 SQL 資料表格。根據你的系統設定MySQL、PostgreSQL 與 UnixODBC 都在支援之列。還會有更多(例如在商業版本的 TQt 或是第三廠商提供相關支援)。
X-TDE-Library=kwmailmerge_qtsqldb X-TDE-Library=kwmailmerge_qtsqldb
X-TDE-Capabilities=edit,open X-TDE-Capabilities=edit,open

@ -2,104 +2,104 @@
Type=Service Type=Service
X-TDE-ServiceTypes=KWord/MailMergePlugin X-TDE-ServiceTypes=KWord/MailMergePlugin
Name=Qt-SQL Source (power user) Name=TQt-SQL Source (power user)
Name[bg]=Източник Qt-SQL (за напреднали) Name[bg]=Източник TQt-SQL (за напреднали)
Name[ca]=Font Qt-SQL (usuari expert) Name[ca]=Font TQt-SQL (usuari expert)
Name[cs]=Qt-SQL zdroj (pokročilé) Name[cs]=TQt-SQL zdroj (pokročilé)
Name[cy]=Ffynhonell Qt-SQL (defnyddiwr medrus) Name[cy]=Ffynhonell TQt-SQL (defnyddiwr medrus)
Name[da]=Qt-SQL-kilde (avanceret bruger) Name[da]=TQt-SQL-kilde (avanceret bruger)
Name[de]=Qt-SQL (für fortgeschrittene Benutzer) Name[de]=TQt-SQL (für fortgeschrittene Benutzer)
Name[el]=Πηγή Qt-SQL (προχωρημένου χρήστη) Name[el]=Πηγή TQt-SQL (προχωρημένου χρήστη)
Name[eo]=Qt-SQL-fonto (sperta uzanto) Name[eo]=TQt-SQL-fonto (sperta uzanto)
Name[es]=Fuente Qt-SQL (usuario avanzado) Name[es]=Fuente TQt-SQL (usuario avanzado)
Name[et]=Qt-SQL allikas (nõudlikule kasutajale) Name[et]=TQt-SQL allikas (nõudlikule kasutajale)
Name[eu]=Qt-SQL iturburua (erabiltzaile aurreratua) Name[eu]=TQt-SQL iturburua (erabiltzaile aurreratua)
Name[fa]=متن Qt-SQL )کاربر توان( Name[fa]=متن TQt-SQL )کاربر توان(
Name[fi]=Qt-SQL-lähde (tehokäyttäjä) Name[fi]=TQt-SQL-lähde (tehokäyttäjä)
Name[fr]=Source Qt-SQL (utilisateur expérimenté) Name[fr]=Source TQt-SQL (utilisateur expérimenté)
Name[fy]=QT-SQL-boarne (avansearre brûkers) Name[fy]=TQt-SQL-boarne (avansearre brûkers)
Name[gl]=Fonte de Qt-SQL (administración) Name[gl]=Fonte de TQt-SQL (administración)
Name[he]=מקור של Qt-SQL (משתמש מיומן) Name[he]=מקור של TQt-SQL (משתמש מיומן)
Name[hi]=क्यूटी-एसक्यूएल स्रोत (बड़े उपयोक्ता) Name[hi]=क्यूटी-एसक्यूएल स्रोत (बड़े उपयोक्ता)
Name[hu]=Qt-SQL-forrás (kiemelt felhasználó) Name[hu]=TQt-SQL-forrás (kiemelt felhasználó)
Name[is]=QT-SQL skrá (lengra komnir notendur) Name[is]=TQt-SQL skrá (lengra komnir notendur)
Name[it]=Fonte Qt-SQL (utente esperto) Name[it]=Fonte TQt-SQL (utente esperto)
Name[ja]=Qt-SQL ソース (パワーユーザ) Name[ja]=TQt-SQL ソース (パワーユーザ)
Name[km]=ប្រភព Qt-SQL (អ្នកប្រើ​មាន​អំណាច) Name[km]=ប្រភព TQt-SQL (អ្នកប្រើ​មាន​អំណាច)
Name[lv]=Qt-SQL avots (power lietotājs) Name[lv]=TQt-SQL avots (power lietotājs)
Name[ms]=Sumber Qt-SQL (pengguna kuasa) Name[ms]=Sumber TQt-SQL (pengguna kuasa)
Name[nb]=Qt-SQL kilde (sjefsbruker) Name[nb]=TQt-SQL kilde (sjefsbruker)
Name[nds]=Qt-SQL-Born (för künnige Brukers) Name[nds]=TQt-SQL-Born (för künnige Brukers)
Name[ne]=Qt-SQL स्रोत (पावर प्रयोगकर्ता) Name[ne]=TQt-SQL स्रोत (पावर प्रयोगकर्ता)
Name[nl]=QT-SQL-bron (geavanceerde gebruiker) Name[nl]=TQt-SQL-bron (geavanceerde gebruiker)
Name[nn]=Qt-SQL-kjelde (kraftbrukar) Name[nn]=TQt-SQL-kjelde (kraftbrukar)
Name[pl]=Źródło Qt-SQL (dla zaawansowanych użytkowników) Name[pl]=Źródło TQt-SQL (dla zaawansowanych użytkowników)
Name[pt]=Fonte do Qt-SQL (administração) Name[pt]=Fonte do TQt-SQL (administração)
Name[pt_BR]=Qt-SQL (usuário avançado) Name[pt_BR]=TQt-SQL (usuário avançado)
Name[ru]=Исходный текст Qt-SQL (продвинутый пользователь) Name[ru]=Исходный текст TQt-SQL (продвинутый пользователь)
Name[se]=Qt-SQL-gáldu (áhppegeavaheaddji) Name[se]=TQt-SQL-gáldu (áhppegeavaheaddji)
Name[sk]=Qt-SQL zdroj (power user) Name[sk]=TQt-SQL zdroj (power user)
Name[sl]=Vir Qt-SQL (zahtevni uporabnik) Name[sl]=Vir TQt-SQL (zahtevni uporabnik)
Name[sr]=Qt-SQL извор (администратор) Name[sr]=TQt-SQL извор (администратор)
Name[sr@Latn]=Qt-SQL izvor (administrator) Name[sr@Latn]=TQt-SQL izvor (administrator)
Name[sv]=Qt-SQL-källa (avancerade användare) Name[sv]=TQt-SQL-källa (avancerade användare)
Name[tg]=Манбаъи Qt-SQL (истифодакунандаи зӯр) Name[tg]=Манбаъи TQt-SQL (истифодакунандаи зӯр)
Name[tr]=Qt-SQL Kaynağı (sistem yöneticisi) Name[tr]=TQt-SQL Kaynağı (sistem yöneticisi)
Name[uk]=Джерело Qt-SQL (досвідчений користувач) Name[uk]=Джерело TQt-SQL (досвідчений користувач)
Name[zh_CN]=Qt-SQL 源(高级用户) Name[zh_CN]=TQt-SQL 源(高级用户)
Name[zh_TW]=Qt-SQL 來源 (超級使用者) Name[zh_TW]=TQt-SQL 來源 (超級使用者)
Comment=This datasource type lets you use SQL database tables stored on a SQL Server. Depending on your system configuration, MySQL, PostgreSQL and UnixODBC are among the supported database backends. There might even be more (Oracle in commercial Qt versions or 3rd party backends). Comment=This datasource type lets you use SQL database tables stored on a SQL Server. Depending on your system configuration, MySQL, PostgreSQL and UnixODBC are among the supported database backends.
Comment[ar]=هذا النّوع من المصادر البيانيّة يتيح لك إمكانية استخدام جداول قاعدة بيانيّة SQL مُخَزَّنة على خادم SQL. بحسب تهيئة نظامك، فإنّ MySQL، PostgreSQL و UnixODBC تُعتبر من بين ما هو مدعوم من وُجهات خلفيّة للقواعد البيانيّة. يمكن حتى أن يتواجد المزيد (Oracle في إصدارات Qt التِّجاريّة أو الوُجهات الخلفيّة المملوكة لطرف ثالث). Comment[ar]=هذا النّوع من المصادر البيانيّة يتيح لك إمكانية استخدام جداول قاعدة بيانيّة SQL مُخَزَّنة على خادم SQL. بحسب تهيئة نظامك، فإنّ MySQL، PostgreSQL و UnixODBC تُعتبر من بين ما هو مدعوم من وُجهات خلفيّة للقواعد البيانيّة. يمكن حتى أن يتواجد المزيد (Oracle في إصدارات TQt التِّجاريّة أو الوُجهات الخلفيّة المملوكة لطرف ثالث).
Comment[az]=Bu mənbə sizə SQL verilənlər bazasını istifadə etməyə imkan verir. Sistem qurğularınızdan asılı olaraq : MySQL,Postgres,(Oracle, lisenziyalı QT buraxılışını işlədirsinizsə),.... Comment[az]=Bu mənbə sizə SQL verilənlər bazasını istifadə etməyə imkan verir. Sistem qurğularınızdan asılı olaraq : MySQL,Postgres,(Oracle, lisenziyalı TQt buraxılışını işlədirsinizsə),....
Comment[bg]=Този източник на данни използва таблица за съхранение на данните в СУБД (сървър SQL). В зависимост от настройките, поддръжка имат MySQL, PostgreSQL и UnixODBC. Може да има и още (Oracle в комерсиалните версии на Qt или други). Comment[bg]=Този източник на данни използва таблица за съхранение на данните в СУБД (сървър SQL). В зависимост от настройките, поддръжка имат MySQL, PostgreSQL и UnixODBC. Може да има и още (Oracle в комерсиалните версии на TQt или други).
Comment[bs]=Ovaj tip izvora podataka vam omogućuje da koristiti SQL tabele smještene na SQL serveru. Ovisno o konfiguraciji vašeg sistema, MySQL, PostgreSQL i UnixODBC su među podržanim bazama podataka. Možda čak i više od toga (Oracle u komercijalnim verzijama Qt-a ili backendima iz trećeg izvora). Comment[bs]=Ovaj tip izvora podataka vam omogućuje da koristiti SQL tabele smještene na SQL serveru. Ovisno o konfiguraciji vašeg sistema, MySQL, PostgreSQL i UnixODBC su među podržanim bazama podataka. Možda čak i više od toga (Oracle u komercijalnim verzijama TQt-a ili backendima iz trećeg izvora).
Comment[ca]=Aquest tipus de font de dades permet usar una base de dades SQL guardada a un servidor SQL. Depenent de la configuració del sistema, MySQL, PostgreSQL i UnixODBC estan entre les bases de dades permeses. Inclús n'hi poden haver més(Oracle comercial a la versió Qt i d'altres servidors). Comment[ca]=Aquest tipus de font de dades permet usar una base de dades SQL guardada a un servidor SQL. Depenent de la configuració del sistema, MySQL, PostgreSQL i UnixODBC estan entre les bases de dades permeses. Inclús n'hi poden haver més(Oracle comercial a la versió TQt i d'altres servidors).
Comment[cs]=Tento zdroj dat vám umožní požívat tabulky SQL databází uložených na SQL serveru. V závislosti na vašem nastavení systému jsou podporovány databázové systémy MySQL, PostgreSQL a UnixODBC (Oracle je podporována v komerční verzi Qt nebo v databázových systémech jiných výrobců). Comment[cs]=Tento zdroj dat vám umožní požívat tabulky SQL databází uložených na SQL serveru. V závislosti na vašem nastavení systému jsou podporovány databázové systémy MySQL, PostgreSQL a UnixODBC (Oracle je podporována v komerční verzi TQt nebo v databázových systémech jiných výrobců).
Comment[cy]=Mae'r math yma o ffynhonnell ddata yn eich galluogi i ddefnyddio tablau cronfa ddata SQL sydd wedi eu storio ar weinydd SQL. Yn dibynnu ar ffurfweddiad eich system, mae MySQL, PostgreSQL a UnixODBC ymysg y cronfeydd data cefndirol a gynhelir. Efallai bod mwy ohonynt (Oracle mewn fersiynau masnachol Qt neu ôl-wynebau 3ydd blaid). Comment[cy]=Mae'r math yma o ffynhonnell ddata yn eich galluogi i ddefnyddio tablau cronfa ddata SQL sydd wedi eu storio ar weinydd SQL. Yn dibynnu ar ffurfweddiad eich system, mae MySQL, PostgreSQL a UnixODBC ymysg y cronfeydd data cefndirol a gynhelir. Efallai bod mwy ohonynt (Oracle mewn fersiynau masnachol TQt neu ôl-wynebau 3ydd blaid).
Comment[da]=Denne datakildetype lader dig bruge SQL-databasetabeller gemt på en SQL-server. Afhængig af dine systemindstillinger er MySQL, PostgreSQL og UnixODBC blandt de understøttede underliggende databaser. Der er måske endda flere (Oracle i kommercielle Qt-versioner eller underliggende programmer fra tredjepartsudviklere). Comment[da]=Denne datakildetype lader dig bruge SQL-databasetabeller gemt på en SQL-server. Afhængig af dine systemindstillinger er MySQL, PostgreSQL og UnixODBC blandt de understøttede underliggende databaser. Der er måske endda flere (Oracle i kommercielle TQt-versioner eller underliggende programmer fra tredjepartsudviklere).
Comment[de]= Mit diesem Datenquellentyp können Sie Tabellen von SQL-Datenbanken verwenden, die sich auf einem SQL-Server befinden. Abhängig von der Systemeinrichtung: MySQL, PostgresSQL oder UnixODBC. Möglicherweise sogar weitere (etwa Oracle bei einer kommerziellen QT-Version oder Paketen von Drittanbietern). Comment[de]= Mit diesem Datenquellentyp können Sie Tabellen von SQL-Datenbanken verwenden, die sich auf einem SQL-Server befinden. Abhängig von der Systemeinrichtung: MySQL, PostgresSQL oder UnixODBC. Möglicherweise sogar weitere (etwa Oracle bei einer kommerziellen TQt-Version oder Paketen von Drittanbietern).
Comment[el]=Αυτός ο τύπος πηγής δεδομένων σας επιτρέπει να χρησιμοποιείτε πίνακες βάσεων δεδομένων SQL αποθηκευμένες σε έναν εξυπηρετητή SQL. Ανάλογα με τη ρύθμιση του συστήματος σας, οι MySQL, PostgreSQL και UnixODBC είναι μέσα στις υποστηριζόμενες βάσεις δεδομένων. Μπορεί να υπάρχουν και περισσότερες (Η Oracle σε εμπορικές εκδόσεις της Qt ή άλλες τρίτων κατασκευαστών). Comment[el]=Αυτός ο τύπος πηγής δεδομένων σας επιτρέπει να χρησιμοποιείτε πίνακες βάσεων δεδομένων SQL αποθηκευμένες σε έναν εξυπηρετητή SQL. Ανάλογα με τη ρύθμιση του συστήματος σας, οι MySQL, PostgreSQL και UnixODBC είναι μέσα στις υποστηριζόμενες βάσεις δεδομένων. Μπορεί να υπάρχουν και περισσότερες (Η Oracle σε εμπορικές εκδόσεις της TQt ή άλλες τρίτων κατασκευαστών).
Comment[eo]=Tiu datumfonta tipo permesas uzi SQL-datumbazan tabelon en SQL-servilo. Depende de la konfiguraĵo de via sistemo estas subtenataj MySQL, PostgreSQL kaj UnixODBC. Povas esti pliaj (Orakolo en komercaj Qt-versioj aŭ triapartiaj datumbazajinterfacoj). Comment[eo]=Tiu datumfonta tipo permesas uzi SQL-datumbazan tabelon en SQL-servilo. Depende de la konfiguraĵo de via sistemo estas subtenataj MySQL, PostgreSQL kaj UnixODBC. Povas esti pliaj (Orakolo en komercaj TQt-versioj aŭ triapartiaj datumbazajinterfacoj).
Comment[es]=Este tipo de fuente de datos le permite utilizar tablas de bases de datos almacenadas en un servidor SQL. Dependiendo de la configuración de su sistema, MySQL, PostgreSQL, y UnixODBC están entre los interfaces de bases de datos soportados. Puede que haya incluso más (Oracle, si utiliza una versión de QT con licencia o interfaces de terceras partes). Comment[es]=Este tipo de fuente de datos le permite utilizar tablas de bases de datos almacenadas en un servidor SQL. Dependiendo de la configuración de su sistema, MySQL, PostgreSQL, y UnixODBC están entre los interfaces de bases de datos soportados. Puede que haya incluso más (Oracle, si utiliza una versión de TQt con licencia o interfaces de terceras partes).
Comment[et]=See andmeallika tüüp lubab kasutada SQL-andmebaasi tabeleid, mida hoitakse SQL-serveris. Sõltuvalt süsteemi seadistustest on MySQL, PostgreSQL ja UnixODBC toetatud andmebaasisüsteemide hulgas. Neid võib olla isegi rohkem (Oracle kommertslikes Qt versioonides või kolmandate osapoolte mootorites). Comment[et]=See andmeallika tüüp lubab kasutada SQL-andmebaasi tabeleid, mida hoitakse SQL-serveris. Sõltuvalt süsteemi seadistustest on MySQL, PostgreSQL ja UnixODBC toetatud andmebaasisüsteemide hulgas. Neid võib olla isegi rohkem (Oracle kommertslikes TQt versioonides või kolmandate osapoolte mootorites).
Comment[eu]=Datu-iturburu honek SQL zerbitzari batean gordetako SQL datu-baseko taulak erabiltzeko aukera ematen dizu. Zure sistemaren konfigurazioaren arabera, MySQL, PostgreSQL eta UnixODBC euskarriak onartzen dira. Gehiago ere egon daitezke (Oracle (Qt-ren bertsio komertzialetan) edo hirugarrenen beste euskarri batzuk). Comment[eu]=Datu-iturburu honek SQL zerbitzari batean gordetako SQL datu-baseko taulak erabiltzeko aukera ematen dizu. Zure sistemaren konfigurazioaren arabera, MySQL, PostgreSQL eta UnixODBC euskarriak onartzen dira. Gehiago ere egon daitezke (Oracle (TQt-ren bertsio komertzialetan) edo hirugarrenen beste euskarri batzuk).
Comment[fa]=این نوع متن داده به شما اجازۀ استفاده از جدولهای دادگان SQL ذخیره‌شده در یک کارساز SQL را می‌دهد. بسته به پیکربندی سیستمتان، MySQL، PostgreSQL و UnixODBC، در میان پایانه‌های دادگان پشتیبانی‌شده می‌باشند. حتی ممکن است بیشتر باشند )Oracle در نسخه‌های تجاری Qt یا پایانه‌های گروه 3rd(. Comment[fa]=این نوع متن داده به شما اجازۀ استفاده از جدولهای دادگان SQL ذخیره‌شده در یک کارساز SQL را می‌دهد. بسته به پیکربندی سیستمتان، MySQL، PostgreSQL و UnixODBC، در میان پایانه‌های دادگان پشتیبانی‌شده می‌باشند. حتی ممکن است بیشتر باشند )Oracle در نسخه‌های تجاری TQt یا پایانه‌های گروه 3rd(.
Comment[fi]=Tämä tietolähde käyttää SQL-tietokantojen tauluja. Riippuen järjestelmäsi asetuksista tuetaan MySQL, Postgres ja UnixODBC -tietokantoja. Kantoja voi myös olla enemmän (Oracle, jos omistat kaupallisen version QT:sta). Comment[fi]=Tämä tietolähde käyttää SQL-tietokantojen tauluja. Riippuen järjestelmäsi asetuksista tuetaan MySQL, Postgres ja UnixODBC -tietokantoja. Kantoja voi myös olla enemmän (Oracle, jos omistat kaupallisen version TQt:sta).
Comment[fr]=Ce type de source de données vous permet d'utiliser des tables de base de données SQL stockées sur un serveur SQL. Selon votre configuration, ces tables peuvent venir de MySQL, PostgreSQL et UnixODBC, et d'autres encore (comme Oracle, si vous avez la licence commerciale de Qt, par exemple). Comment[fr]=Ce type de source de données vous permet d'utiliser des tables de base de données SQL stockées sur un serveur SQL. Selon votre configuration, ces tables peuvent venir de MySQL, PostgreSQL et UnixODBC, et d'autres encore (comme Oracle, si vous avez la licence commerciale de TQt, par exemple).
Comment[fy]=Mei dit type gegevensboarne kinne jo SQL-databanktabellen dy bewarre binne op in SQL-tsjinner brûke. Ofhinklik fan jo systeemkonfiguraasje hearre MySQL, PostgreSQL en UnixOBC ta de stipe backends. Der binne mooglik mear (bgl. Oracle yn de kommersje Qt-ferzjes fan backends fan tredden). Comment[fy]=Mei dit type gegevensboarne kinne jo SQL-databanktabellen dy bewarre binne op in SQL-tsjinner brûke. Ofhinklik fan jo systeemkonfiguraasje hearre MySQL, PostgreSQL en UnixOBC ta de stipe backends. Der binne mooglik mear (bgl. Oracle yn de kommersje TQt-ferzjes fan backends fan tredden).
Comment[gl]=Este tipo de fonte de datos permítelle usar as táboas de base de datos armacenadas nun servidor de SQL. Dependendo da configuración do seu sistema, MySQL, PostgreSQL e UnixODBC encóntranse entre os sistemas soportados. Poden até existir máis (Oracle nas versións comerciais de Qt ou mesmo sistemas de terceiros). Comment[gl]=Este tipo de fonte de datos permítelle usar as táboas de base de datos armacenadas nun servidor de SQL. Dependendo da configuración do seu sistema, MySQL, PostgreSQL e UnixODBC encóntranse entre os sistemas soportados. Poden até existir máis (Oracle nas versións comerciais de TQt ou mesmo sistemas de terceiros).
Comment[he]=טיפוס מקור נתונים זה מאפשר לך להשתמש בטבלאות של מסדי נתונים של SQL שמאוחסנות בשרת SQL. בין ממשקי מסדי הנתונים הנתמכים ניתן למנות את MySQL ,PostgreSQL ו־UnixODBC (התמיכה תלויה בהגדרות המערכת שלך). עשויים להיות אף ממשקים נתמכים נוספים, כמו Oracle בגירסאות מסחריות של Qt או ממשקי צד שלישי. Comment[he]=טיפוס מקור נתונים זה מאפשר לך להשתמש בטבלאות של מסדי נתונים של SQL שמאוחסנות בשרת SQL. בין ממשקי מסדי הנתונים הנתמכים ניתן למנות את MySQL ,PostgreSQL ו־UnixODBC (התמיכה תלויה בהגדרות המערכת שלך). עשויים להיות אף ממשקים נתמכים נוספים, כמו Oracle בגירסאות מסחריות של TQt או ממשקי צד שלישי.
Comment[hu]=Ez az adatforrástípus SQL-kiszolgálón tárolt SQL táblák elérését teszi lehetővé. A rendszer konfigurációjától függően MySQL, PostgreSQL és UnixODBC adatbázistípust lehet választani. Ezeken felül még más is előfordulhat (pl. Oracle a Qt fizetős változatában). Comment[hu]=Ez az adatforrástípus SQL-kiszolgálón tárolt SQL táblák elérését teszi lehetővé. A rendszer konfigurációjától függően MySQL, PostgreSQL és UnixODBC adatbázistípust lehet választani. Ezeken felül még más is előfordulhat (pl. Oracle a TQt fizetős változatában).
Comment[is]=Þessi tegund gerir þér kleyft að nota SQL gagnagrunnstöflur sem liggja á SQL þjóni. MySQL, PostgreSQL og UnixODBC eru meðal studdra gagnagrunnsbakenda, háð kerfisuppsetningu þinni. Það gætu jafnvel verið fleiri (Oracle í verslunarútgáfu Qt eða þriðja aðila bakendar). Comment[is]=Þessi tegund gerir þér kleyft að nota SQL gagnagrunnstöflur sem liggja á SQL þjóni. MySQL, PostgreSQL og UnixODBC eru meðal studdra gagnagrunnsbakenda, háð kerfisuppsetningu þinni. Það gætu jafnvel verið fleiri (Oracle í verslunarútgáfu TQt eða þriðja aðila bakendar).
Comment[it]=Questa fonte di dati permette di usare le tabelle di banche dati SQL memorizzate in un server SQL. A seconda della configurazione del tuo sistema, MySQL, PostgreSQL e UnixODBC potrebbero essere alcune delle banche dati supportate. Potrebbero essere supportate anche altre banche dati (Oracle nelle versioni commerciali di Qt o moduli di terze parti). Comment[it]=Questa fonte di dati permette di usare le tabelle di banche dati SQL memorizzate in un server SQL. A seconda della configurazione del tuo sistema, MySQL, PostgreSQL e UnixODBC potrebbero essere alcune delle banche dati supportate. Potrebbero essere supportate anche altre banche dati (Oracle nelle versioni commerciali di TQt o moduli di terze parti).
Comment[ja]=このデータソースタイプは SQL サーバに保存されている SQL データベーステーブルを使用します。システム設定によりますが、MySQL, PostgreSQL, UnixODBC がサポートされているデータベース バックエンドです。他のものも使用可能かもしれません (Qt の商用バージョンでの Oracle や、サードパーティのバックエンドなど)。 Comment[ja]=このデータソースタイプは SQL サーバに保存されている SQL データベーステーブルを使用します。システム設定によりますが、MySQL, PostgreSQL, UnixODBC がサポートされているデータベース バックエンドです。他のものも使用可能かもしれません (TQt の商用バージョンでの Oracle や、サードパーティのバックエンドなど)。
Comment[km]=ប្រភេទ​ប្រភព​ទិន្នន័យ​នេះ​អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​តារាង​មូលដ្ឋាន​ទិន្នន័យ SQL ដែល​បាន​រក្សា​លើ​ម៉ាស៊ីន​បម្រើ SQL ។ ការ​ពឹងផ្អែក​លើ​ការ​កំណត់​រចនា​សម្ព័ន្ធ​ប្រព័ន្ធ​របស់​អ្នក MySQL, PostgreSQL និង UnixODBC គឺ​ក្នុង​ចំណោម​មូលដ្ឋាន​ទិន្នន័យ​ខាងក្រោយ​ដែល​បាន​គាំទ្រ ។ ប្រហែល​ជា​មាន​ច្រើន (Oracle ក្នុង​កំណែ​ពាណិជ្ជកម្ម Qt ឬ ភាគី​ខាងក្រោយ​ទីបី) ។ Comment[km]=ប្រភេទ​ប្រភព​ទិន្នន័យ​នេះ​អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​តារាង​មូលដ្ឋាន​ទិន្នន័យ SQL ដែល​បាន​រក្សា​លើ​ម៉ាស៊ីន​បម្រើ SQL ។ ការ​ពឹងផ្អែក​លើ​ការ​កំណត់​រចនា​សម្ព័ន្ធ​ប្រព័ន្ធ​របស់​អ្នក MySQL, PostgreSQL និង UnixODBC គឺ​ក្នុង​ចំណោម​មូលដ្ឋាន​ទិន្នន័យ​ខាងក្រោយ​ដែល​បាន​គាំទ្រ ។ ប្រហែល​ជា​មាន​ច្រើន (Oracle ក្នុង​កំណែ​ពាណិជ្ជកម្ម TQt ឬ ភាគី​ខាងក្រោយ​ទីបី) ។
Comment[lt]=Šis duomenų šaltinio tipas leidžia jums naudoti SQL duombazės lenteles išsaugotas SQL serveryje. Priklausomai nuo jūsų sistemos konfigūracijos MySQL, PostgreSQL ir UnixODBC yra tarp palaikomų duombazių tipų. Jų gali būti ir daugiau (Oracle komercinėse Qt versijose ar trečių šalių duombazių tipai). Comment[lt]=Šis duomenų šaltinio tipas leidžia jums naudoti SQL duombazės lenteles išsaugotas SQL serveryje. Priklausomai nuo jūsų sistemos konfigūracijos MySQL, PostgreSQL ir UnixODBC yra tarp palaikomų duombazių tipų. Jų gali būti ir daugiau (Oracle komercinėse TQt versijose ar trečių šalių duombazių tipai).
Comment[lv]=Šis datu avota tips ļauj jums izmantot SQL datubāzes tabulas, kas glabājas uz SQL servera. Atkarībā no jūsu sistēmas konfigurācijas: MySQL,PostgreSQL un UnixODBC ir starp atbalstītajām datubāzēm. Šeit var būt arī vairāk (Oracle, ja jūs izmantojiet komerciālu QT versiju vai trešo pušu risinājumus). Comment[lv]=Šis datu avota tips ļauj jums izmantot SQL datubāzes tabulas, kas glabājas uz SQL servera. Atkarībā no jūsu sistēmas konfigurācijas: MySQL,PostgreSQL un UnixODBC ir starp atbalstītajām datubāzēm. Šeit var būt arī vairāk (Oracle, ja jūs izmantojiet komerciālu TQt versiju vai trešo pušu risinājumus).
Comment[ms]=Jenis sumber data ini membenarkan anda menggunakan jadual pangkalan data SQL yang distor dalam Pelayan SQL. Bergantung kepada konfigurasi sistem anda, MySQL, PostgreSQL dan UnixODBC antara bahagian belakang pangkalan data yang disokong. Mungkin terdapat lebih banyak lagi pilihan (Oracle dalam versi Qt komersil atau bahagian belakang pihak ketiga). Comment[ms]=Jenis sumber data ini membenarkan anda menggunakan jadual pangkalan data SQL yang distor dalam Pelayan SQL. Bergantung kepada konfigurasi sistem anda, MySQL, PostgreSQL dan UnixODBC antara bahagian belakang pangkalan data yang disokong. Mungkin terdapat lebih banyak lagi pilihan (Oracle dalam versi TQt komersil atau bahagian belakang pihak ketiga).
Comment[mt]=Dan it-tip ta' sors iħallik tuża tabelli minn databases SQL fuq server SQL. Skond il-konfigurazzjoni tas-sistema tiegħek, jista' jkollok MySQL, PostgreSQL jew UnixODBC bħala sistemi sapportiti, u jista' jkun hemm oħrajn (Oracle fuq verżjonijiet kummerċjali ta' Qt jew oħrajn ta' terzi partiti). Comment[mt]=Dan it-tip ta' sors iħallik tuża tabelli minn databases SQL fuq server SQL. Skond il-konfigurazzjoni tas-sistema tiegħek, jista' jkollok MySQL, PostgreSQL jew UnixODBC bħala sistemi sapportiti, u jista' jkun hemm oħrajn (Oracle fuq verżjonijiet kummerċjali ta' TQt jew oħrajn ta' terzi partiti).
Comment[nb]=Datakilden lar deg bruke en databasetabell lagret på en SQL-tjener. Avhengig av oppsettet støttes databasetjenere som MySQL, PostgreSQL og UnixODBC. I tillegg finnes støtte for flere system (som Oracle i den kommersielle QT-utgaven eller tredjepartsystem). Comment[nb]=Datakilden lar deg bruke en databasetabell lagret på en SQL-tjener. Avhengig av oppsettet støttes databasetjenere som MySQL, PostgreSQL og UnixODBC. I tillegg finnes støtte for flere system (som Oracle i den kommersielle TQt-utgaven eller tredjepartsystem).
Comment[nds]= Mit dissen Datenborntyp laat sik SQL-Datenbanken vun en SQL-Server bruken. Afhängig vun Dien Systeeminstellen warrt Datenbankplegers för MySQL, PostgresSQL un UnixODBC ünnerstütt. Villicht ok mehr (t.B. Oracle in en warflich Qt-Verschoon oder Plegers vun anner Anbeders). Comment[nds]= Mit dissen Datenborntyp laat sik SQL-Datenbanken vun en SQL-Server bruken. Afhängig vun Dien Systeeminstellen warrt Datenbankplegers för MySQL, PostgresSQL un UnixODBC ünnerstütt. Villicht ok mehr (t.B. Oracle in en warflich TQt-Verschoon oder Plegers vun anner Anbeders).
Comment[ne]=यो डेटासंसाधन प्रकारले तपाईंलाई एसक्यूएल सर्भरमा संग्रह भएको एसक्यूएल डाटाबेस प्रयोग गर्न दिन्छ ।तपाईंको प्रणाली कन्फिगरेसनमा, माइएसक्यूएल, पोस्टग्रेएसक्यूएल र युनीक्सओडीबीसी भर परेर जुन समर्थित डाटाबेस ब्याकेन्डहरू हुन् । त्यहाँ पक्कै पनि अझ बढी (व्यापारिक क्यूटी संस्करणहरू वा तेस्रो पार्टीको ब्याकेन्डमा आकाशवाणी हुन्छन्) Comment[ne]=यो डेटासंसाधन प्रकारले तपाईंलाई एसक्यूएल सर्भरमा संग्रह भएको एसक्यूएल डाटाबेस प्रयोग गर्न दिन्छ ।तपाईंको प्रणाली कन्फिगरेसनमा, माइएसक्यूएल, पोस्टग्रेएसक्यूएल र युनीक्सओडीबीसी भर परेर जुन समर्थित डाटाबेस ब्याकेन्डहरू हुन् । त्यहाँ पक्कै पनि अझ बढी (व्यापारिक क्यूटी संस्करणहरू वा तेस्रो पार्टीको ब्याकेन्डमा आकाशवाणी हुन्छन्)
Comment[nl]=Met dit type gegevensbron kunt u SQL-databasetabellen die zijn opgeslagen op een SQL-server gebruiken. Afhankelijk van uw systeemconfiguratie behoren MySQL, PostgreSQL en UnixOBC tot de ondersteunde backends. Er zijn er mogelijk meer (bijv. Oracle in de commerciële Qt-versies of backends van derden). Comment[nl]=Met dit type gegevensbron kunt u SQL-databasetabellen die zijn opgeslagen op een SQL-server gebruiken. Afhankelijk van uw systeemconfiguratie behoren MySQL, PostgreSQL en UnixOBC tot de ondersteunde backends. Er zijn er mogelijk meer (bijv. Oracle in de commerciële TQt-versies of backends van derden).
Comment[nn]=Med denne datakjeldetypen kan du bruka SQL-databasetabellar lagra på ein SQL-tenar. Avhengig av systemoppsettet kan du bruka MySQL, PostgreSQL og UnixODBC. Det finst kanskje til og med fleire. (Oracle i kommersielle Qt-versjonar eller tredjepartstillegg.) Comment[nn]=Med denne datakjeldetypen kan du bruka SQL-databasetabellar lagra på ein SQL-tenar. Avhengig av systemoppsettet kan du bruka MySQL, PostgreSQL og UnixODBC. Det finst kanskje til og med fleire. (Oracle i kommersielle TQt-versjonar eller tredjepartstillegg.)
Comment[pl]=To źródło danych pozwala na przechowywanie tabel w bazach danych na serwerze SQL. W zależności od konfiguracji systemu: MySQL, PostgreSQL oraz UnixODBC są obsługiwane. Oczywiście może ich być więcej, np. Oracle w komercyjnej wersji Qt lub poprzez rozszerzenia innych firm. Comment[pl]=To źródło danych pozwala na przechowywanie tabel w bazach danych na serwerze SQL. W zależności od konfiguracji systemu: MySQL, PostgreSQL oraz UnixODBC są obsługiwane. Oczywiście może ich być więcej, np. Oracle w komercyjnej wersji TQt lub poprzez rozszerzenia innych firm.
Comment[pt]=Este tipo de fonte de dados permite-lhe usar as tabelas de base de dados armazenadas num servidor de SQL. Dependendo da configuração do seu sistema, o MySQL, o PostgreSQL e o UnixODBC encontram-se entre os sistemas suportados. Podem até existir mais (o Oracle nas versões comerciais do Qt ou mesmo sistemas de terceiros). Comment[pt]=Este tipo de fonte de dados permite-lhe usar as tabelas de base de dados armazenadas num servidor de SQL. Dependendo da configuração do seu sistema, o MySQL, o PostgreSQL e o UnixODBC encontram-se entre os sistemas suportados. Podem até existir mais (o Oracle nas versões comerciais do TQt ou mesmo sistemas de terceiros).
Comment[pt_BR]=Esta fonte de dados deixa você usar as tabelas do banco de dados SQL em seu Servidor SQL. Dependendo da configuração do seu sistema, MySQL, PostgreSQL e Unix ODBC estão entre os bancos de dados suportados. Podem existir outros (o Oracle em versões comerciais da Qt). Comment[pt_BR]=Esta fonte de dados deixa você usar as tabelas do banco de dados SQL em seu Servidor SQL. Dependendo da configuração do seu sistema, MySQL, PostgreSQL e Unix ODBC estão entre os bancos de dados suportados. Podem existir outros (o Oracle em versões comerciais da TQt).
Comment[ro]=Acest tip de sursă de date vă permite să utilizaţi tabelele SQL dintr-o bază de date a unui server SQL. În funcţie de configuraţia sistemului dumneavoastră aveţi acces la subsistemul MySQL, PostgreSQL şi UnixODBC. S-ar putea să existe chiar şi mai multe(Oracle în versiunile comerciale Qt sau subsisteme terţe). Comment[ro]=Acest tip de sursă de date vă permite să utilizaţi tabelele SQL dintr-o bază de date a unui server SQL. În funcţie de configuraţia sistemului dumneavoastră aveţi acces la subsistemul MySQL, PostgreSQL şi UnixODBC. S-ar putea să existe chiar şi mai multe(Oracle în versiunile comerciale TQt sau subsisteme terţe).
Comment[ru]=Этот тип данных позволит вам использовать таблицы на сервере баз данных. В зависимости от наличия в системе поддерживаются MySQL, PostgreSQL и UnixODBC. Помимо этого могут быть доступны Oracle в коммерческом Qt и прочие драйвера к базам данным от сторонних производителей Comment[ru]=Этот тип данных позволит вам использовать таблицы на сервере баз данных. В зависимости от наличия в системе поддерживаются MySQL, PostgreSQL и UnixODBC. Помимо этого могут быть доступны Oracle в коммерческом TQt и прочие драйвера к базам данным от сторонних производителей
Comment[se]=Dáinna diehtogáldošlájain sáhtát geavahit SQL-diehtovuođuid SQL-bálvás. MySQL, PostgreSQL ja UnixODBC leat dorjojuvvon diehtovuođđoduogážat. Dáidá gávdnot vel eanet, omd. Oracle kommersiealla QT-veršuvnnain dahje eará moduvllain. Comment[se]=Dáinna diehtogáldošlájain sáhtát geavahit SQL-diehtovuođuid SQL-bálvás. MySQL, PostgreSQL ja UnixODBC leat dorjojuvvon diehtovuođđoduogážat. Dáidá gávdnot vel eanet, omd. Oracle kommersiealla TQt-veršuvnnain dahje eará moduvllain.
Comment[sk]=Tento zdroj dát umožňuje používať databázové tabuľky SQL. Podporované databáze sú MySQL, PostgreSQL, UnixODBC. (Prípadne aj Oracle, ak máte licencovanú verziu Qt alebo databáze iných výrobcov),... Comment[sk]=Tento zdroj dát umožňuje používať databázové tabuľky SQL. Podporované databáze sú MySQL, PostgreSQL, UnixODBC. (Prípadne aj Oracle, ak máte licencovanú verziu TQt alebo databáze iných výrobcov),...
Comment[sl]=Ta tip vira podatkov vam omogoča uporabo zbirke tabel SQL, ki so shranjene na strežniku SQL. Glede na vašo konfiguracijo sistema so podprte med drugim zbirke MySQL, PostgreSQL in UnixODBC. Mogoče bodo tudi druge (Oracle v komercialnih različicah Qt ali podpore tretjih strani). Comment[sl]=Ta tip vira podatkov vam omogoča uporabo zbirke tabel SQL, ki so shranjene na strežniku SQL. Glede na vašo konfiguracijo sistema so podprte med drugim zbirke MySQL, PostgreSQL in UnixODBC. Mogoče bodo tudi druge (Oracle v komercialnih različicah TQt ali podpore tretjih strani).
Comment[sr]=Овај тип извора података вам омогућава да користите табеле из SQL базе података која се налази на SQL серверу. У зависности од подешавања вашег рачунара, MySQL, PostgreSQL и UnixODBC се налазе међу подржаним приступима бази. Могуће је да постоје и додатни приступи (Oracle у комерцијалним Qt верзијама итд.) Comment[sr]=Овај тип извора података вам омогућава да користите табеле из SQL базе података која се налази на SQL серверу. У зависности од подешавања вашег рачунара, MySQL, PostgreSQL и UnixODBC се налазе међу подржаним приступима бази. Могуће је да постоје и додатни приступи (Oracle у комерцијалним TQt верзијама итд.)
Comment[sr@Latn]=Ovaj tip izvora podataka vam omogućava da koristite tabele iz SQL baze podataka koja se nalazi na SQL serveru. U zavisnosti od podešavanja vašeg računara, MySQL, PostgreSQL i UnixODBC se nalaze među podržanim pristupima bazi. Moguće je da postoje i dodatni pristupi (Oracle u komercijalnim Qt verzijama itd.) Comment[sr@Latn]=Ovaj tip izvora podataka vam omogućava da koristite tabele iz SQL baze podataka koja se nalazi na SQL serveru. U zavisnosti od podešavanja vašeg računara, MySQL, PostgreSQL i UnixODBC se nalaze među podržanim pristupima bazi. Moguće je da postoje i dodatni pristupi (Oracle u komercijalnim TQt verzijama itd.)
Comment[sv]=Den här typen av datakälla låter dig använda SQL-databastabeller lagrade på en SQL-server. Beroende på systeminställningarna finns MySQL, Postgres och UnixODBC bland de databaser som stöds. Det kan till och med finnas ännu fler (Oracle, om du använder en licensierad version av QT eller tredjepartsdatabaser). Comment[sv]=Den här typen av datakälla låter dig använda SQL-databastabeller lagrade på en SQL-server. Beroende på systeminställningarna finns MySQL, Postgres och UnixODBC bland de databaser som stöds. Det kan till och med finnas ännu fler (Oracle, om du använder en licensierad version av TQt eller tredjepartsdatabaser).
Comment[tg]=Ин намуди манбаъи маълумот ба шумо имкони истифодаи SQL асоси маълумот мизҳои дар Сервери SQL ҷойгир шуда.Аз шакли системаи шумо вобастааст, MySQL,PostSQL ва UnixODBC дар мобайни асоси маълумот дар анҷом.Дар он ҷо мумкин,ки бошад(Oracle дар коммерсияи Qt тафсир ё 3-ум қисми анҷом). Comment[tg]=Ин намуди манбаъи маълумот ба шумо имкони истифодаи SQL асоси маълумот мизҳои дар Сервери SQL ҷойгир шуда.Аз шакли системаи шумо вобастааст, MySQL,PostSQL ва UnixODBC дар мобайни асоси маълумот дар анҷом.Дар он ҷо мумкин,ки бошад(Oracle дар коммерсияи TQt тафсир ё 3-ум қисми анҷом).
Comment[tr]=Bu verikaynağı tipi bir SQL sunucusundaki SQL veritabanı tablolarını kullanmanıza izin verir.Sistem ayarlarınıza bağlı olarak MySQL, PostgreSQL ve UnixODBC desteklenen veritabanları arasındadır. Daha fazlası da olabilir. (Ticari Qt sürümlerindeki Oracle veya 3. şahıs veritabanları) Comment[tr]=Bu verikaynağı tipi bir SQL sunucusundaki SQL veritabanı tablolarını kullanmanıza izin verir.Sistem ayarlarınıza bağlı olarak MySQL, PostgreSQL ve UnixODBC desteklenen veritabanları arasındadır. Daha fazlası da olabilir. (Ticari TQt sürümlerindeki Oracle veya 3. şahıs veritabanları)
Comment[uk]=Цей тип джерела даних дозволяє вам використовувати таблиці баз даних в серверах SQL. Відповідно до конфігурації вашої системи, підтримуються MySQL, PostgreSQL та UnixODBC. Можливо підтримуються і інші сервери БД (Oracle в комерційній поставці Qt або сервери сторонніх компаній). Comment[uk]=Цей тип джерела даних дозволяє вам використовувати таблиці баз даних в серверах SQL. Відповідно до конфігурації вашої системи, підтримуються MySQL, PostgreSQL та UnixODBC. Можливо підтримуються і інші сервери БД (Oracle в комерційній поставці TQt або сервери сторонніх компаній).
Comment[xh]=Uhlobo lwe mvelaphi ye data ikuvumela ukuba usebenzise iitafile zesiseko sedata ze SQL ezigcinwe Kumncedisi we SQL.Kuxhomekeke kuqwalaselo lwendlela yokusebenza, I SQL yam, PostgreSQL ne UnixODBC zikunye neziphelo zesiseko sedata esixhasiweyo. Kusenokuba nezingaphezulu (I Oracle ekwi thengiso lwenguqulelo ye QT okanye iziphelo zomntu wesithathu). Comment[xh]=Uhlobo lwe mvelaphi ye data ikuvumela ukuba usebenzise iitafile zesiseko sedata ze SQL ezigcinwe Kumncedisi we SQL.Kuxhomekeke kuqwalaselo lwendlela yokusebenza, I SQL yam, PostgreSQL ne UnixODBC zikunye neziphelo zesiseko sedata esixhasiweyo. Kusenokuba nezingaphezulu (I Oracle ekwi thengiso lwenguqulelo ye TQt okanye iziphelo zomntu wesithathu).
Comment[zh_CN]=此数据库类型允许您使用存储于 SQL 服务器的 SQL 数据库表。根据您的系统配置不同MySQL、PostgreSQL 和 UnixODBC 都是支持的后端数据库。可能还有更多(Qt 商业版中附带 Oracle 支持,或使用第三方后端)。 Comment[zh_CN]=此数据库类型允许您使用存储于 SQL 服务器的 SQL 数据库表。根据您的系统配置不同MySQL、PostgreSQL 和 UnixODBC 都是支持的后端数据库。可能还有更多(TQt 商业版中附带 Oracle 支持,或使用第三方后端)。
Comment[zh_TW]=這個資料來源類別讓你使用在一個 SQL 伺服器上面的 SQL 資料表格。根據你的系統設定MySQL、PostgreSQL 與 UnixODBC 都在支援之列。還會有更多(例如在商業版本的 QT 或是第三廠商提供相關支援)。 Comment[zh_TW]=這個資料來源類別讓你使用在一個 SQL 伺服器上面的 SQL 資料表格。根據你的系統設定MySQL、PostgreSQL 與 UnixODBC 都在支援之列。還會有更多(例如在商業版本的 TQt 或是第三廠商提供相關支援)。
X-TDE-Library=kwmailmerge_qtsqldb_power X-TDE-Library=kwmailmerge_qtsqldb_power
X-TDE-Capabilities=edit,open X-TDE-Capabilities=edit,open

@ -5,7 +5,7 @@ INCLUDES = $(KOFFICE_INCLUDES) -I$(top_srcdir)/lib/kformula \
kde_module_LTLIBRARIES = kwmailmerge_tdeabc.la kde_module_LTLIBRARIES = kwmailmerge_tdeabc.la
## Plugin encapsulating the QT SQL database interface ## Plugin encapsulating the TQt SQL database interface
kwmailmerge_tdeabc_la_SOURCES = KWMailMergeTDEABC.cpp KWMailMergeTDEABCConfig.cpp addresspicker.ui kwmailmerge_tdeabc_la_SOURCES = KWMailMergeTDEABC.cpp KWMailMergeTDEABCConfig.cpp addresspicker.ui
kwmailmerge_tdeabc_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -lDCOP -ltdecore -ltdeui $(LIB_TQT) -lkjs -ltdefx -ltdeio -ltdeparts kwmailmerge_tdeabc_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -lDCOP -ltdecore -ltdeui $(LIB_TQT) -lkjs -ltdefx -ltdeio -ltdeparts
kwmailmerge_tdeabc_la_LIBADD = $(KOFFICE_LIBS) ../../libkwmailmerge_interface.la $(LIB_TDEUI) $(LIB_TDEABC) kwmailmerge_tdeabc_la_LIBADD = $(KOFFICE_LIBS) ../../libkwmailmerge_interface.la $(LIB_TDEUI) $(LIB_TDEABC)

@ -7,7 +7,7 @@ they are not bugs:
* Font weight is rounded to a multiple of 10 (if not 75) * Font weight is rounded to a multiple of 10 (if not 75)
- <WEIGHT value="48" /> - <WEIGHT value="48" />
+ <WEIGHT value="40" /> + <WEIGHT value="40" />
No idea how I ended up with a value of 48 in the old .kwd file, Qt mostly knows 50 and 75. No idea how I ended up with a value of 48 in the old .kwd file, TQt mostly knows 50 and 75.
* Picture collection: the keys and filenames are re-generated. * Picture collection: the keys and filenames are re-generated.

@ -289,7 +289,7 @@ bool KoSpeaker::maybeSayWidget(TQWidget* w, const TQPoint& pos /*=TQPoint()*/)
else else
if (w->inherits("TQListBox")) { if (w->inherits("TQListBox")) {
TQListBox* lb = dynamic_cast<TQListBox *>(w); TQListBox* lb = dynamic_cast<TQListBox *>(w);
// qt docs say coordinates are in "on-screen" coordinates. What does that mean? // tqt docs say coordinates are in "on-screen" coordinates. What does that mean?
TQListBoxItem* item = 0; TQListBoxItem* item = 0;
if (pos == TQPoint()) if (pos == TQPoint())
item = lb->item(lb->currentItem()); item = lb->item(lb->currentItem());

@ -11,7 +11,7 @@ of "spare precision". Another related issue is getting KOffice applications
support 1:1 sizes on the screen (i.e. that an A4 paper is A4 also on the support 1:1 sizes on the screen (i.e. that an A4 paper is A4 also on the
screen). Here the problem is that in X we can have a wide range of screen). Here the problem is that in X we can have a wide range of
resolutions (from 75 or so up to 120 dpi). We also can have different resolutions (from 75 or so up to 120 dpi). We also can have different
resolutions in X and Y direction, but as Qt only honors one of them (the resolutions in X and Y direction, but as TQt only honors one of them (the
Y resolution) I think it's safe to ignore the X resolution (see Y resolution) I think it's safe to ignore the X resolution (see
QPaintDevice::x11AppDpiY()). QPaintDevice::x11AppDpiY()).
In lib/kofficeui we have some classes replacing QPoint/QRect (they use double In lib/kofficeui we have some classes replacing QPoint/QRect (they use double
@ -115,7 +115,7 @@ of the cases, but maybe we can make that a bit more consistent at least
among "object-based" applications like KPresenter, Kivio, and KIllustrator. among "object-based" applications like KPresenter, Kivio, and KIllustrator.
4) Printing: 4) Printing:
Here the problem is that even Qt has enough problems with printing :( Here the problem is that even TQt has enough problems with printing :(
We definitely need some magic here, because right now we don't take We definitely need some magic here, because right now we don't take
any advantage of the better resolution of the printer. This will be a hard any advantage of the better resolution of the printer. This will be a hard
job (and an ugly hack) even if we have accurate coordinates and so job (and an ugly hack) even if we have accurate coordinates and so

@ -243,7 +243,7 @@ Editor::fill()
updateGroupLabelsPosition(); updateGroupLabelsPosition();
} }
setUpdatesEnabled(true); setUpdatesEnabled(true);
// aaah, call this instead of update() as explained here http://lists.trolltech.com/qt-interest/2000-06/thread00337-0.html // aaah, call this instead of update()
triggerUpdate(); triggerUpdate();
} }

@ -88,10 +88,9 @@ and _then_ multiplied by 20, instead of loading a 240pt font for that as we did
This is implemented by KoTextFormat::charWidth(). This is implemented by KoTextFormat::charWidth().
On screen, at 100%, a layoutUnitToFontSize(240,false)=(240/20)*1.0=20.0pt font size will be used. On screen, at 100%, a layoutUnitToFontSize(240,false)=(240/20)*1.0=20.0pt font size will be used.
This does NOT depend on the DPI settings. Qt takes care of pt->pixel conversion for fonts. This does NOT depend on the DPI settings. TQt takes care of pt->pixel conversion for fonts.
When printing... TODO, double-check whether Qt does pt->pixel conversion correctly When printing... TODO, double-check whether TQt does pt->pixel conversion correctly
(apparently it didn't, in Qt 2).
QFont multiplies by 10 and stores into a 'short'... So for QFont the maximum font size QFont multiplies by 10 and stores into a 'short'... So for QFont the maximum font size
is 3276, and in KOffice the maximum font size in points is around 163. is 3276, and in KOffice the maximum font size in points is around 163.

@ -315,8 +315,9 @@ void KoTextObject::UndoRedoInfo::clear()
} }
} }
type = Invalid; type = Invalid;
// Before TQt-3.2.0, this called KoTextString::clear(), which called resize(0) on the array, which _detached_. Tricky. // Before Qt-3.2.0, this called KoTextString::clear(), which called resize(0) on the array, which _detached_. Tricky.
// Since TQt-3.2.0, resize(0) doesn't detach anymore -> KoTextDocDeleteCommand calls copy() itself. // Since Qt-3.2.0, resize(0) doesn't detach anymore -> KoTextDocDeleteCommand calls copy() itself.
text = TQString(); text = TQString();
id = -1; id = -1;
index = -1; index = -1;

@ -1539,7 +1539,7 @@ void KoTimeVariable::loadOasis( const TQDomElement &elem, KoOasisContext& /*cont
Q_ASSERT( localName == "time" ); // caller checked for it Q_ASSERT( localName == "time" ); // caller checked for it
if ( localName == "time" ) // current (or fixed) time if ( localName == "time" ) // current (or fixed) time
{ {
// Use TQDateTime to work around a possible problem of TQTime::fromString in TQt 3.2.2 // Use TQDateTime to work around a possible problem of TQTime::fromString in Qt 3.2.2
TQDateTime dt(TQDateTime::fromString(elem.attributeNS( KoXmlNS::text, "time-value", TQString()), TQt::ISODate)); TQDateTime dt(TQDateTime::fromString(elem.attributeNS( KoXmlNS::text, "time-value", TQString()), TQt::ISODate));
bool fixed = (elem.hasAttributeNS( KoXmlNS::text, "fixed") && elem.attributeNS( KoXmlNS::text, "fixed", TQString())=="true"); bool fixed = (elem.hasAttributeNS( KoXmlNS::text, "fixed") && elem.attributeNS( KoXmlNS::text, "fixed", TQString())=="true");

@ -189,7 +189,7 @@ private:
/** Convert (x1,y1) and (x2, y2) positions in angle and angleLength */ /** Convert (x1,y1) and (x2, y2) positions in angle and angleLength */
void xyToAngle( int xStart, int yStart, int xEnd, int yEnd, int& angle, int& aLength ); void xyToAngle( int xStart, int yStart, int xEnd, int yEnd, int& angle, int& aLength );
/** Convert windows rasterOp in QT rasterOp */ /** Convert windows rasterOp in TQt rasterOp */
TQt::RasterOp winToTQtRaster( TQ_UINT16 param ) const; TQt::RasterOp winToTQtRaster( TQ_UINT16 param ) const;
TQt::RasterOp winToTQtRaster( TQ_UINT32 param ) const; TQt::RasterOp winToTQtRaster( TQ_UINT32 param ) const;

@ -128,7 +128,7 @@ private:
/** Convert angle a and alen in coordinate (xStart,yStart) and (xEnd, yEnd) */ /** Convert angle a and alen in coordinate (xStart,yStart) and (xEnd, yEnd) */
void angleToxy( int& xStart, int& yStart, int& xEnd, int& yEnd, int a, int alen ); void angleToxy( int& xStart, int& yStart, int& xEnd, int& yEnd, int a, int alen );
/** Convert windows rasterOp in QT rasterOp */ /** Convert windows rasterOp in TQt rasterOp */
TQ_UINT16 qtRasterToWin16( TQt::RasterOp op ) const; TQ_UINT16 qtRasterToWin16( TQt::RasterOp op ) const;
TQ_UINT32 qtRasterToWin32( TQt::RasterOp op ) const; TQ_UINT32 qtRasterToWin32( TQt::RasterOp op ) const;

@ -1250,11 +1250,6 @@ bool QWinMetaFile::dibToBmp( TQImage& bmp, const char* dib, long size )
kdDebug() << "QWinMetaFile::dibToBmp: invalid bitmap " << endl; kdDebug() << "QWinMetaFile::dibToBmp: invalid bitmap " << endl;
return false; return false;
} }
else { return true;
// if ( bmp.save("/home/software/kde-cvs/qt/examples/wmf/test.bmp", "BMP") )
// if ( bmp.load( "/home/software/kde-cvs/qt/examples/wmf/test.bmp", "BMP" ) )
// fprintf(stderr, "Bitmap ok \n");
return true;
}
} }

@ -37,7 +37,7 @@ class WinObjBrushHandle;
struct WmfPlaceableHeader; struct WmfPlaceableHeader;
/** /**
* QWinMetaFile is a WMF viewer based on QT toolkit * QWinMetaFile is a WMF viewer based on TQt toolkit
* How to use QWinMetaFile : * How to use QWinMetaFile :
* <pre> * <pre>
* #include "qwmf.h" * #include "qwmf.h"
@ -200,7 +200,7 @@ protected:
void addHandle( WinObjHandle* ); void addHandle( WinObjHandle* );
void deleteHandle( int ); void deleteHandle( int );
/** Convert windows rasterOp in QT rasterOp */ /** Convert windows rasterOp in TQt rasterOp */
TQt::RasterOp winToTQtRaster( short parm ) const; TQt::RasterOp winToTQtRaster( short parm ) const;
TQt::RasterOp winToTQtRaster( long parm ) const; TQt::RasterOp winToTQtRaster( long parm ) const;

@ -1,6 +1,6 @@
## Makefile.am for gnumeric file meta info plugin ## Makefile.am for gnumeric file meta info plugin
# set the include path for X, qt and KDE # set the include path for X, tqt and TDE
INCLUDES = $(KOFFICE_INCLUDES) $(all_includes) INCLUDES = $(KOFFICE_INCLUDES) $(all_includes)
# these are the headers for your project # these are the headers for your project

@ -1,6 +1,6 @@
## Makefile.am for gnumeric file meta info plugin ## Makefile.am for gnumeric file meta info plugin
# set the include path for X, qt and KDE # set the include path for X, tqt and TDE
INCLUDES = $(KOFFICE_INCLUDES) $(all_includes) INCLUDES = $(KOFFICE_INCLUDES) $(all_includes)
# these are the headers for your project # these are the headers for your project

@ -1,6 +1,6 @@
## Makefile.am for koffice file meta info plugin ## Makefile.am for koffice file meta info plugin
# set the include path for X, qt and KDE # set the include path for X, tqt and TDE
INCLUDES = $(KOFFICE_INCLUDES) $(all_includes) INCLUDES = $(KOFFICE_INCLUDES) $(all_includes)
# these are the headers for your project # these are the headers for your project

@ -1,6 +1,6 @@
## Makefile.am for OpenOffice.org file meta info plugin ## Makefile.am for OpenOffice.org file meta info plugin
# set the include path for X, qt and KDE # set the include path for X, tqt and TDE
INCLUDES = $(KOFFICE_INCLUDES) $(all_includes) INCLUDES = $(KOFFICE_INCLUDES) $(all_includes)
# these are the headers for your project # these are the headers for your project

Loading…
Cancel
Save