[Pkg-kde-commits] rev 1346 - people/chrsmrtn/qt-x11-free/debian/maintain/man

Christopher Martin chrsmrtn-guest at costa.debian.org
Thu Jul 21 20:50:17 UTC 2005


Author: chrsmrtn-guest
Date: 2005-07-21 20:50:11 +0000 (Thu, 21 Jul 2005)
New Revision: 1346

Modified:
   people/chrsmrtn/qt-x11-free/debian/maintain/man/createcw.1
   people/chrsmrtn/qt-x11-free/debian/maintain/man/designer.1
   people/chrsmrtn/qt-x11-free/debian/maintain/man/findtr.1
   people/chrsmrtn/qt-x11-free/debian/maintain/man/makeqpf.1
   people/chrsmrtn/qt-x11-free/debian/maintain/man/mergetr.1
   people/chrsmrtn/qt-x11-free/debian/maintain/man/msg2qm.1
   people/chrsmrtn/qt-x11-free/debian/maintain/man/qembed.1
   people/chrsmrtn/qt-x11-free/debian/maintain/man/qt20fix.1
   people/chrsmrtn/qt-x11-free/debian/maintain/man/qtconfig.1
   people/chrsmrtn/qt-x11-free/debian/maintain/man/qvfb.1
Log:
Sync with dato's manpage fixes.


Modified: people/chrsmrtn/qt-x11-free/debian/maintain/man/createcw.1
===================================================================
--- people/chrsmrtn/qt-x11-free/debian/maintain/man/createcw.1	2005-07-21 20:18:58 UTC (rev 1345)
+++ people/chrsmrtn/qt-x11-free/debian/maintain/man/createcw.1	2005-07-21 20:50:11 UTC (rev 1346)
@@ -55,60 +55,3 @@
 .SH "AUTHORS"
 .LP 
 Troll Tech <http://www.trolltech.com/>
-.TH "createcw" "1" "3.0.3" "Troll Tech AS, Norway." ""
-.SH "NAME"
-.LP 
-createcw \- custom widget description creater for Qt Designer
-.SH "SYNTAX"
-.LP 
-createcw <\fIfilename.cw\fP>
-.SH "DESCRIPTION"
-.LP 
-This small application makes it much easier to create
-custom widget descriptions for the Qt Designer. Using
-them you can use custom widgets in the Qt Designer
-including their signals, slots and properties.
- 
-To do that normally you would have to enter all that
-information in the custom widget dialog in the Qt
-Designer for each widget. But this small tool can create
-for you these description files for your custom widgets
-which you then can simply import into the Qt Designer. So
-you can use your custom widgets without any additional
-work in your forms in the Qt Designer then.
-
-To do that you have to modify the sourcecode (main.cpp) a
-bit and recompile it afterwards. 
-
-STEP1: Include header files of the widgets for which a
-description should be created here. If you have a widget
-which is defined in the file mycustomwidget.h in
-/home/joedeveloper/src, write here 
-
-#include "/home/joedeveloper/src/mycustomwidget.h"
-
-STEP2: Instantiate all widgets for which a description
-should be created here and add them to the list wl. If
-your custom widget is e.g. called MyCustomWidget you
-would write here
-
- Widget w;
- w.w = new MyCustomWidget( 0, 0 );
- w.include = "mycustomwidget.h";
- w.location = "global";
- wl.append( w );
-
-After that compile the program, link it with your custom
-widget (library or object file) and run it like this:
-
- (unix): ./createcw mywidgets.cw
- (win32): createcw mywidgets.cw
-
-After that you can import this description file into the
-Qt Designer using the Custom\-Widget Dialog (See
-Tools\->Custom\->Edit Custom Widgets... in the Qt Designer)
-and use these custom widget there in your forms.
-
-.SH "AUTHORS"
-.LP 
-Troll Tech <http://www.trolltech.com/>

Modified: people/chrsmrtn/qt-x11-free/debian/maintain/man/designer.1
===================================================================
--- people/chrsmrtn/qt-x11-free/debian/maintain/man/designer.1	2005-07-21 20:18:58 UTC (rev 1345)
+++ people/chrsmrtn/qt-x11-free/debian/maintain/man/designer.1	2005-07-21 20:50:11 UTC (rev 1346)
@@ -52,57 +52,3 @@
 .SH "AUTHORS"
 .LP 
 TrollTech <http://www.trolltech.com/>
