diff options
author | drochner <drochner> | 2000-04-28 10:09:53 +0000 |
---|---|---|
committer | drochner <drochner> | 2000-04-28 10:09:53 +0000 |
commit | 272fe0ac7f739fd7c9e8c16be7f6a7fe4143a3c4 (patch) | |
tree | 1b1d53f8784c467f36ed11558dde2688b23afc2a | |
parent | a90005c7f06ed47d6cf9ea1aeaf347d9fa5311a3 (diff) | |
download | pkgsrc-272fe0ac7f739fd7c9e8c16be7f6a7fe4143a3c4.tar.gz |
make the layout of qt2 similar to the qt1 pkg:
keep Troll's layout and put everything to ${X11BASE}/qt2
This reduces patching necessary in dependant packages while allowing
coexistence of different qt versions.
-rw-r--r-- | x11/qt/Makefile | 34 | ||||
-rw-r--r-- | x11/qt/pkg/MESSAGE | 21 | ||||
-rw-r--r-- | x11/qt/pkg/PLIST | 3303 |
3 files changed, 1683 insertions, 1675 deletions
diff --git a/x11/qt/Makefile b/x11/qt/Makefile index 7de04759c87..5de373e7787 100644 --- a/x11/qt/Makefile +++ b/x11/qt/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.32 2000/04/14 21:11:59 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.33 2000/04/28 10:09:53 drochner Exp $ # DISTNAME= qt-2.0.2 +PKGNAME= qt2-2.0.2 CATEGORIES= x11 MASTER_SITES= ftp://ftp.troll.no/qt/source/ \ ftp://ftp.fu-berlin.de/unix/X11/gui/Qt/source/ @@ -36,29 +37,32 @@ DEPENDS+= egcs-1.1.2:../../lang/egcs CXX= ${LOCALBASE}/egcs/bin/g++ .endif +QTPREFIX= ${PREFIX}/qt2 + do-install: - ${INSTALL_PROGRAM_DIR} ${X11BASE}/bin/qt2 - ${INSTALL_PROGRAM} ${WRKSRC}/bin/moc ${X11BASE}/bin/qt2 - ${INSTALL_DATA_DIR} ${X11BASE}/lib/qt2 - @${LIBTOOL} ${INSTALL_DATA} ${WRKSRC}/src/libqt.la ${X11BASE}/lib/qt2 - ${INSTALL_DATA_DIR} ${X11BASE}/include/qt2 - ${INSTALL_DATA} ${WRKSRC}/include/* ${X11BASE}/include/qt2 - ${INSTALL_MAN_DIR} ${X11BASE}/man/qt2/man1 - ${INSTALL_MAN_DIR} ${X11BASE}/man/qt2/man3 - ${INSTALL_MAN} ${WRKSRC}/man/man1/* ${X11BASE}/man/qt2/man1 + ${INSTALL_DATA_DIR} ${QTPREFIX} + ${INSTALL_PROGRAM_DIR} ${QTPREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/bin/moc ${QTPREFIX}/bin + ${INSTALL_DATA_DIR} ${QTPREFIX}/lib + @${LIBTOOL} ${INSTALL_DATA} ${WRKSRC}/src/libqt.la ${QTPREFIX}/lib + ${INSTALL_DATA_DIR} ${QTPREFIX}/include + ${INSTALL_DATA} ${WRKSRC}/include/* ${QTPREFIX}/include + ${INSTALL_MAN_DIR} ${QTPREFIX}/man/man1 + ${INSTALL_MAN_DIR} ${QTPREFIX}/man/man3 + ${INSTALL_MAN} ${WRKSRC}/man/man1/* ${QTPREFIX}/man/man1 @cd ${WRKSRC}/man/man3; PAGES="`ls -1 | ${SED} -e 's,3qt$$,3,'`"; \ (for PAGE in $$PAGES; do \ - ${ECHO} installing ${X11BASE}/man/qt2/man3/$${PAGE}; \ + ${ECHO} installing ${QTPREFIX}/man/man3/$${PAGE}; \ set - X `head -1 $${PAGE}qt`; \ if [ $$# -eq 3 ] && [ "$$2" = .so ]; then \ ${LN} -fs `basename $$3 | ${SED} s/qt$$//` \ - ${X11BASE}/man/qt2/man3/$${PAGE}; \ + ${QTPREFIX}/man/man3/$${PAGE}; \ else \ - ${INSTALL_MAN} $${PAGE}qt ${X11BASE}/man/qt2/man3/$${PAGE}; \ + ${INSTALL_MAN} $${PAGE}qt ${QTPREFIX}/man/man3/$${PAGE}; \ fi; \ done) - ${INSTALL_DATA_DIR} ${X11BASE}/share/doc/qt2 + ${INSTALL_DATA_DIR} ${QTPREFIX}/doc ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/README.QT \ - ${WRKSRC}/doc/* ${X11BASE}/share/doc/qt2 + ${WRKSRC}/doc/* ${QTPREFIX}/doc .include "../../mk/bsd.pkg.mk" diff --git a/x11/qt/pkg/MESSAGE b/x11/qt/pkg/MESSAGE index 6836d748bb1..b168eea531e 100644 --- a/x11/qt/pkg/MESSAGE +++ b/x11/qt/pkg/MESSAGE @@ -1,15 +1,18 @@ -$NetBSD: MESSAGE,v 1.1 2000/04/15 00:59:28 dmcmahill Exp $ +$NetBSD: MESSAGE,v 1.2 2000/04/28 10:09:55 drochner Exp $ + +To allow this +package to coexist with other versions of Qt, it has been installed +in ${X11BASE}/qt2/{bin,include,lib,man}. You should be able to select this version of Qt when compiling -programs which use it by doing the following: +programs which use it by ensuring that + +1) QTDIR is set to ${X11BASE}/qt2 -* Use the following "configure" arguments: - "--with-qt-includes=${X11BASE}/include/qt2/" - "--with-qt-libraries=${X11BASE}/lib/qt2/" +2) Use the "configure" argument "--with-qt-dir=${X11BASE}/qt2" -* Put ${X11BASE}/bin/qt2 in your PATH and/or set the environment - variable MOC to ${X11BASE}/bin/qt2/moc +3) you may also have to put ${X11BASE}/qt2/bin in your PATH -To access Qt-2 man pages add ${X11BASE}/man/qt2 to your MANPATH +To access Qt-2 man pages add ${X11BASE}/qt2/man to your MANPATH environment variable. Note that the Qt-2 man pages are installed -here to avoid conflicts with the Qt-1 man pages. +here to avoid conflicts with man pages of other Qt versions. diff --git a/x11/qt/pkg/PLIST b/x11/qt/pkg/PLIST index b8c7d36c168..104e08eb0c8 100644 --- a/x11/qt/pkg/PLIST +++ b/x11/qt/pkg/PLIST @@ -1,1651 +1,1652 @@ -@comment $NetBSD: PLIST,v 1.14 2000/04/14 21:11:59 dmcmahill Exp $ -bin/qt2/moc -include/qt2/jri.h -include/qt2/jritypes.h -include/qt2/npapi.h -include/qt2/npupp.h -include/qt2/q1xcompatibility.h -include/qt2/qabstractlayout.h -include/qt2/qaccel.h -include/qt2/qapp.h -include/qt2/qapplication.h -include/qt2/qarray.h -include/qt2/qasciicache.h -include/qt2/qasciidict.h -include/qt2/qasyncimageio.h -include/qt2/qasyncio.h -include/qt2/qbitarray.h -include/qt2/qbitarry.h -include/qt2/qbitmap.h -include/qt2/qbrush.h -include/qt2/qbttngrp.h -include/qt2/qbuffer.h -include/qt2/qbutton.h -include/qt2/qbuttongroup.h -include/qt2/qcache.h -include/qt2/qcdestyle.h -include/qt2/qcheckbox.h -include/qt2/qchkbox.h -include/qt2/qclipboard.h -include/qt2/qclipbrd.h -include/qt2/qcollect.h -include/qt2/qcollection.h -include/qt2/qcolor.h -include/qt2/qcolordialog.h -include/qt2/qcombo.h -include/qt2/qcombobox.h -include/qt2/qcommonstyle.h -include/qt2/qconnect.h -include/qt2/qconnection.h -include/qt2/qcstring.h -include/qt2/qcursor.h -include/qt2/qdatastream.h -include/qt2/qdatetime.h -include/qt2/qdatetm.h -include/qt2/qdialog.h -include/qt2/qdict.h -include/qt2/qdir.h -include/qt2/qdragobject.h -include/qt2/qdrawutil.h -include/qt2/qdrawutl.h -include/qt2/qdropsite.h -include/qt2/qdstream.h -include/qt2/qeucjpcodec.h -include/qt2/qeuckrcodec.h -include/qt2/qevent.h -include/qt2/qfile.h -include/qt2/qfiledef.h -include/qt2/qfiledefs.h -include/qt2/qfiledialog.h -include/qt2/qfiledlg.h -include/qt2/qfileinf.h -include/qt2/qfileinfo.h -include/qt2/qfocusdata.h -include/qt2/qfont.h -include/qt2/qfontdata.h -include/qt2/qfontdatabase.h -include/qt2/qfontdialog.h -include/qt2/qfontdta.h -include/qt2/qfontinf.h -include/qt2/qfontinfo.h -include/qt2/qfontmet.h -include/qt2/qfontmetrics.h -include/qt2/qframe.h -include/qt2/qgarray.h -include/qt2/qgcache.h -include/qt2/qgdict.h -include/qt2/qgeneric.h -include/qt2/qgif.h -include/qt2/qgl.h -include/qt2/qglist.h -include/qt2/qglobal.h -include/qt2/qgmanagr.h -include/qt2/qgrid.h -include/qt2/qgroupbox.h -include/qt2/qgrpbox.h -include/qt2/qgvector.h -include/qt2/qhbox.h -include/qt2/qhbuttongroup.h -include/qt2/qheader.h -include/qt2/qhgroupbox.h -include/qt2/qiconset.h -include/qt2/qimage.h -include/qt2/qimageio.h -include/qt2/qintcach.h -include/qt2/qintcache.h -include/qt2/qintdict.h -include/qt2/qiodev.h -include/qt2/qiodevice.h -include/qt2/qjiscodec.h -include/qt2/qjpegio.h -include/qt2/qjpunicode.h -include/qt2/qkeycode.h -include/qt2/qkoi8codec.h -include/qt2/qlabel.h -include/qt2/qlayout.h -include/qt2/qlayoutengine.h -include/qt2/qlcdnum.h -include/qt2/qlcdnumber.h -include/qt2/qlined.h -include/qt2/qlineedit.h -include/qt2/qlist.h -include/qt2/qlistbox.h -include/qt2/qlistview.h -include/qt2/qmainwindow.h -include/qt2/qmap.h -include/qt2/qmenubar.h -include/qt2/qmenudata.h -include/qt2/qmenudta.h -include/qt2/qmessagebox.h -include/qt2/qmetaobj.h -include/qt2/qmetaobject.h -include/qt2/qmime.h -include/qt2/qmlined.h -include/qt2/qmotifstyle.h -include/qt2/qmovie.h -include/qt2/qmsgbox.h -include/qt2/qmultilinedit.h -include/qt2/qmultilineedit.h -include/qt2/qnamespace.h -include/qt2/qnp.h -include/qt2/qobjcoll.h -include/qt2/qobjdefs.h -include/qt2/qobject.h -include/qt2/qobjectdefs.h -include/qt2/qobjectdict.h -include/qt2/qobjectlist.h -include/qt2/qpaintd.h -include/qt2/qpaintdc.h -include/qt2/qpaintdevice.h -include/qt2/qpaintdevicedefs.h -include/qt2/qpaintdevicemetrics.h -include/qt2/qpainter.h -include/qt2/qpalette.h -include/qt2/qpdevmet.h -include/qt2/qpen.h -include/qt2/qpicture.h -include/qt2/qpixmap.h -include/qt2/qpixmapcache.h -include/qt2/qplatinumstyle.h -include/qt2/qpmcache.h -include/qt2/qpngio.h -include/qt2/qpntarry.h -include/qt2/qpoint.h -include/qt2/qpointarray.h -include/qt2/qpopmenu.h -include/qt2/qpopupmenu.h -include/qt2/qprintdialog.h -include/qt2/qprinter.h -include/qt2/qprndlg.h -include/qt2/qprogbar.h -include/qt2/qprogdlg.h -include/qt2/qprogressbar.h -include/qt2/qprogressdialog.h -include/qt2/qpsprinter.h -include/qt2/qpsprn.h -include/qt2/qptrdict.h -include/qt2/qpushbt.h -include/qt2/qpushbutton.h -include/qt2/qqueue.h -include/qt2/qradiobt.h -include/qt2/qradiobutton.h -include/qt2/qrangecontrol.h -include/qt2/qrangect.h -include/qt2/qrect.h -include/qt2/qregexp.h -include/qt2/qregion.h -include/qt2/qrtlcodec.h -include/qt2/qscrbar.h -include/qt2/qscrollbar.h -include/qt2/qscrollview.h -include/qt2/qsemimodal.h -include/qt2/qserversocket.h -include/qt2/qsession.h -include/qt2/qsessionmanager.h -include/qt2/qshared.h -include/qt2/qsignal.h -include/qt2/qsignalmapper.h -include/qt2/qsignalslotimp.h -include/qt2/qsimplerichtext.h -include/qt2/qsize.h -include/qt2/qsizegrip.h -include/qt2/qsizepolicy.h -include/qt2/qsjiscodec.h -include/qt2/qslider.h -include/qt2/qsmartptr.h -include/qt2/qsocket.h -include/qt2/qsocketdevice.h -include/qt2/qsocketnotifier.h -include/qt2/qsocknot.h -include/qt2/qsortedlist.h -include/qt2/qspinbox.h -include/qt2/qsplitter.h -include/qt2/qstack.h -include/qt2/qstatusbar.h -include/qt2/qstring.h -include/qt2/qstringlist.h -include/qt2/qstrlist.h -include/qt2/qstrvec.h -include/qt2/qstyle.h -include/qt2/qstylesheet.h -include/qt2/qtabbar.h -include/qt2/qtabdialog.h -include/qt2/qtabdlg.h -include/qt2/qtableview.h -include/qt2/qtablevw.h -include/qt2/qtabwidget.h -include/qt2/qtextbrowser.h -include/qt2/qtextcodec.h -include/qt2/qtextstream.h -include/qt2/qtextview.h -include/qt2/qtimer.h -include/qt2/qtl.h -include/qt2/qtoolbar.h -include/qt2/qtoolbutton.h -include/qt2/qtooltip.h -include/qt2/qtranslator.h -include/qt2/qtstream.h -include/qt2/qutfcodec.h -include/qt2/qvalidator.h -include/qt2/qvaluelist.h -include/qt2/qvbox.h -include/qt2/qvbuttongroup.h -include/qt2/qvector.h -include/qt2/qvgroupbox.h -include/qt2/qwellarray.h -include/qt2/qwhatsthis.h -include/qt2/qwidcoll.h -include/qt2/qwidget.h -include/qt2/qwidgetintdict.h -include/qt2/qwidgetlist.h -include/qt2/qwidgetstack.h -include/qt2/qwindefs.h -include/qt2/qwindow.h -include/qt2/qwindowdefs.h -include/qt2/qwindowsstyle.h -include/qt2/qwizard.h -include/qt2/qwmatrix.h -include/qt2/qxt.h -lib/qt2/libqt.a -lib/qt2/libqt.so.2.0 -man/qt2/man1/moc.1 -man/qt2/man3/QAccel.3 -man/qt2/man3/QApplication.3 -man/qt2/man3/QArray.3 -man/qt2/man3/QAsciiCache.3 -man/qt2/man3/QAsciiCacheIterator.3 -man/qt2/man3/QAsciiDict.3 -man/qt2/man3/QAsciiDictIterator.3 -man/qt2/man3/QAsyncIO.3 -man/qt2/man3/QBitArray.3 -man/qt2/man3/QBitVal.3 -man/qt2/man3/QBitmap.3 -man/qt2/man3/QBoxLayout.3 -man/qt2/man3/QBrush.3 -man/qt2/man3/QBuffer.3 -man/qt2/man3/QButton.3 -man/qt2/man3/QButtonGroup.3 -man/qt2/man3/QCDEStyle.3 -man/qt2/man3/QCString.3 -man/qt2/man3/QCache.3 -man/qt2/man3/QCacheIterator.3 -man/qt2/man3/QChar.3 -man/qt2/man3/QCheckBox.3 -man/qt2/man3/QCheckListItem.3 -man/qt2/man3/QChildEvent.3 -man/qt2/man3/QClipboard.3 -man/qt2/man3/QCloseEvent.3 -man/qt2/man3/QCollection.3 -man/qt2/man3/QColor.3 -man/qt2/man3/QColorDialog.3 -man/qt2/man3/QColorGroup.3 -man/qt2/man3/QComboBox.3 -man/qt2/man3/QCommonStyle.3 -man/qt2/man3/QConnection.3 -man/qt2/man3/QConstString.3 -man/qt2/man3/QCursor.3 -man/qt2/man3/QCustomEvent.3 -man/qt2/man3/QDataPump.3 -man/qt2/man3/QDataSink.3 -man/qt2/man3/QDataSource.3 -man/qt2/man3/QDataStream.3 -man/qt2/man3/QDate.3 -man/qt2/man3/QDateTime.3 -man/qt2/man3/QDialog.3 -man/qt2/man3/QDict.3 -man/qt2/man3/QDictIterator.3 -man/qt2/man3/QDir.3 -man/qt2/man3/QDoubleValidator.3 -man/qt2/man3/QDragEnterEvent.3 -man/qt2/man3/QDragLeaveEvent.3 -man/qt2/man3/QDragMoveEvent.3 -man/qt2/man3/QDragObject.3 -man/qt2/man3/QDropEvent.3 -man/qt2/man3/QDropSite.3 -man/qt2/man3/QEvent.3 -man/qt2/man3/QFile.3 -man/qt2/man3/QFileDialog.3 -man/qt2/man3/QFileIconProvider.3 -man/qt2/man3/QFileInfo.3 -man/qt2/man3/QFocusData.3 -man/qt2/man3/QFocusEvent.3 -man/qt2/man3/QFont.3 -man/qt2/man3/QFontDialog.3 -man/qt2/man3/QFontInfo.3 -man/qt2/man3/QFontMetrics.3 -man/qt2/man3/QFrame.3 -man/qt2/man3/QGArray.3 -man/qt2/man3/QGCache.3 -man/qt2/man3/QGCacheIterator.3 -man/qt2/man3/QGDict.3 -man/qt2/man3/QGDictIterator.3 -man/qt2/man3/QGL.3 -man/qt2/man3/QGLContext.3 -man/qt2/man3/QGLFormat.3 -man/qt2/man3/QGLWidget.3 -man/qt2/man3/QGLayoutIterator.3 -man/qt2/man3/QGList.3 -man/qt2/man3/QGListIterator.3 -man/qt2/man3/QGrid.3 -man/qt2/man3/QGridLayout.3 -man/qt2/man3/QGroupBox.3 -man/qt2/man3/QHBox.3 -man/qt2/man3/QHBoxLayout.3 -man/qt2/man3/QHButtonGroup.3 -man/qt2/man3/QHGroupBox.3 -man/qt2/man3/QHeader.3 -man/qt2/man3/QHideEvent.3 -man/qt2/man3/QIODevice.3 -man/qt2/man3/QIODeviceSource.3 -man/qt2/man3/QIconSet.3 -man/qt2/man3/QImage.3 -man/qt2/man3/QImageConsumer.3 -man/qt2/man3/QImageDecoder.3 -man/qt2/man3/QImageDrag.3 -man/qt2/man3/QImageFormat.3 -man/qt2/man3/QImageFormatType.3 -man/qt2/man3/QImageIO.3 -man/qt2/man3/QIntCache.3 -man/qt2/man3/QIntCacheIterator.3 -man/qt2/man3/QIntDict.3 -man/qt2/man3/QIntDictIterator.3 -man/qt2/man3/QIntValidator.3 -man/qt2/man3/QKeyEvent.3 -man/qt2/man3/QLCDNumber.3 -man/qt2/man3/QLNode.3 -man/qt2/man3/QLabel.3 -man/qt2/man3/QLayout.3 -man/qt2/man3/QLayoutItem.3 -man/qt2/man3/QLayoutIterator.3 -man/qt2/man3/QLineEdit.3 -man/qt2/man3/QList.3 -man/qt2/man3/QListBox.3 -man/qt2/man3/QListBoxItem.3 -man/qt2/man3/QListBoxPixmap.3 -man/qt2/man3/QListBoxText.3 -man/qt2/man3/QListIterator.3 -man/qt2/man3/QListView.3 -man/qt2/man3/QListViewItem.3 -man/qt2/man3/QListViewItemIterator.3 -man/qt2/man3/QMainWindow.3 -man/qt2/man3/QMap.3 -man/qt2/man3/QMapConstIterator.3 -man/qt2/man3/QMapIterator.3 -man/qt2/man3/QMenuBar.3 -man/qt2/man3/QMenuData.3 -man/qt2/man3/QMessageBox.3 -man/qt2/man3/QMimeSource.3 -man/qt2/man3/QMimeSourceFactory.3 -man/qt2/man3/QMotifStyle.3 -man/qt2/man3/QMouseEvent.3 -man/qt2/man3/QMoveEvent.3 -man/qt2/man3/QMovie.3 -man/qt2/man3/QMultiLineEdit.3 -man/qt2/man3/QNPInstance.3 -man/qt2/man3/QNPStream.3 -man/qt2/man3/QNPWidget.3 -man/qt2/man3/QNPlugin.3 -man/qt2/man3/QObject.3 -man/qt2/man3/QPNGImagePacker.3 -man/qt2/man3/QPaintDevice.3 -man/qt2/man3/QPaintDeviceMetrics.3 -man/qt2/man3/QPaintEvent.3 -man/qt2/man3/QPainter.3 -man/qt2/man3/QPalette.3 -man/qt2/man3/QPen.3 -man/qt2/man3/QPicture.3 -man/qt2/man3/QPixmap.3 -man/qt2/man3/QPixmapCache.3 -man/qt2/man3/QPlatinumStyle.3 -man/qt2/man3/QPoint.3 -man/qt2/man3/QPointArray.3 -man/qt2/man3/QPopupMenu.3 -man/qt2/man3/QPrinter.3 -man/qt2/man3/QProgressBar.3 -man/qt2/man3/QProgressDialog.3 -man/qt2/man3/QPtrDict.3 -man/qt2/man3/QPtrDictIterator.3 -man/qt2/man3/QPushButton.3 -man/qt2/man3/QQueue.3 -man/qt2/man3/QRadioButton.3 -man/qt2/man3/QRangeControl.3 -man/qt2/man3/QRect.3 -man/qt2/man3/QRegExp.3 -man/qt2/man3/QRegion.3 -man/qt2/man3/QResizeEvent.3 -man/qt2/man3/QScrollBar.3 -man/qt2/man3/QScrollView.3 -man/qt2/man3/QSemiModal.3 -man/qt2/man3/QServerSocket.3 -man/qt2/man3/QSessionManager.3 -man/qt2/man3/QShared.3 -man/qt2/man3/QShowEvent.3 -man/qt2/man3/QSignal.3 -man/qt2/man3/QSignalMapper.3 -man/qt2/man3/QSimpleRichText.3 -man/qt2/man3/QSize.3 -man/qt2/man3/QSizeGrip.3 -man/qt2/man3/QSizePolicy.3 -man/qt2/man3/QSlider.3 -man/qt2/man3/QSocket.3 -man/qt2/man3/QSocketAddress.3 -man/qt2/man3/QSocketNotifier.3 -man/qt2/man3/QSortedList.3 -man/qt2/man3/QSpacerItem.3 -man/qt2/man3/QSpinBox.3 -man/qt2/man3/QSplitter.3 -man/qt2/man3/QStack.3 -man/qt2/man3/QStatusBar.3 -man/qt2/man3/QStoredDrag.3 -man/qt2/man3/QStrIList.3 -man/qt2/man3/QStrList.3 -man/qt2/man3/QString.3 -man/qt2/man3/QStringList.3 -man/qt2/man3/QStyle.3 -man/qt2/man3/QStyleSheet.3 -man/qt2/man3/QStyleSheetItem.3 -man/qt2/man3/QTab.3 -man/qt2/man3/QTabBar.3 -man/qt2/man3/QTabDialog.3 -man/qt2/man3/QTabWidget.3 -man/qt2/man3/QTableView.3 -man/qt2/man3/QTextBrowser.3 -man/qt2/man3/QTextCodec.3 -man/qt2/man3/QTextDecoder.3 -man/qt2/man3/QTextDrag.3 -man/qt2/man3/QTextEncoder.3 -man/qt2/man3/QTextIStream.3 -man/qt2/man3/QTextOStream.3 -man/qt2/man3/QTextStream.3 -man/qt2/man3/QTextView.3 -man/qt2/man3/QTime.3 -man/qt2/man3/QTimer.3 -man/qt2/man3/QTimerEvent.3 -man/qt2/man3/QToolBar.3 -man/qt2/man3/QToolButton.3 -man/qt2/man3/QToolTip.3 -man/qt2/man3/QToolTipGroup.3 -man/qt2/man3/QTranslator.3 -man/qt2/man3/QUriDrag.3 -man/qt2/man3/QVBox.3 -man/qt2/man3/QVBoxLayout.3 -man/qt2/man3/QVButtonGroup.3 -man/qt2/man3/QVGroupBox.3 -man/qt2/man3/QValidator.3 -man/qt2/man3/QValueList.3 -man/qt2/man3/QValueListConstIterator.3 -man/qt2/man3/QValueListIterator.3 -man/qt2/man3/QWMatrix.3 -man/qt2/man3/QWhatsThis.3 -man/qt2/man3/QWheelEvent.3 -man/qt2/man3/QWidget.3 -man/qt2/man3/QWidgetItem.3 -man/qt2/man3/QWidgetStack.3 -man/qt2/man3/QWindowsStyle.3 -man/qt2/man3/QWizard.3 -man/qt2/man3/QXtApplication.3 -man/qt2/man3/QXtWidget.3 -man/qt2/man3/Qt.3 -man/qt2/man3/qaccel.3 -man/qt2/man3/qapplication.3 -man/qt2/man3/qarray.3 -man/qt2/man3/qasciicache.3 -man/qt2/man3/qasciicacheiterator.3 -man/qt2/man3/qasciidict.3 -man/qt2/man3/qasciidictiterator.3 -man/qt2/man3/qasyncio.3 -man/qt2/man3/qbitarray.3 -man/qt2/man3/qbitmap.3 -man/qt2/man3/qbitval.3 -man/qt2/man3/qboxlayout.3 -man/qt2/man3/qbrush.3 -man/qt2/man3/qbuffer.3 -man/qt2/man3/qbutton.3 -man/qt2/man3/qbuttongroup.3 -man/qt2/man3/qcache.3 -man/qt2/man3/qcacheiterator.3 -man/qt2/man3/qcdestyle.3 -man/qt2/man3/qchar.3 -man/qt2/man3/qcheckbox.3 -man/qt2/man3/qchecklistitem.3 -man/qt2/man3/qchildevent.3 -man/qt2/man3/qclipboard.3 -man/qt2/man3/qcloseevent.3 -man/qt2/man3/qcollection.3 -man/qt2/man3/qcolor.3 -man/qt2/man3/qcolordialog.3 -man/qt2/man3/qcolorgroup.3 -man/qt2/man3/qcombobox.3 -man/qt2/man3/qcommonstyle.3 -man/qt2/man3/qconnection.3 -man/qt2/man3/qconststring.3 -man/qt2/man3/qcstring.3 -man/qt2/man3/qcursor.3 -man/qt2/man3/qcustomevent.3 -man/qt2/man3/qdatapump.3 -man/qt2/man3/qdatasink.3 -man/qt2/man3/qdatasource.3 -man/qt2/man3/qdatastream.3 -man/qt2/man3/qdate.3 -man/qt2/man3/qdatetime.3 -man/qt2/man3/qdialog.3 -man/qt2/man3/qdict.3 -man/qt2/man3/qdictiterator.3 -man/qt2/man3/qdir.3 -man/qt2/man3/qdoublevalidator.3 -man/qt2/man3/qdragenterevent.3 -man/qt2/man3/qdragleaveevent.3 -man/qt2/man3/qdragmoveevent.3 -man/qt2/man3/qdragobject.3 -man/qt2/man3/qdropevent.3 -man/qt2/man3/qdropsite.3 -man/qt2/man3/qevent.3 -man/qt2/man3/qfile.3 -man/qt2/man3/qfiledialog.3 -man/qt2/man3/qfileiconprovider.3 -man/qt2/man3/qfileinfo.3 -man/qt2/man3/qfocusdata.3 -man/qt2/man3/qfocusevent.3 -man/qt2/man3/qfont.3 -man/qt2/man3/qfontdialog.3 -man/qt2/man3/qfontinfo.3 -man/qt2/man3/qfontmetrics.3 -man/qt2/man3/qframe.3 -man/qt2/man3/qgarray.3 -man/qt2/man3/qgcache.3 -man/qt2/man3/qgcacheiterator.3 -man/qt2/man3/qgdict.3 -man/qt2/man3/qgdictiterator.3 -man/qt2/man3/qgl.3 -man/qt2/man3/qglayoutiterator.3 -man/qt2/man3/qglcontext.3 -man/qt2/man3/qglformat.3 -man/qt2/man3/qglist.3 -man/qt2/man3/qglistiterator.3 -man/qt2/man3/qglwidget.3 -man/qt2/man3/qgrid.3 -man/qt2/man3/qgridlayout.3 -man/qt2/man3/qgroupbox.3 -man/qt2/man3/qhbox.3 -man/qt2/man3/qhboxlayout.3 -man/qt2/man3/qhbuttongroup.3 -man/qt2/man3/qheader.3 -man/qt2/man3/qhgroupbox.3 -man/qt2/man3/qhideevent.3 -man/qt2/man3/qiconset.3 -man/qt2/man3/qimage.3 -man/qt2/man3/qimageconsumer.3 -man/qt2/man3/qimagedecoder.3 -man/qt2/man3/qimagedrag.3 -man/qt2/man3/qimageformat.3 -man/qt2/man3/qimageformattype.3 -man/qt2/man3/qimageio.3 -man/qt2/man3/qintcache.3 -man/qt2/man3/qintcacheiterator.3 -man/qt2/man3/qintdict.3 -man/qt2/man3/qintdictiterator.3 -man/qt2/man3/qintvalidator.3 -man/qt2/man3/qiodevice.3 -man/qt2/man3/qiodevicesource.3 -man/qt2/man3/qkeyevent.3 -man/qt2/man3/qlabel.3 -man/qt2/man3/qlayout.3 -man/qt2/man3/qlayoutitem.3 -man/qt2/man3/qlayoutiterator.3 -man/qt2/man3/qlcdnumber.3 -man/qt2/man3/qlineedit.3 -man/qt2/man3/qlist.3 -man/qt2/man3/qlistbox.3 -man/qt2/man3/qlistboxitem.3 -man/qt2/man3/qlistboxpixmap.3 -man/qt2/man3/qlistboxtext.3 -man/qt2/man3/qlistiterator.3 -man/qt2/man3/qlistview.3 -man/qt2/man3/qlistviewitem.3 -man/qt2/man3/qlistviewitemiterator.3 -man/qt2/man3/qlnode.3 -man/qt2/man3/qmainwindow.3 -man/qt2/man3/qmap.3 -man/qt2/man3/qmapconstiterator.3 -man/qt2/man3/qmapiterator.3 -man/qt2/man3/qmenubar.3 -man/qt2/man3/qmenudata.3 -man/qt2/man3/qmessagebox.3 -man/qt2/man3/qmimesource.3 -man/qt2/man3/qmimesourcefactory.3 -man/qt2/man3/qmotifstyle.3 -man/qt2/man3/qmouseevent.3 -man/qt2/man3/qmoveevent.3 -man/qt2/man3/qmovie.3 -man/qt2/man3/qmultilineedit.3 -man/qt2/man3/qnpinstance.3 -man/qt2/man3/qnplugin.3 -man/qt2/man3/qnpstream.3 -man/qt2/man3/qnpwidget.3 -man/qt2/man3/qobject.3 -man/qt2/man3/qpaintdevice.3 -man/qt2/man3/qpaintdevicemetrics.3 -man/qt2/man3/qpainter.3 -man/qt2/man3/qpaintevent.3 -man/qt2/man3/qpalette.3 -man/qt2/man3/qpen.3 -man/qt2/man3/qpicture.3 -man/qt2/man3/qpixmap.3 -man/qt2/man3/qpixmapcache.3 -man/qt2/man3/qplatinumstyle.3 -man/qt2/man3/qpngimagepacker.3 -man/qt2/man3/qpoint.3 -man/qt2/man3/qpointarray.3 -man/qt2/man3/qpopupmenu.3 -man/qt2/man3/qprinter.3 -man/qt2/man3/qprogressbar.3 -man/qt2/man3/qprogressdialog.3 -man/qt2/man3/qptrdict.3 -man/qt2/man3/qptrdictiterator.3 -man/qt2/man3/qpushbutton.3 -man/qt2/man3/qqueue.3 -man/qt2/man3/qradiobutton.3 -man/qt2/man3/qrangecontrol.3 -man/qt2/man3/qrect.3 -man/qt2/man3/qregexp.3 -man/qt2/man3/qregion.3 -man/qt2/man3/qresizeevent.3 -man/qt2/man3/qscrollbar.3 -man/qt2/man3/qscrollview.3 -man/qt2/man3/qsemimodal.3 -man/qt2/man3/qserversocket.3 -man/qt2/man3/qsessionmanager.3 -man/qt2/man3/qshared.3 -man/qt2/man3/qshowevent.3 -man/qt2/man3/qsignal.3 -man/qt2/man3/qsignalmapper.3 -man/qt2/man3/qsimplerichtext.3 -man/qt2/man3/qsize.3 -man/qt2/man3/qsizegrip.3 -man/qt2/man3/qsizepolicy.3 -man/qt2/man3/qslider.3 -man/qt2/man3/qsocket.3 -man/qt2/man3/qsocketaddress.3 -man/qt2/man3/qsocketnotifier.3 -man/qt2/man3/qsortedlist.3 -man/qt2/man3/qspaceritem.3 -man/qt2/man3/qspinbox.3 -man/qt2/man3/qsplitter.3 -man/qt2/man3/qstack.3 -man/qt2/man3/qstatusbar.3 -man/qt2/man3/qstoreddrag.3 -man/qt2/man3/qstrilist.3 -man/qt2/man3/qstring.3 -man/qt2/man3/qstringlist.3 -man/qt2/man3/qstrlist.3 -man/qt2/man3/qstyle.3 -man/qt2/man3/qstylesheet.3 -man/qt2/man3/qstylesheetitem.3 -man/qt2/man3/qt.3 -man/qt2/man3/qtab.3 -man/qt2/man3/qtabbar.3 -man/qt2/man3/qtabdialog.3 -man/qt2/man3/qtableview.3 -man/qt2/man3/qtabwidget.3 -man/qt2/man3/qtextbrowser.3 -man/qt2/man3/qtextcodec.3 -man/qt2/man3/qtextdecoder.3 -man/qt2/man3/qtextdrag.3 -man/qt2/man3/qtextencoder.3 -man/qt2/man3/qtextistream.3 -man/qt2/man3/qtextostream.3 -man/qt2/man3/qtextstream.3 -man/qt2/man3/qtextview.3 -man/qt2/man3/qtime.3 -man/qt2/man3/qtimer.3 -man/qt2/man3/qtimerevent.3 -man/qt2/man3/qtoolbar.3 -man/qt2/man3/qtoolbutton.3 -man/qt2/man3/qtooltip.3 -man/qt2/man3/qtooltipgroup.3 -man/qt2/man3/qtranslator.3 -man/qt2/man3/quridrag.3 -man/qt2/man3/qvalidator.3 -man/qt2/man3/qvaluelist.3 -man/qt2/man3/qvaluelistconstiterator.3 -man/qt2/man3/qvaluelistiterator.3 -man/qt2/man3/qvbox.3 -man/qt2/man3/qvboxlayout.3 -man/qt2/man3/qvbuttongroup.3 -man/qt2/man3/qvgroupbox.3 -man/qt2/man3/qwhatsthis.3 -man/qt2/man3/qwheelevent.3 -man/qt2/man3/qwidget.3 -man/qt2/man3/qwidgetitem.3 -man/qt2/man3/qwidgetstack.3 -man/qt2/man3/qwindowsstyle.3 -man/qt2/man3/qwizard.3 -man/qt2/man3/qwmatrix.3 -man/qt2/man3/qxtapplication.3 -man/qt2/man3/qxtwidget.3 -share/doc/qt2/README -share/doc/qt2/README.QT -share/doc/qt2/abstractwidgets.html -share/doc/qt2/accelerators.html -share/doc/qt2/aclock-main-cpp.html -share/doc/qt2/addressbook-main-cpp.html -share/doc/qt2/annotated.html -share/doc/qt2/application-main-cpp.html -share/doc/qt2/application.html -share/doc/qt2/bearings.png -share/doc/qt2/biff-main-cpp.html -share/doc/qt2/book.png -share/doc/qt2/buttons_groups-main-cpp.html -share/doc/qt2/checklists-main-cpp.html -share/doc/qt2/classes.html -share/doc/qt2/collection.html -share/doc/qt2/coordsys.html -share/doc/qt2/coordsys.png -share/doc/qt2/credits.html -share/doc/qt2/cursor-cursor-cpp.html -share/doc/qt2/customlayout-main-cpp.html -share/doc/qt2/customlayout.html -share/doc/qt2/dclock-main-cpp.html -share/doc/qt2/debug.html -share/doc/qt2/design.html -share/doc/qt2/desktop-desktop-cpp.html -share/doc/qt2/dialogs.html -share/doc/qt2/dirview-main-cpp.html -share/doc/qt2/dnd.html -share/doc/qt2/dochead.png -share/doc/qt2/drawdemo-drawdemo-cpp.html -share/doc/qt2/drawing.html -share/doc/qt2/drawlines-connect-cpp.html -share/doc/qt2/easteregg.html -share/doc/qt2/easteregg2.html -share/doc/qt2/examples.html -share/doc/qt2/fontmatch.html -share/doc/qt2/fonts.html -share/doc/qt2/forever-forever-cpp.html -share/doc/qt2/frames.png -share/doc/qt2/functions.html -share/doc/qt2/geomanagement.html -share/doc/qt2/graph.g1n -share/doc/qt2/grapher-grapher-cpp.html -share/doc/qt2/gridlayout.png -share/doc/qt2/guibooks.html -share/doc/qt2/headers.html -share/doc/qt2/hello-main-cpp.html -share/doc/qt2/hierarchy.html -share/doc/qt2/i18n-main-cpp.html -share/doc/qt2/i18n.html -share/doc/qt2/imageio.html -share/doc/qt2/images.html -share/doc/qt2/index.html -share/doc/qt2/io.html -share/doc/qt2/kernel.html -share/doc/qt2/layout-layout-cpp.html -share/doc/qt2/layout.html -share/doc/qt2/letter.png -share/doc/qt2/license.html -share/doc/qt2/life-main-cpp.html -share/doc/qt2/lineedits-main-cpp.html -share/doc/qt2/listbox-main-cpp.html -share/doc/qt2/listbox_combo-main-cpp.html -share/doc/qt2/listview.png -share/doc/qt2/listviews-main-cpp.html -share/doc/qt2/mailinglists.html -share/doc/qt2/mainlyMotif-editor-cpp.html -share/doc/qt2/mainlyQt-editor-cpp.html -share/doc/qt2/mainlyXt-editor-cpp.html -share/doc/qt2/menu-menu-cpp.html -share/doc/qt2/metaobjects.html -share/doc/qt2/misc.html -share/doc/qt2/moc.html -share/doc/qt2/movies-main-cpp.html -share/doc/qt2/nsplugin.html -share/doc/qt2/opengl.html -share/doc/qt2/picture-picture-cpp.html -share/doc/qt2/pictures.html -share/doc/qt2/pnglogo.png -share/doc/qt2/popup-popup-cpp.html -share/doc/qt2/porting.html -share/doc/qt2/primes.html -share/doc/qt2/printerdialog.png -share/doc/qt2/progress-progress-cpp.html -share/doc/qt2/progressbar-main-cpp.html -share/doc/qt2/qabstractlayout-h.html -share/doc/qt2/qaccel-h.html -share/doc/qt2/qaccel-members.html -share/doc/qt2/qaccel.html -share/doc/qt2/qapplication-h.html -share/doc/qt2/qapplication-members.html -share/doc/qt2/qapplication.html -share/doc/qt2/qarray-h.html -share/doc/qt2/qarray-members.html -share/doc/qt2/qarray.html -share/doc/qt2/qasciicache-h.html -share/doc/qt2/qasciicache-members.html -share/doc/qt2/qasciicache.html -share/doc/qt2/qasciicacheiterator-members.html -share/doc/qt2/qasciicacheiterator.html -share/doc/qt2/qasciidict-h.html -share/doc/qt2/qasciidict-members.html -share/doc/qt2/qasciidict.html -share/doc/qt2/qasciidictiterator-members.html -share/doc/qt2/qasciidictiterator.html -share/doc/qt2/qasyncimageio-h.html -share/doc/qt2/qasyncio-h.html -share/doc/qt2/qasyncio-members.html -share/doc/qt2/qasyncio.html -share/doc/qt2/qbitarray-h.html -share/doc/qt2/qbitarray-members.html -share/doc/qt2/qbitarray.html -share/doc/qt2/qbitmap-h.html -share/doc/qt2/qbitmap-members.html -share/doc/qt2/qbitmap.html -share/doc/qt2/qbitval-members.html -share/doc/qt2/qbitval.html -share/doc/qt2/qboxlayout-members.html -share/doc/qt2/qboxlayout.html -share/doc/qt2/qbrowser-main-cpp.html -share/doc/qt2/qbrush-h.html -share/doc/qt2/qbrush-members.html -share/doc/qt2/qbrush.html -share/doc/qt2/qbttngrp-m.png -share/doc/qt2/qbttngrp-w.png -share/doc/qt2/qbuffer-h.html -share/doc/qt2/qbuffer-members.html -share/doc/qt2/qbuffer.html -share/doc/qt2/qbutton-h.html -share/doc/qt2/qbutton-members.html -share/doc/qt2/qbutton.html -share/doc/qt2/qbuttongroup-h.html -share/doc/qt2/qbuttongroup-members.html -share/doc/qt2/qbuttongroup.html -share/doc/qt2/qcache-h.html -share/doc/qt2/qcache-members.html -share/doc/qt2/qcache.html -share/doc/qt2/qcacheiterator-members.html -share/doc/qt2/qcacheiterator.html -share/doc/qt2/qcdestyle-h.html -share/doc/qt2/qcdestyle-members.html -share/doc/qt2/qcdestyle.html -share/doc/qt2/qchar-members.html -share/doc/qt2/qchar.html -share/doc/qt2/qcheckbox-h.html -share/doc/qt2/qcheckbox-m.png -share/doc/qt2/qcheckbox-members.html -share/doc/qt2/qcheckbox-w.png -share/doc/qt2/qcheckbox.html -share/doc/qt2/qchecklistitem-members.html -share/doc/qt2/qchecklistitem.html -share/doc/qt2/qchildevent-members.html -share/doc/qt2/qchildevent.html -share/doc/qt2/qchkbox-m.png -share/doc/qt2/qchkbox-w.png -share/doc/qt2/qclipboard-h.html -share/doc/qt2/qclipboard-members.html -share/doc/qt2/qclipboard.html -share/doc/qt2/qcloseevent-members.html -share/doc/qt2/qcloseevent.html -share/doc/qt2/qcollection-h.html -share/doc/qt2/qcollection-members.html -share/doc/qt2/qcollection.html -share/doc/qt2/qcolor-h.html -share/doc/qt2/qcolor-members.html -share/doc/qt2/qcolor.html -share/doc/qt2/qcolordialog-h.html -share/doc/qt2/qcolordialog-members.html -share/doc/qt2/qcolordialog.html -share/doc/qt2/qcolorgroup-members.html -share/doc/qt2/qcolorgroup.html -share/doc/qt2/qcombo1-m.png -share/doc/qt2/qcombo1-w.png -share/doc/qt2/qcombo2-m.png -share/doc/qt2/qcombo2-w.png -share/doc/qt2/qcombo3-m.png -share/doc/qt2/qcombo3-w.png -share/doc/qt2/qcombobox-h.html -share/doc/qt2/qcombobox-members.html -share/doc/qt2/qcombobox.html -share/doc/qt2/qcommonstyle-h.html -share/doc/qt2/qcommonstyle-members.html -share/doc/qt2/qcommonstyle.html -share/doc/qt2/qconnection-h.html -share/doc/qt2/qconnection-members.html -share/doc/qt2/qconnection.html -share/doc/qt2/qconststring-members.html -share/doc/qt2/qconststring.html -share/doc/qt2/qcstring-h.html -share/doc/qt2/qcstring-members.html -share/doc/qt2/qcstring.html -share/doc/qt2/qcursor-h.html -share/doc/qt2/qcursor-members.html -share/doc/qt2/qcursor.html -share/doc/qt2/qcustomevent-members.html -share/doc/qt2/qcustomevent.html -share/doc/qt2/qdatapump-members.html -share/doc/qt2/qdatapump.html -share/doc/qt2/qdatasink-members.html -share/doc/qt2/qdatasink.html -share/doc/qt2/qdatasource-members.html -share/doc/qt2/qdatasource.html -share/doc/qt2/qdatastream-h.html -share/doc/qt2/qdatastream-members.html -share/doc/qt2/qdatastream.html -share/doc/qt2/qdate-members.html -share/doc/qt2/qdate.html -share/doc/qt2/qdatetime-h.html -share/doc/qt2/qdatetime-members.html -share/doc/qt2/qdatetime.html -share/doc/qt2/qdialog-h.html -share/doc/qt2/qdialog-members.html -share/doc/qt2/qdialog.html -share/doc/qt2/qdict-h.html -share/doc/qt2/qdict-members.html -share/doc/qt2/qdict.html -share/doc/qt2/qdictiterator-members.html -share/doc/qt2/qdictiterator.html -share/doc/qt2/qdir-h.html -share/doc/qt2/qdir-members.html -share/doc/qt2/qdir-qdir-cpp.html -share/doc/qt2/qdir.html -share/doc/qt2/qdoublevalidator-members.html -share/doc/qt2/qdoublevalidator.html -share/doc/qt2/qdragenterevent-members.html -share/doc/qt2/qdragenterevent.html -share/doc/qt2/qdragleaveevent-members.html -share/doc/qt2/qdragleaveevent.html -share/doc/qt2/qdragmoveevent-members.html -share/doc/qt2/qdragmoveevent.html -share/doc/qt2/qdragobject-h.html -share/doc/qt2/qdragobject-members.html -share/doc/qt2/qdragobject.html -share/doc/qt2/qdrawutil-h.html -share/doc/qt2/qdropevent-members.html -share/doc/qt2/qdropevent.html -share/doc/qt2/qdropsite-h.html -share/doc/qt2/qdropsite-members.html -share/doc/qt2/qdropsite.html -share/doc/qt2/qevent-h.html -share/doc/qt2/qevent-members.html -share/doc/qt2/qevent.html -share/doc/qt2/qfd-qfd-cpp.html -share/doc/qt2/qfile-h.html -share/doc/qt2/qfile-members.html -share/doc/qt2/qfile.html -share/doc/qt2/qfiledialog-h.html -share/doc/qt2/qfiledialog-members.html -share/doc/qt2/qfiledialog.html -share/doc/qt2/qfiledlg-m.png -share/doc/qt2/qfiledlg-w.png -share/doc/qt2/qfileiconprovider-members.html -share/doc/qt2/qfileiconprovider.html -share/doc/qt2/qfileiconview-main-cpp.html -share/doc/qt2/qfileinfo-h.html -share/doc/qt2/qfileinfo-members.html -share/doc/qt2/qfileinfo.html -share/doc/qt2/qfocusdata-h.html -share/doc/qt2/qfocusdata-members.html -share/doc/qt2/qfocusdata.html -share/doc/qt2/qfocusevent-members.html -share/doc/qt2/qfocusevent.html -share/doc/qt2/qfont-h.html -share/doc/qt2/qfont-members.html -share/doc/qt2/qfont.html -share/doc/qt2/qfontdialog-h.html -share/doc/qt2/qfontdialog-members.html -share/doc/qt2/qfontdialog.html -share/doc/qt2/qfontinfo-h.html -share/doc/qt2/qfontinfo-members.html -share/doc/qt2/qfontinfo.html -share/doc/qt2/qfontmetrics-h.html -share/doc/qt2/qfontmetrics-members.html -share/doc/qt2/qfontmetrics.html -share/doc/qt2/qframe-h.html -share/doc/qt2/qframe-members.html -share/doc/qt2/qframe.html -share/doc/qt2/qgarray-h.html -share/doc/qt2/qgarray-members.html -share/doc/qt2/qgarray.html -share/doc/qt2/qgcache-h.html -share/doc/qt2/qgcache-members.html -share/doc/qt2/qgcache.html -share/doc/qt2/qgcacheiterator-members.html -share/doc/qt2/qgcacheiterator.html -share/doc/qt2/qgdict-h.html -share/doc/qt2/qgdict-members.html -share/doc/qt2/qgdict.html -share/doc/qt2/qgdictiterator-members.html -share/doc/qt2/qgdictiterator.html -share/doc/qt2/qgl-h.html -share/doc/qt2/qgl-members.html -share/doc/qt2/qgl.html -share/doc/qt2/qglayoutiterator-members.html -share/doc/qt2/qglayoutiterator.html -share/doc/qt2/qglcontext-members.html -share/doc/qt2/qglcontext.html -share/doc/qt2/qglformat-members.html -share/doc/qt2/qglformat.html -share/doc/qt2/qglist-h.html -share/doc/qt2/qglist-members.html -share/doc/qt2/qglist.html -share/doc/qt2/qglistiterator-members.html -share/doc/qt2/qglistiterator.html -share/doc/qt2/qglobal-h.html -share/doc/qt2/qglwidget-members.html -share/doc/qt2/qglwidget.html -share/doc/qt2/qgrid-h.html -share/doc/qt2/qgrid-m.png -share/doc/qt2/qgrid-members.html -share/doc/qt2/qgrid-w.png -share/doc/qt2/qgrid.html -share/doc/qt2/qgrid.png -share/doc/qt2/qgridlayout-members.html -share/doc/qt2/qgridlayout.html -share/doc/qt2/qgroupbox-h.html -share/doc/qt2/qgroupbox-members.html -share/doc/qt2/qgroupbox.html -share/doc/qt2/qgrpbox-m.png -share/doc/qt2/qgrpbox-w.png -share/doc/qt2/qhbox-h.html -share/doc/qt2/qhbox-m.png -share/doc/qt2/qhbox-members.html -share/doc/qt2/qhbox-w.png -share/doc/qt2/qhbox.html -share/doc/qt2/qhbox.png -share/doc/qt2/qhboxlayout-members.html -share/doc/qt2/qhboxlayout.html -share/doc/qt2/qhbuttongroup-h.html -share/doc/qt2/qhbuttongroup-members.html -share/doc/qt2/qhbuttongroup.html -share/doc/qt2/qheader-h.html -share/doc/qt2/qheader-m.png -share/doc/qt2/qheader-members.html -share/doc/qt2/qheader-w.png -share/doc/qt2/qheader.html -share/doc/qt2/qhgroupbox-h.html -share/doc/qt2/qhgroupbox-members.html -share/doc/qt2/qhgroupbox.html -share/doc/qt2/qhideevent-members.html -share/doc/qt2/qhideevent.html -share/doc/qt2/qiconset-h.html -share/doc/qt2/qiconset-members.html -share/doc/qt2/qiconset.html -share/doc/qt2/qiconview-main-cpp.html -share/doc/qt2/qimage-h.html -share/doc/qt2/qimage-members.html -share/doc/qt2/qimage.html -share/doc/qt2/qimageconsumer-members.html -share/doc/qt2/qimageconsumer.html -share/doc/qt2/qimagedecoder-members.html -share/doc/qt2/qimagedecoder.html -share/doc/qt2/qimagedrag-members.html -share/doc/qt2/qimagedrag.html -share/doc/qt2/qimageformat-members.html -share/doc/qt2/qimageformat.html -share/doc/qt2/qimageformattype-members.html -share/doc/qt2/qimageformattype.html -share/doc/qt2/qimageio-members.html -share/doc/qt2/qimageio.html -share/doc/qt2/qintcache-h.html -share/doc/qt2/qintcache-members.html -share/doc/qt2/qintcache.html -share/doc/qt2/qintcacheiterator-members.html -share/doc/qt2/qintcacheiterator.html -share/doc/qt2/qintdict-h.html -share/doc/qt2/qintdict-members.html -share/doc/qt2/qintdict.html -share/doc/qt2/qintdictiterator-members.html -share/doc/qt2/qintdictiterator.html -share/doc/qt2/qintvalidator-members.html -share/doc/qt2/qintvalidator.html -share/doc/qt2/qiodevice-h.html -share/doc/qt2/qiodevice-members.html -share/doc/qt2/qiodevice.html -share/doc/qt2/qiodevicesource-members.html -share/doc/qt2/qiodevicesource.html -share/doc/qt2/qkeyevent-members.html -share/doc/qt2/qkeyevent.html -share/doc/qt2/qlabel-h.html -share/doc/qt2/qlabel-m.png -share/doc/qt2/qlabel-members.html -share/doc/qt2/qlabel-w.png -share/doc/qt2/qlabel.html -share/doc/qt2/qlayout-h.html -share/doc/qt2/qlayout-members.html -share/doc/qt2/qlayout.html -share/doc/qt2/qlayoutitem-members.html -share/doc/qt2/qlayoutitem.html -share/doc/qt2/qlayoutiterator-members.html -share/doc/qt2/qlayoutiterator.html -share/doc/qt2/qlcdnum-m.png -share/doc/qt2/qlcdnum-w.png -share/doc/qt2/qlcdnumber-h.html -share/doc/qt2/qlcdnumber-members.html -share/doc/qt2/qlcdnumber.html -share/doc/qt2/qlined-m.png -share/doc/qt2/qlined-w.png -share/doc/qt2/qlineedit-h.html -share/doc/qt2/qlineedit-members.html -share/doc/qt2/qlineedit.html -share/doc/qt2/qlist-h.html -share/doc/qt2/qlist-members.html -share/doc/qt2/qlist.html -share/doc/qt2/qlistbox-h.html -share/doc/qt2/qlistbox-m.png -share/doc/qt2/qlistbox-members.html -share/doc/qt2/qlistbox-w.png -share/doc/qt2/qlistbox.html -share/doc/qt2/qlistboxitem-members.html -share/doc/qt2/qlistboxitem.html -share/doc/qt2/qlistboxpixmap-members.html -share/doc/qt2/qlistboxpixmap.html -share/doc/qt2/qlistboxtext-members.html -share/doc/qt2/qlistboxtext.html -share/doc/qt2/qlistiterator-members.html -share/doc/qt2/qlistiterator.html -share/doc/qt2/qlistview-h.html -share/doc/qt2/qlistview-members.html -share/doc/qt2/qlistview.html -share/doc/qt2/qlistviewitem-members.html -share/doc/qt2/qlistviewitem.html -share/doc/qt2/qlistviewitemiterator-members.html -share/doc/qt2/qlistviewitemiterator.html -share/doc/qt2/qlnode-members.html -share/doc/qt2/qlnode.html -share/doc/qt2/qmag-qmag-cpp.html -share/doc/qt2/qmainwindow-h.html -share/doc/qt2/qmainwindow-m.png -share/doc/qt2/qmainwindow-members.html -share/doc/qt2/qmainwindow-w.png -share/doc/qt2/qmainwindow.html -share/doc/qt2/qmap-h.html -share/doc/qt2/qmap-members.html -share/doc/qt2/qmap.html -share/doc/qt2/qmapconstiterator-members.html -share/doc/qt2/qmapconstiterator.html -share/doc/qt2/qmapiterator-members.html -share/doc/qt2/qmapiterator.html -share/doc/qt2/qmenubar-h.html -share/doc/qt2/qmenubar-m.png -share/doc/qt2/qmenubar-members.html -share/doc/qt2/qmenubar-w.png -share/doc/qt2/qmenubar.html -share/doc/qt2/qmenudata-h.html -share/doc/qt2/qmenudata-members.html -share/doc/qt2/qmenudata.html -share/doc/qt2/qmessagebox-h.html -share/doc/qt2/qmessagebox-members.html -share/doc/qt2/qmessagebox.html -share/doc/qt2/qmime-h.html -share/doc/qt2/qmimesource-members.html -share/doc/qt2/qmimesource.html -share/doc/qt2/qmimesourcefactory-members.html -share/doc/qt2/qmimesourcefactory.html -share/doc/qt2/qmlined-m.png -share/doc/qt2/qmlined-w.png -share/doc/qt2/qmotifstyle-h.html -share/doc/qt2/qmotifstyle-members.html -share/doc/qt2/qmotifstyle.html -share/doc/qt2/qmouseevent-members.html -share/doc/qt2/qmouseevent.html -share/doc/qt2/qmoveevent-members.html -share/doc/qt2/qmoveevent.html -share/doc/qt2/qmovie-h.html -share/doc/qt2/qmovie-members.html -share/doc/qt2/qmovie.html -share/doc/qt2/qmovie.png -share/doc/qt2/qmsgbox-m.png -share/doc/qt2/qmsgbox-w.png -share/doc/qt2/qmultilineedit-h.html -share/doc/qt2/qmultilineedit-members.html -share/doc/qt2/qmultilineedit.html -share/doc/qt2/qnamespace-h.html -share/doc/qt2/qnetworkegg.html -share/doc/qt2/qnp-h.html -share/doc/qt2/qnpinstance-members.html -share/doc/qt2/qnpinstance.html -share/doc/qt2/qnplugin-members.html -share/doc/qt2/qnplugin.html -share/doc/qt2/qnpstream-members.html -share/doc/qt2/qnpstream.html -share/doc/qt2/qnpwidget-members.html -share/doc/qt2/qnpwidget.html -share/doc/qt2/qobject-h.html -share/doc/qt2/qobject-members.html -share/doc/qt2/qobject.html -share/doc/qt2/qpaintdevice-h.html -share/doc/qt2/qpaintdevice-members.html -share/doc/qt2/qpaintdevice.html -share/doc/qt2/qpaintdevicemetrics-h.html -share/doc/qt2/qpaintdevicemetrics-members.html -share/doc/qt2/qpaintdevicemetrics.html -share/doc/qt2/qpainter-h.html -share/doc/qt2/qpainter-members.html -share/doc/qt2/qpainter.html -share/doc/qt2/qpaintevent-members.html -share/doc/qt2/qpaintevent.html -share/doc/qt2/qpalette-h.html -share/doc/qt2/qpalette-members.html -share/doc/qt2/qpalette.html -share/doc/qt2/qpen-h.html -share/doc/qt2/qpen-members.html -share/doc/qt2/qpen.html -share/doc/qt2/qpicture-h.html -share/doc/qt2/qpicture-members.html -share/doc/qt2/qpicture.html -share/doc/qt2/qpixmap-h.html -share/doc/qt2/qpixmap-members.html -share/doc/qt2/qpixmap.html -share/doc/qt2/qpixmapcache-h.html -share/doc/qt2/qpixmapcache-members.html -share/doc/qt2/qpixmapcache.html -share/doc/qt2/qplatinumstyle-h.html -share/doc/qt2/qplatinumstyle-members.html -share/doc/qt2/qplatinumstyle.html -share/doc/qt2/qpngimagepacker-members.html -share/doc/qt2/qpngimagepacker.html -share/doc/qt2/qpngio-h.html -share/doc/qt2/qpoint-h.html -share/doc/qt2/qpoint-members.html -share/doc/qt2/qpoint.html -share/doc/qt2/qpointarray-h.html -share/doc/qt2/qpointarray-members.html -share/doc/qt2/qpointarray.html -share/doc/qt2/qpopmenu-m.png -share/doc/qt2/qpopmenu-w.png -share/doc/qt2/qpopupmenu-h.html -share/doc/qt2/qpopupmenu-members.html -share/doc/qt2/qpopupmenu.html -share/doc/qt2/qprinter-h.html -share/doc/qt2/qprinter-members.html -share/doc/qt2/qprinter.html -share/doc/qt2/qprogbar-m.png -share/doc/qt2/qprogbar-w.png -share/doc/qt2/qprogdlg-m.png -share/doc/qt2/qprogdlg-w.png -share/doc/qt2/qprogressbar-h.html -share/doc/qt2/qprogressbar-members.html -share/doc/qt2/qprogressbar.html -share/doc/qt2/qprogressdialog-h.html -share/doc/qt2/qprogressdialog-members.html -share/doc/qt2/qprogressdialog.html -share/doc/qt2/qptrdict-h.html -share/doc/qt2/qptrdict-members.html -share/doc/qt2/qptrdict.html -share/doc/qt2/qptrdictiterator-members.html -share/doc/qt2/qptrdictiterator.html -share/doc/qt2/qpushbt-m.png -share/doc/qt2/qpushbt-w.png -share/doc/qt2/qpushbutton-h.html -share/doc/qt2/qpushbutton-members.html -share/doc/qt2/qpushbutton.html -share/doc/qt2/qqueue-h.html -share/doc/qt2/qqueue-members.html -share/doc/qt2/qqueue.html -share/doc/qt2/qradiobt-m.png -share/doc/qt2/qradiobt-w.png -share/doc/qt2/qradiobutton-h.html -share/doc/qt2/qradiobutton-members.html -share/doc/qt2/qradiobutton.html -share/doc/qt2/qrangecontrol-h.html -share/doc/qt2/qrangecontrol-members.html -share/doc/qt2/qrangecontrol.html -share/doc/qt2/qrect-h.html -share/doc/qt2/qrect-members.html -share/doc/qt2/qrect.html -share/doc/qt2/qregexp-h.html -share/doc/qt2/qregexp-members.html -share/doc/qt2/qregexp.html -share/doc/qt2/qregion-h.html -share/doc/qt2/qregion-members.html -share/doc/qt2/qregion.html -share/doc/qt2/qresizeevent-members.html -share/doc/qt2/qresizeevent.html -share/doc/qt2/qscrbar-m.png -share/doc/qt2/qscrbar-w.png -share/doc/qt2/qscrollbar-h.html -share/doc/qt2/qscrollbar-members.html -share/doc/qt2/qscrollbar.html -share/doc/qt2/qscrollview-cl.png -share/doc/qt2/qscrollview-h.html -share/doc/qt2/qscrollview-m.png -share/doc/qt2/qscrollview-members.html -share/doc/qt2/qscrollview-vp.png -share/doc/qt2/qscrollview-vp2.png -share/doc/qt2/qscrollview-w.png -share/doc/qt2/qscrollview.html -share/doc/qt2/qsemimodal-h.html -share/doc/qt2/qsemimodal-members.html -share/doc/qt2/qsemimodal.html -share/doc/qt2/qserversocket-h.html -share/doc/qt2/qserversocket-members.html -share/doc/qt2/qserversocket.html -share/doc/qt2/qsessionmanager-h.html -share/doc/qt2/qsessionmanager-members.html -share/doc/qt2/qsessionmanager.html -share/doc/qt2/qshared-h.html -share/doc/qt2/qshared-members.html -share/doc/qt2/qshared.html -share/doc/qt2/qshowevent-members.html -share/doc/qt2/qshowevent.html -share/doc/qt2/qsignal-h.html -share/doc/qt2/qsignal-members.html -share/doc/qt2/qsignal.html -share/doc/qt2/qsignalmapper-h.html -share/doc/qt2/qsignalmapper-members.html -share/doc/qt2/qsignalmapper.html -share/doc/qt2/qsimplerichtext-h.html -share/doc/qt2/qsimplerichtext-members.html -share/doc/qt2/qsimplerichtext.html -share/doc/qt2/qsize-h.html -share/doc/qt2/qsize-members.html -share/doc/qt2/qsize.html -share/doc/qt2/qsizegrip-h.html -share/doc/qt2/qsizegrip-members.html -share/doc/qt2/qsizegrip.html -share/doc/qt2/qsizepolicy-h.html -share/doc/qt2/qsizepolicy-members.html -share/doc/qt2/qsizepolicy.html -share/doc/qt2/qslider-h.html -share/doc/qt2/qslider-m.png -share/doc/qt2/qslider-members.html -share/doc/qt2/qslider-w.png -share/doc/qt2/qslider.html -share/doc/qt2/qsocket-h.html -share/doc/qt2/qsocket-members.html -share/doc/qt2/qsocket.html -share/doc/qt2/qsocketaddress-members.html -share/doc/qt2/qsocketaddress.html -share/doc/qt2/qsocketdevice-h.html -share/doc/qt2/qsocketnotifier-h.html -share/doc/qt2/qsocketnotifier-members.html -share/doc/qt2/qsocketnotifier.html -share/doc/qt2/qsortedlist-h.html -share/doc/qt2/qsortedlist-members.html -share/doc/qt2/qsortedlist.html -share/doc/qt2/qspaceritem-members.html -share/doc/qt2/qspaceritem.html -share/doc/qt2/qspinbox-h.html -share/doc/qt2/qspinbox-m.png -share/doc/qt2/qspinbox-members.html -share/doc/qt2/qspinbox-w.png -share/doc/qt2/qspinbox.html -share/doc/qt2/qsplitter-h.html -share/doc/qt2/qsplitter-m.png -share/doc/qt2/qsplitter-members.html -share/doc/qt2/qsplitter-w.png -share/doc/qt2/qsplitter.html -share/doc/qt2/qstack-h.html -share/doc/qt2/qstack-members.html -share/doc/qt2/qstack.html -share/doc/qt2/qstatusbar-h.html -share/doc/qt2/qstatusbar-m.png -share/doc/qt2/qstatusbar-members.html -share/doc/qt2/qstatusbar-w.png -share/doc/qt2/qstatusbar.html -share/doc/qt2/qstoreddrag-members.html -share/doc/qt2/qstoreddrag.html -share/doc/qt2/qstrilist-members.html -share/doc/qt2/qstrilist.html -share/doc/qt2/qstring-h.html -share/doc/qt2/qstring-members.html -share/doc/qt2/qstring.html -share/doc/qt2/qstringlist-h.html -share/doc/qt2/qstringlist-members.html -share/doc/qt2/qstringlist.html -share/doc/qt2/qstrlist-h.html -share/doc/qt2/qstrlist-members.html -share/doc/qt2/qstrlist.html -share/doc/qt2/qstyle-h.html -share/doc/qt2/qstyle-members.html -share/doc/qt2/qstyle.html -share/doc/qt2/qstylesheet-h.html -share/doc/qt2/qstylesheet-members.html -share/doc/qt2/qstylesheet.html -share/doc/qt2/qstylesheetitem-members.html -share/doc/qt2/qstylesheetitem.html -share/doc/qt2/qt-members.html -share/doc/qt2/qt.html -share/doc/qt2/qtab-members.html -share/doc/qt2/qtab.html -share/doc/qt2/qtabbar-h.html -share/doc/qt2/qtabbar-m.png -share/doc/qt2/qtabbar-members.html -share/doc/qt2/qtabbar-w.png -share/doc/qt2/qtabbar.html -share/doc/qt2/qtabdialog-h.html -share/doc/qt2/qtabdialog-members.html -share/doc/qt2/qtabdialog.html -share/doc/qt2/qtabdlg-m.png -share/doc/qt2/qtabdlg-w.png -share/doc/qt2/qtableview-h.html -share/doc/qt2/qtableview-members.html -share/doc/qt2/qtableview.html -share/doc/qt2/qtablevw-m.png -share/doc/qt2/qtablevw-w.png -share/doc/qt2/qtabwidget-h.html -share/doc/qt2/qtabwidget-members.html -share/doc/qt2/qtabwidget.html -share/doc/qt2/qtextbrowser-h.html -share/doc/qt2/qtextbrowser-members.html -share/doc/qt2/qtextbrowser.html -share/doc/qt2/qtextcodec-h.html -share/doc/qt2/qtextcodec-members.html -share/doc/qt2/qtextcodec.html -share/doc/qt2/qtextdecoder-members.html -share/doc/qt2/qtextdecoder.html -share/doc/qt2/qtextdrag-members.html -share/doc/qt2/qtextdrag.html -share/doc/qt2/qtextencoder-members.html -share/doc/qt2/qtextencoder.html -share/doc/qt2/qtextistream-members.html -share/doc/qt2/qtextistream.html -share/doc/qt2/qtextostream-members.html -share/doc/qt2/qtextostream.html -share/doc/qt2/qtextstream-h.html -share/doc/qt2/qtextstream-members.html -share/doc/qt2/qtextstream.html -share/doc/qt2/qtextview-h.html -share/doc/qt2/qtextview-members.html -share/doc/qt2/qtextview.html -share/doc/qt2/qtimage-qtimage-cpp.html -share/doc/qt2/qtime-members.html -share/doc/qt2/qtime.html -share/doc/qt2/qtimer-h.html -share/doc/qt2/qtimer-members.html -share/doc/qt2/qtimer.html -share/doc/qt2/qtimerevent-members.html -share/doc/qt2/qtimerevent.html -share/doc/qt2/qtl.html -share/doc/qt2/qtlogo.png -share/doc/qt2/qtoolbar-h.html -share/doc/qt2/qtoolbar-members.html -share/doc/qt2/qtoolbar.html -share/doc/qt2/qtoolbutton-h.html -share/doc/qt2/qtoolbutton-members.html -share/doc/qt2/qtoolbutton.html -share/doc/qt2/qtooltip-h.html -share/doc/qt2/qtooltip-members.html -share/doc/qt2/qtooltip.html -share/doc/qt2/qtooltipgroup-members.html -share/doc/qt2/qtooltipgroup.html -share/doc/qt2/qtranslator-h.html -share/doc/qt2/qtranslator-members.html -share/doc/qt2/qtranslator.html -share/doc/qt2/quridrag-members.html -share/doc/qt2/quridrag.html -share/doc/qt2/qvalidator-h.html -share/doc/qt2/qvalidator-members.html -share/doc/qt2/qvalidator.html -share/doc/qt2/qvaluelist-h.html -share/doc/qt2/qvaluelist-members.html -share/doc/qt2/qvaluelist.html -share/doc/qt2/qvaluelistconstiterator-members.html -share/doc/qt2/qvaluelistconstiterator.html -share/doc/qt2/qvaluelistiterator-members.html -share/doc/qt2/qvaluelistiterator.html -share/doc/qt2/qvbox-h.html -share/doc/qt2/qvbox-m.png -share/doc/qt2/qvbox-members.html -share/doc/qt2/qvbox-w.png -share/doc/qt2/qvbox.html -share/doc/qt2/qvbox.png -share/doc/qt2/qvboxlayout-members.html -share/doc/qt2/qvboxlayout.html -share/doc/qt2/qvbuttongroup-h.html -share/doc/qt2/qvbuttongroup-members.html -share/doc/qt2/qvbuttongroup.html -share/doc/qt2/qvgroupbox-h.html -share/doc/qt2/qvgroupbox-members.html -share/doc/qt2/qvgroupbox.html -share/doc/qt2/qwerty-main-cpp.html -share/doc/qt2/qwhatsthis-h.html -share/doc/qt2/qwhatsthis-members.html -share/doc/qt2/qwhatsthis.html -share/doc/qt2/qwheelevent-members.html -share/doc/qt2/qwheelevent.html -share/doc/qt2/qwidget-h.html -share/doc/qt2/qwidget-members.html -share/doc/qt2/qwidget.html -share/doc/qt2/qwidgetitem-members.html -share/doc/qt2/qwidgetitem.html -share/doc/qt2/qwidgetstack-h.html -share/doc/qt2/qwidgetstack-members.html -share/doc/qt2/qwidgetstack.html -share/doc/qt2/qwindowdefs-h.html -share/doc/qt2/qwindowsstyle-h.html -share/doc/qt2/qwindowsstyle-members.html -share/doc/qt2/qwindowsstyle.html -share/doc/qt2/qwizard-h.html -share/doc/qt2/qwizard-members.html -share/doc/qt2/qwizard.html -share/doc/qt2/qwmatrix-h.html -share/doc/qt2/qwmatrix-members.html -share/doc/qt2/qwmatrix.html -share/doc/qt2/qxt-h.html -share/doc/qt2/qxtapplication-members.html -share/doc/qt2/qxtapplication.html -share/doc/qt2/qxtwidget-members.html -share/doc/qt2/qxtwidget.html -share/doc/qt2/rangecontrols-main-cpp.html -share/doc/qt2/realwidgets.html -share/doc/qt2/removed20.html -share/doc/qt2/richtext-main-cpp.html -share/doc/qt2/rot13-rot13-cpp.html -share/doc/qt2/scribble-main-cpp.html -share/doc/qt2/scrollview-scrollview-cpp.html -share/doc/qt2/session.html -share/doc/qt2/session.png -share/doc/qt2/shared.html -share/doc/qt2/shclass.html -share/doc/qt2/showimg-main-cpp.html -share/doc/qt2/simple-application.html -share/doc/qt2/splitter-splitter-cpp.html -share/doc/qt2/t1.html -share/doc/qt2/t1.png -share/doc/qt2/t10-cannon-cpp.html -share/doc/qt2/t10-cannon-h.html -share/doc/qt2/t10-lcdrange-cpp.html -share/doc/qt2/t10-lcdrange-h.html -share/doc/qt2/t10-main-cpp.html -share/doc/qt2/t10-makefile.html -share/doc/qt2/t10.html -share/doc/qt2/t10.png -share/doc/qt2/t11-cannon-cpp.html -share/doc/qt2/t11-cannon-h.html -share/doc/qt2/t11-lcdrange-cpp.html -share/doc/qt2/t11-lcdrange-h.html -share/doc/qt2/t11-main-cpp.html -share/doc/qt2/t11-makefile.html -share/doc/qt2/t11.html -share/doc/qt2/t11.png -share/doc/qt2/t12-cannon-cpp.html -share/doc/qt2/t12-cannon-h.html -share/doc/qt2/t12-lcdrange-cpp.html -share/doc/qt2/t12-lcdrange-h.html -share/doc/qt2/t12-main-cpp.html -share/doc/qt2/t12-makefile.html -share/doc/qt2/t12.html -share/doc/qt2/t12.png -share/doc/qt2/t13-cannon-cpp.html -share/doc/qt2/t13-cannon-h.html -share/doc/qt2/t13-gamebrd-cpp.html -share/doc/qt2/t13-gamebrd-h.html -share/doc/qt2/t13-lcdrange-cpp.html -share/doc/qt2/t13-lcdrange-h.html -share/doc/qt2/t13-main-cpp.html -share/doc/qt2/t13-makefile.html -share/doc/qt2/t13.html -share/doc/qt2/t13.png -share/doc/qt2/t14-cannon-cpp.html -share/doc/qt2/t14-cannon-h.html -share/doc/qt2/t14-gamebrd-cpp.html -share/doc/qt2/t14-gamebrd-h.html -share/doc/qt2/t14-lcdrange-cpp.html -share/doc/qt2/t14-lcdrange-h.html -share/doc/qt2/t14-main-cpp.html -share/doc/qt2/t14-makefile.html -share/doc/qt2/t14.html -share/doc/qt2/t14.png -share/doc/qt2/t2.html -share/doc/qt2/t2.png -share/doc/qt2/t3.html -share/doc/qt2/t3.png -share/doc/qt2/t4.html -share/doc/qt2/t4.png -share/doc/qt2/t5.html -share/doc/qt2/t5.png -share/doc/qt2/t6.html -share/doc/qt2/t6.png -share/doc/qt2/t7-lcdrange-cpp.html -share/doc/qt2/t7-lcdrange-h.html -share/doc/qt2/t7-main-cpp.html -share/doc/qt2/t7-makefile.html -share/doc/qt2/t7.html -share/doc/qt2/t7.png -share/doc/qt2/t8-cannon-cpp.html -share/doc/qt2/t8-cannon-h.html -share/doc/qt2/t8-lcdrange-cpp.html -share/doc/qt2/t8-lcdrange-h.html -share/doc/qt2/t8-main-cpp.html -share/doc/qt2/t8-makefile.html -share/doc/qt2/t8.html -share/doc/qt2/t8.png -share/doc/qt2/t9-cannon-cpp.html -share/doc/qt2/t9-cannon-h.html -share/doc/qt2/t9-lcdrange-cpp.html -share/doc/qt2/t9-lcdrange-h.html -share/doc/qt2/t9-main-cpp.html -share/doc/qt2/t9-makefile.html -share/doc/qt2/t9.html -share/doc/qt2/t9.png -share/doc/qt2/t9_1.png -share/doc/qt2/t9_2.png -share/doc/qt2/tabdialog-tabdialog-cpp.html -share/doc/qt2/table-main-cpp.html -share/doc/qt2/test.png -share/doc/qt2/tetrix-tetrix-cpp.html -share/doc/qt2/themes-main-cpp.html -share/doc/qt2/tictac-main-cpp.html -share/doc/qt2/time.html -share/doc/qt2/tools.html -share/doc/qt2/tooltip-main-cpp.html -share/doc/qt2/topicals.html -share/doc/qt2/treeview.png -share/doc/qt2/trivial-trivial-cpp.html -share/doc/qt2/troll.html -share/doc/qt2/ttlogo-small.jpg -share/doc/qt2/ttlogo-small.png -share/doc/qt2/tutorial.html -share/doc/qt2/tutorial.png -share/doc/qt2/validator-main-cpp.html -share/doc/qt2/whatsthis.png -share/doc/qt2/wizard-main-cpp.html -share/doc/qt2/xform-xform-cpp.html -share/doc/qt2/xt.html -share/doc/qt2/y2k.html -@dirrm bin/qt2 -@dirrm include/qt2 -@dirrm lib/qt2 -@dirrm man/qt2/man1 -@dirrm man/qt2/man3 -@dirrm man/qt2 -@dirrm share/doc/qt2 +@comment $NetBSD: PLIST,v 1.15 2000/04/28 10:09:55 drochner Exp $ +qt2/bin/moc +qt2/include/jri.h +qt2/include/jritypes.h +qt2/include/npapi.h +qt2/include/npupp.h +qt2/include/q1xcompatibility.h +qt2/include/qabstractlayout.h +qt2/include/qaccel.h +qt2/include/qapp.h +qt2/include/qapplication.h +qt2/include/qarray.h +qt2/include/qasciicache.h +qt2/include/qasciidict.h +qt2/include/qasyncimageio.h +qt2/include/qasyncio.h +qt2/include/qbitarray.h +qt2/include/qbitarry.h +qt2/include/qbitmap.h +qt2/include/qbrush.h +qt2/include/qbttngrp.h +qt2/include/qbuffer.h +qt2/include/qbutton.h +qt2/include/qbuttongroup.h +qt2/include/qcache.h +qt2/include/qcdestyle.h +qt2/include/qcheckbox.h +qt2/include/qchkbox.h +qt2/include/qclipboard.h +qt2/include/qclipbrd.h +qt2/include/qcollect.h +qt2/include/qcollection.h +qt2/include/qcolor.h +qt2/include/qcolordialog.h +qt2/include/qcombo.h +qt2/include/qcombobox.h +qt2/include/qcommonstyle.h +qt2/include/qconnect.h +qt2/include/qconnection.h +qt2/include/qcstring.h +qt2/include/qcursor.h +qt2/include/qdatastream.h +qt2/include/qdatetime.h +qt2/include/qdatetm.h +qt2/include/qdialog.h +qt2/include/qdict.h +qt2/include/qdir.h +qt2/include/qdragobject.h +qt2/include/qdrawutil.h +qt2/include/qdrawutl.h +qt2/include/qdropsite.h +qt2/include/qdstream.h +qt2/include/qeucjpcodec.h +qt2/include/qeuckrcodec.h +qt2/include/qevent.h +qt2/include/qfile.h +qt2/include/qfiledef.h +qt2/include/qfiledefs.h +qt2/include/qfiledialog.h +qt2/include/qfiledlg.h +qt2/include/qfileinf.h +qt2/include/qfileinfo.h +qt2/include/qfocusdata.h +qt2/include/qfont.h +qt2/include/qfontdata.h +qt2/include/qfontdatabase.h +qt2/include/qfontdialog.h +qt2/include/qfontdta.h +qt2/include/qfontinf.h +qt2/include/qfontinfo.h +qt2/include/qfontmet.h +qt2/include/qfontmetrics.h +qt2/include/qframe.h +qt2/include/qgarray.h +qt2/include/qgcache.h +qt2/include/qgdict.h +qt2/include/qgeneric.h +qt2/include/qgif.h +qt2/include/qgl.h +qt2/include/qglist.h +qt2/include/qglobal.h +qt2/include/qgmanagr.h +qt2/include/qgrid.h +qt2/include/qgroupbox.h +qt2/include/qgrpbox.h +qt2/include/qgvector.h +qt2/include/qhbox.h +qt2/include/qhbuttongroup.h +qt2/include/qheader.h +qt2/include/qhgroupbox.h +qt2/include/qiconset.h +qt2/include/qimage.h +qt2/include/qimageio.h +qt2/include/qintcach.h +qt2/include/qintcache.h +qt2/include/qintdict.h +qt2/include/qiodev.h +qt2/include/qiodevice.h +qt2/include/qjiscodec.h +qt2/include/qjpegio.h +qt2/include/qjpunicode.h +qt2/include/qkeycode.h +qt2/include/qkoi8codec.h +qt2/include/qlabel.h +qt2/include/qlayout.h +qt2/include/qlayoutengine.h +qt2/include/qlcdnum.h +qt2/include/qlcdnumber.h +qt2/include/qlined.h +qt2/include/qlineedit.h +qt2/include/qlist.h +qt2/include/qlistbox.h +qt2/include/qlistview.h +qt2/include/qmainwindow.h +qt2/include/qmap.h +qt2/include/qmenubar.h +qt2/include/qmenudata.h +qt2/include/qmenudta.h +qt2/include/qmessagebox.h +qt2/include/qmetaobj.h +qt2/include/qmetaobject.h +qt2/include/qmime.h +qt2/include/qmlined.h +qt2/include/qmotifstyle.h +qt2/include/qmovie.h +qt2/include/qmsgbox.h +qt2/include/qmultilinedit.h +qt2/include/qmultilineedit.h +qt2/include/qnamespace.h +qt2/include/qnp.h +qt2/include/qobjcoll.h +qt2/include/qobjdefs.h +qt2/include/qobject.h +qt2/include/qobjectdefs.h +qt2/include/qobjectdict.h +qt2/include/qobjectlist.h +qt2/include/qpaintd.h +qt2/include/qpaintdc.h +qt2/include/qpaintdevice.h +qt2/include/qpaintdevicedefs.h +qt2/include/qpaintdevicemetrics.h +qt2/include/qpainter.h +qt2/include/qpalette.h +qt2/include/qpdevmet.h +qt2/include/qpen.h +qt2/include/qpicture.h +qt2/include/qpixmap.h +qt2/include/qpixmapcache.h +qt2/include/qplatinumstyle.h +qt2/include/qpmcache.h +qt2/include/qpngio.h +qt2/include/qpntarry.h +qt2/include/qpoint.h +qt2/include/qpointarray.h +qt2/include/qpopmenu.h +qt2/include/qpopupmenu.h +qt2/include/qprintdialog.h +qt2/include/qprinter.h +qt2/include/qprndlg.h +qt2/include/qprogbar.h +qt2/include/qprogdlg.h +qt2/include/qprogressbar.h +qt2/include/qprogressdialog.h +qt2/include/qpsprinter.h +qt2/include/qpsprn.h +qt2/include/qptrdict.h +qt2/include/qpushbt.h +qt2/include/qpushbutton.h +qt2/include/qqueue.h +qt2/include/qradiobt.h +qt2/include/qradiobutton.h +qt2/include/qrangecontrol.h +qt2/include/qrangect.h +qt2/include/qrect.h +qt2/include/qregexp.h +qt2/include/qregion.h +qt2/include/qrtlcodec.h +qt2/include/qscrbar.h +qt2/include/qscrollbar.h +qt2/include/qscrollview.h +qt2/include/qsemimodal.h +qt2/include/qserversocket.h +qt2/include/qsession.h +qt2/include/qsessionmanager.h +qt2/include/qshared.h +qt2/include/qsignal.h +qt2/include/qsignalmapper.h +qt2/include/qsignalslotimp.h +qt2/include/qsimplerichtext.h +qt2/include/qsize.h +qt2/include/qsizegrip.h +qt2/include/qsizepolicy.h +qt2/include/qsjiscodec.h +qt2/include/qslider.h +qt2/include/qsmartptr.h +qt2/include/qsocket.h +qt2/include/qsocketdevice.h +qt2/include/qsocketnotifier.h +qt2/include/qsocknot.h +qt2/include/qsortedlist.h +qt2/include/qspinbox.h +qt2/include/qsplitter.h +qt2/include/qstack.h +qt2/include/qstatusbar.h +qt2/include/qstring.h +qt2/include/qstringlist.h +qt2/include/qstrlist.h +qt2/include/qstrvec.h +qt2/include/qstyle.h +qt2/include/qstylesheet.h +qt2/include/qtabbar.h +qt2/include/qtabdialog.h +qt2/include/qtabdlg.h +qt2/include/qtableview.h +qt2/include/qtablevw.h +qt2/include/qtabwidget.h +qt2/include/qtextbrowser.h +qt2/include/qtextcodec.h +qt2/include/qtextstream.h +qt2/include/qtextview.h +qt2/include/qtimer.h +qt2/include/qtl.h +qt2/include/qtoolbar.h +qt2/include/qtoolbutton.h +qt2/include/qtooltip.h +qt2/include/qtranslator.h +qt2/include/qtstream.h +qt2/include/qutfcodec.h +qt2/include/qvalidator.h +qt2/include/qvaluelist.h +qt2/include/qvbox.h +qt2/include/qvbuttongroup.h +qt2/include/qvector.h +qt2/include/qvgroupbox.h +qt2/include/qwellarray.h +qt2/include/qwhatsthis.h +qt2/include/qwidcoll.h +qt2/include/qwidget.h +qt2/include/qwidgetintdict.h +qt2/include/qwidgetlist.h +qt2/include/qwidgetstack.h +qt2/include/qwindefs.h +qt2/include/qwindow.h +qt2/include/qwindowdefs.h +qt2/include/qwindowsstyle.h +qt2/include/qwizard.h +qt2/include/qwmatrix.h +qt2/include/qxt.h +qt2/lib/libqt.a +qt2/lib/libqt.so.2.0 +qt2/man/man1/moc.1 +qt2/man/man3/QAccel.3 +qt2/man/man3/QApplication.3 +qt2/man/man3/QArray.3 +qt2/man/man3/QAsciiCache.3 +qt2/man/man3/QAsciiCacheIterator.3 +qt2/man/man3/QAsciiDict.3 +qt2/man/man3/QAsciiDictIterator.3 +qt2/man/man3/QAsyncIO.3 +qt2/man/man3/QBitArray.3 +qt2/man/man3/QBitVal.3 +qt2/man/man3/QBitmap.3 +qt2/man/man3/QBoxLayout.3 +qt2/man/man3/QBrush.3 +qt2/man/man3/QBuffer.3 +qt2/man/man3/QButton.3 +qt2/man/man3/QButtonGroup.3 +qt2/man/man3/QCDEStyle.3 +qt2/man/man3/QCString.3 +qt2/man/man3/QCache.3 +qt2/man/man3/QCacheIterator.3 +qt2/man/man3/QChar.3 +qt2/man/man3/QCheckBox.3 +qt2/man/man3/QCheckListItem.3 +qt2/man/man3/QChildEvent.3 +qt2/man/man3/QClipboard.3 +qt2/man/man3/QCloseEvent.3 +qt2/man/man3/QCollection.3 +qt2/man/man3/QColor.3 +qt2/man/man3/QColorDialog.3 +qt2/man/man3/QColorGroup.3 +qt2/man/man3/QComboBox.3 +qt2/man/man3/QCommonStyle.3 +qt2/man/man3/QConnection.3 +qt2/man/man3/QConstString.3 +qt2/man/man3/QCursor.3 +qt2/man/man3/QCustomEvent.3 +qt2/man/man3/QDataPump.3 +qt2/man/man3/QDataSink.3 +qt2/man/man3/QDataSource.3 +qt2/man/man3/QDataStream.3 +qt2/man/man3/QDate.3 +qt2/man/man3/QDateTime.3 +qt2/man/man3/QDialog.3 +qt2/man/man3/QDict.3 +qt2/man/man3/QDictIterator.3 +qt2/man/man3/QDir.3 +qt2/man/man3/QDoubleValidator.3 +qt2/man/man3/QDragEnterEvent.3 +qt2/man/man3/QDragLeaveEvent.3 +qt2/man/man3/QDragMoveEvent.3 +qt2/man/man3/QDragObject.3 +qt2/man/man3/QDropEvent.3 +qt2/man/man3/QDropSite.3 +qt2/man/man3/QEvent.3 +qt2/man/man3/QFile.3 +qt2/man/man3/QFileDialog.3 +qt2/man/man3/QFileIconProvider.3 +qt2/man/man3/QFileInfo.3 +qt2/man/man3/QFocusData.3 +qt2/man/man3/QFocusEvent.3 +qt2/man/man3/QFont.3 +qt2/man/man3/QFontDialog.3 +qt2/man/man3/QFontInfo.3 +qt2/man/man3/QFontMetrics.3 +qt2/man/man3/QFrame.3 +qt2/man/man3/QGArray.3 +qt2/man/man3/QGCache.3 +qt2/man/man3/QGCacheIterator.3 +qt2/man/man3/QGDict.3 +qt2/man/man3/QGDictIterator.3 +qt2/man/man3/QGL.3 +qt2/man/man3/QGLContext.3 +qt2/man/man3/QGLFormat.3 +qt2/man/man3/QGLWidget.3 +qt2/man/man3/QGLayoutIterator.3 +qt2/man/man3/QGList.3 +qt2/man/man3/QGListIterator.3 +qt2/man/man3/QGrid.3 +qt2/man/man3/QGridLayout.3 +qt2/man/man3/QGroupBox.3 +qt2/man/man3/QHBox.3 +qt2/man/man3/QHBoxLayout.3 +qt2/man/man3/QHButtonGroup.3 +qt2/man/man3/QHGroupBox.3 +qt2/man/man3/QHeader.3 +qt2/man/man3/QHideEvent.3 +qt2/man/man3/QIODevice.3 +qt2/man/man3/QIODeviceSource.3 +qt2/man/man3/QIconSet.3 +qt2/man/man3/QImage.3 +qt2/man/man3/QImageConsumer.3 +qt2/man/man3/QImageDecoder.3 +qt2/man/man3/QImageDrag.3 +qt2/man/man3/QImageFormat.3 +qt2/man/man3/QImageFormatType.3 +qt2/man/man3/QImageIO.3 +qt2/man/man3/QIntCache.3 +qt2/man/man3/QIntCacheIterator.3 +qt2/man/man3/QIntDict.3 +qt2/man/man3/QIntDictIterator.3 +qt2/man/man3/QIntValidator.3 +qt2/man/man3/QKeyEvent.3 +qt2/man/man3/QLCDNumber.3 +qt2/man/man3/QLNode.3 +qt2/man/man3/QLabel.3 +qt2/man/man3/QLayout.3 +qt2/man/man3/QLayoutItem.3 +qt2/man/man3/QLayoutIterator.3 +qt2/man/man3/QLineEdit.3 +qt2/man/man3/QList.3 +qt2/man/man3/QListBox.3 +qt2/man/man3/QListBoxItem.3 +qt2/man/man3/QListBoxPixmap.3 +qt2/man/man3/QListBoxText.3 +qt2/man/man3/QListIterator.3 +qt2/man/man3/QListView.3 +qt2/man/man3/QListViewItem.3 +qt2/man/man3/QListViewItemIterator.3 +qt2/man/man3/QMainWindow.3 +qt2/man/man3/QMap.3 +qt2/man/man3/QMapConstIterator.3 +qt2/man/man3/QMapIterator.3 +qt2/man/man3/QMenuBar.3 +qt2/man/man3/QMenuData.3 +qt2/man/man3/QMessageBox.3 +qt2/man/man3/QMimeSource.3 +qt2/man/man3/QMimeSourceFactory.3 +qt2/man/man3/QMotifStyle.3 +qt2/man/man3/QMouseEvent.3 +qt2/man/man3/QMoveEvent.3 +qt2/man/man3/QMovie.3 +qt2/man/man3/QMultiLineEdit.3 +qt2/man/man3/QNPInstance.3 +qt2/man/man3/QNPStream.3 +qt2/man/man3/QNPWidget.3 +qt2/man/man3/QNPlugin.3 +qt2/man/man3/QObject.3 +qt2/man/man3/QPNGImagePacker.3 +qt2/man/man3/QPaintDevice.3 +qt2/man/man3/QPaintDeviceMetrics.3 +qt2/man/man3/QPaintEvent.3 +qt2/man/man3/QPainter.3 +qt2/man/man3/QPalette.3 +qt2/man/man3/QPen.3 +qt2/man/man3/QPicture.3 +qt2/man/man3/QPixmap.3 +qt2/man/man3/QPixmapCache.3 +qt2/man/man3/QPlatinumStyle.3 +qt2/man/man3/QPoint.3 +qt2/man/man3/QPointArray.3 +qt2/man/man3/QPopupMenu.3 +qt2/man/man3/QPrinter.3 +qt2/man/man3/QProgressBar.3 +qt2/man/man3/QProgressDialog.3 +qt2/man/man3/QPtrDict.3 +qt2/man/man3/QPtrDictIterator.3 +qt2/man/man3/QPushButton.3 +qt2/man/man3/QQueue.3 +qt2/man/man3/QRadioButton.3 +qt2/man/man3/QRangeControl.3 +qt2/man/man3/QRect.3 +qt2/man/man3/QRegExp.3 +qt2/man/man3/QRegion.3 +qt2/man/man3/QResizeEvent.3 +qt2/man/man3/QScrollBar.3 +qt2/man/man3/QScrollView.3 +qt2/man/man3/QSemiModal.3 +qt2/man/man3/QServerSocket.3 +qt2/man/man3/QSessionManager.3 +qt2/man/man3/QShared.3 +qt2/man/man3/QShowEvent.3 +qt2/man/man3/QSignal.3 +qt2/man/man3/QSignalMapper.3 +qt2/man/man3/QSimpleRichText.3 +qt2/man/man3/QSize.3 +qt2/man/man3/QSizeGrip.3 +qt2/man/man3/QSizePolicy.3 +qt2/man/man3/QSlider.3 +qt2/man/man3/QSocket.3 +qt2/man/man3/QSocketAddress.3 +qt2/man/man3/QSocketNotifier.3 +qt2/man/man3/QSortedList.3 +qt2/man/man3/QSpacerItem.3 +qt2/man/man3/QSpinBox.3 +qt2/man/man3/QSplitter.3 +qt2/man/man3/QStack.3 +qt2/man/man3/QStatusBar.3 +qt2/man/man3/QStoredDrag.3 +qt2/man/man3/QStrIList.3 +qt2/man/man3/QStrList.3 +qt2/man/man3/QString.3 +qt2/man/man3/QStringList.3 +qt2/man/man3/QStyle.3 +qt2/man/man3/QStyleSheet.3 +qt2/man/man3/QStyleSheetItem.3 +qt2/man/man3/QTab.3 +qt2/man/man3/QTabBar.3 +qt2/man/man3/QTabDialog.3 +qt2/man/man3/QTabWidget.3 +qt2/man/man3/QTableView.3 +qt2/man/man3/QTextBrowser.3 +qt2/man/man3/QTextCodec.3 +qt2/man/man3/QTextDecoder.3 +qt2/man/man3/QTextDrag.3 +qt2/man/man3/QTextEncoder.3 +qt2/man/man3/QTextIStream.3 +qt2/man/man3/QTextOStream.3 +qt2/man/man3/QTextStream.3 +qt2/man/man3/QTextView.3 +qt2/man/man3/QTime.3 +qt2/man/man3/QTimer.3 +qt2/man/man3/QTimerEvent.3 +qt2/man/man3/QToolBar.3 +qt2/man/man3/QToolButton.3 +qt2/man/man3/QToolTip.3 +qt2/man/man3/QToolTipGroup.3 +qt2/man/man3/QTranslator.3 +qt2/man/man3/QUriDrag.3 +qt2/man/man3/QVBox.3 +qt2/man/man3/QVBoxLayout.3 +qt2/man/man3/QVButtonGroup.3 +qt2/man/man3/QVGroupBox.3 +qt2/man/man3/QValidator.3 +qt2/man/man3/QValueList.3 +qt2/man/man3/QValueListConstIterator.3 +qt2/man/man3/QValueListIterator.3 +qt2/man/man3/QWMatrix.3 +qt2/man/man3/QWhatsThis.3 +qt2/man/man3/QWheelEvent.3 +qt2/man/man3/QWidget.3 +qt2/man/man3/QWidgetItem.3 +qt2/man/man3/QWidgetStack.3 +qt2/man/man3/QWindowsStyle.3 +qt2/man/man3/QWizard.3 +qt2/man/man3/QXtApplication.3 +qt2/man/man3/QXtWidget.3 +qt2/man/man3/Qt.3 +qt2/man/man3/qaccel.3 +qt2/man/man3/qapplication.3 +qt2/man/man3/qarray.3 +qt2/man/man3/qasciicache.3 +qt2/man/man3/qasciicacheiterator.3 +qt2/man/man3/qasciidict.3 +qt2/man/man3/qasciidictiterator.3 +qt2/man/man3/qasyncio.3 +qt2/man/man3/qbitarray.3 +qt2/man/man3/qbitmap.3 +qt2/man/man3/qbitval.3 +qt2/man/man3/qboxlayout.3 +qt2/man/man3/qbrush.3 +qt2/man/man3/qbuffer.3 +qt2/man/man3/qbutton.3 +qt2/man/man3/qbuttongroup.3 +qt2/man/man3/qcache.3 +qt2/man/man3/qcacheiterator.3 +qt2/man/man3/qcdestyle.3 +qt2/man/man3/qchar.3 +qt2/man/man3/qcheckbox.3 +qt2/man/man3/qchecklistitem.3 +qt2/man/man3/qchildevent.3 +qt2/man/man3/qclipboard.3 +qt2/man/man3/qcloseevent.3 +qt2/man/man3/qcollection.3 +qt2/man/man3/qcolor.3 +qt2/man/man3/qcolordialog.3 +qt2/man/man3/qcolorgroup.3 +qt2/man/man3/qcombobox.3 +qt2/man/man3/qcommonstyle.3 +qt2/man/man3/qconnection.3 +qt2/man/man3/qconststring.3 +qt2/man/man3/qcstring.3 +qt2/man/man3/qcursor.3 +qt2/man/man3/qcustomevent.3 +qt2/man/man3/qdatapump.3 +qt2/man/man3/qdatasink.3 +qt2/man/man3/qdatasource.3 +qt2/man/man3/qdatastream.3 +qt2/man/man3/qdate.3 +qt2/man/man3/qdatetime.3 +qt2/man/man3/qdialog.3 +qt2/man/man3/qdict.3 +qt2/man/man3/qdictiterator.3 +qt2/man/man3/qdir.3 +qt2/man/man3/qdoublevalidator.3 +qt2/man/man3/qdragenterevent.3 +qt2/man/man3/qdragleaveevent.3 +qt2/man/man3/qdragmoveevent.3 +qt2/man/man3/qdragobject.3 +qt2/man/man3/qdropevent.3 +qt2/man/man3/qdropsite.3 +qt2/man/man3/qevent.3 +qt2/man/man3/qfile.3 +qt2/man/man3/qfiledialog.3 +qt2/man/man3/qfileiconprovider.3 +qt2/man/man3/qfileinfo.3 +qt2/man/man3/qfocusdata.3 +qt2/man/man3/qfocusevent.3 +qt2/man/man3/qfont.3 +qt2/man/man3/qfontdialog.3 +qt2/man/man3/qfontinfo.3 +qt2/man/man3/qfontmetrics.3 +qt2/man/man3/qframe.3 +qt2/man/man3/qgarray.3 +qt2/man/man3/qgcache.3 +qt2/man/man3/qgcacheiterator.3 +qt2/man/man3/qgdict.3 +qt2/man/man3/qgdictiterator.3 +qt2/man/man3/qgl.3 +qt2/man/man3/qglayoutiterator.3 +qt2/man/man3/qglcontext.3 +qt2/man/man3/qglformat.3 +qt2/man/man3/qglist.3 +qt2/man/man3/qglistiterator.3 +qt2/man/man3/qglwidget.3 +qt2/man/man3/qgrid.3 +qt2/man/man3/qgridlayout.3 +qt2/man/man3/qgroupbox.3 +qt2/man/man3/qhbox.3 +qt2/man/man3/qhboxlayout.3 +qt2/man/man3/qhbuttongroup.3 +qt2/man/man3/qheader.3 +qt2/man/man3/qhgroupbox.3 +qt2/man/man3/qhideevent.3 +qt2/man/man3/qiconset.3 +qt2/man/man3/qimage.3 +qt2/man/man3/qimageconsumer.3 +qt2/man/man3/qimagedecoder.3 +qt2/man/man3/qimagedrag.3 +qt2/man/man3/qimageformat.3 +qt2/man/man3/qimageformattype.3 +qt2/man/man3/qimageio.3 +qt2/man/man3/qintcache.3 +qt2/man/man3/qintcacheiterator.3 +qt2/man/man3/qintdict.3 +qt2/man/man3/qintdictiterator.3 +qt2/man/man3/qintvalidator.3 +qt2/man/man3/qiodevice.3 +qt2/man/man3/qiodevicesource.3 +qt2/man/man3/qkeyevent.3 +qt2/man/man3/qlabel.3 +qt2/man/man3/qlayout.3 +qt2/man/man3/qlayoutitem.3 +qt2/man/man3/qlayoutiterator.3 +qt2/man/man3/qlcdnumber.3 +qt2/man/man3/qlineedit.3 +qt2/man/man3/qlist.3 +qt2/man/man3/qlistbox.3 +qt2/man/man3/qlistboxitem.3 +qt2/man/man3/qlistboxpixmap.3 +qt2/man/man3/qlistboxtext.3 +qt2/man/man3/qlistiterator.3 +qt2/man/man3/qlistview.3 +qt2/man/man3/qlistviewitem.3 +qt2/man/man3/qlistviewitemiterator.3 +qt2/man/man3/qlnode.3 +qt2/man/man3/qmainwindow.3 +qt2/man/man3/qmap.3 +qt2/man/man3/qmapconstiterator.3 +qt2/man/man3/qmapiterator.3 +qt2/man/man3/qmenubar.3 +qt2/man/man3/qmenudata.3 +qt2/man/man3/qmessagebox.3 +qt2/man/man3/qmimesource.3 +qt2/man/man3/qmimesourcefactory.3 +qt2/man/man3/qmotifstyle.3 +qt2/man/man3/qmouseevent.3 +qt2/man/man3/qmoveevent.3 +qt2/man/man3/qmovie.3 +qt2/man/man3/qmultilineedit.3 +qt2/man/man3/qnpinstance.3 +qt2/man/man3/qnplugin.3 +qt2/man/man3/qnpstream.3 +qt2/man/man3/qnpwidget.3 +qt2/man/man3/qobject.3 +qt2/man/man3/qpaintdevice.3 +qt2/man/man3/qpaintdevicemetrics.3 +qt2/man/man3/qpainter.3 +qt2/man/man3/qpaintevent.3 +qt2/man/man3/qpalette.3 +qt2/man/man3/qpen.3 +qt2/man/man3/qpicture.3 +qt2/man/man3/qpixmap.3 +qt2/man/man3/qpixmapcache.3 +qt2/man/man3/qplatinumstyle.3 +qt2/man/man3/qpngimagepacker.3 +qt2/man/man3/qpoint.3 +qt2/man/man3/qpointarray.3 +qt2/man/man3/qpopupmenu.3 +qt2/man/man3/qprinter.3 +qt2/man/man3/qprogressbar.3 +qt2/man/man3/qprogressdialog.3 +qt2/man/man3/qptrdict.3 +qt2/man/man3/qptrdictiterator.3 +qt2/man/man3/qpushbutton.3 +qt2/man/man3/qqueue.3 +qt2/man/man3/qradiobutton.3 +qt2/man/man3/qrangecontrol.3 +qt2/man/man3/qrect.3 +qt2/man/man3/qregexp.3 +qt2/man/man3/qregion.3 +qt2/man/man3/qresizeevent.3 +qt2/man/man3/qscrollbar.3 +qt2/man/man3/qscrollview.3 +qt2/man/man3/qsemimodal.3 +qt2/man/man3/qserversocket.3 +qt2/man/man3/qsessionmanager.3 +qt2/man/man3/qshared.3 +qt2/man/man3/qshowevent.3 +qt2/man/man3/qsignal.3 +qt2/man/man3/qsignalmapper.3 +qt2/man/man3/qsimplerichtext.3 +qt2/man/man3/qsize.3 +qt2/man/man3/qsizegrip.3 +qt2/man/man3/qsizepolicy.3 +qt2/man/man3/qslider.3 +qt2/man/man3/qsocket.3 +qt2/man/man3/qsocketaddress.3 +qt2/man/man3/qsocketnotifier.3 +qt2/man/man3/qsortedlist.3 +qt2/man/man3/qspaceritem.3 +qt2/man/man3/qspinbox.3 +qt2/man/man3/qsplitter.3 +qt2/man/man3/qstack.3 +qt2/man/man3/qstatusbar.3 +qt2/man/man3/qstoreddrag.3 +qt2/man/man3/qstrilist.3 +qt2/man/man3/qstring.3 +qt2/man/man3/qstringlist.3 +qt2/man/man3/qstrlist.3 +qt2/man/man3/qstyle.3 +qt2/man/man3/qstylesheet.3 +qt2/man/man3/qstylesheetitem.3 +qt2/man/man3/qt.3 +qt2/man/man3/qtab.3 +qt2/man/man3/qtabbar.3 +qt2/man/man3/qtabdialog.3 +qt2/man/man3/qtableview.3 +qt2/man/man3/qtabwidget.3 +qt2/man/man3/qtextbrowser.3 +qt2/man/man3/qtextcodec.3 +qt2/man/man3/qtextdecoder.3 +qt2/man/man3/qtextdrag.3 +qt2/man/man3/qtextencoder.3 +qt2/man/man3/qtextistream.3 +qt2/man/man3/qtextostream.3 +qt2/man/man3/qtextstream.3 +qt2/man/man3/qtextview.3 +qt2/man/man3/qtime.3 +qt2/man/man3/qtimer.3 +qt2/man/man3/qtimerevent.3 +qt2/man/man3/qtoolbar.3 +qt2/man/man3/qtoolbutton.3 +qt2/man/man3/qtooltip.3 +qt2/man/man3/qtooltipgroup.3 +qt2/man/man3/qtranslator.3 +qt2/man/man3/quridrag.3 +qt2/man/man3/qvalidator.3 +qt2/man/man3/qvaluelist.3 +qt2/man/man3/qvaluelistconstiterator.3 +qt2/man/man3/qvaluelistiterator.3 +qt2/man/man3/qvbox.3 +qt2/man/man3/qvboxlayout.3 +qt2/man/man3/qvbuttongroup.3 +qt2/man/man3/qvgroupbox.3 +qt2/man/man3/qwhatsthis.3 +qt2/man/man3/qwheelevent.3 +qt2/man/man3/qwidget.3 +qt2/man/man3/qwidgetitem.3 +qt2/man/man3/qwidgetstack.3 +qt2/man/man3/qwindowsstyle.3 +qt2/man/man3/qwizard.3 +qt2/man/man3/qwmatrix.3 +qt2/man/man3/qxtapplication.3 +qt2/man/man3/qxtwidget.3 +qt2/doc/README +qt2/doc/README.QT +qt2/doc/abstractwidgets.html +qt2/doc/accelerators.html +qt2/doc/aclock-main-cpp.html +qt2/doc/addressbook-main-cpp.html +qt2/doc/annotated.html +qt2/doc/application-main-cpp.html +qt2/doc/application.html +qt2/doc/bearings.png +qt2/doc/biff-main-cpp.html +qt2/doc/book.png +qt2/doc/buttons_groups-main-cpp.html +qt2/doc/checklists-main-cpp.html +qt2/doc/classes.html +qt2/doc/collection.html +qt2/doc/coordsys.html +qt2/doc/coordsys.png +qt2/doc/credits.html +qt2/doc/cursor-cursor-cpp.html +qt2/doc/customlayout-main-cpp.html +qt2/doc/customlayout.html +qt2/doc/dclock-main-cpp.html +qt2/doc/debug.html +qt2/doc/design.html +qt2/doc/desktop-desktop-cpp.html +qt2/doc/dialogs.html +qt2/doc/dirview-main-cpp.html +qt2/doc/dnd.html +qt2/doc/dochead.png +qt2/doc/drawdemo-drawdemo-cpp.html +qt2/doc/drawing.html +qt2/doc/drawlines-connect-cpp.html +qt2/doc/easteregg.html +qt2/doc/easteregg2.html +qt2/doc/examples.html +qt2/doc/fontmatch.html +qt2/doc/fonts.html +qt2/doc/forever-forever-cpp.html +qt2/doc/frames.png +qt2/doc/functions.html +qt2/doc/geomanagement.html +qt2/doc/graph.g1n +qt2/doc/grapher-grapher-cpp.html +qt2/doc/gridlayout.png +qt2/doc/guibooks.html +qt2/doc/headers.html +qt2/doc/hello-main-cpp.html +qt2/doc/hierarchy.html +qt2/doc/i18n-main-cpp.html +qt2/doc/i18n.html +qt2/doc/imageio.html +qt2/doc/images.html +qt2/doc/index.html +qt2/doc/io.html +qt2/doc/kernel.html +qt2/doc/layout-layout-cpp.html +qt2/doc/layout.html +qt2/doc/letter.png +qt2/doc/license.html +qt2/doc/life-main-cpp.html +qt2/doc/lineedits-main-cpp.html +qt2/doc/listbox-main-cpp.html +qt2/doc/listbox_combo-main-cpp.html +qt2/doc/listview.png +qt2/doc/listviews-main-cpp.html +qt2/doc/mailinglists.html +qt2/doc/mainlyMotif-editor-cpp.html +qt2/doc/mainlyQt-editor-cpp.html +qt2/doc/mainlyXt-editor-cpp.html +qt2/doc/menu-menu-cpp.html +qt2/doc/metaobjects.html +qt2/doc/misc.html +qt2/doc/moc.html +qt2/doc/movies-main-cpp.html +qt2/doc/nsplugin.html +qt2/doc/opengl.html +qt2/doc/picture-picture-cpp.html +qt2/doc/pictures.html +qt2/doc/pnglogo.png +qt2/doc/popup-popup-cpp.html +qt2/doc/porting.html +qt2/doc/primes.html +qt2/doc/printerdialog.png +qt2/doc/progress-progress-cpp.html +qt2/doc/progressbar-main-cpp.html +qt2/doc/qabstractlayout-h.html +qt2/doc/qaccel-h.html +qt2/doc/qaccel-members.html +qt2/doc/qaccel.html +qt2/doc/qapplication-h.html +qt2/doc/qapplication-members.html +qt2/doc/qapplication.html +qt2/doc/qarray-h.html +qt2/doc/qarray-members.html +qt2/doc/qarray.html +qt2/doc/qasciicache-h.html +qt2/doc/qasciicache-members.html +qt2/doc/qasciicache.html +qt2/doc/qasciicacheiterator-members.html +qt2/doc/qasciicacheiterator.html +qt2/doc/qasciidict-h.html +qt2/doc/qasciidict-members.html +qt2/doc/qasciidict.html +qt2/doc/qasciidictiterator-members.html +qt2/doc/qasciidictiterator.html +qt2/doc/qasyncimageio-h.html +qt2/doc/qasyncio-h.html +qt2/doc/qasyncio-members.html +qt2/doc/qasyncio.html +qt2/doc/qbitarray-h.html +qt2/doc/qbitarray-members.html +qt2/doc/qbitarray.html +qt2/doc/qbitmap-h.html +qt2/doc/qbitmap-members.html +qt2/doc/qbitmap.html +qt2/doc/qbitval-members.html +qt2/doc/qbitval.html +qt2/doc/qboxlayout-members.html +qt2/doc/qboxlayout.html +qt2/doc/qbrowser-main-cpp.html +qt2/doc/qbrush-h.html +qt2/doc/qbrush-members.html +qt2/doc/qbrush.html +qt2/doc/qbttngrp-m.png +qt2/doc/qbttngrp-w.png +qt2/doc/qbuffer-h.html +qt2/doc/qbuffer-members.html +qt2/doc/qbuffer.html +qt2/doc/qbutton-h.html +qt2/doc/qbutton-members.html +qt2/doc/qbutton.html +qt2/doc/qbuttongroup-h.html +qt2/doc/qbuttongroup-members.html +qt2/doc/qbuttongroup.html +qt2/doc/qcache-h.html +qt2/doc/qcache-members.html +qt2/doc/qcache.html +qt2/doc/qcacheiterator-members.html +qt2/doc/qcacheiterator.html +qt2/doc/qcdestyle-h.html +qt2/doc/qcdestyle-members.html +qt2/doc/qcdestyle.html +qt2/doc/qchar-members.html +qt2/doc/qchar.html +qt2/doc/qcheckbox-h.html +qt2/doc/qcheckbox-m.png +qt2/doc/qcheckbox-members.html +qt2/doc/qcheckbox-w.png +qt2/doc/qcheckbox.html +qt2/doc/qchecklistitem-members.html +qt2/doc/qchecklistitem.html +qt2/doc/qchildevent-members.html +qt2/doc/qchildevent.html +qt2/doc/qchkbox-m.png +qt2/doc/qchkbox-w.png +qt2/doc/qclipboard-h.html +qt2/doc/qclipboard-members.html +qt2/doc/qclipboard.html +qt2/doc/qcloseevent-members.html +qt2/doc/qcloseevent.html +qt2/doc/qcollection-h.html +qt2/doc/qcollection-members.html +qt2/doc/qcollection.html +qt2/doc/qcolor-h.html +qt2/doc/qcolor-members.html +qt2/doc/qcolor.html +qt2/doc/qcolordialog-h.html +qt2/doc/qcolordialog-members.html +qt2/doc/qcolordialog.html +qt2/doc/qcolorgroup-members.html +qt2/doc/qcolorgroup.html +qt2/doc/qcombo1-m.png +qt2/doc/qcombo1-w.png +qt2/doc/qcombo2-m.png +qt2/doc/qcombo2-w.png +qt2/doc/qcombo3-m.png +qt2/doc/qcombo3-w.png +qt2/doc/qcombobox-h.html +qt2/doc/qcombobox-members.html +qt2/doc/qcombobox.html +qt2/doc/qcommonstyle-h.html +qt2/doc/qcommonstyle-members.html +qt2/doc/qcommonstyle.html +qt2/doc/qconnection-h.html +qt2/doc/qconnection-members.html +qt2/doc/qconnection.html +qt2/doc/qconststring-members.html +qt2/doc/qconststring.html +qt2/doc/qcstring-h.html +qt2/doc/qcstring-members.html +qt2/doc/qcstring.html +qt2/doc/qcursor-h.html +qt2/doc/qcursor-members.html +qt2/doc/qcursor.html +qt2/doc/qcustomevent-members.html +qt2/doc/qcustomevent.html +qt2/doc/qdatapump-members.html +qt2/doc/qdatapump.html +qt2/doc/qdatasink-members.html +qt2/doc/qdatasink.html +qt2/doc/qdatasource-members.html +qt2/doc/qdatasource.html +qt2/doc/qdatastream-h.html +qt2/doc/qdatastream-members.html +qt2/doc/qdatastream.html +qt2/doc/qdate-members.html +qt2/doc/qdate.html +qt2/doc/qdatetime-h.html +qt2/doc/qdatetime-members.html +qt2/doc/qdatetime.html +qt2/doc/qdialog-h.html +qt2/doc/qdialog-members.html +qt2/doc/qdialog.html +qt2/doc/qdict-h.html +qt2/doc/qdict-members.html +qt2/doc/qdict.html +qt2/doc/qdictiterator-members.html +qt2/doc/qdictiterator.html +qt2/doc/qdir-h.html +qt2/doc/qdir-members.html +qt2/doc/qdir-qdir-cpp.html +qt2/doc/qdir.html +qt2/doc/qdoublevalidator-members.html +qt2/doc/qdoublevalidator.html +qt2/doc/qdragenterevent-members.html +qt2/doc/qdragenterevent.html +qt2/doc/qdragleaveevent-members.html +qt2/doc/qdragleaveevent.html +qt2/doc/qdragmoveevent-members.html +qt2/doc/qdragmoveevent.html +qt2/doc/qdragobject-h.html +qt2/doc/qdragobject-members.html +qt2/doc/qdragobject.html +qt2/doc/qdrawutil-h.html +qt2/doc/qdropevent-members.html +qt2/doc/qdropevent.html +qt2/doc/qdropsite-h.html +qt2/doc/qdropsite-members.html +qt2/doc/qdropsite.html +qt2/doc/qevent-h.html +qt2/doc/qevent-members.html +qt2/doc/qevent.html +qt2/doc/qfd-qfd-cpp.html +qt2/doc/qfile-h.html +qt2/doc/qfile-members.html +qt2/doc/qfile.html +qt2/doc/qfiledialog-h.html +qt2/doc/qfiledialog-members.html +qt2/doc/qfiledialog.html +qt2/doc/qfiledlg-m.png +qt2/doc/qfiledlg-w.png +qt2/doc/qfileiconprovider-members.html +qt2/doc/qfileiconprovider.html +qt2/doc/qfileiconview-main-cpp.html +qt2/doc/qfileinfo-h.html +qt2/doc/qfileinfo-members.html +qt2/doc/qfileinfo.html +qt2/doc/qfocusdata-h.html +qt2/doc/qfocusdata-members.html +qt2/doc/qfocusdata.html +qt2/doc/qfocusevent-members.html +qt2/doc/qfocusevent.html +qt2/doc/qfont-h.html +qt2/doc/qfont-members.html +qt2/doc/qfont.html +qt2/doc/qfontdialog-h.html +qt2/doc/qfontdialog-members.html +qt2/doc/qfontdialog.html +qt2/doc/qfontinfo-h.html +qt2/doc/qfontinfo-members.html +qt2/doc/qfontinfo.html +qt2/doc/qfontmetrics-h.html +qt2/doc/qfontmetrics-members.html +qt2/doc/qfontmetrics.html +qt2/doc/qframe-h.html +qt2/doc/qframe-members.html +qt2/doc/qframe.html +qt2/doc/qgarray-h.html +qt2/doc/qgarray-members.html +qt2/doc/qgarray.html +qt2/doc/qgcache-h.html +qt2/doc/qgcache-members.html +qt2/doc/qgcache.html +qt2/doc/qgcacheiterator-members.html +qt2/doc/qgcacheiterator.html +qt2/doc/qgdict-h.html +qt2/doc/qgdict-members.html +qt2/doc/qgdict.html +qt2/doc/qgdictiterator-members.html +qt2/doc/qgdictiterator.html +qt2/doc/qgl-h.html +qt2/doc/qgl-members.html +qt2/doc/qgl.html +qt2/doc/qglayoutiterator-members.html +qt2/doc/qglayoutiterator.html +qt2/doc/qglcontext-members.html +qt2/doc/qglcontext.html +qt2/doc/qglformat-members.html +qt2/doc/qglformat.html +qt2/doc/qglist-h.html +qt2/doc/qglist-members.html +qt2/doc/qglist.html +qt2/doc/qglistiterator-members.html +qt2/doc/qglistiterator.html +qt2/doc/qglobal-h.html +qt2/doc/qglwidget-members.html +qt2/doc/qglwidget.html +qt2/doc/qgrid-h.html +qt2/doc/qgrid-m.png +qt2/doc/qgrid-members.html +qt2/doc/qgrid-w.png +qt2/doc/qgrid.html +qt2/doc/qgrid.png +qt2/doc/qgridlayout-members.html +qt2/doc/qgridlayout.html +qt2/doc/qgroupbox-h.html +qt2/doc/qgroupbox-members.html +qt2/doc/qgroupbox.html +qt2/doc/qgrpbox-m.png +qt2/doc/qgrpbox-w.png +qt2/doc/qhbox-h.html +qt2/doc/qhbox-m.png +qt2/doc/qhbox-members.html +qt2/doc/qhbox-w.png +qt2/doc/qhbox.html +qt2/doc/qhbox.png +qt2/doc/qhboxlayout-members.html +qt2/doc/qhboxlayout.html +qt2/doc/qhbuttongroup-h.html +qt2/doc/qhbuttongroup-members.html +qt2/doc/qhbuttongroup.html +qt2/doc/qheader-h.html +qt2/doc/qheader-m.png +qt2/doc/qheader-members.html +qt2/doc/qheader-w.png +qt2/doc/qheader.html +qt2/doc/qhgroupbox-h.html +qt2/doc/qhgroupbox-members.html +qt2/doc/qhgroupbox.html +qt2/doc/qhideevent-members.html +qt2/doc/qhideevent.html +qt2/doc/qiconset-h.html +qt2/doc/qiconset-members.html +qt2/doc/qiconset.html +qt2/doc/qiconview-main-cpp.html +qt2/doc/qimage-h.html +qt2/doc/qimage-members.html +qt2/doc/qimage.html +qt2/doc/qimageconsumer-members.html +qt2/doc/qimageconsumer.html +qt2/doc/qimagedecoder-members.html +qt2/doc/qimagedecoder.html +qt2/doc/qimagedrag-members.html +qt2/doc/qimagedrag.html +qt2/doc/qimageformat-members.html +qt2/doc/qimageformat.html +qt2/doc/qimageformattype-members.html +qt2/doc/qimageformattype.html +qt2/doc/qimageio-members.html +qt2/doc/qimageio.html +qt2/doc/qintcache-h.html +qt2/doc/qintcache-members.html +qt2/doc/qintcache.html +qt2/doc/qintcacheiterator-members.html +qt2/doc/qintcacheiterator.html +qt2/doc/qintdict-h.html +qt2/doc/qintdict-members.html +qt2/doc/qintdict.html +qt2/doc/qintdictiterator-members.html +qt2/doc/qintdictiterator.html +qt2/doc/qintvalidator-members.html +qt2/doc/qintvalidator.html +qt2/doc/qiodevice-h.html +qt2/doc/qiodevice-members.html +qt2/doc/qiodevice.html +qt2/doc/qiodevicesource-members.html +qt2/doc/qiodevicesource.html +qt2/doc/qkeyevent-members.html +qt2/doc/qkeyevent.html +qt2/doc/qlabel-h.html +qt2/doc/qlabel-m.png +qt2/doc/qlabel-members.html +qt2/doc/qlabel-w.png +qt2/doc/qlabel.html +qt2/doc/qlayout-h.html +qt2/doc/qlayout-members.html +qt2/doc/qlayout.html +qt2/doc/qlayoutitem-members.html +qt2/doc/qlayoutitem.html +qt2/doc/qlayoutiterator-members.html +qt2/doc/qlayoutiterator.html +qt2/doc/qlcdnum-m.png +qt2/doc/qlcdnum-w.png +qt2/doc/qlcdnumber-h.html +qt2/doc/qlcdnumber-members.html +qt2/doc/qlcdnumber.html +qt2/doc/qlined-m.png +qt2/doc/qlined-w.png +qt2/doc/qlineedit-h.html +qt2/doc/qlineedit-members.html +qt2/doc/qlineedit.html +qt2/doc/qlist-h.html +qt2/doc/qlist-members.html +qt2/doc/qlist.html +qt2/doc/qlistbox-h.html +qt2/doc/qlistbox-m.png +qt2/doc/qlistbox-members.html +qt2/doc/qlistbox-w.png +qt2/doc/qlistbox.html +qt2/doc/qlistboxitem-members.html +qt2/doc/qlistboxitem.html +qt2/doc/qlistboxpixmap-members.html +qt2/doc/qlistboxpixmap.html +qt2/doc/qlistboxtext-members.html +qt2/doc/qlistboxtext.html +qt2/doc/qlistiterator-members.html +qt2/doc/qlistiterator.html +qt2/doc/qlistview-h.html +qt2/doc/qlistview-members.html +qt2/doc/qlistview.html +qt2/doc/qlistviewitem-members.html +qt2/doc/qlistviewitem.html +qt2/doc/qlistviewitemiterator-members.html +qt2/doc/qlistviewitemiterator.html +qt2/doc/qlnode-members.html +qt2/doc/qlnode.html +qt2/doc/qmag-qmag-cpp.html +qt2/doc/qmainwindow-h.html +qt2/doc/qmainwindow-m.png +qt2/doc/qmainwindow-members.html +qt2/doc/qmainwindow-w.png +qt2/doc/qmainwindow.html +qt2/doc/qmap-h.html +qt2/doc/qmap-members.html +qt2/doc/qmap.html +qt2/doc/qmapconstiterator-members.html +qt2/doc/qmapconstiterator.html +qt2/doc/qmapiterator-members.html +qt2/doc/qmapiterator.html +qt2/doc/qmenubar-h.html +qt2/doc/qmenubar-m.png +qt2/doc/qmenubar-members.html +qt2/doc/qmenubar-w.png +qt2/doc/qmenubar.html +qt2/doc/qmenudata-h.html +qt2/doc/qmenudata-members.html +qt2/doc/qmenudata.html +qt2/doc/qmessagebox-h.html +qt2/doc/qmessagebox-members.html +qt2/doc/qmessagebox.html +qt2/doc/qmime-h.html +qt2/doc/qmimesource-members.html +qt2/doc/qmimesource.html +qt2/doc/qmimesourcefactory-members.html +qt2/doc/qmimesourcefactory.html +qt2/doc/qmlined-m.png +qt2/doc/qmlined-w.png +qt2/doc/qmotifstyle-h.html +qt2/doc/qmotifstyle-members.html +qt2/doc/qmotifstyle.html +qt2/doc/qmouseevent-members.html +qt2/doc/qmouseevent.html +qt2/doc/qmoveevent-members.html +qt2/doc/qmoveevent.html +qt2/doc/qmovie-h.html +qt2/doc/qmovie-members.html +qt2/doc/qmovie.html +qt2/doc/qmovie.png +qt2/doc/qmsgbox-m.png +qt2/doc/qmsgbox-w.png +qt2/doc/qmultilineedit-h.html +qt2/doc/qmultilineedit-members.html +qt2/doc/qmultilineedit.html +qt2/doc/qnamespace-h.html +qt2/doc/qnetworkegg.html +qt2/doc/qnp-h.html +qt2/doc/qnpinstance-members.html +qt2/doc/qnpinstance.html +qt2/doc/qnplugin-members.html +qt2/doc/qnplugin.html +qt2/doc/qnpstream-members.html +qt2/doc/qnpstream.html +qt2/doc/qnpwidget-members.html +qt2/doc/qnpwidget.html +qt2/doc/qobject-h.html +qt2/doc/qobject-members.html +qt2/doc/qobject.html +qt2/doc/qpaintdevice-h.html +qt2/doc/qpaintdevice-members.html +qt2/doc/qpaintdevice.html +qt2/doc/qpaintdevicemetrics-h.html +qt2/doc/qpaintdevicemetrics-members.html +qt2/doc/qpaintdevicemetrics.html +qt2/doc/qpainter-h.html +qt2/doc/qpainter-members.html +qt2/doc/qpainter.html +qt2/doc/qpaintevent-members.html +qt2/doc/qpaintevent.html +qt2/doc/qpalette-h.html +qt2/doc/qpalette-members.html +qt2/doc/qpalette.html +qt2/doc/qpen-h.html +qt2/doc/qpen-members.html +qt2/doc/qpen.html +qt2/doc/qpicture-h.html +qt2/doc/qpicture-members.html +qt2/doc/qpicture.html +qt2/doc/qpixmap-h.html +qt2/doc/qpixmap-members.html +qt2/doc/qpixmap.html +qt2/doc/qpixmapcache-h.html +qt2/doc/qpixmapcache-members.html +qt2/doc/qpixmapcache.html +qt2/doc/qplatinumstyle-h.html +qt2/doc/qplatinumstyle-members.html +qt2/doc/qplatinumstyle.html +qt2/doc/qpngimagepacker-members.html +qt2/doc/qpngimagepacker.html +qt2/doc/qpngio-h.html +qt2/doc/qpoint-h.html +qt2/doc/qpoint-members.html +qt2/doc/qpoint.html +qt2/doc/qpointarray-h.html +qt2/doc/qpointarray-members.html +qt2/doc/qpointarray.html +qt2/doc/qpopmenu-m.png +qt2/doc/qpopmenu-w.png +qt2/doc/qpopupmenu-h.html +qt2/doc/qpopupmenu-members.html +qt2/doc/qpopupmenu.html +qt2/doc/qprinter-h.html +qt2/doc/qprinter-members.html +qt2/doc/qprinter.html +qt2/doc/qprogbar-m.png +qt2/doc/qprogbar-w.png +qt2/doc/qprogdlg-m.png +qt2/doc/qprogdlg-w.png +qt2/doc/qprogressbar-h.html +qt2/doc/qprogressbar-members.html +qt2/doc/qprogressbar.html +qt2/doc/qprogressdialog-h.html +qt2/doc/qprogressdialog-members.html +qt2/doc/qprogressdialog.html +qt2/doc/qptrdict-h.html +qt2/doc/qptrdict-members.html +qt2/doc/qptrdict.html +qt2/doc/qptrdictiterator-members.html +qt2/doc/qptrdictiterator.html +qt2/doc/qpushbt-m.png +qt2/doc/qpushbt-w.png +qt2/doc/qpushbutton-h.html +qt2/doc/qpushbutton-members.html +qt2/doc/qpushbutton.html +qt2/doc/qqueue-h.html +qt2/doc/qqueue-members.html +qt2/doc/qqueue.html +qt2/doc/qradiobt-m.png +qt2/doc/qradiobt-w.png +qt2/doc/qradiobutton-h.html +qt2/doc/qradiobutton-members.html +qt2/doc/qradiobutton.html +qt2/doc/qrangecontrol-h.html +qt2/doc/qrangecontrol-members.html +qt2/doc/qrangecontrol.html +qt2/doc/qrect-h.html +qt2/doc/qrect-members.html +qt2/doc/qrect.html +qt2/doc/qregexp-h.html +qt2/doc/qregexp-members.html +qt2/doc/qregexp.html +qt2/doc/qregion-h.html +qt2/doc/qregion-members.html +qt2/doc/qregion.html +qt2/doc/qresizeevent-members.html +qt2/doc/qresizeevent.html +qt2/doc/qscrbar-m.png +qt2/doc/qscrbar-w.png +qt2/doc/qscrollbar-h.html +qt2/doc/qscrollbar-members.html +qt2/doc/qscrollbar.html +qt2/doc/qscrollview-cl.png +qt2/doc/qscrollview-h.html +qt2/doc/qscrollview-m.png +qt2/doc/qscrollview-members.html +qt2/doc/qscrollview-vp.png +qt2/doc/qscrollview-vp2.png +qt2/doc/qscrollview-w.png +qt2/doc/qscrollview.html +qt2/doc/qsemimodal-h.html +qt2/doc/qsemimodal-members.html +qt2/doc/qsemimodal.html +qt2/doc/qserversocket-h.html +qt2/doc/qserversocket-members.html +qt2/doc/qserversocket.html +qt2/doc/qsessionmanager-h.html +qt2/doc/qsessionmanager-members.html +qt2/doc/qsessionmanager.html +qt2/doc/qshared-h.html +qt2/doc/qshared-members.html +qt2/doc/qshared.html +qt2/doc/qshowevent-members.html +qt2/doc/qshowevent.html +qt2/doc/qsignal-h.html +qt2/doc/qsignal-members.html +qt2/doc/qsignal.html +qt2/doc/qsignalmapper-h.html +qt2/doc/qsignalmapper-members.html +qt2/doc/qsignalmapper.html +qt2/doc/qsimplerichtext-h.html +qt2/doc/qsimplerichtext-members.html +qt2/doc/qsimplerichtext.html +qt2/doc/qsize-h.html +qt2/doc/qsize-members.html +qt2/doc/qsize.html +qt2/doc/qsizegrip-h.html +qt2/doc/qsizegrip-members.html +qt2/doc/qsizegrip.html +qt2/doc/qsizepolicy-h.html +qt2/doc/qsizepolicy-members.html +qt2/doc/qsizepolicy.html +qt2/doc/qslider-h.html +qt2/doc/qslider-m.png +qt2/doc/qslider-members.html +qt2/doc/qslider-w.png +qt2/doc/qslider.html +qt2/doc/qsocket-h.html +qt2/doc/qsocket-members.html +qt2/doc/qsocket.html +qt2/doc/qsocketaddress-members.html +qt2/doc/qsocketaddress.html +qt2/doc/qsocketdevice-h.html +qt2/doc/qsocketnotifier-h.html +qt2/doc/qsocketnotifier-members.html +qt2/doc/qsocketnotifier.html +qt2/doc/qsortedlist-h.html +qt2/doc/qsortedlist-members.html +qt2/doc/qsortedlist.html +qt2/doc/qspaceritem-members.html +qt2/doc/qspaceritem.html +qt2/doc/qspinbox-h.html +qt2/doc/qspinbox-m.png +qt2/doc/qspinbox-members.html +qt2/doc/qspinbox-w.png +qt2/doc/qspinbox.html +qt2/doc/qsplitter-h.html +qt2/doc/qsplitter-m.png +qt2/doc/qsplitter-members.html +qt2/doc/qsplitter-w.png +qt2/doc/qsplitter.html +qt2/doc/qstack-h.html +qt2/doc/qstack-members.html +qt2/doc/qstack.html +qt2/doc/qstatusbar-h.html +qt2/doc/qstatusbar-m.png +qt2/doc/qstatusbar-members.html +qt2/doc/qstatusbar-w.png +qt2/doc/qstatusbar.html +qt2/doc/qstoreddrag-members.html +qt2/doc/qstoreddrag.html +qt2/doc/qstrilist-members.html +qt2/doc/qstrilist.html +qt2/doc/qstring-h.html +qt2/doc/qstring-members.html +qt2/doc/qstring.html +qt2/doc/qstringlist-h.html +qt2/doc/qstringlist-members.html +qt2/doc/qstringlist.html +qt2/doc/qstrlist-h.html +qt2/doc/qstrlist-members.html +qt2/doc/qstrlist.html +qt2/doc/qstyle-h.html +qt2/doc/qstyle-members.html +qt2/doc/qstyle.html +qt2/doc/qstylesheet-h.html +qt2/doc/qstylesheet-members.html +qt2/doc/qstylesheet.html +qt2/doc/qstylesheetitem-members.html +qt2/doc/qstylesheetitem.html +qt2/doc/qt-members.html +qt2/doc/qt.html +qt2/doc/qtab-members.html +qt2/doc/qtab.html +qt2/doc/qtabbar-h.html +qt2/doc/qtabbar-m.png +qt2/doc/qtabbar-members.html +qt2/doc/qtabbar-w.png +qt2/doc/qtabbar.html +qt2/doc/qtabdialog-h.html +qt2/doc/qtabdialog-members.html +qt2/doc/qtabdialog.html +qt2/doc/qtabdlg-m.png +qt2/doc/qtabdlg-w.png +qt2/doc/qtableview-h.html +qt2/doc/qtableview-members.html +qt2/doc/qtableview.html +qt2/doc/qtablevw-m.png +qt2/doc/qtablevw-w.png +qt2/doc/qtabwidget-h.html +qt2/doc/qtabwidget-members.html +qt2/doc/qtabwidget.html +qt2/doc/qtextbrowser-h.html +qt2/doc/qtextbrowser-members.html +qt2/doc/qtextbrowser.html +qt2/doc/qtextcodec-h.html +qt2/doc/qtextcodec-members.html +qt2/doc/qtextcodec.html +qt2/doc/qtextdecoder-members.html +qt2/doc/qtextdecoder.html +qt2/doc/qtextdrag-members.html +qt2/doc/qtextdrag.html +qt2/doc/qtextencoder-members.html +qt2/doc/qtextencoder.html +qt2/doc/qtextistream-members.html +qt2/doc/qtextistream.html +qt2/doc/qtextostream-members.html +qt2/doc/qtextostream.html +qt2/doc/qtextstream-h.html +qt2/doc/qtextstream-members.html +qt2/doc/qtextstream.html +qt2/doc/qtextview-h.html +qt2/doc/qtextview-members.html +qt2/doc/qtextview.html +qt2/doc/qtimage-qtimage-cpp.html +qt2/doc/qtime-members.html +qt2/doc/qtime.html +qt2/doc/qtimer-h.html +qt2/doc/qtimer-members.html +qt2/doc/qtimer.html +qt2/doc/qtimerevent-members.html +qt2/doc/qtimerevent.html +qt2/doc/qtl.html +qt2/doc/qtlogo.png +qt2/doc/qtoolbar-h.html +qt2/doc/qtoolbar-members.html +qt2/doc/qtoolbar.html +qt2/doc/qtoolbutton-h.html +qt2/doc/qtoolbutton-members.html +qt2/doc/qtoolbutton.html +qt2/doc/qtooltip-h.html +qt2/doc/qtooltip-members.html +qt2/doc/qtooltip.html +qt2/doc/qtooltipgroup-members.html +qt2/doc/qtooltipgroup.html +qt2/doc/qtranslator-h.html +qt2/doc/qtranslator-members.html +qt2/doc/qtranslator.html +qt2/doc/quridrag-members.html +qt2/doc/quridrag.html +qt2/doc/qvalidator-h.html +qt2/doc/qvalidator-members.html +qt2/doc/qvalidator.html +qt2/doc/qvaluelist-h.html +qt2/doc/qvaluelist-members.html +qt2/doc/qvaluelist.html +qt2/doc/qvaluelistconstiterator-members.html +qt2/doc/qvaluelistconstiterator.html +qt2/doc/qvaluelistiterator-members.html +qt2/doc/qvaluelistiterator.html +qt2/doc/qvbox-h.html +qt2/doc/qvbox-m.png +qt2/doc/qvbox-members.html +qt2/doc/qvbox-w.png +qt2/doc/qvbox.html +qt2/doc/qvbox.png +qt2/doc/qvboxlayout-members.html +qt2/doc/qvboxlayout.html +qt2/doc/qvbuttongroup-h.html +qt2/doc/qvbuttongroup-members.html +qt2/doc/qvbuttongroup.html +qt2/doc/qvgroupbox-h.html +qt2/doc/qvgroupbox-members.html +qt2/doc/qvgroupbox.html +qt2/doc/qwerty-main-cpp.html +qt2/doc/qwhatsthis-h.html +qt2/doc/qwhatsthis-members.html +qt2/doc/qwhatsthis.html +qt2/doc/qwheelevent-members.html +qt2/doc/qwheelevent.html +qt2/doc/qwidget-h.html +qt2/doc/qwidget-members.html +qt2/doc/qwidget.html +qt2/doc/qwidgetitem-members.html +qt2/doc/qwidgetitem.html +qt2/doc/qwidgetstack-h.html +qt2/doc/qwidgetstack-members.html +qt2/doc/qwidgetstack.html +qt2/doc/qwindowdefs-h.html +qt2/doc/qwindowsstyle-h.html +qt2/doc/qwindowsstyle-members.html +qt2/doc/qwindowsstyle.html +qt2/doc/qwizard-h.html +qt2/doc/qwizard-members.html +qt2/doc/qwizard.html +qt2/doc/qwmatrix-h.html +qt2/doc/qwmatrix-members.html +qt2/doc/qwmatrix.html +qt2/doc/qxt-h.html +qt2/doc/qxtapplication-members.html +qt2/doc/qxtapplication.html +qt2/doc/qxtwidget-members.html +qt2/doc/qxtwidget.html +qt2/doc/rangecontrols-main-cpp.html +qt2/doc/realwidgets.html +qt2/doc/removed20.html +qt2/doc/richtext-main-cpp.html +qt2/doc/rot13-rot13-cpp.html +qt2/doc/scribble-main-cpp.html +qt2/doc/scrollview-scrollview-cpp.html +qt2/doc/session.html +qt2/doc/session.png +qt2/doc/shared.html +qt2/doc/shclass.html +qt2/doc/showimg-main-cpp.html +qt2/doc/simple-application.html +qt2/doc/splitter-splitter-cpp.html +qt2/doc/t1.html +qt2/doc/t1.png +qt2/doc/t10-cannon-cpp.html +qt2/doc/t10-cannon-h.html +qt2/doc/t10-lcdrange-cpp.html +qt2/doc/t10-lcdrange-h.html +qt2/doc/t10-main-cpp.html +qt2/doc/t10-makefile.html +qt2/doc/t10.html +qt2/doc/t10.png +qt2/doc/t11-cannon-cpp.html +qt2/doc/t11-cannon-h.html +qt2/doc/t11-lcdrange-cpp.html +qt2/doc/t11-lcdrange-h.html +qt2/doc/t11-main-cpp.html +qt2/doc/t11-makefile.html +qt2/doc/t11.html +qt2/doc/t11.png +qt2/doc/t12-cannon-cpp.html +qt2/doc/t12-cannon-h.html +qt2/doc/t12-lcdrange-cpp.html +qt2/doc/t12-lcdrange-h.html +qt2/doc/t12-main-cpp.html +qt2/doc/t12-makefile.html +qt2/doc/t12.html +qt2/doc/t12.png +qt2/doc/t13-cannon-cpp.html +qt2/doc/t13-cannon-h.html +qt2/doc/t13-gamebrd-cpp.html +qt2/doc/t13-gamebrd-h.html +qt2/doc/t13-lcdrange-cpp.html +qt2/doc/t13-lcdrange-h.html +qt2/doc/t13-main-cpp.html +qt2/doc/t13-makefile.html +qt2/doc/t13.html +qt2/doc/t13.png +qt2/doc/t14-cannon-cpp.html +qt2/doc/t14-cannon-h.html +qt2/doc/t14-gamebrd-cpp.html +qt2/doc/t14-gamebrd-h.html +qt2/doc/t14-lcdrange-cpp.html +qt2/doc/t14-lcdrange-h.html +qt2/doc/t14-main-cpp.html +qt2/doc/t14-makefile.html +qt2/doc/t14.html +qt2/doc/t14.png +qt2/doc/t2.html +qt2/doc/t2.png +qt2/doc/t3.html +qt2/doc/t3.png +qt2/doc/t4.html +qt2/doc/t4.png +qt2/doc/t5.html +qt2/doc/t5.png +qt2/doc/t6.html +qt2/doc/t6.png +qt2/doc/t7-lcdrange-cpp.html +qt2/doc/t7-lcdrange-h.html +qt2/doc/t7-main-cpp.html +qt2/doc/t7-makefile.html +qt2/doc/t7.html +qt2/doc/t7.png +qt2/doc/t8-cannon-cpp.html +qt2/doc/t8-cannon-h.html +qt2/doc/t8-lcdrange-cpp.html +qt2/doc/t8-lcdrange-h.html +qt2/doc/t8-main-cpp.html +qt2/doc/t8-makefile.html +qt2/doc/t8.html +qt2/doc/t8.png +qt2/doc/t9-cannon-cpp.html +qt2/doc/t9-cannon-h.html +qt2/doc/t9-lcdrange-cpp.html +qt2/doc/t9-lcdrange-h.html +qt2/doc/t9-main-cpp.html +qt2/doc/t9-makefile.html +qt2/doc/t9.html +qt2/doc/t9.png +qt2/doc/t9_1.png +qt2/doc/t9_2.png +qt2/doc/tabdialog-tabdialog-cpp.html +qt2/doc/table-main-cpp.html +qt2/doc/test.png +qt2/doc/tetrix-tetrix-cpp.html +qt2/doc/themes-main-cpp.html +qt2/doc/tictac-main-cpp.html +qt2/doc/time.html +qt2/doc/tools.html +qt2/doc/tooltip-main-cpp.html +qt2/doc/topicals.html +qt2/doc/treeview.png +qt2/doc/trivial-trivial-cpp.html +qt2/doc/troll.html +qt2/doc/ttlogo-small.jpg +qt2/doc/ttlogo-small.png +qt2/doc/tutorial.html +qt2/doc/tutorial.png +qt2/doc/validator-main-cpp.html +qt2/doc/whatsthis.png +qt2/doc/wizard-main-cpp.html +qt2/doc/xform-xform-cpp.html +qt2/doc/xt.html +qt2/doc/y2k.html +@dirrm qt2/bin +@dirrm qt2/include +@dirrm qt2/lib +@dirrm qt2/man/man1 +@dirrm qt2/man/man3 +@dirrm qt2/man +@dirrm qt2/doc +@dirrm qt2 |