- use sub-packages to split examples/tutorial bins/source into an

examples subpackage and the html documentation (which is now being
  installed) into an html subpackage
- cleanup install target a bit
- make use of a few variables to specify paths for installation, QT_INCDIR,
  QT_LIBDIR, QT_MANDIR, QT_EXAMPLES, QT_TUTORIAL and QT_DOC
- man pages have moved from PREFIX/man to PREFIX/lib/qt/man to stay
  consistant with the qt2 port
This commit is contained in:
brad 2000-06-23 09:45:14 +00:00
parent a203d81554
commit 2ae2b4d0c8
11 changed files with 2292 additions and 446 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.41 2000/06/14 06:16:55 brad Exp $
# $OpenBSD: Makefile,v 1.42 2000/06/23 09:45:14 brad Exp $
# $FreeBSD: Makefile,v 1.33 1999/02/27 03:09:57 andreas Exp $
DISTNAME= qt-1.45
@ -6,6 +6,8 @@ CATEGORIES= x11
NEED_VERSION= 1.301
MASTER_SITES= ftp://ftp.troll.no/qt/source/
HOMEPAGE= http://www.trolltech.com/products/qt/
# for the qt image extension
BUILD_DEPENDS= ${PREFIX}/include/jpeglib.h::graphics/jpeg
@ -16,67 +18,89 @@ PERMIT_PACKAGE_FTP=
PERMIT_DISTFILES_CDROM=
PERMIT_DISTFILES_FTP=
MULTI_PACKAGES=-examples -html
SUBPACKAGE?=
USE_GMAKE= Yes
MAKE_ENV= QTDIR="${WRKSRC}" SYS_CXX="${CXX}" SYS_CXXFLAGS="${CXXFLAGS}"
MAKE_FLAGS= VER_MAJ="1" VER_MIN="45"
EXAMPLES=aclock application biff connect cursor dclock desktop dirview \
dragdrop drawdemo forever hello layout life menu movies pref \
progress qdir qmag qwerty scrollview showimg splitter table \
tetrix tictac timestmp tooltip validator widgets xform
QT_INCDIR= ${PREFIX}/include/X11/qt
QT_LIBDIR= ${PREFIX}/lib/qt
QT_MANDIR= ${QT_LIBDIR}/man
QT_EXAMPLES= ${QT_LIBDIR}/examples
QT_TUTORIAL= ${QT_LIBDIR}/tutorial
QT_DOC= ${PREFIX}/share/doc/qt
# for manpages in MESSAGE
SUBST_VARS= QT_LIBDIR
IMAGEIODIR= ${WRKSRC}/extensions/imageio/src
post-patch:
@cd ${WRKSRC} && cp -R examples examples-src
@cd ${WRKSRC} && cp -R tutorial tutorial-src
do-configure:
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${USE_TARGET}
post-build:
@cd ${IMAGEIODIR} && \
${SETENV} ${MAKE_ENV} SYS_CXXFLAGS='-I$(LOCALBASE)/include ${CXXFLAGS}' ${MAKE} ${MAKE_FLAGS}
do-configure:
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${USE_TARGET}
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/include/X11/qt
${INSTALL_DATA_DIR} ${PREFIX}/lib/qt/examples
${INSTALL_DATA_DIR} ${PREFIX}/lib/qt/tutorial
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/qt
@if [ -f ${WRKSRC}/lib/libqt.a ]; then \
${INSTALL_DATA} ${WRKSRC}/lib/libqt.a ${PREFIX}/lib; \
${INSTALL_DATA_DIR} ${QT_INCDIR}
${INSTALL_DATA_DIR} ${QT_MANDIR}/man1
${INSTALL_DATA_DIR} ${QT_MANDIR}/man3
${INSTALL_DATA_DIR} ${QT_EXAMPLES}/bin
${INSTALL_DATA_DIR} ${QT_EXAMPLES}/src
${INSTALL_DATA_DIR} ${QT_TUTORIAL}/bin
${INSTALL_DATA_DIR} ${QT_TUTORIAL}/src
${INSTALL_DATA_DIR} ${QT_DOC}/html
@if [ -f ${WRKBUILD}/lib/libqt.a ]; then \
${INSTALL_DATA} ${WRKBUILD}/lib/libqt.a ${PREFIX}/lib; \
fi
@if [ -f ${WRKSRC}/lib/libqt.so.1.45 ]; then \
${INSTALL_DATA} ${WRKSRC}/lib/libqt.so.1.45 ${PREFIX}/lib; \
@if [ -f ${WRKBUILD}/lib/libqt.so.1.45 ]; then \
${INSTALL_DATA} ${WRKBUILD}/lib/libqt.so.1.45 ${PREFIX}/lib; \
fi
@if [ -f ${WRKSRC}/lib/libqimgio.a ]; then \
${INSTALL_DATA} ${WRKSRC}/lib/libqimgio.a ${PREFIX}/lib; \
@if [ -f ${WRKBUILD}/lib/libqimgio.a ]; then \
${INSTALL_DATA} ${WRKBUILD}/lib/libqimgio.a ${PREFIX}/lib; \
fi
@if [ -f ${WRKSRC}/lib/libqimgio.so.1.45 ]; then \
${INSTALL_DATA} ${WRKSRC}/lib/libqimgio.so.1.45 ${PREFIX}/lib; \
@if [ -f ${WRKBUILD}/lib/libqimgio.so.1.45 ]; then \
${INSTALL_DATA} ${WRKBUILD}/lib/libqimgio.so.1.45 ${PREFIX}/lib; \
fi
${INSTALL_PROGRAM} ${WRKSRC}/bin/moc ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/include/* ${PREFIX}/include/X11/qt
${INSTALL_MAN} ${WRKSRC}/man/man1/* ${PREFIX}/man/man1
${INSTALL_PROGRAM} ${WRKBUILD}/bin/moc ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/include/* ${QT_INCDIR}
${INSTALL_MAN} ${WRKSRC}/man/man1/* ${QT_MANDIR}/man1
@for i in ${WRKSRC}/man/man3/*; do \
j=$${i%qt}; \
sed -e 's,\.3qt,\.3,g' <$$i >$$j && \
${INSTALL_MAN} $$j ${PREFIX}/man/man3; \
${INSTALL_MAN} $$j ${QT_MANDIR}/man3; \
done
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/qt
${INSTALL_DATA} ${WRKSRC}/README.QT ${PREFIX}/share/doc/qt
@echo -n "Installing tutorials:"
.for n in 1 2 3 4 5 6 7 8 9 10 11 12 13 14
@echo -n " ${n}"
@${INSTALL_PROGRAM} ${WRKSRC}/tutorial/t${n}/t${n} ${PREFIX}/lib/qt/tutorial
.endfor
@echo "."
@echo -n "Installing examples:"
.for f in ${EXAMPLES}
@echo -n " ${f}"
@${INSTALL_PROGRAM} ${WRKSRC}/examples/${f}/${f} ${PREFIX}/lib/qt/examples
.endfor
@echo "."
${INSTALL_DATA} ${WRKSRC}/examples/README ${PREFIX}/lib/qt/examples
cp -R ${WRKSRC}/examples-src/* ${QT_EXAMPLES}/src
@cd ${WRKSRC}/examples; for i in *; do \
if [ -x $$i/$$i ]; then \
${INSTALL_PROGRAM} $$i/$$i ${QT_EXAMPLES}/bin; \
fi; done
cp -R ${WRKSRC}/tutorial-src/* ${QT_TUTORIAL}/src
@cd ${WRKSRC}/tutorial; for i in *; do \
if [ -x $$i/$$i ]; then \
${INSTALL_PROGRAM} $$i/$$i ${QT_TUTORIAL}/bin; \
fi; done
cd ${WRKSRC}; ${INSTALL_DATA} ANNOUNCE FAQ LICENSE README \
README.QT changes-1.40 changes-1.41 changes-1.42 changes-1.43 \
changes-1.44 changes-1.45 ${QT_DOC}
cp -R ${WRKSRC}/html/* ${QT_DOC}/html
.include <bsd.port.mk>
.if ${SUBPACKAGE} =="-examples"
PKGNAME:=qt-examples-1.45
.elif ${SUBPACKAGE} =="-html"
PKGNAME:=qt-html-1.45
.endif
.if defined(NO_SHARED_LIBS) && ${NO_SHARED_LIBS:U} == YES
USE_TARGET= openbsd-g++-static
.else

View File

@ -0,0 +1 @@
examples and tutorial for qt

1
x11/qt/pkg/COMMENT-html Normal file
View File

@ -0,0 +1 @@
off-line html documentation for qt

View File

@ -1,7 +1,5 @@
Qt is a toolkit for building a GUI for X in C++. The main
documentation is in /usr/X11R6/share/doc/qt and is also available on
the web. (http://www.troll.no/qt/) This directory also contains a
tutorial, and example programs (aclock, biff, connect, cursor, dclock,
desktop, drawdemo, forever, hello, life, menu, makepic/ showpic, qmag,
showimg, tetris, tictac, timestmp, widgets, xform, xshape) have also
been installed.
documentation is in the qt-html package, or on the web (${HOME{AGE).
There is also a qt-examples package, that contains a tutorial and simple
example programs (source + binaries).

View File

@ -0,0 +1,2 @@
This is a set of simple examples and a tutorial to qt.
This package includes source and binaries.

2
x11/qt/pkg/DESCR-html Normal file
View File

@ -0,0 +1,2 @@
This is an off-line copy of the qt documentation available from
${HOMEPAGE}

4
x11/qt/pkg/MESSAGE Normal file
View File

@ -0,0 +1,4 @@
Man pages for qt have been installed in ${QT_LIBDIR}/man,
to avoid collision with the qt2 manual pages.
You may wish to add this directory to /etc/man.conf

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.15 2000/06/09 19:18:14 espie Exp $
@comment $OpenBSD: PLIST,v 1.16 2000/06/23 09:45:14 brad Exp $
bin/moc
include/X11/qt/jri.h
include/X11/qt/jri_md.h
@ -196,408 +196,372 @@ include/X11/qt/qwmatrix.h
include/X11/qt/qxt.h
%%SHARED%%
%%!SHARED%%
lib/qt/examples/README
lib/qt/examples/aclock
lib/qt/examples/application
lib/qt/examples/biff
lib/qt/examples/connect
lib/qt/examples/cursor
lib/qt/examples/dclock
lib/qt/examples/desktop
lib/qt/examples/dirview
lib/qt/examples/dragdrop
lib/qt/examples/drawdemo
lib/qt/examples/forever
lib/qt/examples/hello
lib/qt/examples/layout
lib/qt/examples/life
lib/qt/examples/menu
lib/qt/examples/movies
lib/qt/examples/pref
lib/qt/examples/progress
lib/qt/examples/qdir
lib/qt/examples/qmag
lib/qt/examples/qwerty
lib/qt/examples/scrollview
lib/qt/examples/showimg
lib/qt/examples/splitter
lib/qt/examples/table
lib/qt/examples/tetrix
lib/qt/examples/tictac
lib/qt/examples/timestmp
lib/qt/examples/tooltip
lib/qt/examples/validator
lib/qt/examples/widgets
lib/qt/examples/xform
lib/qt/tutorial/t1
lib/qt/tutorial/t10
lib/qt/tutorial/t11
lib/qt/tutorial/t12
lib/qt/tutorial/t13
lib/qt/tutorial/t14
lib/qt/tutorial/t2
lib/qt/tutorial/t3
lib/qt/tutorial/t4
lib/qt/tutorial/t5
lib/qt/tutorial/t6
lib/qt/tutorial/t7
lib/qt/tutorial/t8
lib/qt/tutorial/t9
man/man1/moc.1
man/man3/QAccel.3
man/man3/QApplication.3
man/man3/QArray.3
man/man3/QAsyncIO.3
man/man3/QBitArray.3
man/man3/QBitVal.3
man/man3/QBitmap.3
man/man3/QBoxLayout.3
man/man3/QBrush.3
man/man3/QBuffer.3
man/man3/QButton.3
man/man3/QButtonGroup.3
man/man3/QByteArray.3
man/man3/QCache.3
man/man3/QCacheIterator.3
man/man3/QCheckBox.3
man/man3/QCheckListItem.3
man/man3/QChildEvent.3
man/man3/QClipboard.3
man/man3/QCloseEvent.3
man/man3/QCollection.3
man/man3/QColor.3
man/man3/QColorGroup.3
man/man3/QComboBox.3
man/man3/QConnection.3
man/man3/QCursor.3
man/man3/QCustomEvent.3
man/man3/QDataPump.3
man/man3/QDataSink.3
man/man3/QDataSource.3
man/man3/QDataStream.3
man/man3/QDate.3
man/man3/QDateTime.3
man/man3/QDialog.3
man/man3/QDict.3
man/man3/QDictIterator.3
man/man3/QDir.3
man/man3/QDoubleValidator.3
man/man3/QDragMoveEvent.3
man/man3/QDragObject.3
man/man3/QDropEvent.3
man/man3/QEvent.3
man/man3/QFile.3
man/man3/QFileDialog.3
man/man3/QFileIconProvider.3
man/man3/QFileInfo.3
man/man3/QFocusData.3
man/man3/QFocusEvent.3
man/man3/QFont.3
man/man3/QFontInfo.3
man/man3/QFontMetrics.3
man/man3/QFrame.3
man/man3/QGArray.3
man/man3/QGCache.3
man/man3/QGCacheIterator.3
man/man3/QGDict.3
man/man3/QGDictIterator.3
man/man3/QGLContext.3
man/man3/QGLFormat.3
man/man3/QGLWidget.3
man/man3/QGList.3
man/man3/QGListIterator.3
man/man3/QGManager.3
man/man3/QGridLayout.3
man/man3/QGroupBox.3
man/man3/QHBoxLayout.3
man/man3/QHeader.3
man/man3/QIODevice.3
man/man3/QIODeviceSource.3
man/man3/QIconSet.3
man/man3/QImage.3
man/man3/QImageConsumer.3
man/man3/QImageDecoder.3
man/man3/QImageDrag.3
man/man3/QImageFormat.3
man/man3/QImageFormatType.3
man/man3/QImageIO.3
man/man3/QIntCache.3
man/man3/QIntCacheIterator.3
man/man3/QIntDict.3
man/man3/QIntDictIterator.3
man/man3/QIntValidator.3
man/man3/QKeyEvent.3
man/man3/QLCDNumber.3
man/man3/QLNode.3
man/man3/QLabel.3
man/man3/QLayout.3
man/man3/QLineEdit.3
man/man3/QList.3
man/man3/QListBox.3
man/man3/QListBoxItem.3
man/man3/QListBoxPixmap.3
man/man3/QListBoxText.3
man/man3/QListIterator.3
man/man3/QListView.3
man/man3/QListViewItem.3
man/man3/QMainWindow.3
man/man3/QMenuBar.3
man/man3/QMenuData.3
man/man3/QMessageBox.3
man/man3/QMouseEvent.3
man/man3/QMoveEvent.3
man/man3/QMovie.3
man/man3/QMultiLineEdit.3
man/man3/QNPInstance.3
man/man3/QNPStream.3
man/man3/QNPWidget.3
man/man3/QNPlugin.3
man/man3/QObject.3
man/man3/QPaintDevice.3
man/man3/QPaintDeviceMetrics.3
man/man3/QPaintEvent.3
man/man3/QPainter.3
man/man3/QPalette.3
man/man3/QPen.3
man/man3/QPicture.3
man/man3/QPixmap.3
man/man3/QPixmapCache.3
man/man3/QPoint.3
man/man3/QPointArray.3
man/man3/QPointVal.3
man/man3/QPopupMenu.3
man/man3/QPrintDialog.3
man/man3/QPrinter.3
man/man3/QProgressBar.3
man/man3/QProgressDialog.3
man/man3/QPtrDict.3
man/man3/QPtrDictIterator.3
man/man3/QPushButton.3
man/man3/QQueue.3
man/man3/QRadioButton.3
man/man3/QRangeControl.3
man/man3/QRect.3
man/man3/QRegExp.3
man/man3/QRegion.3
man/man3/QResizeEvent.3
man/man3/QScrollBar.3
man/man3/QScrollView.3
man/man3/QSemiModal.3
man/man3/QShared.3
man/man3/QSignal.3
man/man3/QSignalMapper.3
man/man3/QSize.3
man/man3/QSlider.3
man/man3/QSocketNotifier.3
man/man3/QSpinBox.3
man/man3/QSplitter.3
man/man3/QStack.3
man/man3/QStatusBar.3
man/man3/QStoredDrag.3
man/man3/QStrIList.3
man/man3/QStrList.3
man/man3/QString.3
man/man3/QTabBar.3
man/man3/QTabDialog.3
man/man3/QTableView.3
man/man3/QTextDrag.3
man/man3/QTextStream.3
man/man3/QTime.3
man/man3/QTimer.3
man/man3/QTimerEvent.3
man/man3/QToolBar.3
man/man3/QToolButton.3
man/man3/QToolTip.3
man/man3/QToolTipGroup.3
man/man3/QUrlDrag.3
man/man3/QVBoxLayout.3
man/man3/QValidator.3
man/man3/QWMatrix.3
man/man3/QWhatsThis.3
man/man3/QWidget.3
man/man3/QWidgetStack.3
man/man3/QWindow.3
man/man3/QXtApplication.3
man/man3/QXtWidget.3
man/man3/qaccel.3
man/man3/qapplication.3
man/man3/qarray.3
man/man3/qasyncio.3
man/man3/qbitarray.3
man/man3/qbitmap.3
man/man3/qbitval.3
man/man3/qboxlayout.3
man/man3/qbrush.3
man/man3/qbuffer.3
man/man3/qbutton.3
man/man3/qbuttongroup.3
man/man3/qbytearray.3
man/man3/qcache.3
man/man3/qcacheiterator.3
man/man3/qcheckbox.3
man/man3/qchecklistitem.3
man/man3/qchildevent.3
man/man3/qclipboard.3
man/man3/qcloseevent.3
man/man3/qcollection.3
man/man3/qcolor.3
man/man3/qcolorgroup.3
man/man3/qcombobox.3
man/man3/qconnection.3
man/man3/qcursor.3
man/man3/qcustomevent.3
man/man3/qdatapump.3
man/man3/qdatasink.3
man/man3/qdatasource.3
man/man3/qdatastream.3
man/man3/qdate.3
man/man3/qdatetime.3
man/man3/qdialog.3
man/man3/qdict.3
man/man3/qdictiterator.3
man/man3/qdir.3
man/man3/qdoublevalidator.3
man/man3/qdragmoveevent.3
man/man3/qdragobject.3
man/man3/qdropevent.3
man/man3/qevent.3
man/man3/qfile.3
man/man3/qfiledialog.3
man/man3/qfileiconprovider.3
man/man3/qfileinfo.3
man/man3/qfocusdata.3
man/man3/qfocusevent.3
man/man3/qfont.3
man/man3/qfontinfo.3
man/man3/qfontmetrics.3
man/man3/qframe.3
man/man3/qgarray.3
man/man3/qgcache.3
man/man3/qgcacheiterator.3
man/man3/qgdict.3
man/man3/qgdictiterator.3
man/man3/qglcontext.3
man/man3/qglformat.3
man/man3/qglist.3
man/man3/qglistiterator.3
man/man3/qglwidget.3
man/man3/qgmanager.3
man/man3/qgridlayout.3
man/man3/qgroupbox.3
man/man3/qhboxlayout.3
man/man3/qheader.3
man/man3/qiconset.3
man/man3/qimage.3
man/man3/qimageconsumer.3
man/man3/qimagedecoder.3
man/man3/qimagedrag.3
man/man3/qimageformat.3
man/man3/qimageformattype.3
man/man3/qimageio.3
man/man3/qintcache.3
man/man3/qintcacheiterator.3
man/man3/qintdict.3
man/man3/qintdictiterator.3
man/man3/qintvalidator.3
man/man3/qiodevice.3
man/man3/qiodevicesource.3
man/man3/qkeyevent.3
man/man3/qlabel.3
man/man3/qlayout.3
man/man3/qlcdnumber.3
man/man3/qlineedit.3
man/man3/qlist.3
man/man3/qlistbox.3
man/man3/qlistboxitem.3
man/man3/qlistboxpixmap.3
man/man3/qlistboxtext.3
man/man3/qlistiterator.3
man/man3/qlistview.3
man/man3/qlistviewitem.3
man/man3/qlnode.3
man/man3/qmainwindow.3
man/man3/qmenubar.3
man/man3/qmenudata.3
man/man3/qmessagebox.3
man/man3/qmouseevent.3
man/man3/qmoveevent.3
man/man3/qmovie.3
man/man3/qmultilineedit.3
man/man3/qnpinstance.3
man/man3/qnplugin.3
man/man3/qnpstream.3
man/man3/qnpwidget.3
man/man3/qobject.3
man/man3/qpaintdevice.3
man/man3/qpaintdevicemetrics.3
man/man3/qpainter.3
man/man3/qpaintevent.3
man/man3/qpalette.3
man/man3/qpen.3
man/man3/qpicture.3
man/man3/qpixmap.3
man/man3/qpixmapcache.3
man/man3/qpoint.3
man/man3/qpointarray.3
man/man3/qpointval.3
man/man3/qpopupmenu.3
man/man3/qprintdialog.3
man/man3/qprinter.3
man/man3/qprogressbar.3
man/man3/qprogressdialog.3
man/man3/qptrdict.3
man/man3/qptrdictiterator.3
man/man3/qpushbutton.3
man/man3/qqueue.3
man/man3/qradiobutton.3
man/man3/qrangecontrol.3
man/man3/qrect.3
man/man3/qregexp.3
man/man3/qregion.3
man/man3/qresizeevent.3
man/man3/qscrollbar.3
man/man3/qscrollview.3
man/man3/qsemimodal.3
man/man3/qshared.3
man/man3/qsignal.3
man/man3/qsignalmapper.3
man/man3/qsize.3
man/man3/qslider.3
man/man3/qsocketnotifier.3
man/man3/qspinbox.3
man/man3/qsplitter.3
man/man3/qstack.3
man/man3/qstatusbar.3
man/man3/qstoreddrag.3
man/man3/qstrilist.3
man/man3/qstring.3
man/man3/qstrlist.3
man/man3/qtabbar.3
man/man3/qtabdialog.3
man/man3/qtableview.3
man/man3/qtextdrag.3
man/man3/qtextstream.3
man/man3/qtime.3
man/man3/qtimer.3
man/man3/qtimerevent.3
man/man3/qtoolbar.3
man/man3/qtoolbutton.3
man/man3/qtooltip.3
man/man3/qtooltipgroup.3
man/man3/qurldrag.3
man/man3/qvalidator.3
man/man3/qvboxlayout.3
man/man3/qwhatsthis.3
man/man3/qwidget.3
man/man3/qwidgetstack.3
man/man3/qwindow.3
man/man3/qwmatrix.3
man/man3/qxtapplication.3
man/man3/qxtwidget.3
lib/qt/man/man1/moc.1
lib/qt/man/man3/QAccel.3
lib/qt/man/man3/QApplication.3
lib/qt/man/man3/QArray.3
lib/qt/man/man3/QAsyncIO.3
lib/qt/man/man3/QBitArray.3
lib/qt/man/man3/QBitVal.3
lib/qt/man/man3/QBitmap.3
lib/qt/man/man3/QBoxLayout.3
lib/qt/man/man3/QBrush.3
lib/qt/man/man3/QBuffer.3
lib/qt/man/man3/QButton.3
lib/qt/man/man3/QButtonGroup.3
lib/qt/man/man3/QByteArray.3
lib/qt/man/man3/QCache.3
lib/qt/man/man3/QCacheIterator.3
lib/qt/man/man3/QCheckBox.3
lib/qt/man/man3/QCheckListItem.3
lib/qt/man/man3/QChildEvent.3
lib/qt/man/man3/QClipboard.3
lib/qt/man/man3/QCloseEvent.3
lib/qt/man/man3/QCollection.3
lib/qt/man/man3/QColor.3
lib/qt/man/man3/QColorGroup.3
lib/qt/man/man3/QComboBox.3
lib/qt/man/man3/QConnection.3
lib/qt/man/man3/QCursor.3
lib/qt/man/man3/QCustomEvent.3
lib/qt/man/man3/QDataPump.3
lib/qt/man/man3/QDataSink.3
lib/qt/man/man3/QDataSource.3
lib/qt/man/man3/QDataStream.3
lib/qt/man/man3/QDate.3
lib/qt/man/man3/QDateTime.3
lib/qt/man/man3/QDialog.3
lib/qt/man/man3/QDict.3
lib/qt/man/man3/QDictIterator.3
lib/qt/man/man3/QDir.3
lib/qt/man/man3/QDoubleValidator.3
lib/qt/man/man3/QDragMoveEvent.3
lib/qt/man/man3/QDragObject.3
lib/qt/man/man3/QDropEvent.3
lib/qt/man/man3/QEvent.3
lib/qt/man/man3/QFile.3
lib/qt/man/man3/QFileDialog.3
lib/qt/man/man3/QFileIconProvider.3
lib/qt/man/man3/QFileInfo.3
lib/qt/man/man3/QFocusData.3
lib/qt/man/man3/QFocusEvent.3
lib/qt/man/man3/QFont.3
lib/qt/man/man3/QFontInfo.3
lib/qt/man/man3/QFontMetrics.3
lib/qt/man/man3/QFrame.3
lib/qt/man/man3/QGArray.3
lib/qt/man/man3/QGCache.3
lib/qt/man/man3/QGCacheIterator.3
lib/qt/man/man3/QGDict.3
lib/qt/man/man3/QGDictIterator.3
lib/qt/man/man3/QGLContext.3
lib/qt/man/man3/QGLFormat.3
lib/qt/man/man3/QGLWidget.3
lib/qt/man/man3/QGList.3
lib/qt/man/man3/QGListIterator.3
lib/qt/man/man3/QGManager.3
lib/qt/man/man3/QGridLayout.3
lib/qt/man/man3/QGroupBox.3
lib/qt/man/man3/QHBoxLayout.3
lib/qt/man/man3/QHeader.3
lib/qt/man/man3/QIODevice.3
lib/qt/man/man3/QIODeviceSource.3
lib/qt/man/man3/QIconSet.3
lib/qt/man/man3/QImage.3
lib/qt/man/man3/QImageConsumer.3
lib/qt/man/man3/QImageDecoder.3
lib/qt/man/man3/QImageDrag.3
lib/qt/man/man3/QImageFormat.3
lib/qt/man/man3/QImageFormatType.3
lib/qt/man/man3/QImageIO.3
lib/qt/man/man3/QIntCache.3
lib/qt/man/man3/QIntCacheIterator.3
lib/qt/man/man3/QIntDict.3
lib/qt/man/man3/QIntDictIterator.3
lib/qt/man/man3/QIntValidator.3
lib/qt/man/man3/QKeyEvent.3
lib/qt/man/man3/QLCDNumber.3
lib/qt/man/man3/QLNode.3
lib/qt/man/man3/QLabel.3
lib/qt/man/man3/QLayout.3
lib/qt/man/man3/QLineEdit.3
lib/qt/man/man3/QList.3
lib/qt/man/man3/QListBox.3
lib/qt/man/man3/QListBoxItem.3
lib/qt/man/man3/QListBoxPixmap.3
lib/qt/man/man3/QListBoxText.3
lib/qt/man/man3/QListIterator.3
lib/qt/man/man3/QListView.3
lib/qt/man/man3/QListViewItem.3
lib/qt/man/man3/QMainWindow.3
lib/qt/man/man3/QMenuBar.3
lib/qt/man/man3/QMenuData.3
lib/qt/man/man3/QMessageBox.3
lib/qt/man/man3/QMouseEvent.3
lib/qt/man/man3/QMoveEvent.3
lib/qt/man/man3/QMovie.3
lib/qt/man/man3/QMultiLineEdit.3
lib/qt/man/man3/QNPInstance.3
lib/qt/man/man3/QNPStream.3
lib/qt/man/man3/QNPWidget.3
lib/qt/man/man3/QNPlugin.3
lib/qt/man/man3/QObject.3
lib/qt/man/man3/QPaintDevice.3
lib/qt/man/man3/QPaintDeviceMetrics.3
lib/qt/man/man3/QPaintEvent.3
lib/qt/man/man3/QPainter.3
lib/qt/man/man3/QPalette.3
lib/qt/man/man3/QPen.3
lib/qt/man/man3/QPicture.3
lib/qt/man/man3/QPixmap.3
lib/qt/man/man3/QPixmapCache.3
lib/qt/man/man3/QPoint.3
lib/qt/man/man3/QPointArray.3
lib/qt/man/man3/QPointVal.3
lib/qt/man/man3/QPopupMenu.3
lib/qt/man/man3/QPrintDialog.3
lib/qt/man/man3/QPrinter.3
lib/qt/man/man3/QProgressBar.3
lib/qt/man/man3/QProgressDialog.3
lib/qt/man/man3/QPtrDict.3
lib/qt/man/man3/QPtrDictIterator.3
lib/qt/man/man3/QPushButton.3
lib/qt/man/man3/QQueue.3
lib/qt/man/man3/QRadioButton.3
lib/qt/man/man3/QRangeControl.3
lib/qt/man/man3/QRect.3
lib/qt/man/man3/QRegExp.3
lib/qt/man/man3/QRegion.3
lib/qt/man/man3/QResizeEvent.3
lib/qt/man/man3/QScrollBar.3
lib/qt/man/man3/QScrollView.3
lib/qt/man/man3/QSemiModal.3
lib/qt/man/man3/QShared.3
lib/qt/man/man3/QSignal.3
lib/qt/man/man3/QSignalMapper.3
lib/qt/man/man3/QSize.3
lib/qt/man/man3/QSlider.3
lib/qt/man/man3/QSocketNotifier.3
lib/qt/man/man3/QSpinBox.3
lib/qt/man/man3/QSplitter.3
lib/qt/man/man3/QStack.3
lib/qt/man/man3/QStatusBar.3
lib/qt/man/man3/QStoredDrag.3
lib/qt/man/man3/QStrIList.3
lib/qt/man/man3/QStrList.3
lib/qt/man/man3/QString.3
lib/qt/man/man3/QTabBar.3
lib/qt/man/man3/QTabDialog.3
lib/qt/man/man3/QTableView.3
lib/qt/man/man3/QTextDrag.3
lib/qt/man/man3/QTextStream.3
lib/qt/man/man3/QTime.3
lib/qt/man/man3/QTimer.3
lib/qt/man/man3/QTimerEvent.3
lib/qt/man/man3/QToolBar.3
lib/qt/man/man3/QToolButton.3
lib/qt/man/man3/QToolTip.3
lib/qt/man/man3/QToolTipGroup.3
lib/qt/man/man3/QUrlDrag.3
lib/qt/man/man3/QVBoxLayout.3
lib/qt/man/man3/QValidator.3
lib/qt/man/man3/QWMatrix.3
lib/qt/man/man3/QWhatsThis.3
lib/qt/man/man3/QWidget.3
lib/qt/man/man3/QWidgetStack.3
lib/qt/man/man3/QWindow.3
lib/qt/man/man3/QXtApplication.3
lib/qt/man/man3/QXtWidget.3
lib/qt/man/man3/qaccel.3
lib/qt/man/man3/qapplication.3
lib/qt/man/man3/qarray.3
lib/qt/man/man3/qasyncio.3
lib/qt/man/man3/qbitarray.3
lib/qt/man/man3/qbitmap.3
lib/qt/man/man3/qbitval.3
lib/qt/man/man3/qboxlayout.3
lib/qt/man/man3/qbrush.3
lib/qt/man/man3/qbuffer.3
lib/qt/man/man3/qbutton.3
lib/qt/man/man3/qbuttongroup.3
lib/qt/man/man3/qbytearray.3
lib/qt/man/man3/qcache.3
lib/qt/man/man3/qcacheiterator.3
lib/qt/man/man3/qcheckbox.3
lib/qt/man/man3/qchecklistitem.3
lib/qt/man/man3/qchildevent.3
lib/qt/man/man3/qclipboard.3
lib/qt/man/man3/qcloseevent.3
lib/qt/man/man3/qcollection.3
lib/qt/man/man3/qcolor.3
lib/qt/man/man3/qcolorgroup.3
lib/qt/man/man3/qcombobox.3
lib/qt/man/man3/qconnection.3
lib/qt/man/man3/qcursor.3
lib/qt/man/man3/qcustomevent.3
lib/qt/man/man3/qdatapump.3
lib/qt/man/man3/qdatasink.3
lib/qt/man/man3/qdatasource.3
lib/qt/man/man3/qdatastream.3
lib/qt/man/man3/qdate.3
lib/qt/man/man3/qdatetime.3
lib/qt/man/man3/qdialog.3
lib/qt/man/man3/qdict.3
lib/qt/man/man3/qdictiterator.3
lib/qt/man/man3/qdir.3
lib/qt/man/man3/qdoublevalidator.3
lib/qt/man/man3/qdragmoveevent.3
lib/qt/man/man3/qdragobject.3
lib/qt/man/man3/qdropevent.3
lib/qt/man/man3/qevent.3
lib/qt/man/man3/qfile.3
lib/qt/man/man3/qfiledialog.3
lib/qt/man/man3/qfileiconprovider.3
lib/qt/man/man3/qfileinfo.3
lib/qt/man/man3/qfocusdata.3
lib/qt/man/man3/qfocusevent.3
lib/qt/man/man3/qfont.3
lib/qt/man/man3/qfontinfo.3
lib/qt/man/man3/qfontmetrics.3
lib/qt/man/man3/qframe.3
lib/qt/man/man3/qgarray.3
lib/qt/man/man3/qgcache.3
lib/qt/man/man3/qgcacheiterator.3
lib/qt/man/man3/qgdict.3
lib/qt/man/man3/qgdictiterator.3
lib/qt/man/man3/qglcontext.3
lib/qt/man/man3/qglformat.3
lib/qt/man/man3/qglist.3
lib/qt/man/man3/qglistiterator.3
lib/qt/man/man3/qglwidget.3
lib/qt/man/man3/qgmanager.3
lib/qt/man/man3/qgridlayout.3
lib/qt/man/man3/qgroupbox.3
lib/qt/man/man3/qhboxlayout.3
lib/qt/man/man3/qheader.3
lib/qt/man/man3/qiconset.3
lib/qt/man/man3/qimage.3
lib/qt/man/man3/qimageconsumer.3
lib/qt/man/man3/qimagedecoder.3
lib/qt/man/man3/qimagedrag.3
lib/qt/man/man3/qimageformat.3
lib/qt/man/man3/qimageformattype.3
lib/qt/man/man3/qimageio.3
lib/qt/man/man3/qintcache.3
lib/qt/man/man3/qintcacheiterator.3
lib/qt/man/man3/qintdict.3
lib/qt/man/man3/qintdictiterator.3
lib/qt/man/man3/qintvalidator.3
lib/qt/man/man3/qiodevice.3
lib/qt/man/man3/qiodevicesource.3
lib/qt/man/man3/qkeyevent.3
lib/qt/man/man3/qlabel.3
lib/qt/man/man3/qlayout.3
lib/qt/man/man3/qlcdnumber.3
lib/qt/man/man3/qlineedit.3
lib/qt/man/man3/qlist.3
lib/qt/man/man3/qlistbox.3
lib/qt/man/man3/qlistboxitem.3
lib/qt/man/man3/qlistboxpixmap.3
lib/qt/man/man3/qlistboxtext.3
lib/qt/man/man3/qlistiterator.3
lib/qt/man/man3/qlistview.3
lib/qt/man/man3/qlistviewitem.3
lib/qt/man/man3/qlnode.3
lib/qt/man/man3/qmainwindow.3
lib/qt/man/man3/qmenubar.3
lib/qt/man/man3/qmenudata.3
lib/qt/man/man3/qmessagebox.3
lib/qt/man/man3/qmouseevent.3
lib/qt/man/man3/qmoveevent.3
lib/qt/man/man3/qmovie.3
lib/qt/man/man3/qmultilineedit.3
lib/qt/man/man3/qnpinstance.3
lib/qt/man/man3/qnplugin.3
lib/qt/man/man3/qnpstream.3
lib/qt/man/man3/qnpwidget.3
lib/qt/man/man3/qobject.3
lib/qt/man/man3/qpaintdevice.3
lib/qt/man/man3/qpaintdevicemetrics.3
lib/qt/man/man3/qpainter.3
lib/qt/man/man3/qpaintevent.3
lib/qt/man/man3/qpalette.3
lib/qt/man/man3/qpen.3
lib/qt/man/man3/qpicture.3
lib/qt/man/man3/qpixmap.3
lib/qt/man/man3/qpixmapcache.3
lib/qt/man/man3/qpoint.3
lib/qt/man/man3/qpointarray.3
lib/qt/man/man3/qpointval.3
lib/qt/man/man3/qpopupmenu.3
lib/qt/man/man3/qprintdialog.3
lib/qt/man/man3/qprinter.3
lib/qt/man/man3/qprogressbar.3
lib/qt/man/man3/qprogressdialog.3
lib/qt/man/man3/qptrdict.3
lib/qt/man/man3/qptrdictiterator.3
lib/qt/man/man3/qpushbutton.3
lib/qt/man/man3/qqueue.3
lib/qt/man/man3/qradiobutton.3
lib/qt/man/man3/qrangecontrol.3
lib/qt/man/man3/qrect.3
lib/qt/man/man3/qregexp.3
lib/qt/man/man3/qregion.3
lib/qt/man/man3/qresizeevent.3
lib/qt/man/man3/qscrollbar.3
lib/qt/man/man3/qscrollview.3
lib/qt/man/man3/qsemimodal.3
lib/qt/man/man3/qshared.3
lib/qt/man/man3/qsignal.3
lib/qt/man/man3/qsignalmapper.3
lib/qt/man/man3/qsize.3
lib/qt/man/man3/qslider.3
lib/qt/man/man3/qsocketnotifier.3
lib/qt/man/man3/qspinbox.3
lib/qt/man/man3/qsplitter.3
lib/qt/man/man3/qstack.3
lib/qt/man/man3/qstatusbar.3
lib/qt/man/man3/qstoreddrag.3
lib/qt/man/man3/qstrilist.3
lib/qt/man/man3/qstring.3
lib/qt/man/man3/qstrlist.3
lib/qt/man/man3/qtabbar.3
lib/qt/man/man3/qtabdialog.3
lib/qt/man/man3/qtableview.3
lib/qt/man/man3/qtextdrag.3
lib/qt/man/man3/qtextstream.3
lib/qt/man/man3/qtime.3
lib/qt/man/man3/qtimer.3
lib/qt/man/man3/qtimerevent.3
lib/qt/man/man3/qtoolbar.3
lib/qt/man/man3/qtoolbutton.3
lib/qt/man/man3/qtooltip.3
lib/qt/man/man3/qtooltipgroup.3
lib/qt/man/man3/qurldrag.3
lib/qt/man/man3/qvalidator.3
lib/qt/man/man3/qvboxlayout.3
lib/qt/man/man3/qwhatsthis.3
lib/qt/man/man3/qwidget.3
lib/qt/man/man3/qwidgetstack.3
lib/qt/man/man3/qwindow.3
lib/qt/man/man3/qwmatrix.3
lib/qt/man/man3/qxtapplication.3
lib/qt/man/man3/qxtwidget.3
share/doc/qt/ANNOUNCE
share/doc/qt/FAQ
share/doc/qt/LICENSE
share/doc/qt/README
share/doc/qt/README.QT
share/doc/qt/changes-1.40
share/doc/qt/changes-1.41
share/doc/qt/changes-1.42
share/doc/qt/changes-1.43
share/doc/qt/changes-1.44
share/doc/qt/changes-1.45
@unexec echo "Please remove %D/lib/qt/man from /etc/man.conf manually if needed"
@dirrm include/X11/qt
@dirrm lib/qt/examples
@dirrm lib/qt/tutorial
@dirrm lib/qt/man/man3
@dirrm lib/qt/man/man1
@dirrm lib/qt/man
@dirrm lib/qt
@dirrm share/doc/qt

432
x11/qt/pkg/PLIST-examples Normal file
View File

@ -0,0 +1,432 @@
@comment $OpenBSD: PLIST-examples,v 1.1 2000/06/23 09:45:14 brad Exp $
@pkgdep qt-1.45
lib/qt/examples/bin/aclock
lib/qt/examples/bin/application
lib/qt/examples/bin/biff
lib/qt/examples/bin/connect
lib/qt/examples/bin/cursor
lib/qt/examples/bin/dclock
lib/qt/examples/bin/desktop
lib/qt/examples/bin/dirview
lib/qt/examples/bin/dragdrop
lib/qt/examples/bin/drawdemo
lib/qt/examples/bin/forever
lib/qt/examples/bin/hello
lib/qt/examples/bin/layout
lib/qt/examples/bin/life
lib/qt/examples/bin/menu
lib/qt/examples/bin/movies
lib/qt/examples/bin/pref
lib/qt/examples/bin/progress
lib/qt/examples/bin/qdir
lib/qt/examples/bin/qmag
lib/qt/examples/bin/qwerty
lib/qt/examples/bin/scrollview
lib/qt/examples/bin/showimg
lib/qt/examples/bin/splitter
lib/qt/examples/bin/table
lib/qt/examples/bin/tetrix
lib/qt/examples/bin/tictac
lib/qt/examples/bin/timestmp
lib/qt/examples/bin/tooltip
lib/qt/examples/bin/validator
lib/qt/examples/bin/widgets
lib/qt/examples/bin/xform
lib/qt/examples/src/examples.pro
lib/qt/examples/src/examples.t
lib/qt/examples/src/README
lib/qt/examples/src/Makefile.in
lib/qt/examples/src/Makefile
lib/qt/examples/src/picture/Makefile
lib/qt/examples/src/picture/README
lib/qt/examples/src/picture/car_orig.pic
lib/qt/examples/src/picture/Makefile.in
lib/qt/examples/src/picture/picture.cpp
lib/qt/examples/src/picture/picture.pro
lib/qt/examples/src/picture/picture.t
lib/qt/examples/src/picture/flag.bmp
lib/qt/examples/src/widgets/Makefile
lib/qt/examples/src/widgets/README
lib/qt/examples/src/widgets/qt.bmp
lib/qt/examples/src/widgets/Makefile.in
lib/qt/examples/src/widgets/trolltech.gif
lib/qt/examples/src/widgets/widgets.cpp
lib/qt/examples/src/widgets/widgets.pro
lib/qt/examples/src/widgets/trolltech.bmp
lib/qt/examples/src/validator/Makefile
lib/qt/examples/src/validator/main.cpp
lib/qt/examples/src/validator/motor.cpp
lib/qt/examples/src/validator/Makefile.in
lib/qt/examples/src/validator/validator.pro
lib/qt/examples/src/validator/vw.cpp
lib/qt/examples/src/validator/vw.h
lib/qt/examples/src/validator/motor.h
lib/qt/examples/src/tooltip/tooltip.cpp
lib/qt/examples/src/tooltip/README
lib/qt/examples/src/tooltip/main.cpp
lib/qt/examples/src/tooltip/Makefile.in
lib/qt/examples/src/tooltip/tooltip.h
lib/qt/examples/src/tooltip/tooltip.pro
lib/qt/examples/src/tooltip/Makefile
lib/qt/examples/src/timestmp/Makefile.in
lib/qt/examples/src/timestmp/README
lib/qt/examples/src/timestmp/timestmp.cpp
lib/qt/examples/src/timestmp/timestmp.pro
lib/qt/examples/src/timestmp/Makefile
lib/qt/examples/src/tictac/tictac.cpp
lib/qt/examples/src/tictac/README
lib/qt/examples/src/tictac/main.cpp
lib/qt/examples/src/tictac/Makefile.in
lib/qt/examples/src/tictac/tictac.h
lib/qt/examples/src/tictac/tictac.pro
lib/qt/examples/src/tictac/Makefile
lib/qt/examples/src/tetrix/Makefile
lib/qt/examples/src/tetrix/README
lib/qt/examples/src/tetrix/gtetrix.cpp
lib/qt/examples/src/tetrix/gtetrix.h
lib/qt/examples/src/tetrix/qdragapp.cpp
lib/qt/examples/src/tetrix/qdragapp.h
lib/qt/examples/src/tetrix/qtetrix.cpp
lib/qt/examples/src/tetrix/qtetrix.h
lib/qt/examples/src/tetrix/qtetrixb.cpp
lib/qt/examples/src/tetrix/qtetrixb.h
lib/qt/examples/src/tetrix/tetrix.cpp
lib/qt/examples/src/tetrix/tetrix.pro
lib/qt/examples/src/tetrix/tpiece.cpp
lib/qt/examples/src/tetrix/Makefile.in
lib/qt/examples/src/tetrix/tpiece.h
lib/qt/examples/src/table/table.cpp
lib/qt/examples/src/table/README
lib/qt/examples/src/table/main.cpp
lib/qt/examples/src/table/Makefile.in
lib/qt/examples/src/table/table.h
lib/qt/examples/src/table/table.pro
lib/qt/examples/src/table/Makefile
lib/qt/examples/src/splitter/Makefile.in
lib/qt/examples/src/splitter/splitter.cpp
lib/qt/examples/src/splitter/splitter.pro
lib/qt/examples/src/splitter/Makefile
lib/qt/examples/src/showimg/showimg.cpp
lib/qt/examples/src/showimg/README
lib/qt/examples/src/showimg/main.cpp
lib/qt/examples/src/showimg/Makefile.in
lib/qt/examples/src/showimg/showimg.h
lib/qt/examples/src/showimg/showimg.pro
lib/qt/examples/src/showimg/Makefile
lib/qt/examples/src/scrollview/Makefile.in
lib/qt/examples/src/scrollview/README
lib/qt/examples/src/scrollview/bg.ppm
lib/qt/examples/src/scrollview/scrollview.cpp
lib/qt/examples/src/scrollview/scrollview.pro
lib/qt/examples/src/scrollview/Makefile
lib/qt/examples/src/qwerty/Makefile.in
lib/qt/examples/src/qwerty/main.cpp
lib/qt/examples/src/qwerty/qwerty.cpp
lib/qt/examples/src/qwerty/qwerty.h
lib/qt/examples/src/qwerty/qwerty.pro
lib/qt/examples/src/qwerty/Makefile
lib/qt/examples/src/qmag/Makefile.in
lib/qt/examples/src/qmag/README
lib/qt/examples/src/qmag/qmag.cpp
lib/qt/examples/src/qmag/qmag.pro
lib/qt/examples/src/qmag/Makefile
lib/qt/examples/src/qdir/Makefile.in
lib/qt/examples/src/qdir/qdir.cpp
lib/qt/examples/src/qdir/qdir.pro
lib/qt/examples/src/qdir/Makefile
lib/qt/examples/src/progress/Makefile.in
lib/qt/examples/src/progress/README
lib/qt/examples/src/progress/progress.cpp
lib/qt/examples/src/progress/progress.pro
lib/qt/examples/src/progress/Makefile
lib/qt/examples/src/pref/Makefile.in
lib/qt/examples/src/pref/main.cpp
lib/qt/examples/src/pref/pref.cpp
lib/qt/examples/src/pref/pref.h
lib/qt/examples/src/pref/pref.pro
lib/qt/examples/src/pref/Makefile
lib/qt/examples/src/biff/biff.pro
lib/qt/examples/src/biff/biff.cpp
lib/qt/examples/src/biff/biff.h
lib/qt/examples/src/biff/Makefile.in
lib/qt/examples/src/biff/bmp.cpp
lib/qt/examples/src/biff/main.cpp
lib/qt/examples/src/biff/Makefile
lib/qt/examples/src/movies/Makefile.in
lib/qt/examples/src/movies/README
lib/qt/examples/src/movies/main.cpp
lib/qt/examples/src/movies/movies.pro
lib/qt/examples/src/movies/trolltech.gif
lib/qt/examples/src/movies/Makefile
lib/qt/examples/src/menu/Makefile.in
lib/qt/examples/src/menu/menu.cpp
lib/qt/examples/src/menu/menu.h
lib/qt/examples/src/menu/menu.pro
lib/qt/examples/src/menu/Makefile
lib/qt/examples/src/xform/image.any
lib/qt/examples/src/xform/README
lib/qt/examples/src/xform/aticatac.cpp
lib/qt/examples/src/xform/Makefile.in
lib/qt/examples/src/xform/xform.cpp
lib/qt/examples/src/xform/xform.pro
lib/qt/examples/src/xform/Makefile
lib/qt/examples/src/layouts/Makefile
lib/qt/examples/src/layouts/README
lib/qt/examples/src/layouts/Makefile.in
lib/qt/examples/src/layouts/layouts.pro
lib/qt/examples/src/layouts/qtbuttonrow.cpp
lib/qt/examples/src/layouts/qtbuttonrow.h
lib/qt/examples/src/layouts/qtgrid.cpp
lib/qt/examples/src/layouts/qtgrid.h
lib/qt/examples/src/layouts/qthbox.cpp
lib/qt/examples/src/layouts/qthbox.h
lib/qt/examples/src/layouts/qtlabelled.cpp
lib/qt/examples/src/layouts/qtlabelled.h
lib/qt/examples/src/layouts/qtvbox.cpp
lib/qt/examples/src/layouts/layouts.cpp
lib/qt/examples/src/layouts/qtvbox.h
lib/qt/examples/src/layout/Makefile.in
lib/qt/examples/src/layout/layout.cpp
lib/qt/examples/src/layout/layout.pro
lib/qt/examples/src/layout/Makefile
lib/qt/examples/src/hello/hello.h
lib/qt/examples/src/hello/README
lib/qt/examples/src/hello/hello.cpp
lib/qt/examples/src/hello/Makefile.in
lib/qt/examples/src/hello/hello.pro
lib/qt/examples/src/hello/main.cpp
lib/qt/examples/src/hello/Makefile
lib/qt/examples/src/forever/Makefile.in
lib/qt/examples/src/forever/README
lib/qt/examples/src/forever/forever.cpp
lib/qt/examples/src/forever/forever.pro
lib/qt/examples/src/forever/Makefile
lib/qt/examples/src/aclock/aclock.h
lib/qt/examples/src/aclock/README
lib/qt/examples/src/aclock/aclock.cpp
lib/qt/examples/src/aclock/Makefile.in
lib/qt/examples/src/aclock/aclock.pro
lib/qt/examples/src/aclock/main.cpp
lib/qt/examples/src/aclock/Makefile
lib/qt/examples/src/application/Makefile
lib/qt/examples/src/application/application.cpp
lib/qt/examples/src/application/application.h
lib/qt/examples/src/application/application.pro
lib/qt/examples/src/application/fileopen.xpm
lib/qt/examples/src/application/fileprint.xpm
lib/qt/examples/src/application/filesave.xpm
lib/qt/examples/src/application/Makefile.in
lib/qt/examples/src/application/main.cpp
lib/qt/examples/src/drawdemo/Makefile.in
lib/qt/examples/src/drawdemo/README
lib/qt/examples/src/drawdemo/drawdemo.cpp
lib/qt/examples/src/drawdemo/drawdemo.pro
lib/qt/examples/src/drawdemo/Makefile
lib/qt/examples/src/dragdrop/Makefile
lib/qt/examples/src/dragdrop/dragdrop.pro
lib/qt/examples/src/dragdrop/dropsite.cpp
lib/qt/examples/src/dragdrop/Makefile.in
lib/qt/examples/src/dragdrop/main.cpp
lib/qt/examples/src/dragdrop/secret.cpp
lib/qt/examples/src/dragdrop/secret.h
lib/qt/examples/src/dragdrop/dropsite.h
lib/qt/examples/src/dirview/Makefile.in
lib/qt/examples/src/dirview/dirview.cpp
lib/qt/examples/src/dirview/dirview.h
lib/qt/examples/src/dirview/dirview.pro
lib/qt/examples/src/dirview/main.cpp
lib/qt/examples/src/dirview/Makefile
lib/qt/examples/src/desktop/Makefile.in
lib/qt/examples/src/desktop/README
lib/qt/examples/src/desktop/desktop.cpp
lib/qt/examples/src/desktop/desktop.pro
lib/qt/examples/src/desktop/Makefile
lib/qt/examples/src/dclock/dclock.h
lib/qt/examples/src/dclock/README
lib/qt/examples/src/dclock/dclock.cpp
lib/qt/examples/src/dclock/Makefile.in
lib/qt/examples/src/dclock/dclock.pro
lib/qt/examples/src/dclock/main.cpp
lib/qt/examples/src/dclock/Makefile
lib/qt/examples/src/cursor/Makefile.in
lib/qt/examples/src/cursor/README
lib/qt/examples/src/cursor/cursor.cpp
lib/qt/examples/src/cursor/cursor.pro
lib/qt/examples/src/cursor/Makefile
lib/qt/examples/src/connect/Makefile.in
lib/qt/examples/src/connect/README
lib/qt/examples/src/connect/connect.cpp
lib/qt/examples/src/connect/connect.pro
lib/qt/examples/src/connect/Makefile
lib/qt/examples/src/life/Makefile
lib/qt/examples/src/life/life.cpp
lib/qt/examples/src/life/life.h
lib/qt/examples/src/life/life.pro
lib/qt/examples/src/life/lifedlg.cpp
lib/qt/examples/src/life/lifedlg.h
lib/qt/examples/src/life/main.cpp
lib/qt/examples/src/life/Makefile.in
lib/qt/examples/src/life/patterns.cpp
lib/qt/tutorial/bin/t1
lib/qt/tutorial/bin/t10
lib/qt/tutorial/bin/t11
lib/qt/tutorial/bin/t12
lib/qt/tutorial/bin/t13
lib/qt/tutorial/bin/t14
lib/qt/tutorial/bin/t2
lib/qt/tutorial/bin/t3
lib/qt/tutorial/bin/t4
lib/qt/tutorial/bin/t5
lib/qt/tutorial/bin/t6
lib/qt/tutorial/bin/t7
lib/qt/tutorial/bin/t8
lib/qt/tutorial/bin/t9
lib/qt/tutorial/src/Makefile
lib/qt/tutorial/src/tutorial.pro
lib/qt/tutorial/src/README
lib/qt/tutorial/src/Makefile.in
lib/qt/tutorial/src/tutorial.t
lib/qt/tutorial/src/t1/Makefile.in
lib/qt/tutorial/src/t1/main.cpp
lib/qt/tutorial/src/t1/t1.pro
lib/qt/tutorial/src/t1/Makefile
lib/qt/tutorial/src/t2/Makefile.in
lib/qt/tutorial/src/t2/main.cpp
lib/qt/tutorial/src/t2/t2.pro
lib/qt/tutorial/src/t2/Makefile
lib/qt/tutorial/src/t3/Makefile.in
lib/qt/tutorial/src/t3/main.cpp
lib/qt/tutorial/src/t3/t3.pro
lib/qt/tutorial/src/t3/Makefile
lib/qt/tutorial/src/t4/Makefile.in
lib/qt/tutorial/src/t4/main.cpp
lib/qt/tutorial/src/t4/t4.pro
lib/qt/tutorial/src/t4/Makefile
lib/qt/tutorial/src/t5/Makefile.in
lib/qt/tutorial/src/t5/main.cpp
lib/qt/tutorial/src/t5/t5.pro
lib/qt/tutorial/src/t5/Makefile
lib/qt/tutorial/src/t6/Makefile.in
lib/qt/tutorial/src/t6/main.cpp
lib/qt/tutorial/src/t6/t6.pro
lib/qt/tutorial/src/t6/Makefile
lib/qt/tutorial/src/t7/Makefile.in
lib/qt/tutorial/src/t7/lcdrange.cpp
lib/qt/tutorial/src/t7/lcdrange.h
lib/qt/tutorial/src/t7/main.cpp
lib/qt/tutorial/src/t7/t7.pro
lib/qt/tutorial/src/t7/Makefile
lib/qt/tutorial/src/t8/Makefile
lib/qt/tutorial/src/t8/cannon.cpp
lib/qt/tutorial/src/t8/cannon.h
lib/qt/tutorial/src/t8/Makefile.in
lib/qt/tutorial/src/t8/lcdrange.h
lib/qt/tutorial/src/t8/main.cpp
lib/qt/tutorial/src/t8/t8.pro
lib/qt/tutorial/src/t8/lcdrange.cpp
lib/qt/tutorial/src/t9/Makefile
lib/qt/tutorial/src/t9/cannon.cpp
lib/qt/tutorial/src/t9/cannon.h
lib/qt/tutorial/src/t9/Makefile.in
lib/qt/tutorial/src/t9/lcdrange.h
lib/qt/tutorial/src/t9/main.cpp
lib/qt/tutorial/src/t9/t9.pro
lib/qt/tutorial/src/t9/lcdrange.cpp
lib/qt/tutorial/src/t10/Makefile
lib/qt/tutorial/src/t10/cannon.cpp
lib/qt/tutorial/src/t10/cannon.h
lib/qt/tutorial/src/t10/Makefile.in
lib/qt/tutorial/src/t10/lcdrange.h
lib/qt/tutorial/src/t10/main.cpp
lib/qt/tutorial/src/t10/t10.pro
lib/qt/tutorial/src/t10/lcdrange.cpp
lib/qt/tutorial/src/t11/Makefile
lib/qt/tutorial/src/t11/cannon.cpp
lib/qt/tutorial/src/t11/cannon.h
lib/qt/tutorial/src/t11/Makefile.in
lib/qt/tutorial/src/t11/lcdrange.h
lib/qt/tutorial/src/t11/main.cpp
lib/qt/tutorial/src/t11/t11.pro
lib/qt/tutorial/src/t11/lcdrange.cpp
lib/qt/tutorial/src/t12/Makefile
lib/qt/tutorial/src/t12/cannon.cpp
lib/qt/tutorial/src/t12/cannon.h
lib/qt/tutorial/src/t12/Makefile.in
lib/qt/tutorial/src/t12/lcdrange.h
lib/qt/tutorial/src/t12/main.cpp
lib/qt/tutorial/src/t12/t12.pro
lib/qt/tutorial/src/t12/lcdrange.cpp
lib/qt/tutorial/src/t13/Makefile
lib/qt/tutorial/src/t13/cannon.cpp
lib/qt/tutorial/src/t13/cannon.h
lib/qt/tutorial/src/t13/gamebrd.cpp
lib/qt/tutorial/src/t13/gamebrd.h
lib/qt/tutorial/src/t13/lcdrange.cpp
lib/qt/tutorial/src/t13/lcdrange.h
lib/qt/tutorial/src/t13/main.cpp
lib/qt/tutorial/src/t13/Makefile.in
lib/qt/tutorial/src/t13/t13.pro
lib/qt/tutorial/src/t14/Makefile
lib/qt/tutorial/src/t14/cannon.cpp
lib/qt/tutorial/src/t14/cannon.h
lib/qt/tutorial/src/t14/gamebrd.cpp
lib/qt/tutorial/src/t14/gamebrd.h
lib/qt/tutorial/src/t14/lcdrange.cpp
lib/qt/tutorial/src/t14/lcdrange.h
lib/qt/tutorial/src/t14/main.cpp
lib/qt/tutorial/src/t14/Makefile.in
lib/qt/tutorial/src/t14/t14.pro
@dirrm lib/qt/examples/bin
@dirrm lib/qt/examples/src/aclock
@dirrm lib/qt/examples/src/application
@dirrm lib/qt/examples/src/biff
@dirrm lib/qt/examples/src/connect
@dirrm lib/qt/examples/src/cursor
@dirrm lib/qt/examples/src/dclock
@dirrm lib/qt/examples/src/desktop
@dirrm lib/qt/examples/src/dirview
@dirrm lib/qt/examples/src/dragdrop
@dirrm lib/qt/examples/src/drawdemo
@dirrm lib/qt/examples/src/forever
@dirrm lib/qt/examples/src/hello
@dirrm lib/qt/examples/src/layout
@dirrm lib/qt/examples/src/layouts
@dirrm lib/qt/examples/src/life
@dirrm lib/qt/examples/src/menu
@dirrm lib/qt/examples/src/movies
@dirrm lib/qt/examples/src/picture
@dirrm lib/qt/examples/src/pref
@dirrm lib/qt/examples/src/progress
@dirrm lib/qt/examples/src/qdir
@dirrm lib/qt/examples/src/qmag
@dirrm lib/qt/examples/src/qwerty
@dirrm lib/qt/examples/src/scrollview
@dirrm lib/qt/examples/src/showimg
@dirrm lib/qt/examples/src/splitter
@dirrm lib/qt/examples/src/table
@dirrm lib/qt/examples/src/tetrix
@dirrm lib/qt/examples/src/tictac
@dirrm lib/qt/examples/src/timestmp
@dirrm lib/qt/examples/src/tooltip
@dirrm lib/qt/examples/src/validator
@dirrm lib/qt/examples/src/widgets
@dirrm lib/qt/examples/src/xform
@dirrm lib/qt/examples/src
@dirrm lib/qt/examples
@dirrm lib/qt/tutorial/bin
@dirrm lib/qt/tutorial/src/t1
@dirrm lib/qt/tutorial/src/t2
@dirrm lib/qt/tutorial/src/t3
@dirrm lib/qt/tutorial/src/t4
@dirrm lib/qt/tutorial/src/t5
@dirrm lib/qt/tutorial/src/t6
@dirrm lib/qt/tutorial/src/t7
@dirrm lib/qt/tutorial/src/t8
@dirrm lib/qt/tutorial/src/t9
@dirrm lib/qt/tutorial/src/t10
@dirrm lib/qt/tutorial/src/t11
@dirrm lib/qt/tutorial/src/t12
@dirrm lib/qt/tutorial/src/t13
@dirrm lib/qt/tutorial/src/t14
@dirrm lib/qt/tutorial/src
@dirrm lib/qt/tutorial

710
x11/qt/pkg/PLIST-html Normal file
View File

@ -0,0 +1,710 @@
@comment $OpenBSD: PLIST-html,v 1.1 2000/06/23 09:45:15 brad Exp $
share/doc/qt/html/abstractwidgets.html
share/doc/qt/html/aclock-aclock-cpp.html
share/doc/qt/html/annotated.html
share/doc/qt/html/application-application-cpp.html
share/doc/qt/html/application.html
share/doc/qt/html/bearings.gif
share/doc/qt/html/biff-biff-cpp.html
share/doc/qt/html/book.gif
share/doc/qt/html/classes.html
share/doc/qt/html/collection.html
share/doc/qt/html/connect-connect-cpp.html
share/doc/qt/html/coordsys.gif
share/doc/qt/html/coordsys.html
share/doc/qt/html/credits.html
share/doc/qt/html/cursor-cursor-cpp.html
share/doc/qt/html/dclock-dclock-cpp.html
share/doc/qt/html/debug.html
share/doc/qt/html/design.html
share/doc/qt/html/desktop-desktop-cpp.html
share/doc/qt/html/dialogs.html
share/doc/qt/html/dirview-dirview-cpp.html
share/doc/qt/html/dochead.gif
share/doc/qt/html/dochead.jpg
share/doc/qt/html/drawdemo-drawdemo-cpp.html
share/doc/qt/html/drawing.html
share/doc/qt/html/easteregg.html
share/doc/qt/html/easteregg2.html
share/doc/qt/html/examples.html
share/doc/qt/html/fontmatch.html
share/doc/qt/html/fonts.html
share/doc/qt/html/forever-forever-cpp.html
share/doc/qt/html/frames.gif
share/doc/qt/html/functions.html
share/doc/qt/html/geomanagement.html
share/doc/qt/html/graph.g1n
share/doc/qt/html/grapher-grapher-cpp.html
share/doc/qt/html/gridlayout.gif
share/doc/qt/html/guibooks.html
share/doc/qt/html/headers.html
share/doc/qt/html/hello-hello-cpp.html
share/doc/qt/html/hierarchy.html
share/doc/qt/html/imageio.html
share/doc/qt/html/images.html
share/doc/qt/html/index.html
share/doc/qt/html/io.html
share/doc/qt/html/kernel.html
share/doc/qt/html/layout-layout-cpp.html
share/doc/qt/html/letter.gif
share/doc/qt/html/license.html
share/doc/qt/html/life-life-cpp.html
share/doc/qt/html/listview.gif
share/doc/qt/html/mailinglists.html
share/doc/qt/html/mainlyMotif-editor-cpp.html
share/doc/qt/html/mainlyQt-editor-cpp.html
share/doc/qt/html/mainlyXt-editor-cpp.html
share/doc/qt/html/menu-menu-cpp.html
share/doc/qt/html/metaobjects.html
share/doc/qt/html/misc.html
share/doc/qt/html/moc.html
share/doc/qt/html/movies-main-cpp.html
share/doc/qt/html/nsplugin.html
share/doc/qt/html/picture-picture-cpp.html
share/doc/qt/html/pictures.html
share/doc/qt/html/pnglogo.png
share/doc/qt/html/pref-pref-cpp.html
share/doc/qt/html/primes.html
share/doc/qt/html/printerdialog.gif
share/doc/qt/html/progress-progress-cpp.html
share/doc/qt/html/qaccel-h.html
share/doc/qt/html/qaccel-members.html
share/doc/qt/html/qaccel.html
share/doc/qt/html/qapplication-h.html
share/doc/qt/html/qapplication-members.html
share/doc/qt/html/qapplication.html
share/doc/qt/html/qarray-h.html
share/doc/qt/html/qarray-members.html
share/doc/qt/html/qarray.html
share/doc/qt/html/qasyncimageio-h.html
share/doc/qt/html/qasyncio-h.html
share/doc/qt/html/qasyncio-members.html
share/doc/qt/html/qasyncio.html
share/doc/qt/html/qbitarray-h.html
share/doc/qt/html/qbitarray-members.html
share/doc/qt/html/qbitarray.html
share/doc/qt/html/qbitmap-h.html
share/doc/qt/html/qbitmap-members.html
share/doc/qt/html/qbitmap.html
share/doc/qt/html/qbitval-members.html
share/doc/qt/html/qbitval.html
share/doc/qt/html/qboxlayout-members.html
share/doc/qt/html/qboxlayout.html
share/doc/qt/html/qbrush-h.html
share/doc/qt/html/qbrush-members.html
share/doc/qt/html/qbrush.html
share/doc/qt/html/qbttngrp-m.gif
share/doc/qt/html/qbttngrp-w.gif
share/doc/qt/html/qbuffer-h.html
share/doc/qt/html/qbuffer-members.html
share/doc/qt/html/qbuffer.html
share/doc/qt/html/qbutton-h.html
share/doc/qt/html/qbutton-members.html
share/doc/qt/html/qbutton.html
share/doc/qt/html/qbuttongroup-h.html
share/doc/qt/html/qbuttongroup-members.html
share/doc/qt/html/qbuttongroup.html
share/doc/qt/html/qbytearray-members.html
share/doc/qt/html/qbytearray.html
share/doc/qt/html/qcache-h.html
share/doc/qt/html/qcache-members.html
share/doc/qt/html/qcache.html
share/doc/qt/html/qcacheiterator-members.html
share/doc/qt/html/qcacheiterator.html
share/doc/qt/html/qcheckbox-h.html
share/doc/qt/html/qcheckbox-m.gif
share/doc/qt/html/qcheckbox-members.html
share/doc/qt/html/qcheckbox-w.gif
share/doc/qt/html/qcheckbox.html
share/doc/qt/html/qchecklistitem-members.html
share/doc/qt/html/qchecklistitem.html
share/doc/qt/html/qchildevent-members.html
share/doc/qt/html/qchildevent.html
share/doc/qt/html/qchkbox-m.gif
share/doc/qt/html/qchkbox-w.gif
share/doc/qt/html/qclipboard-h.html
share/doc/qt/html/qclipboard-members.html
share/doc/qt/html/qclipboard.html
share/doc/qt/html/qcloseevent-members.html
share/doc/qt/html/qcloseevent.html
share/doc/qt/html/qcollection-h.html
share/doc/qt/html/qcollection-members.html
share/doc/qt/html/qcollection.html
share/doc/qt/html/qcolor-h.html
share/doc/qt/html/qcolor-members.html
share/doc/qt/html/qcolor.html
share/doc/qt/html/qcolorgroup-members.html
share/doc/qt/html/qcolorgroup.html
share/doc/qt/html/qcombo1-m.gif
share/doc/qt/html/qcombo1-w.gif
share/doc/qt/html/qcombo2-m.gif
share/doc/qt/html/qcombo2-w.gif
share/doc/qt/html/qcombo3-m.gif
share/doc/qt/html/qcombo3-w.gif
share/doc/qt/html/qcombobox-h.html
share/doc/qt/html/qcombobox-members.html
share/doc/qt/html/qcombobox.html
share/doc/qt/html/qconnection-h.html
share/doc/qt/html/qconnection-members.html
share/doc/qt/html/qconnection.html
share/doc/qt/html/qcursor-h.html
share/doc/qt/html/qcursor-members.html
share/doc/qt/html/qcursor.html
share/doc/qt/html/qcustomevent-members.html
share/doc/qt/html/qcustomevent.html
share/doc/qt/html/qdatapump-members.html
share/doc/qt/html/qdatapump.html
share/doc/qt/html/qdatasink-members.html
share/doc/qt/html/qdatasink.html
share/doc/qt/html/qdatasource-members.html
share/doc/qt/html/qdatasource.html
share/doc/qt/html/qdatastream-h.html
share/doc/qt/html/qdatastream-members.html
share/doc/qt/html/qdatastream.html
share/doc/qt/html/qdate-members.html
share/doc/qt/html/qdate.html
share/doc/qt/html/qdatetime-h.html
share/doc/qt/html/qdatetime-members.html
share/doc/qt/html/qdatetime.html
share/doc/qt/html/qdialog-h.html
share/doc/qt/html/qdialog-members.html
share/doc/qt/html/qdialog.html
share/doc/qt/html/qdict-h.html
share/doc/qt/html/qdict-members.html
share/doc/qt/html/qdict.html
share/doc/qt/html/qdictiterator-members.html
share/doc/qt/html/qdictiterator.html
share/doc/qt/html/qdir-h.html
share/doc/qt/html/qdir-members.html
share/doc/qt/html/qdir.html
share/doc/qt/html/qdoublevalidator-members.html
share/doc/qt/html/qdoublevalidator.html
share/doc/qt/html/qdragmoveevent-members.html
share/doc/qt/html/qdragmoveevent.html
share/doc/qt/html/qdragobject-h.html
share/doc/qt/html/qdragobject-members.html
share/doc/qt/html/qdragobject.html
share/doc/qt/html/qdrawutil-h.html
share/doc/qt/html/qdropevent-members.html
share/doc/qt/html/qdropevent.html
share/doc/qt/html/qevent-h.html
share/doc/qt/html/qevent-members.html
share/doc/qt/html/qevent.html
share/doc/qt/html/qfile-h.html
share/doc/qt/html/qfile-members.html
share/doc/qt/html/qfile.html
share/doc/qt/html/qfiledialog-h.html
share/doc/qt/html/qfiledialog-members.html
share/doc/qt/html/qfiledialog.html
share/doc/qt/html/qfiledlg-m.gif
share/doc/qt/html/qfiledlg-w.gif
share/doc/qt/html/qfileiconprovider-members.html
share/doc/qt/html/qfileiconprovider.html
share/doc/qt/html/qfileinfo-h.html
share/doc/qt/html/qfileinfo-members.html
share/doc/qt/html/qfileinfo.html
share/doc/qt/html/qfocusdata-h.html
share/doc/qt/html/qfocusdata-members.html
share/doc/qt/html/qfocusdata.html
share/doc/qt/html/qfocusevent-members.html
share/doc/qt/html/qfocusevent.html
share/doc/qt/html/qfont-h.html
share/doc/qt/html/qfont-members.html
share/doc/qt/html/qfont.html
share/doc/qt/html/qfontinfo-h.html
share/doc/qt/html/qfontinfo-members.html
share/doc/qt/html/qfontinfo.html
share/doc/qt/html/qfontmetrics-h.html
share/doc/qt/html/qfontmetrics-members.html
share/doc/qt/html/qfontmetrics.html
share/doc/qt/html/qframe-h.html
share/doc/qt/html/qframe-members.html
share/doc/qt/html/qframe.html
share/doc/qt/html/qgarray-h.html
share/doc/qt/html/qgarray-members.html
share/doc/qt/html/qgarray.html
share/doc/qt/html/qgcache-h.html
share/doc/qt/html/qgcache-members.html
share/doc/qt/html/qgcache.html
share/doc/qt/html/qgcacheiterator-members.html
share/doc/qt/html/qgcacheiterator.html
share/doc/qt/html/qgdict-h.html
share/doc/qt/html/qgdict-members.html
share/doc/qt/html/qgdict.html
share/doc/qt/html/qgdictiterator-members.html
share/doc/qt/html/qgdictiterator.html
share/doc/qt/html/qgl-h.html
share/doc/qt/html/qgl.html
share/doc/qt/html/qglcontext-members.html
share/doc/qt/html/qglcontext.html
share/doc/qt/html/qglformat-members.html
share/doc/qt/html/qglformat.html
share/doc/qt/html/qglist-h.html
share/doc/qt/html/qglist-members.html
share/doc/qt/html/qglist.html
share/doc/qt/html/qglistiterator-members.html
share/doc/qt/html/qglistiterator.html
share/doc/qt/html/qglobal-h.html
share/doc/qt/html/qglwidget-members.html
share/doc/qt/html/qglwidget.html
share/doc/qt/html/qgmanager-h.html
share/doc/qt/html/qgmanager-members.html
share/doc/qt/html/qgmanager.html
share/doc/qt/html/qgridlayout-members.html
share/doc/qt/html/qgridlayout.html
share/doc/qt/html/qgroupbox-h.html
share/doc/qt/html/qgroupbox-members.html
share/doc/qt/html/qgroupbox.html
share/doc/qt/html/qgrpbox-m.gif
share/doc/qt/html/qgrpbox-w.gif
share/doc/qt/html/qhboxlayout-members.html
share/doc/qt/html/qhboxlayout.html
share/doc/qt/html/qheader-h.html
share/doc/qt/html/qheader-m.gif
share/doc/qt/html/qheader-members.html
share/doc/qt/html/qheader-w.gif
share/doc/qt/html/qheader.html
share/doc/qt/html/qiconset-h.html
share/doc/qt/html/qiconset-members.html
share/doc/qt/html/qiconset.html
share/doc/qt/html/qimage-h.html
share/doc/qt/html/qimage-members.html
share/doc/qt/html/qimage.html
share/doc/qt/html/qimageconsumer-members.html
share/doc/qt/html/qimageconsumer.html
share/doc/qt/html/qimagedecoder-members.html
share/doc/qt/html/qimagedecoder.html
share/doc/qt/html/qimagedrag-members.html
share/doc/qt/html/qimagedrag.html
share/doc/qt/html/qimageformat-members.html
share/doc/qt/html/qimageformat.html
share/doc/qt/html/qimageformattype-members.html
share/doc/qt/html/qimageformattype.html
share/doc/qt/html/qimageio-members.html
share/doc/qt/html/qimageio.html
share/doc/qt/html/qintcache-h.html
share/doc/qt/html/qintcache-members.html
share/doc/qt/html/qintcache.html
share/doc/qt/html/qintcacheiterator-members.html
share/doc/qt/html/qintcacheiterator.html
share/doc/qt/html/qintdict-h.html
share/doc/qt/html/qintdict-members.html
share/doc/qt/html/qintdict.html
share/doc/qt/html/qintdictiterator-members.html
share/doc/qt/html/qintdictiterator.html
share/doc/qt/html/qintvalidator-members.html
share/doc/qt/html/qintvalidator.html
share/doc/qt/html/qiodevice-h.html
share/doc/qt/html/qiodevice-members.html
share/doc/qt/html/qiodevice.html
share/doc/qt/html/qiodevicesource-members.html
share/doc/qt/html/qiodevicesource.html
share/doc/qt/html/qkeycode-h.html
share/doc/qt/html/qkeyevent-members.html
share/doc/qt/html/qkeyevent.html
share/doc/qt/html/qlabel-h.html
share/doc/qt/html/qlabel-m.gif
share/doc/qt/html/qlabel-members.html
share/doc/qt/html/qlabel-w.gif
share/doc/qt/html/qlabel.html
share/doc/qt/html/qlayout-h.html
share/doc/qt/html/qlayout-members.html
share/doc/qt/html/qlayout.html
share/doc/qt/html/qlcdnum-m.gif
share/doc/qt/html/qlcdnum-w.gif
share/doc/qt/html/qlcdnumber-h.html
share/doc/qt/html/qlcdnumber-members.html
share/doc/qt/html/qlcdnumber.html
share/doc/qt/html/qlined-m.gif
share/doc/qt/html/qlined-w.gif
share/doc/qt/html/qlineedit-h.html
share/doc/qt/html/qlineedit-members.html
share/doc/qt/html/qlineedit.html
share/doc/qt/html/qlist-h.html
share/doc/qt/html/qlist-members.html
share/doc/qt/html/qlist.html
share/doc/qt/html/qlistbox-h.html
share/doc/qt/html/qlistbox-m.gif
share/doc/qt/html/qlistbox-members.html
share/doc/qt/html/qlistbox-w.gif
share/doc/qt/html/qlistbox.html
share/doc/qt/html/qlistboxitem-members.html
share/doc/qt/html/qlistboxitem.html
share/doc/qt/html/qlistboxpixmap-members.html
share/doc/qt/html/qlistboxpixmap.html
share/doc/qt/html/qlistboxtext-members.html
share/doc/qt/html/qlistboxtext.html
share/doc/qt/html/qlistiterator-members.html
share/doc/qt/html/qlistiterator.html
share/doc/qt/html/qlistview-h.html
share/doc/qt/html/qlistview-members.html
share/doc/qt/html/qlistview.html
share/doc/qt/html/qlistviewitem-members.html
share/doc/qt/html/qlistviewitem.html
share/doc/qt/html/qlnode-members.html
share/doc/qt/html/qlnode.html
share/doc/qt/html/qmag-qmag-cpp.html
share/doc/qt/html/qmainwindow-h.html
share/doc/qt/html/qmainwindow-m.gif
share/doc/qt/html/qmainwindow-members.html
share/doc/qt/html/qmainwindow-w.gif
share/doc/qt/html/qmainwindow.html
share/doc/qt/html/qmenubar-h.html
share/doc/qt/html/qmenubar-m.gif
share/doc/qt/html/qmenubar-members.html
share/doc/qt/html/qmenubar-w.gif
share/doc/qt/html/qmenubar.html
share/doc/qt/html/qmenudata-h.html
share/doc/qt/html/qmenudata-members.html
share/doc/qt/html/qmenudata.html
share/doc/qt/html/qmessagebox-h.html
share/doc/qt/html/qmessagebox-members.html
share/doc/qt/html/qmessagebox.html
share/doc/qt/html/qmlined-m.gif
share/doc/qt/html/qmlined-w.gif
share/doc/qt/html/qmouseevent-members.html
share/doc/qt/html/qmouseevent.html
share/doc/qt/html/qmoveevent-members.html
share/doc/qt/html/qmoveevent.html
share/doc/qt/html/qmovie-h.html
share/doc/qt/html/qmovie-members.html
share/doc/qt/html/qmovie.gif
share/doc/qt/html/qmovie.html
share/doc/qt/html/qmsgbox-m.gif
share/doc/qt/html/qmsgbox-w.gif
share/doc/qt/html/qmultilinedit-h.html
share/doc/qt/html/qmultilineedit-members.html
share/doc/qt/html/qmultilineedit.html
share/doc/qt/html/qnp-h.html
share/doc/qt/html/qnpinstance-members.html
share/doc/qt/html/qnpinstance.html
share/doc/qt/html/qnplugin-members.html
share/doc/qt/html/qnplugin.html
share/doc/qt/html/qnpstream-members.html
share/doc/qt/html/qnpstream.html
share/doc/qt/html/qnpwidget-members.html
share/doc/qt/html/qnpwidget.html
share/doc/qt/html/qobject-h.html
share/doc/qt/html/qobject-members.html
share/doc/qt/html/qobject.html
share/doc/qt/html/qpaintdevice-h.html
share/doc/qt/html/qpaintdevice-members.html
share/doc/qt/html/qpaintdevice.html
share/doc/qt/html/qpaintdevicemetrics-h.html
share/doc/qt/html/qpaintdevicemetrics-members.html
share/doc/qt/html/qpaintdevicemetrics.html
share/doc/qt/html/qpainter-h.html
share/doc/qt/html/qpainter-members.html
share/doc/qt/html/qpainter.html
share/doc/qt/html/qpaintevent-members.html
share/doc/qt/html/qpaintevent.html
share/doc/qt/html/qpalette-h.html
share/doc/qt/html/qpalette-members.html
share/doc/qt/html/qpalette.html
share/doc/qt/html/qpen-h.html
share/doc/qt/html/qpen-members.html
share/doc/qt/html/qpen.html
share/doc/qt/html/qpicture-h.html
share/doc/qt/html/qpicture-members.html
share/doc/qt/html/qpicture.html
share/doc/qt/html/qpixmap-h.html
share/doc/qt/html/qpixmap-members.html
share/doc/qt/html/qpixmap.html
share/doc/qt/html/qpixmapcache-h.html
share/doc/qt/html/qpixmapcache-members.html
share/doc/qt/html/qpixmapcache.html
share/doc/qt/html/qpoint-h.html
share/doc/qt/html/qpoint-members.html
share/doc/qt/html/qpoint.html
share/doc/qt/html/qpointarray-h.html
share/doc/qt/html/qpointarray-members.html
share/doc/qt/html/qpointarray.html
share/doc/qt/html/qpointval-members.html
share/doc/qt/html/qpointval.html
share/doc/qt/html/qpopmenu-m.gif
share/doc/qt/html/qpopmenu-w.gif
share/doc/qt/html/qpopupmenu-h.html
share/doc/qt/html/qpopupmenu-members.html
share/doc/qt/html/qpopupmenu.html
share/doc/qt/html/qprintdialog-h.html
share/doc/qt/html/qprintdialog-members.html
share/doc/qt/html/qprintdialog.html
share/doc/qt/html/qprinter-h.html
share/doc/qt/html/qprinter-members.html
share/doc/qt/html/qprinter.html
share/doc/qt/html/qprogbar-m.gif
share/doc/qt/html/qprogbar-w.gif
share/doc/qt/html/qprogdlg-m.gif
share/doc/qt/html/qprogdlg-w.gif
share/doc/qt/html/qprogressbar-h.html
share/doc/qt/html/qprogressbar-members.html
share/doc/qt/html/qprogressbar.html
share/doc/qt/html/qprogressdialog-h.html
share/doc/qt/html/qprogressdialog-members.html
share/doc/qt/html/qprogressdialog.html
share/doc/qt/html/qptrdict-h.html
share/doc/qt/html/qptrdict-members.html
share/doc/qt/html/qptrdict.html
share/doc/qt/html/qptrdictiterator-members.html
share/doc/qt/html/qptrdictiterator.html
share/doc/qt/html/qpushbt-m.gif
share/doc/qt/html/qpushbt-w.gif
share/doc/qt/html/qpushbutton-h.html
share/doc/qt/html/qpushbutton-members.html
share/doc/qt/html/qpushbutton.html
share/doc/qt/html/qqueue-h.html
share/doc/qt/html/qqueue-members.html
share/doc/qt/html/qqueue.html
share/doc/qt/html/qradiobt-m.gif
share/doc/qt/html/qradiobt-w.gif
share/doc/qt/html/qradiobutton-h.html
share/doc/qt/html/qradiobutton-members.html
share/doc/qt/html/qradiobutton.html
share/doc/qt/html/qrangecontrol-h.html
share/doc/qt/html/qrangecontrol-members.html
share/doc/qt/html/qrangecontrol.html
share/doc/qt/html/qrect-h.html
share/doc/qt/html/qrect-members.html
share/doc/qt/html/qrect.html
share/doc/qt/html/qregexp-h.html
share/doc/qt/html/qregexp-members.html
share/doc/qt/html/qregexp.html
share/doc/qt/html/qregion-h.html
share/doc/qt/html/qregion-members.html
share/doc/qt/html/qregion.html
share/doc/qt/html/qresizeevent-members.html
share/doc/qt/html/qresizeevent.html
share/doc/qt/html/qscrbar-m.gif
share/doc/qt/html/qscrbar-w.gif
share/doc/qt/html/qscrollbar-h.html
share/doc/qt/html/qscrollbar-members.html
share/doc/qt/html/qscrollbar.html
share/doc/qt/html/qscrollview-h.html
share/doc/qt/html/qscrollview-m.gif
share/doc/qt/html/qscrollview-members.html
share/doc/qt/html/qscrollview-w.gif
share/doc/qt/html/qscrollview.html
share/doc/qt/html/qsemimodal-h.html
share/doc/qt/html/qsemimodal-members.html
share/doc/qt/html/qsemimodal.html
share/doc/qt/html/qsenderobject-members.html
share/doc/qt/html/qshared-h.html
share/doc/qt/html/qshared-members.html
share/doc/qt/html/qshared.html
share/doc/qt/html/qsignal-h.html
share/doc/qt/html/qsignal-members.html
share/doc/qt/html/qsignal.html
share/doc/qt/html/qsignalmapper-h.html
share/doc/qt/html/qsignalmapper-members.html
share/doc/qt/html/qsignalmapper.html
share/doc/qt/html/qsize-h.html
share/doc/qt/html/qsize-members.html
share/doc/qt/html/qsize.html
share/doc/qt/html/qslider-h.html
share/doc/qt/html/qslider-m.gif
share/doc/qt/html/qslider-members.html
share/doc/qt/html/qslider-w.gif
share/doc/qt/html/qslider.html
share/doc/qt/html/qsocketnotifier-h.html
share/doc/qt/html/qsocketnotifier-members.html
share/doc/qt/html/qsocketnotifier.html
share/doc/qt/html/qspinbox-h.html
share/doc/qt/html/qspinbox-m.gif
share/doc/qt/html/qspinbox-members.html
share/doc/qt/html/qspinbox-w.gif
share/doc/qt/html/qspinbox.html
share/doc/qt/html/qsplitter-h.html
share/doc/qt/html/qsplitter-m.gif
share/doc/qt/html/qsplitter-members.html
share/doc/qt/html/qsplitter-w.gif
share/doc/qt/html/qsplitter.html
share/doc/qt/html/qstack-h.html
share/doc/qt/html/qstack-members.html
share/doc/qt/html/qstack.html
share/doc/qt/html/qstatusbar-h.html
share/doc/qt/html/qstatusbar-m.gif
share/doc/qt/html/qstatusbar-members.html
share/doc/qt/html/qstatusbar-w.gif
share/doc/qt/html/qstatusbar.html
share/doc/qt/html/qstoreddrag-members.html
share/doc/qt/html/qstoreddrag.html
share/doc/qt/html/qstrilist-members.html
share/doc/qt/html/qstrilist.html
share/doc/qt/html/qstring-h.html
share/doc/qt/html/qstring-members.html
share/doc/qt/html/qstring.html
share/doc/qt/html/qstrlist-h.html
share/doc/qt/html/qstrlist-members.html
share/doc/qt/html/qstrlist.html
share/doc/qt/html/qtabbar-h.html
share/doc/qt/html/qtabbar-m.gif
share/doc/qt/html/qtabbar-members.html
share/doc/qt/html/qtabbar-w.gif
share/doc/qt/html/qtabbar.html
share/doc/qt/html/qtabdialog-h.html
share/doc/qt/html/qtabdialog-members.html
share/doc/qt/html/qtabdialog.html
share/doc/qt/html/qtabdlg-m.gif
share/doc/qt/html/qtabdlg-w.gif
share/doc/qt/html/qtableview-h.html
share/doc/qt/html/qtableview-members.html
share/doc/qt/html/qtableview.html
share/doc/qt/html/qtablevw-m.gif
share/doc/qt/html/qtablevw-w.gif
share/doc/qt/html/qtextdrag-members.html
share/doc/qt/html/qtextdrag.html
share/doc/qt/html/qtextstream-h.html
share/doc/qt/html/qtextstream-members.html
share/doc/qt/html/qtextstream.html
share/doc/qt/html/qtimage-qtimage-cpp.html
share/doc/qt/html/qtime-members.html
share/doc/qt/html/qtime.html
share/doc/qt/html/qtimer-h.html
share/doc/qt/html/qtimer-members.html
share/doc/qt/html/qtimer.html
share/doc/qt/html/qtimerevent-members.html
share/doc/qt/html/qtimerevent.html
share/doc/qt/html/qtlogo.jpg
share/doc/qt/html/qtoolbar-h.html
share/doc/qt/html/qtoolbar-members.html
share/doc/qt/html/qtoolbar.html
share/doc/qt/html/qtoolbutton-h.html
share/doc/qt/html/qtoolbutton-members.html
share/doc/qt/html/qtoolbutton.html
share/doc/qt/html/qtooltip-h.html
share/doc/qt/html/qtooltip-members.html
share/doc/qt/html/qtooltip.html
share/doc/qt/html/qtooltipgroup-members.html
share/doc/qt/html/qtooltipgroup.html
share/doc/qt/html/qurldrag-members.html
share/doc/qt/html/qurldrag.html
share/doc/qt/html/qvalidator-h.html
share/doc/qt/html/qvalidator-members.html
share/doc/qt/html/qvalidator.html
share/doc/qt/html/qvboxlayout-members.html
share/doc/qt/html/qvboxlayout.html
share/doc/qt/html/qwhatsthis-h.html
share/doc/qt/html/qwhatsthis-members.html
share/doc/qt/html/qwhatsthis.html
share/doc/qt/html/qwidget-h.html
share/doc/qt/html/qwidget-members.html
share/doc/qt/html/qwidget.html
share/doc/qt/html/qwidgetstack-h.html
share/doc/qt/html/qwidgetstack-members.html
share/doc/qt/html/qwidgetstack.html
share/doc/qt/html/qwindow-h.html
share/doc/qt/html/qwindow-members.html
share/doc/qt/html/qwindow.html
share/doc/qt/html/qwindowdefs-h.html
share/doc/qt/html/qwmatrix-h.html
share/doc/qt/html/qwmatrix-members.html
share/doc/qt/html/qwmatrix.html
share/doc/qt/html/qxt-h.html
share/doc/qt/html/qxtapplication-members.html
share/doc/qt/html/qxtapplication.html
share/doc/qt/html/qxtwidget-members.html
share/doc/qt/html/qxtwidget.html
share/doc/qt/html/realwidgets.html
share/doc/qt/html/shared.html
share/doc/qt/html/shclass.html
share/doc/qt/html/showimg-showimg-cpp.html
share/doc/qt/html/t1.gif
share/doc/qt/html/t1.html
share/doc/qt/html/t2.gif
share/doc/qt/html/t2.html
share/doc/qt/html/t3.gif
share/doc/qt/html/t3.html
share/doc/qt/html/t4.gif
share/doc/qt/html/t4.html
share/doc/qt/html/t5.gif
share/doc/qt/html/t5.html
share/doc/qt/html/t6.gif
share/doc/qt/html/t6.html
share/doc/qt/html/t7-lcdrange-cpp.html
share/doc/qt/html/t7-lcdrange-h.html
share/doc/qt/html/t7-main-cpp.html
share/doc/qt/html/t7-makefile.html
share/doc/qt/html/t7.gif
share/doc/qt/html/t7.html
share/doc/qt/html/t8-cannon-cpp.html
share/doc/qt/html/t8-cannon-h.html
share/doc/qt/html/t8-lcdrange-cpp.html
share/doc/qt/html/t8-lcdrange-h.html
share/doc/qt/html/t8-main-cpp.html
share/doc/qt/html/t8-makefile.html
share/doc/qt/html/t8.gif
share/doc/qt/html/t8.html
share/doc/qt/html/t9-cannon-cpp.html
share/doc/qt/html/t9-cannon-h.html
share/doc/qt/html/t9-lcdrange-cpp.html
share/doc/qt/html/t9-lcdrange-h.html
share/doc/qt/html/t9-main-cpp.html
share/doc/qt/html/t9-makefile.html
share/doc/qt/html/t9.gif
share/doc/qt/html/t9.html
share/doc/qt/html/t9_1.gif
share/doc/qt/html/t9_2.gif
share/doc/qt/html/t10-cannon-cpp.html
share/doc/qt/html/t10-cannon-h.html
share/doc/qt/html/t10-lcdrange-cpp.html
share/doc/qt/html/t10-lcdrange-h.html
share/doc/qt/html/t10-main-cpp.html
share/doc/qt/html/t10-makefile.html
share/doc/qt/html/t10.gif
share/doc/qt/html/t10.html
share/doc/qt/html/t11-cannon-cpp.html
share/doc/qt/html/t11-cannon-h.html
share/doc/qt/html/t11-lcdrange-cpp.html
share/doc/qt/html/t11-lcdrange-h.html
share/doc/qt/html/t11-main-cpp.html
share/doc/qt/html/t11-makefile.html
share/doc/qt/html/t11.gif
share/doc/qt/html/t11.html
share/doc/qt/html/t12-cannon-cpp.html
share/doc/qt/html/t12-cannon-h.html
share/doc/qt/html/t12-lcdrange-cpp.html
share/doc/qt/html/t12-lcdrange-h.html
share/doc/qt/html/t12-main-cpp.html
share/doc/qt/html/t12-makefile.html
share/doc/qt/html/t12.gif
share/doc/qt/html/t12.html
share/doc/qt/html/t13-cannon-cpp.html
share/doc/qt/html/t13-cannon-h.html
share/doc/qt/html/t13-gamebrd-cpp.html
share/doc/qt/html/t13-gamebrd-h.html
share/doc/qt/html/t13-lcdrange-cpp.html
share/doc/qt/html/t13-lcdrange-h.html
share/doc/qt/html/t13-main-cpp.html
share/doc/qt/html/t13-makefile.html
share/doc/qt/html/t13.gif
share/doc/qt/html/t13.html
share/doc/qt/html/t14-cannon-cpp.html
share/doc/qt/html/t14-cannon-h.html
share/doc/qt/html/t14-gamebrd-cpp.html
share/doc/qt/html/t14-gamebrd-h.html
share/doc/qt/html/t14-lcdrange-cpp.html
share/doc/qt/html/t14-lcdrange-h.html
share/doc/qt/html/t14-main-cpp.html
share/doc/qt/html/t14-makefile.html
share/doc/qt/html/t14.gif
share/doc/qt/html/t14.html
share/doc/qt/html/table-table-cpp.html
share/doc/qt/html/test.png
share/doc/qt/html/tictac-tictac-cpp.html
share/doc/qt/html/time.html
share/doc/qt/html/tools.html
share/doc/qt/html/tooltip-tooltip-cpp.html
share/doc/qt/html/topicals.html
share/doc/qt/html/trademarks.html
share/doc/qt/html/treeview.gif
share/doc/qt/html/trivial-trivial-cpp.html
share/doc/qt/html/troll.html
share/doc/qt/html/ttlogo-small.jpg
share/doc/qt/html/tutorial.gif
share/doc/qt/html/tutorial.html
share/doc/qt/html/whatsthis.gif
share/doc/qt/html/widgets-widgets-cpp.html
share/doc/qt/html/xform-xform-cpp.html
share/doc/qt/html/xt.html
share/doc/qt/html/y2k.html
@dirrm share/doc/qt/html

708
x11/qt/pkg/blah Normal file
View File

@ -0,0 +1,708 @@
share/doc/qt/html/abstractwidgets.html
share/doc/qt/html/xt.html
share/doc/qt/html/xform-xform-cpp.html
share/doc/qt/html/widgets-widgets-cpp.html
share/doc/qt/html/whatsthis.gif
share/doc/qt/html/tutorial.html
share/doc/qt/html/tutorial.gif
share/doc/qt/html/ttlogo-small.jpg
share/doc/qt/html/troll.html
share/doc/qt/html/trivial-trivial-cpp.html
share/doc/qt/html/treeview.gif
share/doc/qt/html/trademarks.html
share/doc/qt/html/topicals.html
share/doc/qt/html/tooltip-tooltip-cpp.html
share/doc/qt/html/tools.html
share/doc/qt/html/time.html
share/doc/qt/html/tictac-tictac-cpp.html
share/doc/qt/html/test.png
share/doc/qt/html/t9.html
share/doc/qt/html/table-table-cpp.html
share/doc/qt/html/t9_2.gif
share/doc/qt/html/t9_1.gif
share/doc/qt/html/t9.gif
share/doc/qt/html/t9-makefile.html
share/doc/qt/html/t9-main-cpp.html
share/doc/qt/html/t9-lcdrange-h.html
share/doc/qt/html/t9-lcdrange-cpp.html
share/doc/qt/html/t9-cannon-h.html
share/doc/qt/html/t9-cannon-cpp.html
share/doc/qt/html/t8.html
share/doc/qt/html/t8.gif
share/doc/qt/html/t8-makefile.html
share/doc/qt/html/t8-main-cpp.html
share/doc/qt/html/t8-lcdrange-h.html
share/doc/qt/html/t8-lcdrange-cpp.html
share/doc/qt/html/t8-cannon-h.html
share/doc/qt/html/t8-cannon-cpp.html
share/doc/qt/html/t7.html
share/doc/qt/html/t7.gif
share/doc/qt/html/t6.html
share/doc/qt/html/t7-makefile.html
share/doc/qt/html/t7-main-cpp.html
share/doc/qt/html/t7-lcdrange-h.html
share/doc/qt/html/t7-lcdrange-cpp.html
share/doc/qt/html/t6.gif
share/doc/qt/html/t5.html
share/doc/qt/html/t5.gif
share/doc/qt/html/t4.html
share/doc/qt/html/t4.gif
share/doc/qt/html/t3.html
share/doc/qt/html/t3.gif
share/doc/qt/html/t2.html
share/doc/qt/html/t2.gif
share/doc/qt/html/t14.html
share/doc/qt/html/t14.gif
share/doc/qt/html/t14-makefile.html
share/doc/qt/html/t14-main-cpp.html
share/doc/qt/html/t14-lcdrange-h.html
share/doc/qt/html/t14-lcdrange-cpp.html
share/doc/qt/html/t14-gamebrd-h.html
share/doc/qt/html/t14-gamebrd-cpp.html
share/doc/qt/html/t14-cannon-h.html
share/doc/qt/html/t14-cannon-cpp.html
share/doc/qt/html/t13.html
share/doc/qt/html/t13.gif
share/doc/qt/html/t13-makefile.html
share/doc/qt/html/t13-main-cpp.html
share/doc/qt/html/t13-lcdrange-h.html
share/doc/qt/html/t13-lcdrange-cpp.html
share/doc/qt/html/t13-gamebrd-h.html
share/doc/qt/html/t13-gamebrd-cpp.html
share/doc/qt/html/t13-cannon-h.html
share/doc/qt/html/t13-cannon-cpp.html
share/doc/qt/html/t12.html
share/doc/qt/html/t12.gif
share/doc/qt/html/t12-makefile.html
share/doc/qt/html/t12-main-cpp.html
share/doc/qt/html/t12-lcdrange-h.html
share/doc/qt/html/t12-lcdrange-cpp.html
share/doc/qt/html/t12-cannon-h.html
share/doc/qt/html/t12-cannon-cpp.html
share/doc/qt/html/t11.html
share/doc/qt/html/t11.gif
share/doc/qt/html/t11-makefile.html
share/doc/qt/html/t11-main-cpp.html
share/doc/qt/html/t11-lcdrange-h.html
share/doc/qt/html/t11-lcdrange-cpp.html
share/doc/qt/html/t11-cannon-h.html
share/doc/qt/html/t11-cannon-cpp.html
share/doc/qt/html/t10.html
share/doc/qt/html/t10.gif
share/doc/qt/html/t10-makefile.html
share/doc/qt/html/t10-main-cpp.html
share/doc/qt/html/t10-lcdrange-h.html
share/doc/qt/html/t10-lcdrange-cpp.html
share/doc/qt/html/t10-cannon-h.html
share/doc/qt/html/t10-cannon-cpp.html
share/doc/qt/html/t1.html
share/doc/qt/html/t1.gif
share/doc/qt/html/showimg-showimg-cpp.html
share/doc/qt/html/shclass.html
share/doc/qt/html/shared.html
share/doc/qt/html/realwidgets.html
share/doc/qt/html/qxtwidget.html
share/doc/qt/html/qxtwidget-members.html
share/doc/qt/html/qxtapplication.html
share/doc/qt/html/qxtapplication-members.html
share/doc/qt/html/qxt-h.html
share/doc/qt/html/qwmatrix.html
share/doc/qt/html/qwmatrix-members.html
share/doc/qt/html/qwmatrix-h.html
share/doc/qt/html/qwindowdefs-h.html
share/doc/qt/html/qwindow.html
share/doc/qt/html/qwindow-members.html
share/doc/qt/html/qwindow-h.html
share/doc/qt/html/qwidgetstack.html
share/doc/qt/html/qwidgetstack-members.html
share/doc/qt/html/qwidgetstack-h.html
share/doc/qt/html/qwidget.html
share/doc/qt/html/qtlogo.jpg
share/doc/qt/html/qwidget-members.html
share/doc/qt/html/qwidget-h.html
share/doc/qt/html/qwhatsthis.html
share/doc/qt/html/qwhatsthis-members.html
share/doc/qt/html/qwhatsthis-h.html
share/doc/qt/html/qvboxlayout.html
share/doc/qt/html/qvboxlayout-members.html
share/doc/qt/html/qvalidator.html
share/doc/qt/html/qvalidator-members.html
share/doc/qt/html/qvalidator-h.html
share/doc/qt/html/qurldrag.html
share/doc/qt/html/qurldrag-members.html
share/doc/qt/html/qtooltipgroup.html
share/doc/qt/html/qtooltipgroup-members.html
share/doc/qt/html/qtooltip.html
share/doc/qt/html/qtooltip-members.html
share/doc/qt/html/qtooltip-h.html
share/doc/qt/html/qtoolbar.html
share/doc/qt/html/qtoolbutton.html
share/doc/qt/html/qtoolbutton-members.html
share/doc/qt/html/qtoolbutton-h.html
share/doc/qt/html/qtoolbar-members.html
share/doc/qt/html/qtoolbar-h.html
share/doc/qt/html/qtimerevent.html
share/doc/qt/html/qtimerevent-members.html
share/doc/qt/html/qtimer.html
share/doc/qt/html/qtimer-members.html
share/doc/qt/html/qtimer-h.html
share/doc/qt/html/qtime.html
share/doc/qt/html/qtime-members.html
share/doc/qt/html/qtimage-qtimage-cpp.html
share/doc/qt/html/qtextstream.html
share/doc/qt/html/qtextstream-members.html
share/doc/qt/html/qtextstream-h.html
share/doc/qt/html/qtextdrag.html
share/doc/qt/html/qtablevw-w.gif
share/doc/qt/html/qtextdrag-members.html
share/doc/qt/html/qtablevw-m.gif
share/doc/qt/html/qtableview.html
share/doc/qt/html/qtableview-members.html
share/doc/qt/html/qtableview-h.html
share/doc/qt/html/qtabdlg-w.gif
share/doc/qt/html/qtabdlg-m.gif
share/doc/qt/html/qtabdialog.html
share/doc/qt/html/qtabdialog-members.html
share/doc/qt/html/qtabdialog-h.html
share/doc/qt/html/qtabbar.html
share/doc/qt/html/qtabbar-w.gif
share/doc/qt/html/qtabbar-members.html
share/doc/qt/html/qtabbar-m.gif
share/doc/qt/html/qtabbar-h.html
share/doc/qt/html/qstrlist.html
share/doc/qt/html/qstrlist-members.html
share/doc/qt/html/qstrlist-h.html
share/doc/qt/html/qstring.html
share/doc/qt/html/qstring-members.html
share/doc/qt/html/qstring-h.html
share/doc/qt/html/qstrilist.html
share/doc/qt/html/qstrilist-members.html
share/doc/qt/html/qstoreddrag.html
share/doc/qt/html/qstoreddrag-members.html
share/doc/qt/html/qstatusbar.html
share/doc/qt/html/qstatusbar-w.gif
share/doc/qt/html/qstatusbar-members.html
share/doc/qt/html/qstatusbar-m.gif
share/doc/qt/html/qstatusbar-h.html
share/doc/qt/html/qstack.html
share/doc/qt/html/qstack-members.html
share/doc/qt/html/qstack-h.html
share/doc/qt/html/qsplitter.html
share/doc/qt/html/qsplitter-w.gif
share/doc/qt/html/qsplitter-members.html
share/doc/qt/html/qsplitter-m.gif
share/doc/qt/html/qsize.html
share/doc/qt/html/qsplitter-h.html
share/doc/qt/html/qspinbox.html
share/doc/qt/html/qspinbox-w.gif
share/doc/qt/html/qspinbox-members.html
share/doc/qt/html/qspinbox-m.gif
share/doc/qt/html/qspinbox-h.html
share/doc/qt/html/qsocketnotifier.html
share/doc/qt/html/qsocketnotifier-members.html
share/doc/qt/html/qsocketnotifier-h.html
share/doc/qt/html/qslider.html
share/doc/qt/html/qslider-w.gif
share/doc/qt/html/qslider-members.html
share/doc/qt/html/qslider-m.gif
share/doc/qt/html/qslider-h.html
share/doc/qt/html/qsize-members.html
share/doc/qt/html/qsize-h.html
share/doc/qt/html/qsignalmapper.html
share/doc/qt/html/qsignalmapper-members.html
share/doc/qt/html/qsignalmapper-h.html
share/doc/qt/html/qsignal.html
share/doc/qt/html/qsignal-members.html
share/doc/qt/html/qsignal-h.html
share/doc/qt/html/qshared.html
share/doc/qt/html/qshared-members.html
share/doc/qt/html/qshared-h.html
share/doc/qt/html/qsenderobject-members.html
share/doc/qt/html/qsemimodal.html
share/doc/qt/html/qsemimodal-members.html
share/doc/qt/html/qsemimodal-h.html
share/doc/qt/html/qscrollview.html
share/doc/qt/html/qscrollview-w.gif
share/doc/qt/html/qscrollview-members.html
share/doc/qt/html/qscrollview-m.gif
share/doc/qt/html/qscrollview-h.html
share/doc/qt/html/qscrollbar.html
share/doc/qt/html/qscrollbar-h.html
share/doc/qt/html/qscrollbar-members.html
share/doc/qt/html/qscrbar-w.gif
share/doc/qt/html/qscrbar-m.gif
share/doc/qt/html/qresizeevent.html
share/doc/qt/html/qresizeevent-members.html
share/doc/qt/html/qregion.html
share/doc/qt/html/qregion-members.html
share/doc/qt/html/qregion-h.html
share/doc/qt/html/qregexp.html
share/doc/qt/html/qregexp-members.html
share/doc/qt/html/qregexp-h.html
share/doc/qt/html/qrect.html
share/doc/qt/html/qrect-members.html
share/doc/qt/html/qrect-h.html
share/doc/qt/html/qrangecontrol.html
share/doc/qt/html/qrangecontrol-members.html
share/doc/qt/html/qrangecontrol-h.html
share/doc/qt/html/qradiobutton.html
share/doc/qt/html/qradiobutton-members.html
share/doc/qt/html/qradiobutton-h.html
share/doc/qt/html/qradiobt-w.gif
share/doc/qt/html/qradiobt-m.gif
share/doc/qt/html/qqueue.html
share/doc/qt/html/qqueue-members.html
share/doc/qt/html/qqueue-h.html
share/doc/qt/html/qpushbutton.html
share/doc/qt/html/qpushbutton-members.html
share/doc/qt/html/qpushbutton-h.html
share/doc/qt/html/qpushbt-w.gif
share/doc/qt/html/qpushbt-m.gif
share/doc/qt/html/qptrdictiterator.html
share/doc/qt/html/qptrdictiterator-members.html
share/doc/qt/html/qptrdict.html
share/doc/qt/html/qptrdict-members.html
share/doc/qt/html/qptrdict-h.html
share/doc/qt/html/qprogressdialog.html
share/doc/qt/html/qprogressdialog-members.html
share/doc/qt/html/qprogressdialog-h.html
share/doc/qt/html/qprogressbar.html
share/doc/qt/html/qprogressbar-members.html
share/doc/qt/html/qprogressbar-h.html
share/doc/qt/html/qprogdlg-w.gif
share/doc/qt/html/qprogdlg-m.gif
share/doc/qt/html/qprogbar-w.gif
share/doc/qt/html/qprogbar-m.gif
share/doc/qt/html/qprinter.html
share/doc/qt/html/qprinter-members.html
share/doc/qt/html/qprinter-h.html
share/doc/qt/html/qprintdialog.html
share/doc/qt/html/qprintdialog-members.html
share/doc/qt/html/qprintdialog-h.html
share/doc/qt/html/qpopupmenu.html
share/doc/qt/html/qpopupmenu-members.html
share/doc/qt/html/qpopmenu-w.gif
share/doc/qt/html/qpopupmenu-h.html
share/doc/qt/html/qpopmenu-m.gif
share/doc/qt/html/qpointval.html
share/doc/qt/html/qpointval-members.html
share/doc/qt/html/qpointarray.html
share/doc/qt/html/qpointarray-members.html
share/doc/qt/html/qpointarray-h.html
share/doc/qt/html/qpoint.html
share/doc/qt/html/qpoint-members.html
share/doc/qt/html/qpoint-h.html
share/doc/qt/html/qpixmapcache.html
share/doc/qt/html/qpixmapcache-members.html
share/doc/qt/html/qpixmapcache-h.html
share/doc/qt/html/qpixmap.html
share/doc/qt/html/qpixmap-members.html
share/doc/qt/html/qpixmap-h.html
share/doc/qt/html/qpicture.html
share/doc/qt/html/qpicture-members.html
share/doc/qt/html/qpicture-h.html
share/doc/qt/html/qpen.html
share/doc/qt/html/qpen-members.html
share/doc/qt/html/qpen-h.html
share/doc/qt/html/qpalette.html
share/doc/qt/html/qpalette-members.html
share/doc/qt/html/qpalette-h.html
share/doc/qt/html/qpaintevent.html
share/doc/qt/html/qpaintevent-members.html
share/doc/qt/html/qpainter.html
share/doc/qt/html/qpainter-members.html
share/doc/qt/html/qpainter-h.html
share/doc/qt/html/qpaintdevicemetrics.html
share/doc/qt/html/qpaintdevicemetrics-members.html
share/doc/qt/html/qpaintdevicemetrics-h.html
share/doc/qt/html/qpaintdevice.html
share/doc/qt/html/qpaintdevice-members.html
share/doc/qt/html/io.html
share/doc/qt/html/qpaintdevice-h.html
share/doc/qt/html/qobject.html
share/doc/qt/html/qobject-members.html
share/doc/qt/html/qobject-h.html
share/doc/qt/html/qnpwidget.html
share/doc/qt/html/qnpwidget-members.html
share/doc/qt/html/qnpstream.html
share/doc/qt/html/qnpstream-members.html
share/doc/qt/html/qnplugin.html
share/doc/qt/html/qnplugin-members.html
share/doc/qt/html/qnpinstance.html
share/doc/qt/html/qnpinstance-members.html
share/doc/qt/html/qnp-h.html
share/doc/qt/html/qmultilineedit.html
share/doc/qt/html/qmultilineedit-members.html
share/doc/qt/html/qmultilinedit-h.html
share/doc/qt/html/qmsgbox-w.gif
share/doc/qt/html/qmsgbox-m.gif
share/doc/qt/html/qmovie.html
share/doc/qt/html/qmovie.gif
share/doc/qt/html/qmovie-members.html
share/doc/qt/html/qmovie-h.html
share/doc/qt/html/qmoveevent.html
share/doc/qt/html/qmoveevent-members.html
share/doc/qt/html/qmouseevent.html
share/doc/qt/html/qmouseevent-members.html
share/doc/qt/html/qmlined-w.gif
share/doc/qt/html/qmlined-m.gif
share/doc/qt/html/qmessagebox.html
share/doc/qt/html/qmessagebox-members.html
share/doc/qt/html/qmessagebox-h.html
share/doc/qt/html/qmenudata.html
share/doc/qt/html/qmenudata-members.html
share/doc/qt/html/qmenudata-h.html
share/doc/qt/html/qmenubar.html
share/doc/qt/html/qmenubar-w.gif
share/doc/qt/html/qmenubar-m.gif
share/doc/qt/html/qmenubar-members.html
share/doc/qt/html/qmenubar-h.html
share/doc/qt/html/qmainwindow.html
share/doc/qt/html/qmainwindow-w.gif
share/doc/qt/html/qmainwindow-members.html
share/doc/qt/html/qmainwindow-m.gif
share/doc/qt/html/qmainwindow-h.html
share/doc/qt/html/qmag-qmag-cpp.html
share/doc/qt/html/qlnode.html
share/doc/qt/html/qlnode-members.html
share/doc/qt/html/qlistviewitem.html
share/doc/qt/html/qlistviewitem-members.html
share/doc/qt/html/qlistview.html
share/doc/qt/html/qlistview-members.html
share/doc/qt/html/qlistview-h.html
share/doc/qt/html/qlistiterator.html
share/doc/qt/html/qlistiterator-members.html
share/doc/qt/html/qlist.html
share/doc/qt/html/qlistboxtext.html
share/doc/qt/html/qlistboxtext-members.html
share/doc/qt/html/qlistboxpixmap.html
share/doc/qt/html/qlistboxpixmap-members.html
share/doc/qt/html/qlistboxitem.html
share/doc/qt/html/qlistboxitem-members.html
share/doc/qt/html/qlistbox.html
share/doc/qt/html/qlistbox-w.gif
share/doc/qt/html/qlistbox-members.html
share/doc/qt/html/qlistbox-m.gif
share/doc/qt/html/qlistbox-h.html
share/doc/qt/html/qlist-members.html
share/doc/qt/html/qlist-h.html
share/doc/qt/html/qlineedit.html
share/doc/qt/html/qlineedit-members.html
share/doc/qt/html/qlineedit-h.html
share/doc/qt/html/qlined-w.gif
share/doc/qt/html/qlined-m.gif
share/doc/qt/html/qlcdnumber.html
share/doc/qt/html/qlcdnumber-members.html
share/doc/qt/html/qlcdnumber-h.html
share/doc/qt/html/qlcdnum-w.gif
share/doc/qt/html/qlcdnum-m.gif
share/doc/qt/html/qlayout.html
share/doc/qt/html/qlayout-members.html
share/doc/qt/html/qlayout-h.html
share/doc/qt/html/qlabel.html
share/doc/qt/html/qlabel-w.gif
share/doc/qt/html/qlabel-members.html
share/doc/qt/html/qlabel-m.gif
share/doc/qt/html/qlabel-h.html
share/doc/qt/html/qkeyevent.html
share/doc/qt/html/qkeyevent-members.html
share/doc/qt/html/qkeycode-h.html
share/doc/qt/html/qiodevicesource.html
share/doc/qt/html/qiodevicesource-members.html
share/doc/qt/html/qiodevice.html
share/doc/qt/html/qiodevice-members.html
share/doc/qt/html/qiodevice-h.html
share/doc/qt/html/qintvalidator.html
share/doc/qt/html/qintvalidator-members.html
share/doc/qt/html/qintdictiterator.html
share/doc/qt/html/qintdictiterator-members.html
share/doc/qt/html/qintdict.html
share/doc/qt/html/qintdict-members.html
share/doc/qt/html/qintdict-h.html
share/doc/qt/html/qintcacheiterator.html
share/doc/qt/html/qintcacheiterator-members.html
share/doc/qt/html/qintcache.html
share/doc/qt/html/qintcache-members.html
share/doc/qt/html/qintcache-h.html
share/doc/qt/html/qimageio.html
share/doc/qt/html/qimageio-members.html
share/doc/qt/html/qimagedrag.html
share/doc/qt/html/qimageformattype.html
share/doc/qt/html/qimageformattype-members.html
share/doc/qt/html/qimageformat.html
share/doc/qt/html/qimageformat-members.html
share/doc/qt/html/qimagedrag-members.html
share/doc/qt/html/qimagedecoder.html
share/doc/qt/html/qimagedecoder-members.html
share/doc/qt/html/qimageconsumer.html
share/doc/qt/html/qimageconsumer-members.html
share/doc/qt/html/qimage.html
share/doc/qt/html/qimage-members.html
share/doc/qt/html/qimage-h.html
share/doc/qt/html/qiconset.html
share/doc/qt/html/qiconset-members.html
share/doc/qt/html/qiconset-h.html
share/doc/qt/html/qheader.html
share/doc/qt/html/qheader-w.gif
share/doc/qt/html/qheader-members.html
share/doc/qt/html/qheader-m.gif
share/doc/qt/html/qheader-h.html
share/doc/qt/html/qhboxlayout.html
share/doc/qt/html/qhboxlayout-members.html
share/doc/qt/html/qgrpbox-w.gif
share/doc/qt/html/qgrpbox-m.gif
share/doc/qt/html/qgroupbox.html
share/doc/qt/html/qgroupbox-members.html
share/doc/qt/html/qgroupbox-h.html
share/doc/qt/html/qgridlayout.html
share/doc/qt/html/qgridlayout-members.html
share/doc/qt/html/qgmanager.html
share/doc/qt/html/qgmanager-members.html
share/doc/qt/html/qgmanager-h.html
share/doc/qt/html/qglwidget.html
share/doc/qt/html/qglwidget-members.html
share/doc/qt/html/qglobal-h.html
share/doc/qt/html/qglistiterator.html
share/doc/qt/html/qglistiterator-members.html
share/doc/qt/html/qglist.html
share/doc/qt/html/qglist-members.html
share/doc/qt/html/qglist-h.html
share/doc/qt/html/qglformat.html
share/doc/qt/html/qglformat-members.html
share/doc/qt/html/qglcontext.html
share/doc/qt/html/qglcontext-members.html
share/doc/qt/html/qgl.html
share/doc/qt/html/qgl-h.html
share/doc/qt/html/qgdictiterator.html
share/doc/qt/html/qgdictiterator-members.html
share/doc/qt/html/qgdict.html
share/doc/qt/html/qgdict-members.html
share/doc/qt/html/qgdict-h.html
share/doc/qt/html/qgcacheiterator.html
share/doc/qt/html/qgcacheiterator-members.html
share/doc/qt/html/qgcache.html
share/doc/qt/html/qgcache-members.html
share/doc/qt/html/qgcache-h.html
share/doc/qt/html/qgarray.html
share/doc/qt/html/qgarray-members.html
share/doc/qt/html/qgarray-h.html
share/doc/qt/html/qframe.html
share/doc/qt/html/qframe-members.html
share/doc/qt/html/qframe-h.html
share/doc/qt/html/qfontmetrics.html
share/doc/qt/html/qfontmetrics-members.html
share/doc/qt/html/qfontmetrics-h.html
share/doc/qt/html/qfontinfo.html
share/doc/qt/html/qfontinfo-members.html
share/doc/qt/html/qfontinfo-h.html
share/doc/qt/html/qfont.html
share/doc/qt/html/qfont-members.html
share/doc/qt/html/qfont-h.html
share/doc/qt/html/qfocusevent.html
share/doc/qt/html/qfocusevent-members.html
share/doc/qt/html/qfocusdata.html
share/doc/qt/html/qfocusdata-members.html
share/doc/qt/html/qfocusdata-h.html
share/doc/qt/html/qfileinfo.html
share/doc/qt/html/qfileinfo-members.html
share/doc/qt/html/qfileinfo-h.html
share/doc/qt/html/qfileiconprovider.html
share/doc/qt/html/qfileiconprovider-members.html
share/doc/qt/html/qfiledlg-w.gif
share/doc/qt/html/qfiledlg-m.gif
share/doc/qt/html/qfiledialog.html
share/doc/qt/html/qfiledialog-members.html
share/doc/qt/html/qfiledialog-h.html
share/doc/qt/html/qfile.html
share/doc/qt/html/qfile-members.html
share/doc/qt/html/qfile-h.html
share/doc/qt/html/qevent.html
share/doc/qt/html/qevent-members.html
share/doc/qt/html/qevent-h.html
share/doc/qt/html/qdropevent.html
share/doc/qt/html/qdropevent-members.html
share/doc/qt/html/qdrawutil-h.html
share/doc/qt/html/qdragobject.html
share/doc/qt/html/qdragobject-members.html
share/doc/qt/html/qdragobject-h.html
share/doc/qt/html/qdragmoveevent.html
share/doc/qt/html/qdragmoveevent-members.html
share/doc/qt/html/qdoublevalidator.html
share/doc/qt/html/qdoublevalidator-members.html
share/doc/qt/html/qdir.html
share/doc/qt/html/qdir-members.html
share/doc/qt/html/qdir-h.html
share/doc/qt/html/qdictiterator.html
share/doc/qt/html/qdictiterator-members.html
share/doc/qt/html/qdict.html
share/doc/qt/html/qdict-members.html
share/doc/qt/html/qdict-h.html
share/doc/qt/html/qdialog.html
share/doc/qt/html/qdialog-members.html
share/doc/qt/html/qdialog-h.html
share/doc/qt/html/qdatetime.html
share/doc/qt/html/qdatetime-members.html
share/doc/qt/html/qdatetime-h.html
share/doc/qt/html/qdate.html
share/doc/qt/html/qdate-members.html
share/doc/qt/html/qdatastream.html
share/doc/qt/html/qdatastream-members.html
share/doc/qt/html/qdatastream-h.html
share/doc/qt/html/qdatasource.html
share/doc/qt/html/qdatasource-members.html
share/doc/qt/html/qdatasink.html
share/doc/qt/html/qdatasink-members.html
share/doc/qt/html/qdatapump.html
share/doc/qt/html/qdatapump-members.html
share/doc/qt/html/qcustomevent.html
share/doc/qt/html/qcustomevent-members.html
share/doc/qt/html/qcursor.html
share/doc/qt/html/qcursor-members.html
share/doc/qt/html/qcursor-h.html
share/doc/qt/html/qconnection.html
share/doc/qt/html/qconnection-members.html
share/doc/qt/html/qconnection-h.html
share/doc/qt/html/qcombobox.html
share/doc/qt/html/qcombobox-members.html
share/doc/qt/html/qcombobox-h.html
share/doc/qt/html/qcombo3-w.gif
share/doc/qt/html/qcombo3-m.gif
share/doc/qt/html/qcombo2-w.gif
share/doc/qt/html/qcombo2-m.gif
share/doc/qt/html/qcombo1-w.gif
share/doc/qt/html/qcombo1-m.gif
share/doc/qt/html/qcolorgroup.html
share/doc/qt/html/qcolorgroup-members.html
share/doc/qt/html/qcolor.html
share/doc/qt/html/qcolor-members.html
share/doc/qt/html/qcolor-h.html
share/doc/qt/html/qcollection.html
share/doc/qt/html/qcollection-members.html
share/doc/qt/html/qcollection-h.html
share/doc/qt/html/qcloseevent.html
share/doc/qt/html/qcloseevent-members.html
share/doc/qt/html/qclipboard.html
share/doc/qt/html/qclipboard-members.html
share/doc/qt/html/qclipboard-h.html
share/doc/qt/html/qchkbox-w.gif
share/doc/qt/html/qchkbox-m.gif
share/doc/qt/html/qchildevent.html
share/doc/qt/html/qchildevent-members.html
share/doc/qt/html/qchecklistitem.html
share/doc/qt/html/qchecklistitem-members.html
share/doc/qt/html/qcheckbox.html
share/doc/qt/html/qcheckbox-w.gif
share/doc/qt/html/qcheckbox-members.html
share/doc/qt/html/qcheckbox-m.gif
share/doc/qt/html/qcheckbox-h.html
share/doc/qt/html/qcacheiterator.html
share/doc/qt/html/qcacheiterator-members.html
share/doc/qt/html/qcache.html
share/doc/qt/html/qcache-members.html
share/doc/qt/html/qcache-h.html
share/doc/qt/html/qbytearray.html
share/doc/qt/html/qbytearray-members.html
share/doc/qt/html/qbuttongroup.html
share/doc/qt/html/qbuttongroup-members.html
share/doc/qt/html/qbuttongroup-h.html
share/doc/qt/html/qbutton.html
share/doc/qt/html/qbutton-members.html
share/doc/qt/html/qbutton-h.html
share/doc/qt/html/qbuffer.html
share/doc/qt/html/qbuffer-members.html
share/doc/qt/html/qbuffer-h.html
share/doc/qt/html/qbttngrp-w.gif
share/doc/qt/html/qbttngrp-m.gif
share/doc/qt/html/qbrush.html
share/doc/qt/html/qbrush-members.html
share/doc/qt/html/qbrush-h.html
share/doc/qt/html/qboxlayout.html
share/doc/qt/html/qboxlayout-members.html
share/doc/qt/html/qbitval.html
share/doc/qt/html/qbitval-members.html
share/doc/qt/html/qbitmap.html
share/doc/qt/html/qbitmap-members.html
share/doc/qt/html/qbitmap-h.html
share/doc/qt/html/qbitarray.html
share/doc/qt/html/qbitarray-members.html
share/doc/qt/html/qbitarray-h.html
share/doc/qt/html/qasyncio.html
share/doc/qt/html/qasyncio-members.html
share/doc/qt/html/qasyncio-h.html
share/doc/qt/html/qasyncimageio-h.html
share/doc/qt/html/qarray.html
share/doc/qt/html/qarray-members.html
share/doc/qt/html/qarray-h.html
share/doc/qt/html/qapplication.html
share/doc/qt/html/qapplication-members.html
share/doc/qt/html/qapplication-h.html
share/doc/qt/html/qaccel.html
share/doc/qt/html/qaccel-members.html
share/doc/qt/html/qaccel-h.html
share/doc/qt/html/progress-progress-cpp.html
share/doc/qt/html/printerdialog.gif
share/doc/qt/html/primes.html
share/doc/qt/html/pref-pref-cpp.html
share/doc/qt/html/pnglogo.png
share/doc/qt/html/pictures.html
share/doc/qt/html/picture-picture-cpp.html
share/doc/qt/html/nsplugin.html
share/doc/qt/html/movies-main-cpp.html
share/doc/qt/html/moc.html
share/doc/qt/html/misc.html
share/doc/qt/html/metaobjects.html
share/doc/qt/html/menu-menu-cpp.html
share/doc/qt/html/mainlyXt-editor-cpp.html
share/doc/qt/html/mainlyQt-editor-cpp.html
share/doc/qt/html/mainlyMotif-editor-cpp.html
share/doc/qt/html/mailinglists.html
share/doc/qt/html/listview.gif
share/doc/qt/html/life-life-cpp.html
share/doc/qt/html/license.html
share/doc/qt/html/letter.gif
share/doc/qt/html/layout-layout-cpp.html
share/doc/qt/html/kernel.html
share/doc/qt/html/index.html
share/doc/qt/html/images.html
share/doc/qt/html/imageio.html
share/doc/qt/html/hierarchy.html
share/doc/qt/html/hello-hello-cpp.html
share/doc/qt/html/headers.html
share/doc/qt/html/guibooks.html
share/doc/qt/html/gridlayout.gif
share/doc/qt/html/grapher-grapher-cpp.html
share/doc/qt/html/graph.g1n
share/doc/qt/html/geomanagement.html
share/doc/qt/html/functions.html
share/doc/qt/html/frames.gif
share/doc/qt/html/forever-forever-cpp.html
share/doc/qt/html/fonts.html
share/doc/qt/html/fontmatch.html
share/doc/qt/html/examples.html
share/doc/qt/html/easteregg2.html
share/doc/qt/html/easteregg.html
share/doc/qt/html/drawing.html
share/doc/qt/html/drawdemo-drawdemo-cpp.html
share/doc/qt/html/dochead.jpg
share/doc/qt/html/dochead.gif
share/doc/qt/html/dirview-dirview-cpp.html
share/doc/qt/html/dialogs.html
share/doc/qt/html/desktop-desktop-cpp.html
share/doc/qt/html/design.html
share/doc/qt/html/debug.html
share/doc/qt/html/dclock-dclock-cpp.html
share/doc/qt/html/cursor-cursor-cpp.html
share/doc/qt/html/credits.html
share/doc/qt/html/coordsys.html
share/doc/qt/html/coordsys.gif
share/doc/qt/html/connect-connect-cpp.html
share/doc/qt/html/collection.html
share/doc/qt/html/classes.html
share/doc/qt/html/book.gif
share/doc/qt/html/biff-biff-cpp.html
share/doc/qt/html/bearings.gif
share/doc/qt/html/application.html
share/doc/qt/html/application-application-cpp.html
share/doc/qt/html/annotated.html
share/doc/qt/html/aclock-aclock-cpp.html
share/doc/qt/html/y2k.html