-.TH "qt-designer" "1" "3.0.3" "Troll Tech AS, Norway." ""
-.SH "NAME"
-.LP 
-qt\-designer \- Visual user interface designer for Qt.
-.SH "DESCRIPTION"
-.LP 
-Qt Designer simplifies the process of designing and
-creating graphical user interfaces (GUI) using the
-award\-winning Qt toolkit. Qt Designer is easy to learn.
-There are tutorials, walkthrough examples and the
-reference documentation accelerating you through the
-learning phase. After that, Qt Designer greatly reduces
-the time and effort needed to develop even the most
-complex dialogs with an easy\-to\-use GUI and an integrated
-help system.
-
- Qt Designer provides a rich set of features aimed at
-making the creation of dialogs as easy and smooth as
-possible without reducing the power of Qt. It offers all
-the strength of the Qt layout system with a well\-designed
-user interface. This, combined with the Qt Designer's
-undo/redo system makes it simple to try different
-arrangements of the widgets until the result satisfies
-you.
-
- Using Qt Designer's convenient property editor along
-with the dynamic Qt property system it is easy to set the
-initial state of your widgets. Special editors for some
-widgets (like listboxes, comboboxes, etc.) allow you to
-fill these widgets with content without writing any code.
-Using the object hierarchy view, the parent\-child
-relationship between the widgets of a dialog can be
-understood at a glance.
-
- Integrating dialogs into a Qt project is straightforward
-thanks to the User Interface Compiler (UIC), which
-generates C++ code from the XML dialog description on the
-fly. The programmer can easily extend the functionality
-of the generated classes by subclassing without touching
-generated code at all or running the risk of loosing
-their changes.
-.SH "FILES"
-.LP 
-\fI/usr/share/qt/tools/designer/*\fP 
-.SH "ENVIRONMENT VARIABLES"
-.LP 
-.TP 
-\fBQTDIR\fP
-Specifies the Qt base directory.  On Debian systems this
-should be set to /usr/share/qt.  The /usr/bin/designer
-wrapper script takes care of this.
-.SH "AUTHORS"
-.LP 
-TrollTech <http://www.trolltech.com/>

Modified: people/chrsmrtn/qt-x11-free/debian/maintain/man/findtr.1
===================================================================
--- people/chrsmrtn/qt-x11-free/debian/maintain/man/findtr.1	2005-07-21 20:18:58 UTC (rev 1345)
+++ people/chrsmrtn/qt-x11-free/debian/maintain/man/findtr.1	2005-07-21 20:50:11 UTC (rev 1346)
@@ -23,28 +23,3 @@
 .SH "AUTHORS"
 .LP 
 TrollTech <http://www.trolltech.com/>
-.TH "findtr" "1" "3.0.3" "Troll Tech AS, Norway." ""
-.SH "NAME"
-.LP 
-findtr \- Extracts information about text to be translated
-.SH "SYNTAX"
-.LP 
-findtr *.cpp *.h >myapp.po
-.SH "DESCRIPTION"
-.LP 
-
-Extracts information about text to be translated. It
-recognizes the tr() constructs described above and
-produces a file in ".po" format, a simple text format
-that your translation team will copy and edit. For
-example, the base .po file might be myapp.po and
-translated versions of the file would then be
-myapp_de.po, myapp_fr.po, and myapp_ja.po for
-translations in German, French and Japanese respectively.
-
-  findtr *.cpp *.h >myapp.po
-  copy myapp.po myapp_de.po
-  edit myapp_de.po
-.SH "AUTHORS"
-.LP 
-TrollTech <http://www.trolltech.com/>

Modified: people/chrsmrtn/qt-x11-free/debian/maintain/man/makeqpf.1
===================================================================
--- people/chrsmrtn/qt-x11-free/debian/maintain/man/makeqpf.1	2005-07-21 20:18:58 UTC (rev 1345)
+++ people/chrsmrtn/qt-x11-free/debian/maintain/man/makeqpf.1	2005-07-21 20:50:11 UTC (rev 1346)
@@ -24,29 +24,3 @@
 .SH "AUTHORS"
 .LP 
 TrollTech <http://www.trolltech.com/>
-.TH "makeqpf" "1" "3.0.3" "Troll Tech AS, Norway." ""
-.SH "NAME"
-.LP 
-makeqpf \- Create qpf files from TTF and BDF files.
-.SH "DESCRIPTION"
-.LP 
-Qt Prerendered Font (QPF) is a light\-weight non\-scalable
-font format specific to Qt/Embedded.  makeqpf is a tool
-that assists producing QPF files from TTF and BDF files.
-
-
-.SH "SYNTAX"
-qembed [ \fIgeneral\-files\fP ] <[ \fI\-\-images image\-files \fP]>
-.br 
-
-general\-files 
-  These files can be any type of file. 
-\-\-images image\-files 
-  These files must be in image formats supported by Qt. 
-
-.SH "FILES"
-.LP 
-\fI$(QTDIR)/etc/fonts/fontdir\fP 
-.SH "AUTHORS"
-.LP 
-TrollTech <http://www.trolltech.com/>

Modified: people/chrsmrtn/qt-x11-free/debian/maintain/man/mergetr.1
===================================================================
--- people/chrsmrtn/qt-x11-free/debian/maintain/man/mergetr.1	2005-07-21 20:18:58 UTC (rev 1345)
+++ people/chrsmrtn/qt-x11-free/debian/maintain/man/mergetr.1	2005-07-21 20:50:11 UTC (rev 1346)
@@ -25,30 +25,3 @@
 .SH "AUTHORS"
 .LP 
 TrollTech <http://www.trolltech.com/>
-.TH "mergetr" "1" "3.0.3" "Troll Tech AS, Norway." ""
-.SH "NAME"
-.LP 
-mergetr \- Merge changes in translations
-.SH "SYNTAX"
-.LP 
-mergetr myapp_de.po myapp.po
-
-.SH "DESCRIPTION"
-.LP 
-When the texts in your program change as it is developed,
-a the base .po file can be regenerated using findtr,
-then mergetr can be used to merge the changes into the
-other .po files: 
-
-                mergetr myapp_de.po myapp.po
-                mergetr myapp_fr.po myapp.po
-                mergetr myapp_ja.po myapp.po
-
-
-The translation team then edits the new .po files to
-translate the new or changed texts. When texts change,
-the old text is included in the .po file as a comment to
-guide the new translation (no "fuzzy" matching is done).
-.SH "AUTHORS"
-.LP 
-TrollTech <http://www.trolltech.com/>

Modified: people/chrsmrtn/qt-x11-free/debian/maintain/man/msg2qm.1
===================================================================
--- people/chrsmrtn/qt-x11-free/debian/maintain/man/msg2qm.1	2005-07-21 20:18:58 UTC (rev 1345)
+++ people/chrsmrtn/qt-x11-free/debian/maintain/man/msg2qm.1	2005-07-21 20:50:11 UTC (rev 1346)
@@ -24,29 +24,3 @@
 .SH "AUTHORS"
 .LP 
 TrollTech <http://www.trolltech.com/>
-.TH "msg2qm" "1" "3.0.3" "Troll Tech AS, Norway." ""
-.SH "NAME"
-.LP 
-msg2qm \- Converts translated .po files to a Qt\-specific binary format.
-.SH "SYNTAX"
-.LP 
-msg2qm myapp_de.po myapp_de.qm
-.SH "DESCRIPTION"
-.LP 
-
-Converts translated .po files to a Qt\-specific binary
-format (".qm" Qt message files). The Qt message files
-are platform and locale independent, containing
-translations in Unicode and various hash tables to
-provide fast look\-up. 
-
-                msg2qm myapp_de.po myapp_de.qm
-                msg2qm myapp_fr.po myapp_fr.qm
-                msg2qm myapp_ja.po myapp_ja.qm
-
-
-In your application, use QTranslator::load() to load
-translation files appropriate for the user's language.
-.SH "AUTHORS"
-.LP 
-TrollTech <http://www.trolltech.com/>

Modified: people/chrsmrtn/qt-x11-free/debian/maintain/man/qembed.1
===================================================================
--- people/chrsmrtn/qt-x11-free/debian/maintain/man/qembed.1	2005-07-21 20:18:58 UTC (rev 1345)
+++ people/chrsmrtn/qt-x11-free/debian/maintain/man/qembed.1	2005-07-21 20:50:11 UTC (rev 1346)
@@ -30,35 +30,3 @@
 .SH "AUTHORS"
 .LP 
 TrollTech <http://www.trolltech.com/>
-.TH "qembed" "1" "3.0.3" "Troll Tech AS, Norway." ""
-.SH "NAME"
-.LP 
-qembed \- Converts arbitrary files into C++ code.
-.SH "DESCRIPTION"
-.LP 
-The QEmbed tool, found in qt/tools/qembed, converts
-arbitrary files into C++ code. This is useful for
-including image files and other resources directly into
-your application rather than loading the data from
-external files. 
-
-QEmbed can also generate uncompressed versions of images
-that can be included directly into your application,
-thus avoiding both the external file and the need to
-parse the image file format. This is useful for small
-images such as icons for which compression is not a
-great gain. 
-
-
-.SH "SYNTAX"
-qembed [ \fIgeneral\-files\fP ] <[ \fI\-\-images image\-files \fP]>
-.br 
-
-general\-files 
-  These files can be any type of file. 
-\-\-images image\-files 
-  These files must be in image formats supported by Qt. 
-
-.SH "AUTHORS"
-.LP 
-TrollTech <http://www.trolltech.com/>

Modified: people/chrsmrtn/qt-x11-free/debian/maintain/man/qt20fix.1
===================================================================
--- people/chrsmrtn/qt-x11-free/debian/maintain/man/qt20fix.1	2005-07-21 20:18:58 UTC (rev 1345)
+++ people/chrsmrtn/qt-x11-free/debian/maintain/man/qt20fix.1	2005-07-21 20:50:11 UTC (rev 1346)
@@ -30,35 +30,3 @@
 .SH "AUTHORS"
 .LP 
 TrollTech <http://www.trolltech.com/>
-.TH "qt20fix" "1" "3.0.3" "Troll Tech AS, Norway." ""
-.SH "NAME"
-.LP 
-qt20fix \- Helps clean namespace when porting an app from Qt1 to Qt2
-.SH "SYNTAX"
-.LP 
-qt20fix myapp.cpp
-
-.SH "DESCRIPTION"
-.LP 
-Qt 2.x is namespace\-clean, unlike 1.x. Qt now uses very
-few global identifiers. Identifiers like red, blue,
-LeftButton, AlignRight, Key_Up, Key_Down, NoBrush etc.
-are now part of a special class Qt (defined in
-qnamespace.h), which is inherited by most Qt classes.
-Member functions of classes that inherit from QWidget,
-etc. are totally unaffected, but code that is not in
-functions of classes inherited from Qt, you must qualify
-these identifiers like this: Qt::red, Qt::LeftButton,
-Qt::AlignRight, etc. 
-
-The qt/bin/qt20fix script helps to fix the code that
-needs adaption, though most code does not need changing.
-
-Compiling with \-DQT1COMPATIBILITY will help you get going
-with Qt 2.x \- it allows all the old "dirty namespace"
-identifiers from Qt 1.x to continue working. Without it,
-you'll get compile errors that can easily be fixed by
-searching this page for the clean identifiers. 
-.SH "AUTHORS"
-.LP 
-TrollTech <http://www.trolltech.com/>

Modified: people/chrsmrtn/qt-x11-free/debian/maintain/man/qtconfig.1
===================================================================
--- people/chrsmrtn/qt-x11-free/debian/maintain/man/qtconfig.1	2005-07-21 20:18:58 UTC (rev 1345)
+++ people/chrsmrtn/qt-x11-free/debian/maintain/man/qtconfig.1	2005-07-21 20:50:11 UTC (rev 1346)
@@ -15,20 +15,3 @@
 .SH "AUTHORS"
 .LP 
 TrollTech <http://www.trolltech.com/>
-.TH "qtconfig" "1" "3.0.3" "Troll Tech AS, Norway." ""
-.SH "NAME"
-.LP 
-qtconfig \- Configuration tool for Qt
-.SH "DESCRIPTION"
-.LP 
-QConfig allows for GUI based configuration of Qt and
- other Qt based sources.
-
-.SH "ENVIRONMENT VARIABLES"
-.LP 
-.TP 
-\fBQTDIR\fP
-Specifies the base Qt dir
-.SH "AUTHORS"
-.LP 
-TrollTech <http://www.trolltech.com/>

Modified: people/chrsmrtn/qt-x11-free/debian/maintain/man/qvfb.1
===================================================================
--- people/chrsmrtn/qt-x11-free/debian/maintain/man/qvfb.1	2005-07-21 20:18:58 UTC (rev 1345)
+++ people/chrsmrtn/qt-x11-free/debian/maintain/man/qvfb.1	2005-07-21 20:50:11 UTC (rev 1346)
@@ -64,7 +64,3 @@
 .SH "AUTHORS"
 .LP 
 TrollTech <http://www.trolltech.com/>
-.TH "qvfb" "1" "3.0.3" "Troll Tech AS, Norway." ""
-.SH "NAME"
-.LP 
-qvfb \- Virtual framebuffer for Qt




More information about the Pkg-kde-commits mailing list