From 22a5ffcfb8fff0e27225f63e60c0a7dede6bc742 Mon Sep 17 00:00:00 2001 From: espie Date: Thu, 22 Jun 2000 23:53:43 +0000 Subject: [PATCH] First cut at a qt2 port. Probably needs some polish, but it compiles and runs. --- x11/qt2/Makefile | 92 ++ x11/qt2/files/md5 | 3 + .../patches/patch-configs_openbsd-g++-shared | 64 + .../patch-configs_openbsd-g++-shared-debug | 64 + x11/qt2/pkg/COMMENT | 1 + x11/qt2/pkg/COMMENT-examples | 1 + x11/qt2/pkg/COMMENT-html | 1 + x11/qt2/pkg/DESCR | 5 + x11/qt2/pkg/DESCR-examples | 2 + x11/qt2/pkg/DESCR-html | 2 + x11/qt2/pkg/MESSAGE | 4 + x11/qt2/pkg/PFRAG.no-shared | 3 + x11/qt2/pkg/PFRAG.shared | 4 + x11/qt2/pkg/PLIST | 750 ++++++++++++ x11/qt2/pkg/PLIST-examples | 583 +++++++++ x11/qt2/pkg/PLIST-html | 1053 +++++++++++++++++ 16 files changed, 2632 insertions(+) create mode 100644 x11/qt2/Makefile create mode 100644 x11/qt2/files/md5 create mode 100644 x11/qt2/patches/patch-configs_openbsd-g++-shared create mode 100644 x11/qt2/patches/patch-configs_openbsd-g++-shared-debug create mode 100644 x11/qt2/pkg/COMMENT create mode 100644 x11/qt2/pkg/COMMENT-examples create mode 100644 x11/qt2/pkg/COMMENT-html create mode 100644 x11/qt2/pkg/DESCR create mode 100644 x11/qt2/pkg/DESCR-examples create mode 100644 x11/qt2/pkg/DESCR-html create mode 100644 x11/qt2/pkg/MESSAGE create mode 100644 x11/qt2/pkg/PFRAG.no-shared create mode 100644 x11/qt2/pkg/PFRAG.shared create mode 100644 x11/qt2/pkg/PLIST create mode 100644 x11/qt2/pkg/PLIST-examples create mode 100644 x11/qt2/pkg/PLIST-html diff --git a/x11/qt2/Makefile b/x11/qt2/Makefile new file mode 100644 index 00000000000..277984312c7 --- /dev/null +++ b/x11/qt2/Makefile @@ -0,0 +1,92 @@ +# $OpenBSD: Makefile,v 1.1.1.1 2000/06/22 23:53:43 espie Exp $ +# $FreeBSD: Makefile,v 1.33 1999/02/27 03:09:57 andreas Exp $ + +DISTNAME= qt-2.1.1 +PKGNAME= qt2-1.1 +CATEGORIES= x11 +NEED_VERSION= 1.301 +MASTER_SITES= ftp://ftp.troll.no/qt/source/ +DISTFILES= qt-x11-2.1.1.tar.gz +HOMEPAGE= http://www.trolltech.com/qt/ +MULTI_PACKAGES=-examples -html + +SUBPACKAGE?= +# for the qt image extension +.if ${SUBPACKAGE} != "-html" +BUILD_DEPENDS= ${PREFIX}/include/jpeglib.h::graphics/jpeg +LIB_DEPENDS= png.1.::graphics/png jpeg.62.::graphics/jpeg +.endif + +MAINTAINER= espie@openbsd.org + +PERMIT_PACKAGE_CDROM= +PERMIT_PACKAGE_FTP= +PERMIT_DISTFILES_CDROM= +PERMIT_DISTFILES_FTP= + +MAKE_ENV= QTDIR="${WRKSRC}" SYS_CXX="${CXX}" SYS_CXXFLAGS="${CXXFLAGS}" + +CONFIGURE_STYLE= simple +CONFIGURE_ENV=${MAKE_ENV} +CONFIGURE_ARGS+=-gif -system-libpng -system-jpeg -sm -no-thread -system-zlib + +USE_X11= Yes +USE_GMAKE= Yes + +QT_INCDIR= ${PREFIX}/include/X11/qt2 +QT_LIBDIR= ${PREFIX}/lib/qt2 +QT_EXAMPLES= ${QT_LIBDIR}/examples +QT_TUTORIAL= ${QT_LIBDIR}/tutorial +QT_DOC= ${PREFIX}/share/doc/qt2 + +# for manpages in MESSAGE +SUBST_VARS=QT_LIBDIR + +# qt-2.1.1 -> libqt.2.11 +QT_VER= 2.11 +EXAMPLES= + +post-patch: + cd ${WRKSRC} && cp -R examples examples-src + cd ${WRKSRC} && cp -R tutorial tutorial-src + +do-install: + ${INSTALL_DATA_DIR} ${QT_INCDIR} ${QT_DOC}/html ${QT_LIBDIR}/bin \ + ${QT_EXAMPLES}/src ${QT_EXAMPLES}/bin \ + ${QT_TUTORIAL}/src ${QT_TUTORIAL}/bin \ + ${QT_LIBDIR}/man/man3 + @cd ${WRKBUILD}/lib; if [ -f libqt.a ]; then \ + ${INSTALL_DATA} libqt.a ${PREFIX}/lib; \ + fi; \ + if [ -f libqt.so.2.1.1 ]; then \ + ln -f libqt.so.2.1.1 libqt.so.2.11; \ + ${INSTALL_DATA} libqt.so.2.11 ${PREFIX}/lib; \ + fi + ${INSTALL_PROGRAM} ${WRKBUILD}/bin/moc ${QT_LIBDIR}/bin + # avoid installing broken links + -${INSTALL_DATA} ${WRKSRC}/include/* ${QT_INCDIR} + @for i in ${WRKSRC}/doc/man/man3/*; do \ + j=$${i%qt}; \ + sed -e 's,\.3qt,\.3,g' <$$i >$$j && \ + ${INSTALL_MAN} $$j ${QT_LIBDIR}/man/man3; \ + done + 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.QPL README \ + README.QT changes-2.1.0 changes-2.1.1 ${QT_DOC} + cp -R ${WRKSRC}/doc/html/* ${QT_DOC}/html + +.include +.if ${SUBPACKAGE} =="-examples" +PKGNAME:=qt2-examples-1.1 +.elif ${SUBPACKAGE} =="-html" +PKGNAME:=qt2-html-1.1 +.endif diff --git a/x11/qt2/files/md5 b/x11/qt2/files/md5 new file mode 100644 index 00000000000..56d3a7643e5 --- /dev/null +++ b/x11/qt2/files/md5 @@ -0,0 +1,3 @@ +MD5 (qt-x11-2.1.1.tar.gz) = 4af3035d2ce5ada50faa6a092539efe4 +RMD160 (qt-x11-2.1.1.tar.gz) = 9b0252a2b058aa92ca15295ae7528e46f58098d9 +SHA1 (qt-x11-2.1.1.tar.gz) = acb975204b88102ed3918ddb7f351f4d7b3bad19 diff --git a/x11/qt2/patches/patch-configs_openbsd-g++-shared b/x11/qt2/patches/patch-configs_openbsd-g++-shared new file mode 100644 index 00000000000..d0a2cf11b9b --- /dev/null +++ b/x11/qt2/patches/patch-configs_openbsd-g++-shared @@ -0,0 +1,64 @@ +$OpenBSD: patch-configs_openbsd-g++-shared,v 1.1.1.1 2000/06/22 23:53:43 espie Exp $ +--- configs/openbsd-g++-shared.orig Thu Jun 22 16:51:11 2000 ++++ configs/openbsd-g++-shared Thu Jun 22 16:56:14 2000 +@@ -1,25 +1,25 @@ + # Compiling +-SYSCONF_CXX = g++ ++SYSCONF_CXX = $(SYS_CXX) + SYSCONF_CC = gcc + + # Compiling with support libraries +-SYSCONF_CXXFLAGS_X11 = -I/usr/X11R6/include ++SYSCONF_CXXFLAGS_X11 = -I$(X11BASE)/include -I$(LOCALBASE)/include + SYSCONF_CXXFLAGS_QT = -I$(QTDIR)/include +-SYSCONF_CXXFLAGS_OPENGL = -I/usr/X11R6/include ++SYSCONF_CXXFLAGS_OPENGL = -I$(LOCALBASE)/include + + # Compiline YACC output + SYSCONF_CXXFLAGS_YACC = -Wno-unused -Wno-parentheses + + # Linking with support libraries + # X11 +-SYSCONF_LFLAGS_X11 = -L/usr/X11R6/lib ++SYSCONF_LFLAGS_X11 = -L$(X11BASE)/lib -L$(LOCALBASE)/lib + SYSCONF_LIBS_X11 = -lXext -lX11 -lm + # Qt, Qt+OpenGL + SYSCONF_LFLAGS_QT = -L$(QTDIR)/lib + SYSCONF_LIBS_QT = -lqt + SYSCONF_LIBS_QT_OPENGL = -lqgl + # OpenGL +-SYSCONF_LFLAGS_OPENGL = -L/usr/X11R6/lib ++SYSCONF_LFLAGS_OPENGL = -L$(LOCALBASE)/lib + SYSCONF_LIBS_OPENGL = -lGLU -lGL -lXmu + # Yacc + SYSCONF_LIBS_YACC = +@@ -30,7 +30,7 @@ SYSCONF_LFLAGS = + SYSCONF_LIBS = + + # Link flags shared objects +-SYSCONF_LFLAGS_SHOBJ = -Bshareable ++SYSCONF_LFLAGS_SHOBJ = -Bshareable -Bforcearchive + + # Meta-object compiler + SYSCONF_MOC = $(QTDIR)/bin/moc +@@ -40,9 +40,9 @@ SYSCONF_MOC = $(QTDIR)/bin/moc + # - Place target in $(DESTDIR) - which has a trailing / + # - Usually needs to incorporate $(VER_MAJ), $(VER_MIN) and $(VER_PATCH) + # +-SYSCONF_LINK_SHLIB = ld ++SYSCONF_LINK_SHLIB = g++ -shared + SYSCONF_LINK_TARGET_SHARED = lib$(TARGET).so.$(VER_MAJ).$(VER_MIN).$(VER_PATCH) +-SYSCONF_LINK_LIB_SHARED = $(SYSCONF_LINK_SHLIB) -Bshareable $(LFLAGS) -o $(DESTDIR)$(SYSCONF_LINK_TARGET_SHARED) `lorder /usr/lib/c++rt0.o $(OBJECTS) $(OBJMOC) | tsort` $(LIBS) ++SYSCONF_LINK_LIB_SHARED = $(SYSCONF_LINK_SHLIB) $(LFLAGS) -o $(DESTDIR)$(SYSCONF_LINK_TARGET_SHARED) $(OBJECTS) $(OBJMOC) $(LIBS) + + # Linking static libraries + # - Build the $(TARGET) library, eg. lib$(TARGET).a +@@ -54,7 +54,7 @@ SYSCONF_LINK_LIB_STATIC = rm -f $(DESTDI + $(SYSCONF_AR) $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) $(OBJECTS) $(OBJMOC) ; \ + ranlib $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) + # Compiling application source +-SYSCONF_CXXFLAGS = -O2 ++SYSCONF_CXXFLAGS = $(SYS_CXXFLAGS) + SYSCONF_CFLAGS = -O2 + # Compiling library source + SYSCONF_CXXFLAGS_LIB = -fPIC diff --git a/x11/qt2/patches/patch-configs_openbsd-g++-shared-debug b/x11/qt2/patches/patch-configs_openbsd-g++-shared-debug new file mode 100644 index 00000000000..1f099cd519e --- /dev/null +++ b/x11/qt2/patches/patch-configs_openbsd-g++-shared-debug @@ -0,0 +1,64 @@ +$OpenBSD: patch-configs_openbsd-g++-shared-debug,v 1.1.1.1 2000/06/22 23:53:43 espie Exp $ +--- configs/openbsd-g++-shared-debug.orig Thu May 25 14:10:32 2000 ++++ configs/openbsd-g++-shared-debug Wed Jun 21 18:36:22 2000 +@@ -1,25 +1,25 @@ + # Compiling +-SYSCONF_CXX = g++ ++SYSCONF_CXX = $(SYS_CXX) + SYSCONF_CC = gcc + + # Compiling with support libraries +-SYSCONF_CXXFLAGS_X11 = -I/usr/X11R6/include ++SYSCONF_CXXFLAGS_X11 = -I$(X11BASE)/include -I$(LOCALBASE)/include + SYSCONF_CXXFLAGS_QT = -I$(QTDIR)/include +-SYSCONF_CXXFLAGS_OPENGL = -I/usr/X11R6/include ++SYSCONF_CXXFLAGS_OPENGL = -I$(LOCALBASE)/include + + # Compiline YACC output + SYSCONF_CXXFLAGS_YACC = -Wno-unused -Wno-parentheses + + # Linking with support libraries + # X11 +-SYSCONF_LFLAGS_X11 = -L/usr/X11R6/lib ++SYSCONF_LFLAGS_X11 = -L$(X11BASE)/lib -L$(LOCALBASE)/lib + SYSCONF_LIBS_X11 = -lXext -lX11 -lm + # Qt, Qt+OpenGL + SYSCONF_LFLAGS_QT = -L$(QTDIR)/lib + SYSCONF_LIBS_QT = -lqt + SYSCONF_LIBS_QT_OPENGL = -lqgl + # OpenGL +-SYSCONF_LFLAGS_OPENGL = -L/usr/X11R6/lib ++SYSCONF_LFLAGS_OPENGL = -L$(LOCALBASE)/lib + SYSCONF_LIBS_OPENGL = -lGLU -lGL -lXmu + # Yacc + SYSCONF_LIBS_YACC = +@@ -30,7 +30,7 @@ SYSCONF_LFLAGS = + SYSCONF_LIBS = + + # Link flags shared objects +-SYSCONF_LFLAGS_SHOBJ = -Bshareable ++SYSCONF_LFLAGS_SHOBJ = -Bshareable -Bforcearchive + + # Meta-object compiler + SYSCONF_MOC = $(QTDIR)/bin/moc +@@ -40,9 +40,9 @@ SYSCONF_MOC = $(QTDIR)/bin/moc + # - Place target in $(DESTDIR) - which has a trailing / + # - Usually needs to incorporate $(VER_MAJ), $(VER_MIN) and $(VER_PATCH) + # +-SYSCONF_LINK_SHLIB = ld ++SYSCONF_LINK_SHLIB = g++ -shared + SYSCONF_LINK_TARGET_SHARED = lib$(TARGET).so.$(VER_MAJ).$(VER_MIN).$(VER_PATCH) +-SYSCONF_LINK_LIB_SHARED = $(SYSCONF_LINK_SHLIB) -Bshareable $(LFLAGS) -o $(DESTDIR)$(SYSCONF_LINK_TARGET_SHARED) `lorder /usr/lib/c++rt0.o $(OBJECTS) $(OBJMOC) | tsort` $(LIBS) ++SYSCONF_LINK_LIB_SHARED = $(SYSCONF_LINK_SHLIB) $(LFLAGS) -o $(DESTDIR)$(SYSCONF_LINK_TARGET_SHARED) $(OBJECTS) $(OBJMOC) $(LIBS) + + # Linking static libraries + # - Build the $(TARGET) library, eg. lib$(TARGET).a +@@ -54,7 +54,7 @@ SYSCONF_LINK_LIB_STATIC = rm -f $(DESTDI + $(SYSCONF_AR) $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) $(OBJECTS) $(OBJMOC) ; \ + ranlib $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) + # Compiling application source +-SYSCONF_CXXFLAGS = -g ++SYSCONF_CXXFLAGS = $(SYS_CXXFLAGS) -g -fno-strength-reduce + SYSCONF_CFLAGS = -g + # Compiling library source + SYSCONF_CXXFLAGS_LIB = -fPIC diff --git a/x11/qt2/pkg/COMMENT b/x11/qt2/pkg/COMMENT new file mode 100644 index 00000000000..d33768ec183 --- /dev/null +++ b/x11/qt2/pkg/COMMENT @@ -0,0 +1 @@ +C++ X11 GUI toolkit diff --git a/x11/qt2/pkg/COMMENT-examples b/x11/qt2/pkg/COMMENT-examples new file mode 100644 index 00000000000..f8635f647da --- /dev/null +++ b/x11/qt2/pkg/COMMENT-examples @@ -0,0 +1 @@ +examples and tutorial for qt2 diff --git a/x11/qt2/pkg/COMMENT-html b/x11/qt2/pkg/COMMENT-html new file mode 100644 index 00000000000..65f37ea7c91 --- /dev/null +++ b/x11/qt2/pkg/COMMENT-html @@ -0,0 +1 @@ +off-line html documentation for qt2 diff --git a/x11/qt2/pkg/DESCR b/x11/qt2/pkg/DESCR new file mode 100644 index 00000000000..5d6e3bec6f5 --- /dev/null +++ b/x11/qt2/pkg/DESCR @@ -0,0 +1,5 @@ +Qt is a toolkit for building a GUI for X in C++. The main +documentation is in the qt2-html package, or on the web (${HOMEPAGE}). + +There is also a qt2-examples package, that contains a tutorial and simple +example programs (source + binaries). diff --git a/x11/qt2/pkg/DESCR-examples b/x11/qt2/pkg/DESCR-examples new file mode 100644 index 00000000000..8e85093a4eb --- /dev/null +++ b/x11/qt2/pkg/DESCR-examples @@ -0,0 +1,2 @@ +This is a set of simple examples and a tutorial to qt. +This package includes source and binaries. diff --git a/x11/qt2/pkg/DESCR-html b/x11/qt2/pkg/DESCR-html new file mode 100644 index 00000000000..506f1d4e33c --- /dev/null +++ b/x11/qt2/pkg/DESCR-html @@ -0,0 +1,2 @@ +This is an off-line copy of the qt2 documentation available from +${HOMEPAGE} diff --git a/x11/qt2/pkg/MESSAGE b/x11/qt2/pkg/MESSAGE new file mode 100644 index 00000000000..85f4351aaab --- /dev/null +++ b/x11/qt2/pkg/MESSAGE @@ -0,0 +1,4 @@ +Man pages for qt2 have been installed in ${QT_LIBDIR}/man, +to avoid collision with the qt1 manual pages. + +You may wish to add this directory to /etc/man.conf diff --git a/x11/qt2/pkg/PFRAG.no-shared b/x11/qt2/pkg/PFRAG.no-shared new file mode 100644 index 00000000000..15435ae8917 --- /dev/null +++ b/x11/qt2/pkg/PFRAG.no-shared @@ -0,0 +1,3 @@ +@comment $OpenBSD: PFRAG.no-shared,v 1.1.1.1 2000/06/22 23:53:44 espie Exp $ +@pkgcfl qt-* +lib/libqt.a diff --git a/x11/qt2/pkg/PFRAG.shared b/x11/qt2/pkg/PFRAG.shared new file mode 100644 index 00000000000..b8665a14927 --- /dev/null +++ b/x11/qt2/pkg/PFRAG.shared @@ -0,0 +1,4 @@ +@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2000/06/22 23:53:44 espie Exp $ +lib/libqt.so.2.11 +@exec [ ! -x /sbin/ldconfig ] || /sbin/ldconfig -m %D/lib +@unexec [ ! -x /sbin/ldconfig ] || /sbin/ldconfig -m %D/lib diff --git a/x11/qt2/pkg/PLIST b/x11/qt2/pkg/PLIST new file mode 100644 index 00000000000..c2cc2f45bf9 --- /dev/null +++ b/x11/qt2/pkg/PLIST @@ -0,0 +1,750 @@ +@comment $OpenBSD: PLIST,v 1.1.1.1 2000/06/22 23:53:44 espie Exp $ +include/X11/qt2/jri.h +include/X11/qt2/jri_md.h +include/X11/qt2/jritypes.h +include/X11/qt2/npapi.h +include/X11/qt2/npupp.h +include/X11/qt2/q1xcompatibility.h +include/X11/qt2/qabstractlayout.h +include/X11/qt2/qaccel.h +include/X11/qt2/qapp.h +include/X11/qt2/qapplication.h +include/X11/qt2/qarray.h +include/X11/qt2/qasciicache.h +include/X11/qt2/qasciidict.h +include/X11/qt2/qasyncimageio.h +include/X11/qt2/qasyncio.h +include/X11/qt2/qbig5codec.h +include/X11/qt2/qbitarray.h +include/X11/qt2/qbitarry.h +include/X11/qt2/qbitmap.h +include/X11/qt2/qbrush.h +include/X11/qt2/qbttngrp.h +include/X11/qt2/qbuffer.h +include/X11/qt2/qbutton.h +include/X11/qt2/qbuttongroup.h +include/X11/qt2/qcache.h +include/X11/qt2/qcdestyle.h +include/X11/qt2/qcheckbox.h +include/X11/qt2/qchkbox.h +include/X11/qt2/qclipboard.h +include/X11/qt2/qclipbrd.h +include/X11/qt2/qcollect.h +include/X11/qt2/qcollection.h +include/X11/qt2/qcolor.h +include/X11/qt2/qcolordialog.h +include/X11/qt2/qcombo.h +include/X11/qt2/qcombobox.h +include/X11/qt2/qcommonstyle.h +include/X11/qt2/qconnect.h +include/X11/qt2/qconnection.h +include/X11/qt2/qcstring.h +include/X11/qt2/qcursor.h +include/X11/qt2/qdatastream.h +include/X11/qt2/qdatetime.h +include/X11/qt2/qdatetm.h +include/X11/qt2/qdialog.h +include/X11/qt2/qdict.h +include/X11/qt2/qdir.h +include/X11/qt2/qdragobject.h +include/X11/qt2/qdrawutil.h +include/X11/qt2/qdrawutl.h +include/X11/qt2/qdropsite.h +include/X11/qt2/qdstream.h +include/X11/qt2/qeucjpcodec.h +include/X11/qt2/qeuckrcodec.h +include/X11/qt2/qevent.h +include/X11/qt2/qfile.h +include/X11/qt2/qfiledef.h +include/X11/qt2/qfiledialog.h +include/X11/qt2/qfiledlg.h +include/X11/qt2/qfileinf.h +include/X11/qt2/qfileinfo.h +include/X11/qt2/qfocusdata.h +include/X11/qt2/qfont.h +include/X11/qt2/qfontdatabase.h +include/X11/qt2/qfontdialog.h +include/X11/qt2/qfontdta.h +include/X11/qt2/qfontinf.h +include/X11/qt2/qfontinfo.h +include/X11/qt2/qfontmet.h +include/X11/qt2/qfontmetrics.h +include/X11/qt2/qframe.h +include/X11/qt2/qgarray.h +include/X11/qt2/qgbkcodec.h +include/X11/qt2/qgcache.h +include/X11/qt2/qgdict.h +include/X11/qt2/qgeneric.h +include/X11/qt2/qgif.h +include/X11/qt2/qgl.h +include/X11/qt2/qglist.h +include/X11/qt2/qglobal.h +include/X11/qt2/qgrid.h +include/X11/qt2/qgroupbox.h +include/X11/qt2/qgrpbox.h +include/X11/qt2/qguardedptr.h +include/X11/qt2/qgvector.h +include/X11/qt2/qhbox.h +include/X11/qt2/qhbuttongroup.h +include/X11/qt2/qheader.h +include/X11/qt2/qhgroupbox.h +include/X11/qt2/qiconset.h +include/X11/qt2/qiconview.h +include/X11/qt2/qimage.h +include/X11/qt2/qinputdialog.h +include/X11/qt2/qintcach.h +include/X11/qt2/qintcache.h +include/X11/qt2/qintdict.h +include/X11/qt2/qiodev.h +include/X11/qt2/qiodevice.h +include/X11/qt2/qjiscodec.h +include/X11/qt2/qjpegio.h +include/X11/qt2/qjpunicode.h +include/X11/qt2/qkeycode.h +include/X11/qt2/qkoi8codec.h +include/X11/qt2/qlabel.h +include/X11/qt2/qlayout.h +include/X11/qt2/qlcdnum.h +include/X11/qt2/qlcdnumber.h +include/X11/qt2/qlined.h +include/X11/qt2/qlineedit.h +include/X11/qt2/qlist.h +include/X11/qt2/qlistbox.h +include/X11/qt2/qlistview.h +include/X11/qt2/qlocalfs.h +include/X11/qt2/qmainwindow.h +include/X11/qt2/qmap.h +include/X11/qt2/qmenubar.h +include/X11/qt2/qmenudata.h +include/X11/qt2/qmenudta.h +include/X11/qt2/qmessagebox.h +include/X11/qt2/qmetaobj.h +include/X11/qt2/qmetaobject.h +include/X11/qt2/qmime.h +include/X11/qt2/qmlined.h +include/X11/qt2/qmotifstyle.h +include/X11/qt2/qmovie.h +include/X11/qt2/qmsgbox.h +include/X11/qt2/qmultilinedit.h +include/X11/qt2/qmultilineedit.h +include/X11/qt2/qnamespace.h +include/X11/qt2/qnetworkprotocol.h +include/X11/qt2/qnp.h +include/X11/qt2/qobjcoll.h +include/X11/qt2/qobjdefs.h +include/X11/qt2/qobject.h +include/X11/qt2/qobjectdefs.h +include/X11/qt2/qobjectdict.h +include/X11/qt2/qobjectlist.h +include/X11/qt2/qpaintd.h +include/X11/qt2/qpaintdc.h +include/X11/qt2/qpaintdevice.h +include/X11/qt2/qpaintdevicedefs.h +include/X11/qt2/qpaintdevicemetrics.h +include/X11/qt2/qpainter.h +include/X11/qt2/qpalette.h +include/X11/qt2/qpdevmet.h +include/X11/qt2/qpen.h +include/X11/qt2/qpicture.h +include/X11/qt2/qpixmap.h +include/X11/qt2/qpixmapcache.h +include/X11/qt2/qplatinumstyle.h +include/X11/qt2/qpmcache.h +include/X11/qt2/qpngio.h +include/X11/qt2/qpntarry.h +include/X11/qt2/qpoint.h +include/X11/qt2/qpointarray.h +include/X11/qt2/qpopmenu.h +include/X11/qt2/qpopupmenu.h +include/X11/qt2/qprintdialog.h +include/X11/qt2/qprinter.h +include/X11/qt2/qprndlg.h +include/X11/qt2/qprogbar.h +include/X11/qt2/qprogdlg.h +include/X11/qt2/qprogressbar.h +include/X11/qt2/qprogressdialog.h +include/X11/qt2/qpsprn.h +include/X11/qt2/qptrdict.h +include/X11/qt2/qpushbt.h +include/X11/qt2/qpushbutton.h +include/X11/qt2/qqueue.h +include/X11/qt2/qradiobt.h +include/X11/qt2/qradiobutton.h +include/X11/qt2/qrangecontrol.h +include/X11/qt2/qrangect.h +include/X11/qt2/qrect.h +include/X11/qt2/qregexp.h +include/X11/qt2/qregion.h +include/X11/qt2/qrtlcodec.h +include/X11/qt2/qscrbar.h +include/X11/qt2/qscrollbar.h +include/X11/qt2/qscrollview.h +include/X11/qt2/qsemimodal.h +include/X11/qt2/qsession.h +include/X11/qt2/qsessionmanager.h +include/X11/qt2/qshared.h +include/X11/qt2/qsignal.h +include/X11/qt2/qsignalmapper.h +include/X11/qt2/qsignalslotimp.h +include/X11/qt2/qsimplerichtext.h +include/X11/qt2/qsize.h +include/X11/qt2/qsizegrip.h +include/X11/qt2/qsizepolicy.h +include/X11/qt2/qsjiscodec.h +include/X11/qt2/qslider.h +include/X11/qt2/qsmartptr.h +include/X11/qt2/qsocketnotifier.h +include/X11/qt2/qsocknot.h +include/X11/qt2/qsortedlist.h +include/X11/qt2/qspinbox.h +include/X11/qt2/qsplitter.h +include/X11/qt2/qstack.h +include/X11/qt2/qstatusbar.h +include/X11/qt2/qstring.h +include/X11/qt2/qstringlist.h +include/X11/qt2/qstrlist.h +include/X11/qt2/qstrvec.h +include/X11/qt2/qstyle.h +include/X11/qt2/qstylesheet.h +%%SHARED%% +lib/qt2/bin/moc +lib/qt2/man/man3/QAccel.3 +lib/qt2/man/man3/QApplication.3 +lib/qt2/man/man3/QArray.3 +lib/qt2/man/man3/QAsciiCache.3 +lib/qt2/man/man3/QAsciiCacheIterator.3 +lib/qt2/man/man3/QAsciiDict.3 +lib/qt2/man/man3/QAsciiDictIterator.3 +lib/qt2/man/man3/QAsyncIO.3 +lib/qt2/man/man3/QBitArray.3 +lib/qt2/man/man3/QBitVal.3 +lib/qt2/man/man3/QBitmap.3 +lib/qt2/man/man3/QBoxLayout.3 +lib/qt2/man/man3/QBrush.3 +lib/qt2/man/man3/QBuffer.3 +lib/qt2/man/man3/QButton.3 +lib/qt2/man/man3/QButtonGroup.3 +lib/qt2/man/man3/QByteArray.3 +lib/qt2/man/man3/QCDEStyle.3 +lib/qt2/man/man3/QCString.3 +lib/qt2/man/man3/QCache.3 +lib/qt2/man/man3/QCacheIterator.3 +lib/qt2/man/man3/QChar.3 +lib/qt2/man/man3/QCharRef.3 +lib/qt2/man/man3/QCheckBox.3 +lib/qt2/man/man3/QCheckListItem.3 +lib/qt2/man/man3/QChildEvent.3 +lib/qt2/man/man3/QClipboard.3 +lib/qt2/man/man3/QCloseEvent.3 +lib/qt2/man/man3/QCollection.3 +lib/qt2/man/man3/QColor.3 +lib/qt2/man/man3/QColorDialog.3 +lib/qt2/man/man3/QColorDrag.3 +lib/qt2/man/man3/QColorGroup.3 +lib/qt2/man/man3/QComboBox.3 +lib/qt2/man/man3/QCommonStyle.3 +lib/qt2/man/man3/QConstString.3 +lib/qt2/man/man3/QCursor.3 +lib/qt2/man/man3/QCustomEvent.3 +lib/qt2/man/man3/QCustomMenuItem.3 +lib/qt2/man/man3/QDataPump.3 +lib/qt2/man/man3/QDataSink.3 +lib/qt2/man/man3/QDataSource.3 +lib/qt2/man/man3/QDataStream.3 +lib/qt2/man/man3/QDate.3 +lib/qt2/man/man3/QDateTime.3 +lib/qt2/man/man3/QDialog.3 +lib/qt2/man/man3/QDict.3 +lib/qt2/man/man3/QDictIterator.3 +lib/qt2/man/man3/QDir.3 +lib/qt2/man/man3/QDoubleValidator.3 +lib/qt2/man/man3/QDragEnterEvent.3 +lib/qt2/man/man3/QDragLeaveEvent.3 +lib/qt2/man/man3/QDragMoveEvent.3 +lib/qt2/man/man3/QDragObject.3 +lib/qt2/man/man3/QDropEvent.3 +lib/qt2/man/man3/QDropSite.3 +lib/qt2/man/man3/QEucJpCodec.3 +lib/qt2/man/man3/QEucKrCodec.3 +lib/qt2/man/man3/QEvent.3 +lib/qt2/man/man3/QFile.3 +lib/qt2/man/man3/QFileDialog.3 +lib/qt2/man/man3/QFileIconProvider.3 +lib/qt2/man/man3/QFileInfo.3 +lib/qt2/man/man3/QFilePreview.3 +lib/qt2/man/man3/QFocusData.3 +lib/qt2/man/man3/QFocusEvent.3 +lib/qt2/man/man3/QFont.3 +lib/qt2/man/man3/QFontDatabase.3 +lib/qt2/man/man3/QFontDialog.3 +lib/qt2/man/man3/QFontInfo.3 +lib/qt2/man/man3/QFontMetrics.3 +lib/qt2/man/man3/QFrame.3 +lib/qt2/man/man3/QGArray.3 +lib/qt2/man/man3/QGCache.3 +lib/qt2/man/man3/QGCacheIterator.3 +lib/qt2/man/man3/QGDict.3 +lib/qt2/man/man3/QGDictIterator.3 +lib/qt2/man/man3/QGL.3 +lib/qt2/man/man3/QGLContext.3 +lib/qt2/man/man3/QGLFormat.3 +lib/qt2/man/man3/QGLWidget.3 +lib/qt2/man/man3/QGLayoutIterator.3 +lib/qt2/man/man3/QGList.3 +lib/qt2/man/man3/QGListIterator.3 +lib/qt2/man/man3/QGVector.3 +lib/qt2/man/man3/QGbkCodec.3 +lib/qt2/man/man3/QGrid.3 +lib/qt2/man/man3/QGridLayout.3 +lib/qt2/man/man3/QGroupBox.3 +lib/qt2/man/man3/QGuardedPtr.3 +lib/qt2/man/man3/QHBox.3 +lib/qt2/man/man3/QHBoxLayout.3 +lib/qt2/man/man3/QHButtonGroup.3 +lib/qt2/man/man3/QHGroupBox.3 +lib/qt2/man/man3/QHeader.3 +lib/qt2/man/man3/QHideEvent.3 +lib/qt2/man/man3/QIODevice.3 +lib/qt2/man/man3/QIODeviceSource.3 +lib/qt2/man/man3/QIconDrag.3 +lib/qt2/man/man3/QIconDragItem.3 +lib/qt2/man/man3/QIconSet.3 +lib/qt2/man/man3/QIconView.3 +lib/qt2/man/man3/QIconViewItem.3 +lib/qt2/man/man3/QImage.3 +lib/qt2/man/man3/QImageConsumer.3 +lib/qt2/man/man3/QImageDecoder.3 +lib/qt2/man/man3/QImageDrag.3 +lib/qt2/man/man3/QImageFormat.3 +lib/qt2/man/man3/QImageFormatType.3 +lib/qt2/man/man3/QImageIO.3 +lib/qt2/man/man3/QInputDialog.3 +lib/qt2/man/man3/QIntCache.3 +lib/qt2/man/man3/QIntCacheIterator.3 +lib/qt2/man/man3/QIntDict.3 +lib/qt2/man/man3/QIntDictIterator.3 +lib/qt2/man/man3/QIntValidator.3 +lib/qt2/man/man3/QJisCodec.3 +lib/qt2/man/man3/QJpUnicodeConv.3 +lib/qt2/man/man3/QKeyEvent.3 +lib/qt2/man/man3/QLCDNumber.3 +lib/qt2/man/man3/QLNode.3 +lib/qt2/man/man3/QLabel.3 +lib/qt2/man/man3/QLayout.3 +lib/qt2/man/man3/QLayoutItem.3 +lib/qt2/man/man3/QLayoutIterator.3 +lib/qt2/man/man3/QLineEdit.3 +lib/qt2/man/man3/QList.3 +lib/qt2/man/man3/QListBox.3 +lib/qt2/man/man3/QListBoxItem.3 +lib/qt2/man/man3/QListBoxPixmap.3 +lib/qt2/man/man3/QListBoxText.3 +lib/qt2/man/man3/QListIterator.3 +lib/qt2/man/man3/QListView.3 +lib/qt2/man/man3/QListViewItem.3 +lib/qt2/man/man3/QListViewItemIterator.3 +lib/qt2/man/man3/QLocalFs.3 +lib/qt2/man/man3/QMainWindow.3 +lib/qt2/man/man3/QMap.3 +lib/qt2/man/man3/QMapConstIterator.3 +lib/qt2/man/man3/QMapIterator.3 +lib/qt2/man/man3/QMenuBar.3 +lib/qt2/man/man3/QMenuData.3 +lib/qt2/man/man3/QMessageBox.3 +lib/qt2/man/man3/QMetaObject.3 +lib/qt2/man/man3/QMetaProperty.3 +lib/qt2/man/man3/QMimeSource.3 +lib/qt2/man/man3/QMimeSourceFactory.3 +lib/qt2/man/man3/QMotifStyle.3 +lib/qt2/man/man3/QMouseEvent.3 +lib/qt2/man/man3/QMoveEvent.3 +lib/qt2/man/man3/QMovie.3 +lib/qt2/man/man3/QMultiLineEdit.3 +lib/qt2/man/man3/QNPInstance.3 +lib/qt2/man/man3/QNPStream.3 +lib/qt2/man/man3/QNPWidget.3 +lib/qt2/man/man3/QNPlugin.3 +lib/qt2/man/man3/QNetworkOperation.3 +lib/qt2/man/man3/QNetworkProtocol.3 +lib/qt2/man/man3/QObject.3 +lib/qt2/man/man3/QPNGImagePacker.3 +lib/qt2/man/man3/QPaintDevice.3 +lib/qt2/man/man3/QPaintDeviceMetrics.3 +lib/qt2/man/man3/QPaintEvent.3 +lib/qt2/man/man3/QPainter.3 +lib/qt2/man/man3/QPalette.3 +lib/qt2/man/man3/QPen.3 +lib/qt2/man/man3/QPicture.3 +lib/qt2/man/man3/QPixmap.3 +lib/qt2/man/man3/QPixmapCache.3 +lib/qt2/man/man3/QPlatinumStyle.3 +lib/qt2/man/man3/QPoint.3 +lib/qt2/man/man3/QPointArray.3 +lib/qt2/man/man3/QPopupMenu.3 +lib/qt2/man/man3/QPrinter.3 +lib/qt2/man/man3/QProgressBar.3 +lib/qt2/man/man3/QProgressDialog.3 +lib/qt2/man/man3/QPtrDict.3 +lib/qt2/man/man3/QPtrDictIterator.3 +lib/qt2/man/man3/QPushButton.3 +lib/qt2/man/man3/QQueue.3 +lib/qt2/man/man3/QRadioButton.3 +lib/qt2/man/man3/QRangeControl.3 +lib/qt2/man/man3/QRect.3 +lib/qt2/man/man3/QRegExp.3 +lib/qt2/man/man3/QRegion.3 +lib/qt2/man/man3/QResizeEvent.3 +lib/qt2/man/man3/QScrollBar.3 +lib/qt2/man/man3/QScrollView.3 +lib/qt2/man/man3/QSemiModal.3 +lib/qt2/man/man3/QSessionManager.3 +lib/qt2/man/man3/QShared.3 +lib/qt2/man/man3/QShowEvent.3 +lib/qt2/man/man3/QSignal.3 +lib/qt2/man/man3/QSignalMapper.3 +lib/qt2/man/man3/QSimpleRichText.3 +lib/qt2/man/man3/QSize.3 +lib/qt2/man/man3/QSizeGrip.3 +lib/qt2/man/man3/QSizePolicy.3 +lib/qt2/man/man3/QSlider.3 +lib/qt2/man/man3/QSocketNotifier.3 +lib/qt2/man/man3/QSortedList.3 +lib/qt2/man/man3/QSpacerItem.3 +lib/qt2/man/man3/QSpinBox.3 +lib/qt2/man/man3/QSplitter.3 +lib/qt2/man/man3/QStack.3 +lib/qt2/man/man3/QStatusBar.3 +lib/qt2/man/man3/QStoredDrag.3 +lib/qt2/man/man3/QStrIList.3 +lib/qt2/man/man3/QStrList.3 +lib/qt2/man/man3/QStrListIterator.3 +lib/qt2/man/man3/QString.3 +lib/qt2/man/man3/QStringList.3 +lib/qt2/man/man3/QStyle.3 +lib/qt2/man/man3/QStyleSheet.3 +lib/qt2/man/man3/QStyleSheetItem.3 +lib/qt2/man/man3/QTab.3 +lib/qt2/man/man3/QTabBar.3 +lib/qt2/man/man3/QTabDialog.3 +lib/qt2/man/man3/QTabWidget.3 +lib/qt2/man/man3/QTableView.3 +lib/qt2/man/man3/QTextBrowser.3 +lib/qt2/man/man3/QTextCodec.3 +lib/qt2/man/man3/QTextDecoder.3 +lib/qt2/man/man3/QTextDrag.3 +lib/qt2/man/man3/QTextEncoder.3 +lib/qt2/man/man3/QTextIStream.3 +lib/qt2/man/man3/QTextOStream.3 +lib/qt2/man/man3/QTextStream.3 +lib/qt2/man/man3/QTextView.3 +lib/qt2/man/man3/QTime.3 +lib/qt2/man/man3/QTimer.3 +lib/qt2/man/man3/QTimerEvent.3 +lib/qt2/man/man3/QToolBar.3 +lib/qt2/man/man3/QToolButton.3 +lib/qt2/man/man3/QToolTip.3 +lib/qt2/man/man3/QToolTipGroup.3 +lib/qt2/man/man3/QTranslator.3 +lib/qt2/man/man3/QUriDrag.3 +lib/qt2/man/man3/QUrl.3 +lib/qt2/man/man3/QUrlOperator.3 +lib/qt2/man/man3/QVBox.3 +lib/qt2/man/man3/QVBoxLayout.3 +lib/qt2/man/man3/QVButtonGroup.3 +lib/qt2/man/man3/QVGroupBox.3 +lib/qt2/man/man3/QValidator.3 +lib/qt2/man/man3/QValueList.3 +lib/qt2/man/man3/QValueListConstIterator.3 +lib/qt2/man/man3/QValueListIterator.3 +lib/qt2/man/man3/QValueStack.3 +lib/qt2/man/man3/QVariant.3 +lib/qt2/man/man3/QVector.3 +lib/qt2/man/man3/QWMatrix.3 +lib/qt2/man/man3/QWhatsThis.3 +lib/qt2/man/man3/QWheelEvent.3 +lib/qt2/man/man3/QWidget.3 +lib/qt2/man/man3/QWidgetItem.3 +lib/qt2/man/man3/QWidgetStack.3 +lib/qt2/man/man3/QWindowsStyle.3 +lib/qt2/man/man3/QWizard.3 +lib/qt2/man/man3/QWorkspace.3 +lib/qt2/man/man3/QXtApplication.3 +lib/qt2/man/man3/QXtWidget.3 +lib/qt2/man/man3/Qt.3 +lib/qt2/man/man3/qaccel.3 +lib/qt2/man/man3/qapplication.3 +lib/qt2/man/man3/qarray.3 +lib/qt2/man/man3/qasciicache.3 +lib/qt2/man/man3/qasciicacheiterator.3 +lib/qt2/man/man3/qasciidict.3 +lib/qt2/man/man3/qasciidictiterator.3 +lib/qt2/man/man3/qasyncio.3 +lib/qt2/man/man3/qbitarray.3 +lib/qt2/man/man3/qbitmap.3 +lib/qt2/man/man3/qbitval.3 +lib/qt2/man/man3/qboxlayout.3 +lib/qt2/man/man3/qbrush.3 +lib/qt2/man/man3/qbuffer.3 +lib/qt2/man/man3/qbutton.3 +lib/qt2/man/man3/qbuttongroup.3 +lib/qt2/man/man3/qbytearray.3 +lib/qt2/man/man3/qcache.3 +lib/qt2/man/man3/qcacheiterator.3 +lib/qt2/man/man3/qcdestyle.3 +lib/qt2/man/man3/qchar.3 +lib/qt2/man/man3/qcharref.3 +lib/qt2/man/man3/qcheckbox.3 +lib/qt2/man/man3/qchecklistitem.3 +lib/qt2/man/man3/qchildevent.3 +lib/qt2/man/man3/qclipboard.3 +lib/qt2/man/man3/qcloseevent.3 +lib/qt2/man/man3/qcollection.3 +lib/qt2/man/man3/qcolor.3 +lib/qt2/man/man3/qcolordialog.3 +lib/qt2/man/man3/qcolordrag.3 +lib/qt2/man/man3/qcolorgroup.3 +lib/qt2/man/man3/qcombobox.3 +lib/qt2/man/man3/qcommonstyle.3 +lib/qt2/man/man3/qconststring.3 +lib/qt2/man/man3/qcstring.3 +lib/qt2/man/man3/qcursor.3 +lib/qt2/man/man3/qcustomevent.3 +lib/qt2/man/man3/qcustommenuitem.3 +lib/qt2/man/man3/qdatapump.3 +lib/qt2/man/man3/qdatasink.3 +lib/qt2/man/man3/qdatasource.3 +lib/qt2/man/man3/qdatastream.3 +lib/qt2/man/man3/qdate.3 +lib/qt2/man/man3/qdatetime.3 +lib/qt2/man/man3/qdialog.3 +lib/qt2/man/man3/qdict.3 +lib/qt2/man/man3/qdictiterator.3 +lib/qt2/man/man3/qdir.3 +lib/qt2/man/man3/qdoublevalidator.3 +lib/qt2/man/man3/qdragenterevent.3 +lib/qt2/man/man3/qdragleaveevent.3 +lib/qt2/man/man3/qdragmoveevent.3 +lib/qt2/man/man3/qdragobject.3 +lib/qt2/man/man3/qdropevent.3 +lib/qt2/man/man3/qdropsite.3 +lib/qt2/man/man3/qeucjpcodec.3 +lib/qt2/man/man3/qeuckrcodec.3 +lib/qt2/man/man3/qevent.3 +lib/qt2/man/man3/qfile.3 +lib/qt2/man/man3/qfiledialog.3 +lib/qt2/man/man3/qfileiconprovider.3 +lib/qt2/man/man3/qfileinfo.3 +lib/qt2/man/man3/qfilepreview.3 +lib/qt2/man/man3/qfocusdata.3 +lib/qt2/man/man3/qfocusevent.3 +lib/qt2/man/man3/qfont.3 +lib/qt2/man/man3/qfontdatabase.3 +lib/qt2/man/man3/qfontdialog.3 +lib/qt2/man/man3/qfontinfo.3 +lib/qt2/man/man3/qfontmetrics.3 +lib/qt2/man/man3/qframe.3 +lib/qt2/man/man3/qgarray.3 +lib/qt2/man/man3/qgbkcodec.3 +lib/qt2/man/man3/qgcache.3 +lib/qt2/man/man3/qgcacheiterator.3 +lib/qt2/man/man3/qgdict.3 +lib/qt2/man/man3/qgdictiterator.3 +lib/qt2/man/man3/qgl.3 +lib/qt2/man/man3/qglayoutiterator.3 +lib/qt2/man/man3/qglcontext.3 +lib/qt2/man/man3/qglformat.3 +lib/qt2/man/man3/qglist.3 +lib/qt2/man/man3/qglistiterator.3 +lib/qt2/man/man3/qglwidget.3 +lib/qt2/man/man3/qgrid.3 +lib/qt2/man/man3/qgridlayout.3 +lib/qt2/man/man3/qgroupbox.3 +lib/qt2/man/man3/qguardedptr.3 +lib/qt2/man/man3/qgvector.3 +lib/qt2/man/man3/qhbox.3 +lib/qt2/man/man3/qhboxlayout.3 +lib/qt2/man/man3/qhbuttongroup.3 +lib/qt2/man/man3/qheader.3 +lib/qt2/man/man3/qhgroupbox.3 +lib/qt2/man/man3/qhideevent.3 +lib/qt2/man/man3/qicondrag.3 +lib/qt2/man/man3/qicondragitem.3 +lib/qt2/man/man3/qiconset.3 +lib/qt2/man/man3/qiconview.3 +lib/qt2/man/man3/qiconviewitem.3 +lib/qt2/man/man3/qimage.3 +lib/qt2/man/man3/qimageconsumer.3 +lib/qt2/man/man3/qimagedecoder.3 +lib/qt2/man/man3/qimagedrag.3 +lib/qt2/man/man3/qimageformat.3 +lib/qt2/man/man3/qimageformattype.3 +lib/qt2/man/man3/qimageio.3 +lib/qt2/man/man3/qinputdialog.3 +lib/qt2/man/man3/qintcache.3 +lib/qt2/man/man3/qintcacheiterator.3 +lib/qt2/man/man3/qintdict.3 +lib/qt2/man/man3/qintdictiterator.3 +lib/qt2/man/man3/qintvalidator.3 +lib/qt2/man/man3/qiodevice.3 +lib/qt2/man/man3/qiodevicesource.3 +lib/qt2/man/man3/qjiscodec.3 +lib/qt2/man/man3/qjpunicodeconv.3 +lib/qt2/man/man3/qkeyevent.3 +lib/qt2/man/man3/qlabel.3 +lib/qt2/man/man3/qlayout.3 +lib/qt2/man/man3/qlayoutitem.3 +lib/qt2/man/man3/qlayoutiterator.3 +lib/qt2/man/man3/qlcdnumber.3 +lib/qt2/man/man3/qlineedit.3 +lib/qt2/man/man3/qlist.3 +lib/qt2/man/man3/qlistbox.3 +lib/qt2/man/man3/qlistboxitem.3 +lib/qt2/man/man3/qlistboxpixmap.3 +lib/qt2/man/man3/qlistboxtext.3 +lib/qt2/man/man3/qlistiterator.3 +lib/qt2/man/man3/qlistview.3 +lib/qt2/man/man3/qlistviewitem.3 +lib/qt2/man/man3/qlistviewitemiterator.3 +lib/qt2/man/man3/qlnode.3 +lib/qt2/man/man3/qlocalfs.3 +lib/qt2/man/man3/qmainwindow.3 +lib/qt2/man/man3/qmap.3 +lib/qt2/man/man3/qmapconstiterator.3 +lib/qt2/man/man3/qmapiterator.3 +lib/qt2/man/man3/qmenubar.3 +lib/qt2/man/man3/qmenudata.3 +lib/qt2/man/man3/qmessagebox.3 +lib/qt2/man/man3/qmetaobject.3 +lib/qt2/man/man3/qmetaproperty.3 +lib/qt2/man/man3/qmimesource.3 +lib/qt2/man/man3/qmimesourcefactory.3 +lib/qt2/man/man3/qmotifstyle.3 +lib/qt2/man/man3/qmouseevent.3 +lib/qt2/man/man3/qmoveevent.3 +lib/qt2/man/man3/qmovie.3 +lib/qt2/man/man3/qmultilineedit.3 +lib/qt2/man/man3/qnetworkoperation.3 +lib/qt2/man/man3/qnetworkprotocol.3 +lib/qt2/man/man3/qnpinstance.3 +lib/qt2/man/man3/qnplugin.3 +lib/qt2/man/man3/qnpstream.3 +lib/qt2/man/man3/qnpwidget.3 +lib/qt2/man/man3/qobject.3 +lib/qt2/man/man3/qpaintdevice.3 +lib/qt2/man/man3/qpaintdevicemetrics.3 +lib/qt2/man/man3/qpainter.3 +lib/qt2/man/man3/qpaintevent.3 +lib/qt2/man/man3/qpalette.3 +lib/qt2/man/man3/qpen.3 +lib/qt2/man/man3/qpicture.3 +lib/qt2/man/man3/qpixmap.3 +lib/qt2/man/man3/qpixmapcache.3 +lib/qt2/man/man3/qplatinumstyle.3 +lib/qt2/man/man3/qpngimagepacker.3 +lib/qt2/man/man3/qpoint.3 +lib/qt2/man/man3/qpointarray.3 +lib/qt2/man/man3/qpopupmenu.3 +lib/qt2/man/man3/qprinter.3 +lib/qt2/man/man3/qprogressbar.3 +lib/qt2/man/man3/qprogressdialog.3 +lib/qt2/man/man3/qptrdict.3 +lib/qt2/man/man3/qptrdictiterator.3 +lib/qt2/man/man3/qpushbutton.3 +lib/qt2/man/man3/qqueue.3 +lib/qt2/man/man3/qradiobutton.3 +lib/qt2/man/man3/qrangecontrol.3 +lib/qt2/man/man3/qrect.3 +lib/qt2/man/man3/qregexp.3 +lib/qt2/man/man3/qregion.3 +lib/qt2/man/man3/qresizeevent.3 +lib/qt2/man/man3/qscrollbar.3 +lib/qt2/man/man3/qscrollview.3 +lib/qt2/man/man3/qsemimodal.3 +lib/qt2/man/man3/qsessionmanager.3 +lib/qt2/man/man3/qshared.3 +lib/qt2/man/man3/qshowevent.3 +lib/qt2/man/man3/qsignal.3 +lib/qt2/man/man3/qsignalmapper.3 +lib/qt2/man/man3/qsimplerichtext.3 +lib/qt2/man/man3/qsize.3 +lib/qt2/man/man3/qsizegrip.3 +lib/qt2/man/man3/qsizepolicy.3 +lib/qt2/man/man3/qslider.3 +lib/qt2/man/man3/qsocketnotifier.3 +lib/qt2/man/man3/qsortedlist.3 +lib/qt2/man/man3/qspaceritem.3 +lib/qt2/man/man3/qspinbox.3 +lib/qt2/man/man3/qsplitter.3 +lib/qt2/man/man3/qstack.3 +lib/qt2/man/man3/qstatusbar.3 +lib/qt2/man/man3/qstoreddrag.3 +lib/qt2/man/man3/qstrilist.3 +lib/qt2/man/man3/qstring.3 +lib/qt2/man/man3/qstringlist.3 +lib/qt2/man/man3/qstrlist.3 +lib/qt2/man/man3/qstrlistiterator.3 +lib/qt2/man/man3/qstyle.3 +lib/qt2/man/man3/qstylesheet.3 +lib/qt2/man/man3/qstylesheetitem.3 +lib/qt2/man/man3/qt.3 +lib/qt2/man/man3/qtab.3 +lib/qt2/man/man3/qtabbar.3 +lib/qt2/man/man3/qtabdialog.3 +lib/qt2/man/man3/qtableview.3 +lib/qt2/man/man3/qtabwidget.3 +lib/qt2/man/man3/qtextbrowser.3 +lib/qt2/man/man3/qtextcodec.3 +lib/qt2/man/man3/qtextdecoder.3 +lib/qt2/man/man3/qtextdrag.3 +lib/qt2/man/man3/qtextencoder.3 +lib/qt2/man/man3/qtextistream.3 +lib/qt2/man/man3/qtextostream.3 +lib/qt2/man/man3/qtextstream.3 +lib/qt2/man/man3/qtextview.3 +lib/qt2/man/man3/qtime.3 +lib/qt2/man/man3/qtimer.3 +lib/qt2/man/man3/qtimerevent.3 +lib/qt2/man/man3/qtoolbar.3 +lib/qt2/man/man3/qtoolbutton.3 +lib/qt2/man/man3/qtooltip.3 +lib/qt2/man/man3/qtooltipgroup.3 +lib/qt2/man/man3/qtranslator.3 +lib/qt2/man/man3/quridrag.3 +lib/qt2/man/man3/qurl.3 +lib/qt2/man/man3/qurloperator.3 +lib/qt2/man/man3/qvalidator.3 +lib/qt2/man/man3/qvaluelist.3 +lib/qt2/man/man3/qvaluelistconstiterator.3 +lib/qt2/man/man3/qvaluelistiterator.3 +lib/qt2/man/man3/qvaluestack.3 +lib/qt2/man/man3/qvariant.3 +lib/qt2/man/man3/qvbox.3 +lib/qt2/man/man3/qvboxlayout.3 +lib/qt2/man/man3/qvbuttongroup.3 +lib/qt2/man/man3/qvector.3 +lib/qt2/man/man3/qvgroupbox.3 +lib/qt2/man/man3/qwhatsthis.3 +lib/qt2/man/man3/qwheelevent.3 +lib/qt2/man/man3/qwidget.3 +lib/qt2/man/man3/qwidgetitem.3 +lib/qt2/man/man3/qwidgetstack.3 +lib/qt2/man/man3/qwindowsstyle.3 +lib/qt2/man/man3/qwizard.3 +lib/qt2/man/man3/qwmatrix.3 +lib/qt2/man/man3/qworkspace.3 +lib/qt2/man/man3/qxtapplication.3 +lib/qt2/man/man3/qxtwidget.3 +share/doc/qt2/ANNOUNCE +share/doc/qt2/FAQ +share/doc/qt2/LICENSE.QPL +share/doc/qt2/README +share/doc/qt2/README.QT +share/doc/qt2/changes-2.1.0 +share/doc/qt2/changes-2.1.1 +@unexec echo "Please remove %D/lib/qt2/man from /etc/man.conf manually if needed" +@dirrm share/doc/qt2 +@dirrm lib/qt2/man/man3 +@dirrm lib/qt2/man +@dirrm lib/qt2/bin +@dirrm lib/qt2 +@dirrm include/X11/qt2 diff --git a/x11/qt2/pkg/PLIST-examples b/x11/qt2/pkg/PLIST-examples new file mode 100644 index 00000000000..b454d8a9abc --- /dev/null +++ b/x11/qt2/pkg/PLIST-examples @@ -0,0 +1,583 @@ +@comment $OpenBSD: PLIST-examples,v 1.1.1.1 2000/06/22 23:53:45 espie Exp $ +@pkgdep qt2-1.1 +lib/qt2/examples/bin/aclock +lib/qt2/examples/bin/addressbook +lib/qt2/examples/bin/application +lib/qt2/examples/bin/buttongroups +lib/qt2/examples/bin/checklists +lib/qt2/examples/bin/cursor +lib/qt2/examples/bin/customlayout +lib/qt2/examples/bin/dclock +lib/qt2/examples/bin/dirview +lib/qt2/examples/bin/dragdrop +lib/qt2/examples/bin/drawdemo +lib/qt2/examples/bin/drawlines +lib/qt2/examples/bin/fileiconview +lib/qt2/examples/bin/forever +lib/qt2/examples/bin/hello +lib/qt2/examples/bin/helpviewer +lib/qt2/examples/bin/i18n +lib/qt2/examples/bin/iconview +lib/qt2/examples/bin/layout +lib/qt2/examples/bin/life +lib/qt2/examples/bin/lineedits +lib/qt2/examples/bin/listbox +lib/qt2/examples/bin/listboxcombo +lib/qt2/examples/bin/listviews +lib/qt2/examples/bin/mdi +lib/qt2/examples/bin/menu +lib/qt2/examples/bin/movies +lib/qt2/examples/bin/picture +lib/qt2/examples/bin/popup +lib/qt2/examples/bin/progress +lib/qt2/examples/bin/progressbar +lib/qt2/examples/bin/qdir +lib/qt2/examples/bin/qfd +lib/qt2/examples/bin/qmag +lib/qt2/examples/bin/qwerty +lib/qt2/examples/bin/rangecontrols +lib/qt2/examples/bin/richtext +lib/qt2/examples/bin/rot13 +lib/qt2/examples/bin/scribble +lib/qt2/examples/bin/scrollview +lib/qt2/examples/bin/showimg +lib/qt2/examples/bin/splitter +lib/qt2/examples/bin/tabdialog +lib/qt2/examples/bin/table +lib/qt2/examples/bin/tetrix +lib/qt2/examples/bin/themes +lib/qt2/examples/bin/tictac +lib/qt2/examples/bin/tooltip +lib/qt2/examples/bin/validator +lib/qt2/examples/bin/widgets +lib/qt2/examples/bin/wizard +lib/qt2/examples/bin/xform +lib/qt2/examples/src/Makefile.in +lib/qt2/examples/src/README +lib/qt2/examples/src/aclock/Makefile.in +lib/qt2/examples/src/aclock/README +lib/qt2/examples/src/aclock/aclock.cpp +lib/qt2/examples/src/aclock/aclock.h +lib/qt2/examples/src/aclock/aclock.pro +lib/qt2/examples/src/aclock/main.cpp +lib/qt2/examples/src/addressbook/Makefile.in +lib/qt2/examples/src/addressbook/addressbook.pro +lib/qt2/examples/src/addressbook/centralwidget.cpp +lib/qt2/examples/src/addressbook/centralwidget.h +lib/qt2/examples/src/addressbook/fileopen.xpm +lib/qt2/examples/src/addressbook/fileprint.xpm +lib/qt2/examples/src/addressbook/filesave.xpm +lib/qt2/examples/src/addressbook/main.cpp +lib/qt2/examples/src/addressbook/mainwindow.cpp +lib/qt2/examples/src/addressbook/mainwindow.h +lib/qt2/examples/src/application/Makefile.in +lib/qt2/examples/src/application/application.cpp +lib/qt2/examples/src/application/application.h +lib/qt2/examples/src/application/application.pro +lib/qt2/examples/src/application/fileopen.xpm +lib/qt2/examples/src/application/fileprint.xpm +lib/qt2/examples/src/application/filesave.xpm +lib/qt2/examples/src/application/main.cpp +lib/qt2/examples/src/biff/Makefile.in +lib/qt2/examples/src/biff/biff.cpp +lib/qt2/examples/src/biff/biff.h +lib/qt2/examples/src/biff/biff.pro +lib/qt2/examples/src/biff/bmp.cpp +lib/qt2/examples/src/biff/main.cpp +lib/qt2/examples/src/buttongroups/Makefile.in +lib/qt2/examples/src/buttongroups/README +lib/qt2/examples/src/buttongroups/buttongroups.cpp +lib/qt2/examples/src/buttongroups/buttongroups.h +lib/qt2/examples/src/buttongroups/buttongroups.pro +lib/qt2/examples/src/buttongroups/main.cpp +lib/qt2/examples/src/checklists/Makefile.in +lib/qt2/examples/src/checklists/checklists.cpp +lib/qt2/examples/src/checklists/checklists.h +lib/qt2/examples/src/checklists/checklists.pro +lib/qt2/examples/src/checklists/main.cpp +lib/qt2/examples/src/cursor/Makefile.in +lib/qt2/examples/src/cursor/README +lib/qt2/examples/src/cursor/cursor.cpp +lib/qt2/examples/src/cursor/cursor.pro +lib/qt2/examples/src/customlayout/Makefile.in +lib/qt2/examples/src/customlayout/border.cpp +lib/qt2/examples/src/customlayout/border.h +lib/qt2/examples/src/customlayout/card.cpp +lib/qt2/examples/src/customlayout/card.h +lib/qt2/examples/src/customlayout/customlayout.pro +lib/qt2/examples/src/customlayout/flow.cpp +lib/qt2/examples/src/customlayout/flow.h +lib/qt2/examples/src/customlayout/main.cpp +lib/qt2/examples/src/dclock/Makefile.in +lib/qt2/examples/src/dclock/README +lib/qt2/examples/src/dclock/dclock.cpp +lib/qt2/examples/src/dclock/dclock.h +lib/qt2/examples/src/dclock/dclock.pro +lib/qt2/examples/src/dclock/main.cpp +lib/qt2/examples/src/desktop/Makefile.in +lib/qt2/examples/src/desktop/README +lib/qt2/examples/src/desktop/desktop.cpp +lib/qt2/examples/src/desktop/desktop.pro +lib/qt2/examples/src/dirview/Makefile.in +lib/qt2/examples/src/dirview/dirview.cpp +lib/qt2/examples/src/dirview/dirview.h +lib/qt2/examples/src/dirview/dirview.pro +lib/qt2/examples/src/dirview/main.cpp +lib/qt2/examples/src/dragdrop/Makefile.in +lib/qt2/examples/src/dragdrop/dragdrop.pro +lib/qt2/examples/src/dragdrop/dropsite.cpp +lib/qt2/examples/src/dragdrop/dropsite.h +lib/qt2/examples/src/dragdrop/main.cpp +lib/qt2/examples/src/dragdrop/secret.cpp +lib/qt2/examples/src/dragdrop/secret.h +lib/qt2/examples/src/dragdrop/trolltech.bmp +lib/qt2/examples/src/dragdrop/trolltech.gif +lib/qt2/examples/src/drawdemo/Makefile.in +lib/qt2/examples/src/drawdemo/README +lib/qt2/examples/src/drawdemo/drawdemo.cpp +lib/qt2/examples/src/drawdemo/drawdemo.pro +lib/qt2/examples/src/drawlines/Makefile.in +lib/qt2/examples/src/drawlines/README +lib/qt2/examples/src/drawlines/connect.cpp +lib/qt2/examples/src/drawlines/drawlines.pro +lib/qt2/examples/src/examples.pro +lib/qt2/examples/src/fileiconview/Makefile.in +lib/qt2/examples/src/fileiconview/fileiconview.pro +lib/qt2/examples/src/fileiconview/main.cpp +lib/qt2/examples/src/fileiconview/mainwindow.cpp +lib/qt2/examples/src/fileiconview/mainwindow.h +lib/qt2/examples/src/fileiconview/qfileiconview.cpp +lib/qt2/examples/src/fileiconview/qfileiconview.h +lib/qt2/examples/src/forever/Makefile.in +lib/qt2/examples/src/forever/README +lib/qt2/examples/src/forever/forever.cpp +lib/qt2/examples/src/forever/forever.h +lib/qt2/examples/src/forever/forever.pro +lib/qt2/examples/src/hello/Makefile.in +lib/qt2/examples/src/hello/README +lib/qt2/examples/src/hello/hello.cpp +lib/qt2/examples/src/hello/hello.h +lib/qt2/examples/src/hello/hello.pro +lib/qt2/examples/src/hello/main.cpp +lib/qt2/examples/src/helpviewer/Makefile.in +lib/qt2/examples/src/helpviewer/back.xpm +lib/qt2/examples/src/helpviewer/forward.xpm +lib/qt2/examples/src/helpviewer/helpviewer.pro +lib/qt2/examples/src/helpviewer/helpwindow.cpp +lib/qt2/examples/src/helpviewer/helpwindow.h +lib/qt2/examples/src/helpviewer/home.xpm +lib/qt2/examples/src/helpviewer/main.cpp +lib/qt2/examples/src/i18n/Makefile.in +lib/qt2/examples/src/i18n/README +lib/qt2/examples/src/i18n/i18n.pro +lib/qt2/examples/src/i18n/main.cpp +lib/qt2/examples/src/i18n/mywidget.cpp +lib/qt2/examples/src/i18n/mywidget.h +lib/qt2/examples/src/i18n/mywidget.po +lib/qt2/examples/src/i18n/mywidget_de.po +lib/qt2/examples/src/i18n/mywidget_de.qm +lib/qt2/examples/src/i18n/mywidget_el.po +lib/qt2/examples/src/i18n/mywidget_el.qm +lib/qt2/examples/src/i18n/mywidget_en.qm +lib/qt2/examples/src/i18n/mywidget_eo.po +lib/qt2/examples/src/i18n/mywidget_eo.qm +lib/qt2/examples/src/i18n/mywidget_fr.po +lib/qt2/examples/src/i18n/mywidget_fr.qm +lib/qt2/examples/src/i18n/mywidget_it.po +lib/qt2/examples/src/i18n/mywidget_it.qm +lib/qt2/examples/src/i18n/mywidget_jp.po +lib/qt2/examples/src/i18n/mywidget_jp.qm +lib/qt2/examples/src/i18n/mywidget_ko.po +lib/qt2/examples/src/i18n/mywidget_ko.qm +lib/qt2/examples/src/i18n/mywidget_no.po +lib/qt2/examples/src/i18n/mywidget_no.qm +lib/qt2/examples/src/i18n/mywidget_ru.po +lib/qt2/examples/src/i18n/mywidget_ru.qm +lib/qt2/examples/src/iconview/Makefile.in +lib/qt2/examples/src/iconview/iconview.pro +lib/qt2/examples/src/iconview/main.cpp +lib/qt2/examples/src/layout/Makefile.in +lib/qt2/examples/src/layout/layout.cpp +lib/qt2/examples/src/layout/layout.pro +lib/qt2/examples/src/life/Makefile.in +lib/qt2/examples/src/life/life.cpp +lib/qt2/examples/src/life/life.h +lib/qt2/examples/src/life/life.pro +lib/qt2/examples/src/life/lifedlg.cpp +lib/qt2/examples/src/life/lifedlg.h +lib/qt2/examples/src/life/main.cpp +lib/qt2/examples/src/life/patterns.cpp +lib/qt2/examples/src/lineedits/Makefile.in +lib/qt2/examples/src/lineedits/lineedits.cpp +lib/qt2/examples/src/lineedits/lineedits.h +lib/qt2/examples/src/lineedits/lineedits.pro +lib/qt2/examples/src/lineedits/main.cpp +lib/qt2/examples/src/listbox/Makefile.in +lib/qt2/examples/src/listbox/listbox.cpp +lib/qt2/examples/src/listbox/listbox.h +lib/qt2/examples/src/listbox/listbox.pro +lib/qt2/examples/src/listbox/main.cpp +lib/qt2/examples/src/listboxcombo/Makefile.in +lib/qt2/examples/src/listboxcombo/fileopen.xpm +lib/qt2/examples/src/listboxcombo/listboxcombo.cpp +lib/qt2/examples/src/listboxcombo/listboxcombo.h +lib/qt2/examples/src/listboxcombo/listboxcombo.pro +lib/qt2/examples/src/listboxcombo/main.cpp +lib/qt2/examples/src/listboxcombo/qtlogo.png +lib/qt2/examples/src/listviews/Makefile.in +lib/qt2/examples/src/listviews/listviews.cpp +lib/qt2/examples/src/listviews/listviews.h +lib/qt2/examples/src/listviews/listviews.pro +lib/qt2/examples/src/listviews/main.cpp +lib/qt2/examples/src/mdi/Makefile.in +lib/qt2/examples/src/mdi/application.cpp +lib/qt2/examples/src/mdi/application.h +lib/qt2/examples/src/mdi/document.xpm +lib/qt2/examples/src/mdi/fileopen.xpm +lib/qt2/examples/src/mdi/fileprint.xpm +lib/qt2/examples/src/mdi/filesave.xpm +lib/qt2/examples/src/mdi/main.cpp +lib/qt2/examples/src/mdi/mdi.pro +lib/qt2/examples/src/menu/Makefile.in +lib/qt2/examples/src/menu/menu.cpp +lib/qt2/examples/src/menu/menu.h +lib/qt2/examples/src/menu/menu.pro +lib/qt2/examples/src/movies/Makefile.in +lib/qt2/examples/src/movies/README +lib/qt2/examples/src/movies/main.cpp +lib/qt2/examples/src/movies/movies.pro +lib/qt2/examples/src/movies/trolltech.gif +lib/qt2/examples/src/picture/Makefile.in +lib/qt2/examples/src/picture/README +lib/qt2/examples/src/picture/car_orig.pic +lib/qt2/examples/src/picture/flag.bmp +lib/qt2/examples/src/picture/picture.cpp +lib/qt2/examples/src/picture/picture.pro +lib/qt2/examples/src/popup/Makefile.in +lib/qt2/examples/src/popup/README +lib/qt2/examples/src/popup/popup.cpp +lib/qt2/examples/src/popup/popup.h +lib/qt2/examples/src/popup/popup.pro +lib/qt2/examples/src/progress/Makefile.in +lib/qt2/examples/src/progress/README +lib/qt2/examples/src/progress/progress.cpp +lib/qt2/examples/src/progress/progress.pro +lib/qt2/examples/src/progressbar/Makefile.in +lib/qt2/examples/src/progressbar/main.cpp +lib/qt2/examples/src/progressbar/progressbar.cpp +lib/qt2/examples/src/progressbar/progressbar.h +lib/qt2/examples/src/progressbar/progressbar.pro +lib/qt2/examples/src/qdir/Makefile.in +lib/qt2/examples/src/qdir/qdir.cpp +lib/qt2/examples/src/qdir/qdir.h +lib/qt2/examples/src/qdir/qdir.pro +lib/qt2/examples/src/qfd/Makefile.in +lib/qt2/examples/src/qfd/fontdisplayer.cpp +lib/qt2/examples/src/qfd/fontdisplayer.h +lib/qt2/examples/src/qfd/qfd.cpp +lib/qt2/examples/src/qfd/qfd.pro +lib/qt2/examples/src/qmag/Makefile.in +lib/qt2/examples/src/qmag/README +lib/qt2/examples/src/qmag/qmag.cpp +lib/qt2/examples/src/qmag/qmag.pro +lib/qt2/examples/src/qwerty/ANSI_X3.110-1983.map +lib/qt2/examples/src/qwerty/ANSI_X3.110-1983.txt +lib/qt2/examples/src/qwerty/IBM277.map +lib/qt2/examples/src/qwerty/IBM277.txt +lib/qt2/examples/src/qwerty/Makefile.in +lib/qt2/examples/src/qwerty/eucJP.txt +lib/qt2/examples/src/qwerty/koi8.txt +lib/qt2/examples/src/qwerty/latin1.txt +lib/qt2/examples/src/qwerty/main.cpp +lib/qt2/examples/src/qwerty/msunicode.txt +lib/qt2/examples/src/qwerty/qwerty.cpp +lib/qt2/examples/src/qwerty/qwerty.h +lib/qt2/examples/src/qwerty/qwerty.pro +lib/qt2/examples/src/qwerty/unicode.txt +lib/qt2/examples/src/rangecontrols/Makefile.in +lib/qt2/examples/src/rangecontrols/main.cpp +lib/qt2/examples/src/rangecontrols/rangecontrols.cpp +lib/qt2/examples/src/rangecontrols/rangecontrols.h +lib/qt2/examples/src/rangecontrols/rangecontrols.pro +lib/qt2/examples/src/richtext/Makefile.in +lib/qt2/examples/src/richtext/main.cpp +lib/qt2/examples/src/richtext/richtext.cpp +lib/qt2/examples/src/richtext/richtext.h +lib/qt2/examples/src/richtext/richtext.pro +lib/qt2/examples/src/rot13/Makefile.in +lib/qt2/examples/src/rot13/rot13.cpp +lib/qt2/examples/src/rot13/rot13.h +lib/qt2/examples/src/rot13/rot13.pro +lib/qt2/examples/src/scribble/Makefile.in +lib/qt2/examples/src/scribble/main.cpp +lib/qt2/examples/src/scribble/scribble.cpp +lib/qt2/examples/src/scribble/scribble.h +lib/qt2/examples/src/scribble/scribble.pro +lib/qt2/examples/src/scrollview/Makefile.in +lib/qt2/examples/src/scrollview/README +lib/qt2/examples/src/scrollview/bg.ppm +lib/qt2/examples/src/scrollview/scrollview.cpp +lib/qt2/examples/src/scrollview/scrollview.pro +lib/qt2/examples/src/showimg/Makefile.in +lib/qt2/examples/src/showimg/README +lib/qt2/examples/src/showimg/imagefip.cpp +lib/qt2/examples/src/showimg/imagefip.h +lib/qt2/examples/src/showimg/imagetexteditor.cpp +lib/qt2/examples/src/showimg/imagetexteditor.h +lib/qt2/examples/src/showimg/main.cpp +lib/qt2/examples/src/showimg/showimg.cpp +lib/qt2/examples/src/showimg/showimg.h +lib/qt2/examples/src/showimg/showimg.pro +lib/qt2/examples/src/splitter/Makefile.in +lib/qt2/examples/src/splitter/splitter.cpp +lib/qt2/examples/src/splitter/splitter.pro +lib/qt2/examples/src/tabdialog/Makefile.in +lib/qt2/examples/src/tabdialog/main.cpp +lib/qt2/examples/src/tabdialog/tabdialog.cpp +lib/qt2/examples/src/tabdialog/tabdialog.h +lib/qt2/examples/src/tabdialog/tabdialog.pro +lib/qt2/examples/src/table/Makefile.in +lib/qt2/examples/src/table/README +lib/qt2/examples/src/table/main.cpp +lib/qt2/examples/src/table/table.cpp +lib/qt2/examples/src/table/table.h +lib/qt2/examples/src/table/table.pro +lib/qt2/examples/src/tetrix/Makefile.in +lib/qt2/examples/src/tetrix/README +lib/qt2/examples/src/tetrix/gtetrix.cpp +lib/qt2/examples/src/tetrix/gtetrix.h +lib/qt2/examples/src/tetrix/qdragapp.cpp +lib/qt2/examples/src/tetrix/qdragapp.h +lib/qt2/examples/src/tetrix/qtetrix.cpp +lib/qt2/examples/src/tetrix/qtetrix.h +lib/qt2/examples/src/tetrix/qtetrixb.cpp +lib/qt2/examples/src/tetrix/qtetrixb.h +lib/qt2/examples/src/tetrix/tetrix.cpp +lib/qt2/examples/src/tetrix/tetrix.pro +lib/qt2/examples/src/tetrix/tpiece.cpp +lib/qt2/examples/src/tetrix/tpiece.h +lib/qt2/examples/src/themes/Makefile.in +lib/qt2/examples/src/themes/fileopen.xpm +lib/qt2/examples/src/themes/main.cpp +lib/qt2/examples/src/themes/marble.xpm +lib/qt2/examples/src/themes/metal.cpp +lib/qt2/examples/src/themes/metal.h +lib/qt2/examples/src/themes/metal.xpm +lib/qt2/examples/src/themes/qt.bmp +lib/qt2/examples/src/themes/qtlogo.png +lib/qt2/examples/src/themes/stone1.xpm +lib/qt2/examples/src/themes/stonebright.xpm +lib/qt2/examples/src/themes/stonedark.xpm +lib/qt2/examples/src/themes/themes.cpp +lib/qt2/examples/src/themes/themes.h +lib/qt2/examples/src/themes/themes.pro +lib/qt2/examples/src/themes/trolltech.gif +lib/qt2/examples/src/themes/wood.cpp +lib/qt2/examples/src/themes/wood.h +lib/qt2/examples/src/tictac/Makefile.in +lib/qt2/examples/src/tictac/README +lib/qt2/examples/src/tictac/main.cpp +lib/qt2/examples/src/tictac/tictac.cpp +lib/qt2/examples/src/tictac/tictac.h +lib/qt2/examples/src/tictac/tictac.pro +lib/qt2/examples/src/tooltip/Makefile.in +lib/qt2/examples/src/tooltip/README +lib/qt2/examples/src/tooltip/main.cpp +lib/qt2/examples/src/tooltip/tooltip.cpp +lib/qt2/examples/src/tooltip/tooltip.h +lib/qt2/examples/src/tooltip/tooltip.pro +lib/qt2/examples/src/validator/Makefile.in +lib/qt2/examples/src/validator/main.cpp +lib/qt2/examples/src/validator/motor.cpp +lib/qt2/examples/src/validator/motor.h +lib/qt2/examples/src/validator/validator.pro +lib/qt2/examples/src/validator/vw.cpp +lib/qt2/examples/src/validator/vw.h +lib/qt2/examples/src/widgets/Makefile.in +lib/qt2/examples/src/widgets/README +lib/qt2/examples/src/widgets/main.cpp +lib/qt2/examples/src/widgets/qt.bmp +lib/qt2/examples/src/widgets/trolltech.bmp +lib/qt2/examples/src/widgets/trolltech.gif +lib/qt2/examples/src/widgets/widgets.cpp +lib/qt2/examples/src/widgets/widgets.h +lib/qt2/examples/src/widgets/widgets.pro +lib/qt2/examples/src/wizard/Makefile.in +lib/qt2/examples/src/wizard/main.cpp +lib/qt2/examples/src/wizard/wizard.cpp +lib/qt2/examples/src/wizard/wizard.h +lib/qt2/examples/src/wizard/wizard.pro +lib/qt2/examples/src/xform/Makefile.in +lib/qt2/examples/src/xform/README +lib/qt2/examples/src/xform/aticatac.cpp +lib/qt2/examples/src/xform/image.any +lib/qt2/examples/src/xform/picture.any +lib/qt2/examples/src/xform/xform.cpp +lib/qt2/examples/src/xform/xform.pro +lib/qt2/tutorial/bin/t1 +lib/qt2/tutorial/bin/t10 +lib/qt2/tutorial/bin/t11 +lib/qt2/tutorial/bin/t12 +lib/qt2/tutorial/bin/t13 +lib/qt2/tutorial/bin/t14 +lib/qt2/tutorial/bin/t2 +lib/qt2/tutorial/bin/t3 +lib/qt2/tutorial/bin/t4 +lib/qt2/tutorial/bin/t5 +lib/qt2/tutorial/bin/t6 +lib/qt2/tutorial/bin/t7 +lib/qt2/tutorial/bin/t8 +lib/qt2/tutorial/bin/t9 +lib/qt2/tutorial/src/Makefile.in +lib/qt2/tutorial/src/README +lib/qt2/tutorial/src/t1/Makefile.in +lib/qt2/tutorial/src/t1/main.cpp +lib/qt2/tutorial/src/t1/t1.pro +lib/qt2/tutorial/src/t10/Makefile.in +lib/qt2/tutorial/src/t10/cannon.cpp +lib/qt2/tutorial/src/t10/cannon.h +lib/qt2/tutorial/src/t10/lcdrange.cpp +lib/qt2/tutorial/src/t10/lcdrange.h +lib/qt2/tutorial/src/t10/main.cpp +lib/qt2/tutorial/src/t10/t10.pro +lib/qt2/tutorial/src/t11/Makefile.in +lib/qt2/tutorial/src/t11/cannon.cpp +lib/qt2/tutorial/src/t11/cannon.h +lib/qt2/tutorial/src/t11/lcdrange.cpp +lib/qt2/tutorial/src/t11/lcdrange.h +lib/qt2/tutorial/src/t11/main.cpp +lib/qt2/tutorial/src/t11/t11.pro +lib/qt2/tutorial/src/t12/Makefile.in +lib/qt2/tutorial/src/t12/cannon.cpp +lib/qt2/tutorial/src/t12/cannon.h +lib/qt2/tutorial/src/t12/lcdrange.cpp +lib/qt2/tutorial/src/t12/lcdrange.h +lib/qt2/tutorial/src/t12/main.cpp +lib/qt2/tutorial/src/t12/t12.pro +lib/qt2/tutorial/src/t13/Makefile.in +lib/qt2/tutorial/src/t13/cannon.cpp +lib/qt2/tutorial/src/t13/cannon.h +lib/qt2/tutorial/src/t13/gamebrd.cpp +lib/qt2/tutorial/src/t13/gamebrd.h +lib/qt2/tutorial/src/t13/lcdrange.cpp +lib/qt2/tutorial/src/t13/lcdrange.h +lib/qt2/tutorial/src/t13/main.cpp +lib/qt2/tutorial/src/t13/t13.pro +lib/qt2/tutorial/src/t14/Makefile.in +lib/qt2/tutorial/src/t14/cannon.cpp +lib/qt2/tutorial/src/t14/cannon.h +lib/qt2/tutorial/src/t14/gamebrd.cpp +lib/qt2/tutorial/src/t14/gamebrd.h +lib/qt2/tutorial/src/t14/lcdrange.cpp +lib/qt2/tutorial/src/t14/lcdrange.h +lib/qt2/tutorial/src/t14/main.cpp +lib/qt2/tutorial/src/t14/t14.pro +lib/qt2/tutorial/src/t2/Makefile.in +lib/qt2/tutorial/src/t2/main.cpp +lib/qt2/tutorial/src/t2/t2.pro +lib/qt2/tutorial/src/t3/Makefile.in +lib/qt2/tutorial/src/t3/main.cpp +lib/qt2/tutorial/src/t3/t3.pro +lib/qt2/tutorial/src/t4/Makefile.in +lib/qt2/tutorial/src/t4/main.cpp +lib/qt2/tutorial/src/t4/t4.pro +lib/qt2/tutorial/src/t5/Makefile.in +lib/qt2/tutorial/src/t5/main.cpp +lib/qt2/tutorial/src/t5/t5.pro +lib/qt2/tutorial/src/t6/Makefile.in +lib/qt2/tutorial/src/t6/main.cpp +lib/qt2/tutorial/src/t6/t6.pro +lib/qt2/tutorial/src/t7/Makefile.in +lib/qt2/tutorial/src/t7/lcdrange.cpp +lib/qt2/tutorial/src/t7/lcdrange.h +lib/qt2/tutorial/src/t7/main.cpp +lib/qt2/tutorial/src/t7/t7.pro +lib/qt2/tutorial/src/t8/Makefile.in +lib/qt2/tutorial/src/t8/cannon.cpp +lib/qt2/tutorial/src/t8/cannon.h +lib/qt2/tutorial/src/t8/lcdrange.cpp +lib/qt2/tutorial/src/t8/lcdrange.h +lib/qt2/tutorial/src/t8/main.cpp +lib/qt2/tutorial/src/t8/t8.pro +lib/qt2/tutorial/src/t9/Makefile.in +lib/qt2/tutorial/src/t9/cannon.cpp +lib/qt2/tutorial/src/t9/cannon.h +lib/qt2/tutorial/src/t9/lcdrange.cpp +lib/qt2/tutorial/src/t9/lcdrange.h +lib/qt2/tutorial/src/t9/main.cpp +lib/qt2/tutorial/src/t9/t9.pro +lib/qt2/tutorial/src/tutorial.pro +@dirrm lib/qt2/tutorial/src/t9 +@dirrm lib/qt2/tutorial/src/t8 +@dirrm lib/qt2/tutorial/src/t7 +@dirrm lib/qt2/tutorial/src/t6 +@dirrm lib/qt2/tutorial/src/t5 +@dirrm lib/qt2/tutorial/src/t4 +@dirrm lib/qt2/tutorial/src/t3 +@dirrm lib/qt2/tutorial/src/t2 +@dirrm lib/qt2/tutorial/src/t14 +@dirrm lib/qt2/tutorial/src/t13 +@dirrm lib/qt2/tutorial/src/t12 +@dirrm lib/qt2/tutorial/src/t11 +@dirrm lib/qt2/tutorial/src/t10 +@dirrm lib/qt2/tutorial/src/t1 +@dirrm lib/qt2/tutorial/src +@dirrm lib/qt2/tutorial/bin +@dirrm lib/qt2/tutorial +@dirrm lib/qt2/examples/src/xform +@dirrm lib/qt2/examples/src/wizard +@dirrm lib/qt2/examples/src/widgets +@dirrm lib/qt2/examples/src/validator +@dirrm lib/qt2/examples/src/tooltip +@dirrm lib/qt2/examples/src/tictac +@dirrm lib/qt2/examples/src/themes +@dirrm lib/qt2/examples/src/tetrix +@dirrm lib/qt2/examples/src/table +@dirrm lib/qt2/examples/src/tabdialog +@dirrm lib/qt2/examples/src/splitter +@dirrm lib/qt2/examples/src/showimg +@dirrm lib/qt2/examples/src/scrollview +@dirrm lib/qt2/examples/src/scribble +@dirrm lib/qt2/examples/src/rot13 +@dirrm lib/qt2/examples/src/richtext +@dirrm lib/qt2/examples/src/rangecontrols +@dirrm lib/qt2/examples/src/qwerty +@dirrm lib/qt2/examples/src/qmag +@dirrm lib/qt2/examples/src/qfd +@dirrm lib/qt2/examples/src/qdir +@dirrm lib/qt2/examples/src/progressbar +@dirrm lib/qt2/examples/src/progress +@dirrm lib/qt2/examples/src/popup +@dirrm lib/qt2/examples/src/picture +@dirrm lib/qt2/examples/src/movies +@dirrm lib/qt2/examples/src/menu +@dirrm lib/qt2/examples/src/mdi +@dirrm lib/qt2/examples/src/listviews +@dirrm lib/qt2/examples/src/listboxcombo +@dirrm lib/qt2/examples/src/listbox +@dirrm lib/qt2/examples/src/lineedits +@dirrm lib/qt2/examples/src/life +@dirrm lib/qt2/examples/src/layout +@dirrm lib/qt2/examples/src/iconview +@dirrm lib/qt2/examples/src/i18n +@dirrm lib/qt2/examples/src/helpviewer +@dirrm lib/qt2/examples/src/hello +@dirrm lib/qt2/examples/src/forever +@dirrm lib/qt2/examples/src/fileiconview +@dirrm lib/qt2/examples/src/drawlines +@dirrm lib/qt2/examples/src/drawdemo +@dirrm lib/qt2/examples/src/dragdrop +@dirrm lib/qt2/examples/src/dirview +@dirrm lib/qt2/examples/src/desktop +@dirrm lib/qt2/examples/src/dclock +@dirrm lib/qt2/examples/src/customlayout +@dirrm lib/qt2/examples/src/cursor +@dirrm lib/qt2/examples/src/checklists +@dirrm lib/qt2/examples/src/buttongroups +@dirrm lib/qt2/examples/src/biff +@dirrm lib/qt2/examples/src/application +@dirrm lib/qt2/examples/src/addressbook +@dirrm lib/qt2/examples/src/aclock +@dirrm lib/qt2/examples/src +@dirrm lib/qt2/examples/bin +@dirrm lib/qt2/examples diff --git a/x11/qt2/pkg/PLIST-html b/x11/qt2/pkg/PLIST-html new file mode 100644 index 00000000000..64789fa4899 --- /dev/null +++ b/x11/qt2/pkg/PLIST-html @@ -0,0 +1,1053 @@ +@comment $OpenBSD: PLIST-html,v 1.1.1.1 2000/06/22 23:53:47 espie Exp $ +share/doc/qt2/html/aboutqt.html +share/doc/qt2/html/abstractwidgets.html +share/doc/qt2/html/accelerators.html +share/doc/qt2/html/aclock-main-cpp.html +share/doc/qt2/html/addressbook-main-cpp.html +share/doc/qt2/html/advanced.html +share/doc/qt2/html/annotated.html +share/doc/qt2/html/appearance.html +share/doc/qt2/html/appicon.html +share/doc/qt2/html/application-main-cpp.html +share/doc/qt2/html/application.html +share/doc/qt2/html/basic.html +share/doc/qt2/html/bearings.png +share/doc/qt2/html/biff-main-cpp.html +share/doc/qt2/html/book.png +share/doc/qt2/html/bughowto.html +share/doc/qt2/html/buttongroup-m.png +share/doc/qt2/html/buttongroup-w.png +share/doc/qt2/html/buttongroups-main-cpp.html +share/doc/qt2/html/buyhowto.html +share/doc/qt2/html/changes21.html +share/doc/qt2/html/changes211.html +share/doc/qt2/html/checklists-main-cpp.html +share/doc/qt2/html/classes.html +share/doc/qt2/html/collection.html +share/doc/qt2/html/commonproblems.html +share/doc/qt2/html/coordsys.html +share/doc/qt2/html/coordsys.png +share/doc/qt2/html/credits.html +share/doc/qt2/html/cursor-cursor-cpp.html +share/doc/qt2/html/customlayout-main-cpp.html +share/doc/qt2/html/customlayout.html +share/doc/qt2/html/datastreamformat.html +share/doc/qt2/html/dclock-main-cpp.html +share/doc/qt2/html/debug.html +share/doc/qt2/html/design.html +share/doc/qt2/html/desktop-desktop-cpp.html +share/doc/qt2/html/dialogs.html +share/doc/qt2/html/dirview-main-cpp.html +share/doc/qt2/html/dnd.html +share/doc/qt2/html/dochead.png +share/doc/qt2/html/draganddrop.html +share/doc/qt2/html/drawdemo-drawdemo-cpp.html +share/doc/qt2/html/drawing.html +share/doc/qt2/html/drawlines-connect-cpp.html +share/doc/qt2/html/easteregg.html +share/doc/qt2/html/easteregg2.html +share/doc/qt2/html/environment.html +share/doc/qt2/html/eventsandfilters.html +share/doc/qt2/html/examples.html +share/doc/qt2/html/fileiconview-main-cpp.html +share/doc/qt2/html/focus.html +share/doc/qt2/html/fontmatch.html +share/doc/qt2/html/forever-forever-cpp.html +share/doc/qt2/html/frames.png +share/doc/qt2/html/functions.html +share/doc/qt2/html/geomanagement.html +share/doc/qt2/html/geometry.html +share/doc/qt2/html/geometry.png +share/doc/qt2/html/graph.g1n +share/doc/qt2/html/grapher-grapher-cpp.html +share/doc/qt2/html/gridlayout.png +share/doc/qt2/html/groupbox-m.png +share/doc/qt2/html/groupbox-w.png +share/doc/qt2/html/guibooks.html +share/doc/qt2/html/headers.html +share/doc/qt2/html/hello-main-cpp.html +share/doc/qt2/html/helpsystem.html +share/doc/qt2/html/helpviewer-main-cpp.html +share/doc/qt2/html/hierarchy.html +share/doc/qt2/html/i18n-main-cpp.html +share/doc/qt2/html/i18n.html +share/doc/qt2/html/iconview-main-cpp.html +share/doc/qt2/html/images.html +share/doc/qt2/html/index +share/doc/qt2/html/index.html +share/doc/qt2/html/io.html +share/doc/qt2/html/keyfeatures21.html +share/doc/qt2/html/layout-layout-cpp.html +share/doc/qt2/html/layout.html +share/doc/qt2/html/letter.png +share/doc/qt2/html/license.html +share/doc/qt2/html/licenses.html +share/doc/qt2/html/life-main-cpp.html +share/doc/qt2/html/lineedits-main-cpp.html +share/doc/qt2/html/listbox-main-cpp.html +share/doc/qt2/html/listboxcombo-main-cpp.html +share/doc/qt2/html/listviews-main-cpp.html +share/doc/qt2/html/mailinglists.html +share/doc/qt2/html/mainlyMotif-editor-cpp.html +share/doc/qt2/html/mainlyQt-editor-cpp.html +share/doc/qt2/html/mainlyXt-editor-cpp.html +share/doc/qt2/html/mainwindow-m.png +share/doc/qt2/html/mainwindow-w.png +share/doc/qt2/html/mdi-main-cpp.html +share/doc/qt2/html/menu-menu-cpp.html +share/doc/qt2/html/metaobjects.html +share/doc/qt2/html/misc.html +share/doc/qt2/html/moc.html +share/doc/qt2/html/movies-main-cpp.html +share/doc/qt2/html/network.html +share/doc/qt2/html/nsplugin.html +share/doc/qt2/html/object.html +share/doc/qt2/html/objectmodel.html +share/doc/qt2/html/objecttrees.html +share/doc/qt2/html/opengl.html +share/doc/qt2/html/organizers.html +share/doc/qt2/html/palette.png +share/doc/qt2/html/picture-picture-cpp.html +share/doc/qt2/html/pictures.html +share/doc/qt2/html/pnglogo.png +share/doc/qt2/html/popup-popup-cpp.html +share/doc/qt2/html/porting.html +share/doc/qt2/html/primes.html +share/doc/qt2/html/progress-progress-cpp.html +share/doc/qt2/html/progressbar-main-cpp.html +share/doc/qt2/html/properties.html +share/doc/qt2/html/qabstractlayout-h.html +share/doc/qt2/html/qaccel-h.html +share/doc/qt2/html/qaccel-members.html +share/doc/qt2/html/qaccel.html +share/doc/qt2/html/qapplication-h.html +share/doc/qt2/html/qapplication-members.html +share/doc/qt2/html/qapplication.html +share/doc/qt2/html/qarray-h.html +share/doc/qt2/html/qarray-members.html +share/doc/qt2/html/qarray.html +share/doc/qt2/html/qasciicache-h.html +share/doc/qt2/html/qasciicache-members.html +share/doc/qt2/html/qasciicache.html +share/doc/qt2/html/qasciicacheiterator-members.html +share/doc/qt2/html/qasciicacheiterator.html +share/doc/qt2/html/qasciidict-h.html +share/doc/qt2/html/qasciidict-members.html +share/doc/qt2/html/qasciidict.html +share/doc/qt2/html/qasciidictiterator-members.html +share/doc/qt2/html/qasciidictiterator.html +share/doc/qt2/html/qasyncimageio-h.html +share/doc/qt2/html/qasyncio-h.html +share/doc/qt2/html/qasyncio-members.html +share/doc/qt2/html/qasyncio.html +share/doc/qt2/html/qbitarray-h.html +share/doc/qt2/html/qbitarray-members.html +share/doc/qt2/html/qbitarray.html +share/doc/qt2/html/qbitmap-h.html +share/doc/qt2/html/qbitmap-members.html +share/doc/qt2/html/qbitmap.html +share/doc/qt2/html/qbitval-members.html +share/doc/qt2/html/qbitval.html +share/doc/qt2/html/qboxlayout-members.html +share/doc/qt2/html/qboxlayout.html +share/doc/qt2/html/qbrush-h.html +share/doc/qt2/html/qbrush-members.html +share/doc/qt2/html/qbrush.html +share/doc/qt2/html/qbttngrp-m.png +share/doc/qt2/html/qbttngrp-w.png +share/doc/qt2/html/qbuffer-h.html +share/doc/qt2/html/qbuffer-members.html +share/doc/qt2/html/qbuffer.html +share/doc/qt2/html/qbutton-h.html +share/doc/qt2/html/qbutton-members.html +share/doc/qt2/html/qbutton.html +share/doc/qt2/html/qbuttongroup-h.html +share/doc/qt2/html/qbuttongroup-members.html +share/doc/qt2/html/qbuttongroup.html +share/doc/qt2/html/qbytearray-members.html +share/doc/qt2/html/qbytearray.html +share/doc/qt2/html/qcache-h.html +share/doc/qt2/html/qcache-members.html +share/doc/qt2/html/qcache.html +share/doc/qt2/html/qcacheiterator-members.html +share/doc/qt2/html/qcacheiterator.html +share/doc/qt2/html/qcdestyle-h.html +share/doc/qt2/html/qcdestyle-members.html +share/doc/qt2/html/qcdestyle.html +share/doc/qt2/html/qchar-members.html +share/doc/qt2/html/qchar.html +share/doc/qt2/html/qcharref-members.html +share/doc/qt2/html/qcharref.html +share/doc/qt2/html/qcheckbox-h.html +share/doc/qt2/html/qcheckbox-m.png +share/doc/qt2/html/qcheckbox-members.html +share/doc/qt2/html/qcheckbox-w.png +share/doc/qt2/html/qcheckbox.html +share/doc/qt2/html/qchecklistitem-members.html +share/doc/qt2/html/qchecklistitem.html +share/doc/qt2/html/qchildevent-members.html +share/doc/qt2/html/qchildevent.html +share/doc/qt2/html/qchkbox-m.png +share/doc/qt2/html/qchkbox-w.png +share/doc/qt2/html/qclassinfo-members.html +share/doc/qt2/html/qclipboard-h.html +share/doc/qt2/html/qclipboard-members.html +share/doc/qt2/html/qclipboard.html +share/doc/qt2/html/qcloseevent-members.html +share/doc/qt2/html/qcloseevent.html +share/doc/qt2/html/qcollection-h.html +share/doc/qt2/html/qcollection-members.html +share/doc/qt2/html/qcollection.html +share/doc/qt2/html/qcolor-h.html +share/doc/qt2/html/qcolor-members.html +share/doc/qt2/html/qcolor.html +share/doc/qt2/html/qcolordialog-h.html +share/doc/qt2/html/qcolordialog-members.html +share/doc/qt2/html/qcolordialog.html +share/doc/qt2/html/qcolordlg-m.png +share/doc/qt2/html/qcolordlg-w.png +share/doc/qt2/html/qcolordrag-members.html +share/doc/qt2/html/qcolordrag.html +share/doc/qt2/html/qcolorgroup-members.html +share/doc/qt2/html/qcolorgroup.html +share/doc/qt2/html/qcombo1-m.png +share/doc/qt2/html/qcombo1-w.png +share/doc/qt2/html/qcombo2-m.png +share/doc/qt2/html/qcombo2-w.png +share/doc/qt2/html/qcombo3-m.png +share/doc/qt2/html/qcombo3-w.png +share/doc/qt2/html/qcombobox-h.html +share/doc/qt2/html/qcombobox-members.html +share/doc/qt2/html/qcombobox.html +share/doc/qt2/html/qcommonstyle-h.html +share/doc/qt2/html/qcommonstyle-members.html +share/doc/qt2/html/qcommonstyle.html +share/doc/qt2/html/qconnection-h.html +share/doc/qt2/html/qconnection-members.html +share/doc/qt2/html/qconnection.html +share/doc/qt2/html/qconststring-members.html +share/doc/qt2/html/qconststring.html +share/doc/qt2/html/qcstring-h.html +share/doc/qt2/html/qcstring-members.html +share/doc/qt2/html/qcstring.html +share/doc/qt2/html/qcursor-h.html +share/doc/qt2/html/qcursor-members.html +share/doc/qt2/html/qcursor.html +share/doc/qt2/html/qcustomevent-members.html +share/doc/qt2/html/qcustomevent.html +share/doc/qt2/html/qcustommenuitem-members.html +share/doc/qt2/html/qcustommenuitem.html +share/doc/qt2/html/qdatapump-members.html +share/doc/qt2/html/qdatapump.html +share/doc/qt2/html/qdatasink-members.html +share/doc/qt2/html/qdatasink.html +share/doc/qt2/html/qdatasource-members.html +share/doc/qt2/html/qdatasource.html +share/doc/qt2/html/qdatastream-h.html +share/doc/qt2/html/qdatastream-members.html +share/doc/qt2/html/qdatastream.html +share/doc/qt2/html/qdate-members.html +share/doc/qt2/html/qdate.html +share/doc/qt2/html/qdatetime-h.html +share/doc/qt2/html/qdatetime-members.html +share/doc/qt2/html/qdatetime.html +share/doc/qt2/html/qdial-m.png +share/doc/qt2/html/qdial-w.png +share/doc/qt2/html/qdialog-h.html +share/doc/qt2/html/qdialog-members.html +share/doc/qt2/html/qdialog.html +share/doc/qt2/html/qdict-h.html +share/doc/qt2/html/qdict-members.html +share/doc/qt2/html/qdict.html +share/doc/qt2/html/qdictiterator-members.html +share/doc/qt2/html/qdictiterator.html +share/doc/qt2/html/qdir-h.html +share/doc/qt2/html/qdir-members.html +share/doc/qt2/html/qdir.html +share/doc/qt2/html/qdoublevalidator-members.html +share/doc/qt2/html/qdoublevalidator.html +share/doc/qt2/html/qdragenterevent-members.html +share/doc/qt2/html/qdragenterevent.html +share/doc/qt2/html/qdragleaveevent-members.html +share/doc/qt2/html/qdragleaveevent.html +share/doc/qt2/html/qdragmoveevent-members.html +share/doc/qt2/html/qdragmoveevent.html +share/doc/qt2/html/qdragobject-h.html +share/doc/qt2/html/qdragobject-members.html +share/doc/qt2/html/qdragobject.html +share/doc/qt2/html/qdrawutil-h.html +share/doc/qt2/html/qdropevent-members.html +share/doc/qt2/html/qdropevent.html +share/doc/qt2/html/qdropsite-h.html +share/doc/qt2/html/qdropsite-members.html +share/doc/qt2/html/qdropsite.html +share/doc/qt2/html/qeucjpcodec-h.html +share/doc/qt2/html/qeucjpcodec-members.html +share/doc/qt2/html/qeucjpcodec.html +share/doc/qt2/html/qeuckrcodec-h.html +share/doc/qt2/html/qeuckrcodec-members.html +share/doc/qt2/html/qeuckrcodec.html +share/doc/qt2/html/qevent-h.html +share/doc/qt2/html/qevent-members.html +share/doc/qt2/html/qevent.html +share/doc/qt2/html/qfd-qfd-cpp.html +share/doc/qt2/html/qfile-h.html +share/doc/qt2/html/qfile-members.html +share/doc/qt2/html/qfile.html +share/doc/qt2/html/qfiledialog-h.html +share/doc/qt2/html/qfiledialog-members.html +share/doc/qt2/html/qfiledialog.html +share/doc/qt2/html/qfiledlg-m.png +share/doc/qt2/html/qfiledlg-w.png +share/doc/qt2/html/qfileiconprovider-members.html +share/doc/qt2/html/qfileiconprovider.html +share/doc/qt2/html/qfileinfo-h.html +share/doc/qt2/html/qfileinfo-members.html +share/doc/qt2/html/qfileinfo.html +share/doc/qt2/html/qfilepreview-members.html +share/doc/qt2/html/qfilepreview.html +share/doc/qt2/html/qfocusdata-h.html +share/doc/qt2/html/qfocusdata-members.html +share/doc/qt2/html/qfocusdata.html +share/doc/qt2/html/qfocusevent-members.html +share/doc/qt2/html/qfocusevent.html +share/doc/qt2/html/qfont-h.html +share/doc/qt2/html/qfont-members.html +share/doc/qt2/html/qfont.html +share/doc/qt2/html/qfontdatabase-h.html +share/doc/qt2/html/qfontdatabase-members.html +share/doc/qt2/html/qfontdatabase.html +share/doc/qt2/html/qfontdialog-h.html +share/doc/qt2/html/qfontdialog-members.html +share/doc/qt2/html/qfontdialog.html +share/doc/qt2/html/qfontdlg-m.png +share/doc/qt2/html/qfontdlg-w.png +share/doc/qt2/html/qfontinfo-h.html +share/doc/qt2/html/qfontinfo-members.html +share/doc/qt2/html/qfontinfo.html +share/doc/qt2/html/qfontmetrics-h.html +share/doc/qt2/html/qfontmetrics-members.html +share/doc/qt2/html/qfontmetrics.html +share/doc/qt2/html/qframe-h.html +share/doc/qt2/html/qframe-members.html +share/doc/qt2/html/qframe.html +share/doc/qt2/html/qgarray-h.html +share/doc/qt2/html/qgarray-members.html +share/doc/qt2/html/qgarray.html +share/doc/qt2/html/qgbkcodec-h.html +share/doc/qt2/html/qgbkcodec-members.html +share/doc/qt2/html/qgbkcodec.html +share/doc/qt2/html/qgcache-h.html +share/doc/qt2/html/qgcache-members.html +share/doc/qt2/html/qgcache.html +share/doc/qt2/html/qgcacheiterator-members.html +share/doc/qt2/html/qgcacheiterator.html +share/doc/qt2/html/qgdict-h.html +share/doc/qt2/html/qgdict-members.html +share/doc/qt2/html/qgdict.html +share/doc/qt2/html/qgdictiterator-members.html +share/doc/qt2/html/qgdictiterator.html +share/doc/qt2/html/qgl-h.html +share/doc/qt2/html/qgl-members.html +share/doc/qt2/html/qgl.html +share/doc/qt2/html/qglayoutiterator-members.html +share/doc/qt2/html/qglayoutiterator.html +share/doc/qt2/html/qglcontext-members.html +share/doc/qt2/html/qglcontext.html +share/doc/qt2/html/qglformat-members.html +share/doc/qt2/html/qglformat.html +share/doc/qt2/html/qglist-h.html +share/doc/qt2/html/qglist-members.html +share/doc/qt2/html/qglist.html +share/doc/qt2/html/qglistiterator-members.html +share/doc/qt2/html/qglistiterator.html +share/doc/qt2/html/qglobal-h.html +share/doc/qt2/html/qglwidget-members.html +share/doc/qt2/html/qglwidget.html +share/doc/qt2/html/qgrid-h.html +share/doc/qt2/html/qgrid-m.png +share/doc/qt2/html/qgrid-members.html +share/doc/qt2/html/qgrid-w.png +share/doc/qt2/html/qgrid.html +share/doc/qt2/html/qgrid.png +share/doc/qt2/html/qgridlayout-members.html +share/doc/qt2/html/qgridlayout.html +share/doc/qt2/html/qgroupbox-h.html +share/doc/qt2/html/qgroupbox-members.html +share/doc/qt2/html/qgroupbox.html +share/doc/qt2/html/qgrpbox-m.png +share/doc/qt2/html/qgrpbox-w.png +share/doc/qt2/html/qguardedptr-h.html +share/doc/qt2/html/qguardedptr-members.html +share/doc/qt2/html/qguardedptr.html +share/doc/qt2/html/qgvector-h.html +share/doc/qt2/html/qgvector-members.html +share/doc/qt2/html/qgvector.html +share/doc/qt2/html/qhbox-h.html +share/doc/qt2/html/qhbox-m.png +share/doc/qt2/html/qhbox-members.html +share/doc/qt2/html/qhbox-w.png +share/doc/qt2/html/qhbox.html +share/doc/qt2/html/qhbox.png +share/doc/qt2/html/qhboxlayout-members.html +share/doc/qt2/html/qhboxlayout.html +share/doc/qt2/html/qhbuttongroup-h.html +share/doc/qt2/html/qhbuttongroup-members.html +share/doc/qt2/html/qhbuttongroup.html +share/doc/qt2/html/qheader-h.html +share/doc/qt2/html/qheader-m.png +share/doc/qt2/html/qheader-members.html +share/doc/qt2/html/qheader-w.png +share/doc/qt2/html/qheader.html +share/doc/qt2/html/qhgroupbox-h.html +share/doc/qt2/html/qhgroupbox-members.html +share/doc/qt2/html/qhgroupbox.html +share/doc/qt2/html/qhideevent-members.html +share/doc/qt2/html/qhideevent.html +share/doc/qt2/html/qicondrag-members.html +share/doc/qt2/html/qicondrag.html +share/doc/qt2/html/qicondragitem-members.html +share/doc/qt2/html/qicondragitem.html +share/doc/qt2/html/qiconset-h.html +share/doc/qt2/html/qiconset-members.html +share/doc/qt2/html/qiconset.html +share/doc/qt2/html/qiconview-h.html +share/doc/qt2/html/qiconview-m.png +share/doc/qt2/html/qiconview-members.html +share/doc/qt2/html/qiconview-w.png +share/doc/qt2/html/qiconview.html +share/doc/qt2/html/qiconviewitem-members.html +share/doc/qt2/html/qiconviewitem.html +share/doc/qt2/html/qimage-h.html +share/doc/qt2/html/qimage-members.html +share/doc/qt2/html/qimage.html +share/doc/qt2/html/qimageconsumer-members.html +share/doc/qt2/html/qimageconsumer.html +share/doc/qt2/html/qimagedecoder-members.html +share/doc/qt2/html/qimagedecoder.html +share/doc/qt2/html/qimagedrag-members.html +share/doc/qt2/html/qimagedrag.html +share/doc/qt2/html/qimageformat-members.html +share/doc/qt2/html/qimageformat.html +share/doc/qt2/html/qimageformattype-members.html +share/doc/qt2/html/qimageformattype.html +share/doc/qt2/html/qimageio-members.html +share/doc/qt2/html/qimageio.html +share/doc/qt2/html/qinputdialog-h.html +share/doc/qt2/html/qinputdialog-members.html +share/doc/qt2/html/qinputdialog.html +share/doc/qt2/html/qintcache-h.html +share/doc/qt2/html/qintcache-members.html +share/doc/qt2/html/qintcache.html +share/doc/qt2/html/qintcacheiterator-members.html +share/doc/qt2/html/qintcacheiterator.html +share/doc/qt2/html/qintdict-h.html +share/doc/qt2/html/qintdict-members.html +share/doc/qt2/html/qintdict.html +share/doc/qt2/html/qintdictiterator-members.html +share/doc/qt2/html/qintdictiterator.html +share/doc/qt2/html/qintvalidator-members.html +share/doc/qt2/html/qintvalidator.html +share/doc/qt2/html/qiodevice-h.html +share/doc/qt2/html/qiodevice-members.html +share/doc/qt2/html/qiodevice.html +share/doc/qt2/html/qiodevicesource-members.html +share/doc/qt2/html/qiodevicesource.html +share/doc/qt2/html/qjiscodec-h.html +share/doc/qt2/html/qjiscodec-members.html +share/doc/qt2/html/qjiscodec.html +share/doc/qt2/html/qjpunicode-h.html +share/doc/qt2/html/qjpunicodeconv-members.html +share/doc/qt2/html/qjpunicodeconv.html +share/doc/qt2/html/qkeyevent-members.html +share/doc/qt2/html/qkeyevent.html +share/doc/qt2/html/qlabel-h.html +share/doc/qt2/html/qlabel-m.png +share/doc/qt2/html/qlabel-members.html +share/doc/qt2/html/qlabel-w.png +share/doc/qt2/html/qlabel.html +share/doc/qt2/html/qlayout-h.html +share/doc/qt2/html/qlayout-members.html +share/doc/qt2/html/qlayout.html +share/doc/qt2/html/qlayoutitem-members.html +share/doc/qt2/html/qlayoutitem.html +share/doc/qt2/html/qlayoutiterator-members.html +share/doc/qt2/html/qlayoutiterator.html +share/doc/qt2/html/qlcdnum-m.png +share/doc/qt2/html/qlcdnum-w.png +share/doc/qt2/html/qlcdnumber-h.html +share/doc/qt2/html/qlcdnumber-members.html +share/doc/qt2/html/qlcdnumber.html +share/doc/qt2/html/qlined-m.png +share/doc/qt2/html/qlined-w.png +share/doc/qt2/html/qlineedit-h.html +share/doc/qt2/html/qlineedit-members.html +share/doc/qt2/html/qlineedit.html +share/doc/qt2/html/qlist-h.html +share/doc/qt2/html/qlist-members.html +share/doc/qt2/html/qlist.html +share/doc/qt2/html/qlistbox-h.html +share/doc/qt2/html/qlistbox-m.png +share/doc/qt2/html/qlistbox-members.html +share/doc/qt2/html/qlistbox-w.png +share/doc/qt2/html/qlistbox.html +share/doc/qt2/html/qlistboxitem-members.html +share/doc/qt2/html/qlistboxitem.html +share/doc/qt2/html/qlistboxpixmap-members.html +share/doc/qt2/html/qlistboxpixmap.html +share/doc/qt2/html/qlistboxtext-members.html +share/doc/qt2/html/qlistboxtext.html +share/doc/qt2/html/qlistiterator-members.html +share/doc/qt2/html/qlistiterator.html +share/doc/qt2/html/qlistview-h.html +share/doc/qt2/html/qlistview-m.png +share/doc/qt2/html/qlistview-members.html +share/doc/qt2/html/qlistview-w.png +share/doc/qt2/html/qlistview.html +share/doc/qt2/html/qlistviewitem-members.html +share/doc/qt2/html/qlistviewitem.html +share/doc/qt2/html/qlistviewitemiterator-members.html +share/doc/qt2/html/qlistviewitemiterator.html +share/doc/qt2/html/qlnode-members.html +share/doc/qt2/html/qlnode.html +share/doc/qt2/html/qlocalfs-h.html +share/doc/qt2/html/qlocalfs-members.html +share/doc/qt2/html/qlocalfs.html +share/doc/qt2/html/qmag-qmag-cpp.html +share/doc/qt2/html/qmainwindow-h.html +share/doc/qt2/html/qmainwindow-m.png +share/doc/qt2/html/qmainwindow-members.html +share/doc/qt2/html/qmainwindow-w.png +share/doc/qt2/html/qmainwindow.html +share/doc/qt2/html/qmap-h.html +share/doc/qt2/html/qmap-members.html +share/doc/qt2/html/qmap.html +share/doc/qt2/html/qmapconstiterator-members.html +share/doc/qt2/html/qmapconstiterator.html +share/doc/qt2/html/qmapiterator-members.html +share/doc/qt2/html/qmapiterator.html +share/doc/qt2/html/qmenubar-h.html +share/doc/qt2/html/qmenubar-m.png +share/doc/qt2/html/qmenubar-members.html +share/doc/qt2/html/qmenubar-w.png +share/doc/qt2/html/qmenubar.html +share/doc/qt2/html/qmenudata-h.html +share/doc/qt2/html/qmenudata-members.html +share/doc/qt2/html/qmenudata.html +share/doc/qt2/html/qmessagebox-h.html +share/doc/qt2/html/qmessagebox-members.html +share/doc/qt2/html/qmessagebox.html +share/doc/qt2/html/qmetadata-members.html +share/doc/qt2/html/qmetaobject-h.html +share/doc/qt2/html/qmetaobject-members.html +share/doc/qt2/html/qmetaobject.html +share/doc/qt2/html/qmetaproperty-members.html +share/doc/qt2/html/qmetaproperty.html +share/doc/qt2/html/qmime-h.html +share/doc/qt2/html/qmimesource-members.html +share/doc/qt2/html/qmimesource.html +share/doc/qt2/html/qmimesourcefactory-members.html +share/doc/qt2/html/qmimesourcefactory.html +share/doc/qt2/html/qmlined-m.png +share/doc/qt2/html/qmlined-w.png +share/doc/qt2/html/qmotifstyle-h.html +share/doc/qt2/html/qmotifstyle-members.html +share/doc/qt2/html/qmotifstyle.html +share/doc/qt2/html/qmouseevent-members.html +share/doc/qt2/html/qmouseevent.html +share/doc/qt2/html/qmoveevent-members.html +share/doc/qt2/html/qmoveevent.html +share/doc/qt2/html/qmovie-h.html +share/doc/qt2/html/qmovie-members.html +share/doc/qt2/html/qmovie.html +share/doc/qt2/html/qmovie.png +share/doc/qt2/html/qmsgbox-m.png +share/doc/qt2/html/qmsgbox-w.png +share/doc/qt2/html/qmultilineedit-h.html +share/doc/qt2/html/qmultilineedit-members.html +share/doc/qt2/html/qmultilineedit.html +share/doc/qt2/html/qnamespace-h.html +share/doc/qt2/html/qnetworkegg.html +share/doc/qt2/html/qnetworkoperation-members.html +share/doc/qt2/html/qnetworkoperation.html +share/doc/qt2/html/qnetworkprotocol-h.html +share/doc/qt2/html/qnetworkprotocol-members.html +share/doc/qt2/html/qnetworkprotocol.html +share/doc/qt2/html/qnp-h.html +share/doc/qt2/html/qnpinstance-members.html +share/doc/qt2/html/qnpinstance.html +share/doc/qt2/html/qnplugin-members.html +share/doc/qt2/html/qnplugin.html +share/doc/qt2/html/qnpstream-members.html +share/doc/qt2/html/qnpstream.html +share/doc/qt2/html/qnpwidget-members.html +share/doc/qt2/html/qnpwidget.html +share/doc/qt2/html/qobject-h.html +share/doc/qt2/html/qobject-members.html +share/doc/qt2/html/qobject.html +share/doc/qt2/html/qpaintdevice-h.html +share/doc/qt2/html/qpaintdevice-members.html +share/doc/qt2/html/qpaintdevice.html +share/doc/qt2/html/qpaintdevicemetrics-h.html +share/doc/qt2/html/qpaintdevicemetrics-members.html +share/doc/qt2/html/qpaintdevicemetrics.html +share/doc/qt2/html/qpainter-h.html +share/doc/qt2/html/qpainter-members.html +share/doc/qt2/html/qpainter.html +share/doc/qt2/html/qpaintevent-members.html +share/doc/qt2/html/qpaintevent.html +share/doc/qt2/html/qpalette-h.html +share/doc/qt2/html/qpalette-members.html +share/doc/qt2/html/qpalette.html +share/doc/qt2/html/qpen-h.html +share/doc/qt2/html/qpen-members.html +share/doc/qt2/html/qpen.html +share/doc/qt2/html/qpicture-h.html +share/doc/qt2/html/qpicture-members.html +share/doc/qt2/html/qpicture.html +share/doc/qt2/html/qpixmap-h.html +share/doc/qt2/html/qpixmap-members.html +share/doc/qt2/html/qpixmap.html +share/doc/qt2/html/qpixmapcache-h.html +share/doc/qt2/html/qpixmapcache-members.html +share/doc/qt2/html/qpixmapcache.html +share/doc/qt2/html/qplatinumstyle-h.html +share/doc/qt2/html/qplatinumstyle-members.html +share/doc/qt2/html/qplatinumstyle.html +share/doc/qt2/html/qpngimagepacker-members.html +share/doc/qt2/html/qpngimagepacker.html +share/doc/qt2/html/qpngio-h.html +share/doc/qt2/html/qpoint-h.html +share/doc/qt2/html/qpoint-members.html +share/doc/qt2/html/qpoint.html +share/doc/qt2/html/qpointarray-h.html +share/doc/qt2/html/qpointarray-members.html +share/doc/qt2/html/qpointarray.html +share/doc/qt2/html/qpopmenu-fancy.png +share/doc/qt2/html/qpopmenu-m.png +share/doc/qt2/html/qpopmenu-w.png +share/doc/qt2/html/qpopupmenu-h.html +share/doc/qt2/html/qpopupmenu-members.html +share/doc/qt2/html/qpopupmenu.html +share/doc/qt2/html/qprintdialog-h.html +share/doc/qt2/html/qprintdialog-members.html +share/doc/qt2/html/qprintdlg-m.png +share/doc/qt2/html/qprintdlg-w.png +share/doc/qt2/html/qprinter-h.html +share/doc/qt2/html/qprinter-members.html +share/doc/qt2/html/qprinter.html +share/doc/qt2/html/qprogbar-m.png +share/doc/qt2/html/qprogbar-w.png +share/doc/qt2/html/qprogdlg-m.png +share/doc/qt2/html/qprogdlg-w.png +share/doc/qt2/html/qprogressbar-h.html +share/doc/qt2/html/qprogressbar-members.html +share/doc/qt2/html/qprogressbar.html +share/doc/qt2/html/qprogressdialog-h.html +share/doc/qt2/html/qprogressdialog-members.html +share/doc/qt2/html/qprogressdialog.html +share/doc/qt2/html/qptrdict-h.html +share/doc/qt2/html/qptrdict-members.html +share/doc/qt2/html/qptrdict.html +share/doc/qt2/html/qptrdictiterator-members.html +share/doc/qt2/html/qptrdictiterator.html +share/doc/qt2/html/qpushbt-m.png +share/doc/qt2/html/qpushbt-w.png +share/doc/qt2/html/qpushbutton-h.html +share/doc/qt2/html/qpushbutton-members.html +share/doc/qt2/html/qpushbutton.html +share/doc/qt2/html/qqueue-h.html +share/doc/qt2/html/qqueue-members.html +share/doc/qt2/html/qqueue.html +share/doc/qt2/html/qradiobt-m.png +share/doc/qt2/html/qradiobt-w.png +share/doc/qt2/html/qradiobutton-h.html +share/doc/qt2/html/qradiobutton-members.html +share/doc/qt2/html/qradiobutton.html +share/doc/qt2/html/qrangecontrol-h.html +share/doc/qt2/html/qrangecontrol-members.html +share/doc/qt2/html/qrangecontrol.html +share/doc/qt2/html/qrect-h.html +share/doc/qt2/html/qrect-members.html +share/doc/qt2/html/qrect.html +share/doc/qt2/html/qregexp-h.html +share/doc/qt2/html/qregexp-members.html +share/doc/qt2/html/qregexp.html +share/doc/qt2/html/qregion-h.html +share/doc/qt2/html/qregion-members.html +share/doc/qt2/html/qregion.html +share/doc/qt2/html/qresizeevent-members.html +share/doc/qt2/html/qresizeevent.html +share/doc/qt2/html/qscrbar-m.png +share/doc/qt2/html/qscrbar-w.png +share/doc/qt2/html/qscrollbar-h.html +share/doc/qt2/html/qscrollbar-members.html +share/doc/qt2/html/qscrollbar.html +share/doc/qt2/html/qscrollview-cl.png +share/doc/qt2/html/qscrollview-h.html +share/doc/qt2/html/qscrollview-m.png +share/doc/qt2/html/qscrollview-members.html +share/doc/qt2/html/qscrollview-vp.png +share/doc/qt2/html/qscrollview-vp2.png +share/doc/qt2/html/qscrollview-w.png +share/doc/qt2/html/qscrollview.html +share/doc/qt2/html/qsemimodal-h.html +share/doc/qt2/html/qsemimodal-members.html +share/doc/qt2/html/qsemimodal.html +share/doc/qt2/html/qsessionmanager-h.html +share/doc/qt2/html/qsessionmanager-members.html +share/doc/qt2/html/qsessionmanager.html +share/doc/qt2/html/qshared-h.html +share/doc/qt2/html/qshared-members.html +share/doc/qt2/html/qshared.html +share/doc/qt2/html/qshowevent-members.html +share/doc/qt2/html/qshowevent.html +share/doc/qt2/html/qsignal-h.html +share/doc/qt2/html/qsignal-members.html +share/doc/qt2/html/qsignal.html +share/doc/qt2/html/qsignalmapper-h.html +share/doc/qt2/html/qsignalmapper-members.html +share/doc/qt2/html/qsignalmapper.html +share/doc/qt2/html/qsimplerichtext-h.html +share/doc/qt2/html/qsimplerichtext-members.html +share/doc/qt2/html/qsimplerichtext.html +share/doc/qt2/html/qsize-h.html +share/doc/qt2/html/qsize-members.html +share/doc/qt2/html/qsize.html +share/doc/qt2/html/qsizegrip-h.html +share/doc/qt2/html/qsizegrip-m.png +share/doc/qt2/html/qsizegrip-members.html +share/doc/qt2/html/qsizegrip-w.png +share/doc/qt2/html/qsizegrip.html +share/doc/qt2/html/qsizepolicy-h.html +share/doc/qt2/html/qsizepolicy-members.html +share/doc/qt2/html/qsizepolicy.html +share/doc/qt2/html/qslider-h.html +share/doc/qt2/html/qslider-m.png +share/doc/qt2/html/qslider-members.html +share/doc/qt2/html/qslider-w.png +share/doc/qt2/html/qslider.html +share/doc/qt2/html/qsocketnotifier-h.html +share/doc/qt2/html/qsocketnotifier-members.html +share/doc/qt2/html/qsocketnotifier.html +share/doc/qt2/html/qsortedlist-h.html +share/doc/qt2/html/qsortedlist-members.html +share/doc/qt2/html/qsortedlist.html +share/doc/qt2/html/qspaceritem-members.html +share/doc/qt2/html/qspaceritem.html +share/doc/qt2/html/qspinbox-h.html +share/doc/qt2/html/qspinbox-m.png +share/doc/qt2/html/qspinbox-members.html +share/doc/qt2/html/qspinbox-w.png +share/doc/qt2/html/qspinbox.html +share/doc/qt2/html/qspinbox2-m.png +share/doc/qt2/html/qspinbox2-w.png +share/doc/qt2/html/qsplitter-h.html +share/doc/qt2/html/qsplitter-m.png +share/doc/qt2/html/qsplitter-members.html +share/doc/qt2/html/qsplitter-w.png +share/doc/qt2/html/qsplitter.html +share/doc/qt2/html/qstack-h.html +share/doc/qt2/html/qstack-members.html +share/doc/qt2/html/qstack.html +share/doc/qt2/html/qstatusbar-h.html +share/doc/qt2/html/qstatusbar-m.png +share/doc/qt2/html/qstatusbar-members.html +share/doc/qt2/html/qstatusbar-w.png +share/doc/qt2/html/qstatusbar.html +share/doc/qt2/html/qstoreddrag-members.html +share/doc/qt2/html/qstoreddrag.html +share/doc/qt2/html/qstrilist-members.html +share/doc/qt2/html/qstrilist.html +share/doc/qt2/html/qstring-h.html +share/doc/qt2/html/qstring-members.html +share/doc/qt2/html/qstring.html +share/doc/qt2/html/qstringlist-h.html +share/doc/qt2/html/qstringlist-members.html +share/doc/qt2/html/qstringlist.html +share/doc/qt2/html/qstrlist-h.html +share/doc/qt2/html/qstrlist-members.html +share/doc/qt2/html/qstrlist.html +share/doc/qt2/html/qstrlistiterator-members.html +share/doc/qt2/html/qstrlistiterator.html +share/doc/qt2/html/qstyle-h.html +share/doc/qt2/html/qstyle-members.html +share/doc/qt2/html/qstyle.html +share/doc/qt2/html/qstylesheet-h.html +share/doc/qt2/html/qstylesheet-members.html +share/doc/qt2/html/qstylesheet.html +share/doc/qt2/html/qstylesheetitem-members.html +share/doc/qt2/html/qstylesheetitem.html +share/doc/qt2/html/qt-members.html +share/doc/qt2/html/qt.html +share/doc/qt2/html/qtab-members.html +share/doc/qt2/html/qtab.html +share/doc/qt2/html/qtabbar-h.html +share/doc/qt2/html/qtabbar-m.png +share/doc/qt2/html/qtabbar-members.html +share/doc/qt2/html/qtabbar-w.png +share/doc/qt2/html/qtabbar.html +share/doc/qt2/html/qtabdialog-h.html +share/doc/qt2/html/qtabdialog-members.html +share/doc/qt2/html/qtabdialog.html +share/doc/qt2/html/qtabdlg-m.png +share/doc/qt2/html/qtabdlg-w.png +share/doc/qt2/html/qtableview-h.html +share/doc/qt2/html/qtableview-members.html +share/doc/qt2/html/qtableview.html +share/doc/qt2/html/qtablevw-m.png +share/doc/qt2/html/qtablevw-w.png +share/doc/qt2/html/qtabwidget-h.html +share/doc/qt2/html/qtabwidget-m.png +share/doc/qt2/html/qtabwidget-members.html +share/doc/qt2/html/qtabwidget-w.png +share/doc/qt2/html/qtabwidget.html +share/doc/qt2/html/qtextbrowser-h.html +share/doc/qt2/html/qtextbrowser-m.png +share/doc/qt2/html/qtextbrowser-members.html +share/doc/qt2/html/qtextbrowser-w.png +share/doc/qt2/html/qtextbrowser.html +share/doc/qt2/html/qtextcodec-h.html +share/doc/qt2/html/qtextcodec-members.html +share/doc/qt2/html/qtextcodec.html +share/doc/qt2/html/qtextdecoder-members.html +share/doc/qt2/html/qtextdecoder.html +share/doc/qt2/html/qtextdrag-members.html +share/doc/qt2/html/qtextdrag.html +share/doc/qt2/html/qtextencoder-members.html +share/doc/qt2/html/qtextencoder.html +share/doc/qt2/html/qtextistream-members.html +share/doc/qt2/html/qtextistream.html +share/doc/qt2/html/qtextostream-members.html +share/doc/qt2/html/qtextostream.html +share/doc/qt2/html/qtextstream-h.html +share/doc/qt2/html/qtextstream-members.html +share/doc/qt2/html/qtextstream.html +share/doc/qt2/html/qtextview-h.html +share/doc/qt2/html/qtextview-members.html +share/doc/qt2/html/qtextview.html +share/doc/qt2/html/qtimage-qtimage-cpp.html +share/doc/qt2/html/qtime-members.html +share/doc/qt2/html/qtime.html +share/doc/qt2/html/qtimer-h.html +share/doc/qt2/html/qtimer-members.html +share/doc/qt2/html/qtimer.html +share/doc/qt2/html/qtimerevent-members.html +share/doc/qt2/html/qtimerevent.html +share/doc/qt2/html/qtl.html +share/doc/qt2/html/qtlogo.png +share/doc/qt2/html/qtoolbar-h.html +share/doc/qt2/html/qtoolbar-members.html +share/doc/qt2/html/qtoolbar.html +share/doc/qt2/html/qtoolbutton-h.html +share/doc/qt2/html/qtoolbutton-members.html +share/doc/qt2/html/qtoolbutton.html +share/doc/qt2/html/qtooltip-h.html +share/doc/qt2/html/qtooltip-members.html +share/doc/qt2/html/qtooltip.html +share/doc/qt2/html/qtooltipgroup-members.html +share/doc/qt2/html/qtooltipgroup.html +share/doc/qt2/html/qtranslator-h.html +share/doc/qt2/html/qtranslator-members.html +share/doc/qt2/html/qtranslator.html +share/doc/qt2/html/quridrag-members.html +share/doc/qt2/html/quridrag.html +share/doc/qt2/html/qurl-h.html +share/doc/qt2/html/qurl-members.html +share/doc/qt2/html/qurl.html +share/doc/qt2/html/qurlinfo-h.html +share/doc/qt2/html/qurlinfo-members.html +share/doc/qt2/html/qurlinfo.html +share/doc/qt2/html/qurloperator-h.html +share/doc/qt2/html/qurloperator-members.html +share/doc/qt2/html/qurloperator.html +share/doc/qt2/html/qvalidator-h.html +share/doc/qt2/html/qvalidator-members.html +share/doc/qt2/html/qvalidator.html +share/doc/qt2/html/qvaluelist-h.html +share/doc/qt2/html/qvaluelist-members.html +share/doc/qt2/html/qvaluelist.html +share/doc/qt2/html/qvaluelistconstiterator-members.html +share/doc/qt2/html/qvaluelistconstiterator.html +share/doc/qt2/html/qvaluelistiterator-members.html +share/doc/qt2/html/qvaluelistiterator.html +share/doc/qt2/html/qvaluestack-h.html +share/doc/qt2/html/qvaluestack-members.html +share/doc/qt2/html/qvaluestack.html +share/doc/qt2/html/qvariant-h.html +share/doc/qt2/html/qvariant-members.html +share/doc/qt2/html/qvariant.html +share/doc/qt2/html/qvbox-h.html +share/doc/qt2/html/qvbox-m.png +share/doc/qt2/html/qvbox-members.html +share/doc/qt2/html/qvbox-w.png +share/doc/qt2/html/qvbox.html +share/doc/qt2/html/qvbox.png +share/doc/qt2/html/qvboxlayout-members.html +share/doc/qt2/html/qvboxlayout.html +share/doc/qt2/html/qvbuttongroup-h.html +share/doc/qt2/html/qvbuttongroup-members.html +share/doc/qt2/html/qvbuttongroup.html +share/doc/qt2/html/qvector-h.html +share/doc/qt2/html/qvector-members.html +share/doc/qt2/html/qvector.html +share/doc/qt2/html/qvgroupbox-h.html +share/doc/qt2/html/qvgroupbox-members.html +share/doc/qt2/html/qvgroupbox.html +share/doc/qt2/html/qwerty-main-cpp.html +share/doc/qt2/html/qwhatsthis-h.html +share/doc/qt2/html/qwhatsthis-members.html +share/doc/qt2/html/qwhatsthis.html +share/doc/qt2/html/qwheelevent-members.html +share/doc/qt2/html/qwheelevent.html +share/doc/qt2/html/qwidget-h.html +share/doc/qt2/html/qwidget-members.html +share/doc/qt2/html/qwidget.html +share/doc/qt2/html/qwidgetitem-members.html +share/doc/qt2/html/qwidgetitem.html +share/doc/qt2/html/qwidgetstack-h.html +share/doc/qt2/html/qwidgetstack-members.html +share/doc/qt2/html/qwidgetstack.html +share/doc/qt2/html/qwindowdefs-h.html +share/doc/qt2/html/qwindowsstyle-h.html +share/doc/qt2/html/qwindowsstyle-members.html +share/doc/qt2/html/qwindowsstyle.html +share/doc/qt2/html/qwizard-h.html +share/doc/qt2/html/qwizard-members.html +share/doc/qt2/html/qwizard.html +share/doc/qt2/html/qwmatrix-h.html +share/doc/qt2/html/qwmatrix-members.html +share/doc/qt2/html/qwmatrix.html +share/doc/qt2/html/qworkspace-h.html +share/doc/qt2/html/qworkspace-members.html +share/doc/qt2/html/qworkspace.html +share/doc/qt2/html/qxt-h.html +share/doc/qt2/html/qxtapplication-members.html +share/doc/qt2/html/qxtapplication.html +share/doc/qt2/html/qxtwidget-members.html +share/doc/qt2/html/qxtwidget.html +share/doc/qt2/html/removed20.html +share/doc/qt2/html/richtext-main-cpp.html +share/doc/qt2/html/rintersect.png +share/doc/qt2/html/rot13-rot13-cpp.html +share/doc/qt2/html/rsubtract.png +share/doc/qt2/html/runion.png +share/doc/qt2/html/rxor.png +share/doc/qt2/html/scribble-main-cpp.html +share/doc/qt2/html/scrollview-scrollview-cpp.html +share/doc/qt2/html/session.html +share/doc/qt2/html/session.png +share/doc/qt2/html/shared.html +share/doc/qt2/html/shclass.html +share/doc/qt2/html/showimg-main-cpp.html +share/doc/qt2/html/signalsandslots.html +share/doc/qt2/html/simple-application.html +share/doc/qt2/html/splitter-splitter-cpp.html +share/doc/qt2/html/splitter-views-m.png +share/doc/qt2/html/splitter-views-w.png +share/doc/qt2/html/t1.html +share/doc/qt2/html/t1.png +share/doc/qt2/html/t10-cannon-cpp.html +share/doc/qt2/html/t10-cannon-h.html +share/doc/qt2/html/t10-lcdrange-cpp.html +share/doc/qt2/html/t10-lcdrange-h.html +share/doc/qt2/html/t10-main-cpp.html +share/doc/qt2/html/t10-makefile.html +share/doc/qt2/html/t10.html +share/doc/qt2/html/t10.png +share/doc/qt2/html/t11-cannon-cpp.html +share/doc/qt2/html/t11-cannon-h.html +share/doc/qt2/html/t11-lcdrange-cpp.html +share/doc/qt2/html/t11-lcdrange-h.html +share/doc/qt2/html/t11-main-cpp.html +share/doc/qt2/html/t11-makefile.html +share/doc/qt2/html/t11.html +share/doc/qt2/html/t11.png +share/doc/qt2/html/t12-cannon-cpp.html +share/doc/qt2/html/t12-cannon-h.html +share/doc/qt2/html/t12-lcdrange-cpp.html +share/doc/qt2/html/t12-lcdrange-h.html +share/doc/qt2/html/t12-main-cpp.html +share/doc/qt2/html/t12-makefile.html +share/doc/qt2/html/t12.html +share/doc/qt2/html/t12.png +share/doc/qt2/html/t13-cannon-cpp.html +share/doc/qt2/html/t13-cannon-h.html +share/doc/qt2/html/t13-gamebrd-cpp.html +share/doc/qt2/html/t13-gamebrd-h.html +share/doc/qt2/html/t13-lcdrange-cpp.html +share/doc/qt2/html/t13-lcdrange-h.html +share/doc/qt2/html/t13-main-cpp.html +share/doc/qt2/html/t13-makefile.html +share/doc/qt2/html/t13.html +share/doc/qt2/html/t13.png +share/doc/qt2/html/t14-cannon-cpp.html +share/doc/qt2/html/t14-cannon-h.html +share/doc/qt2/html/t14-gamebrd-cpp.html +share/doc/qt2/html/t14-gamebrd-h.html +share/doc/qt2/html/t14-lcdrange-cpp.html +share/doc/qt2/html/t14-lcdrange-h.html +share/doc/qt2/html/t14-main-cpp.html +share/doc/qt2/html/t14-makefile.html +share/doc/qt2/html/t14.html +share/doc/qt2/html/t14.png +share/doc/qt2/html/t2.html +share/doc/qt2/html/t2.png +share/doc/qt2/html/t3.html +share/doc/qt2/html/t3.png +share/doc/qt2/html/t4.html +share/doc/qt2/html/t4.png +share/doc/qt2/html/t5.html +share/doc/qt2/html/t5.png +share/doc/qt2/html/t6.html +share/doc/qt2/html/t6.png +share/doc/qt2/html/t7-lcdrange-cpp.html +share/doc/qt2/html/t7-lcdrange-h.html +share/doc/qt2/html/t7-main-cpp.html +share/doc/qt2/html/t7-makefile.html +share/doc/qt2/html/t7.html +share/doc/qt2/html/t7.png +share/doc/qt2/html/t8-cannon-cpp.html +share/doc/qt2/html/t8-cannon-h.html +share/doc/qt2/html/t8-lcdrange-cpp.html +share/doc/qt2/html/t8-lcdrange-h.html +share/doc/qt2/html/t8-main-cpp.html +share/doc/qt2/html/t8-makefile.html +share/doc/qt2/html/t8.html +share/doc/qt2/html/t8.png +share/doc/qt2/html/t9-cannon-cpp.html +share/doc/qt2/html/t9-cannon-h.html +share/doc/qt2/html/t9-lcdrange-cpp.html +share/doc/qt2/html/t9-lcdrange-h.html +share/doc/qt2/html/t9-main-cpp.html +share/doc/qt2/html/t9-makefile.html +share/doc/qt2/html/t9.html +share/doc/qt2/html/t9.png +share/doc/qt2/html/t9_1.png +share/doc/qt2/html/t9_2.png +share/doc/qt2/html/tabdialog-main-cpp.html +share/doc/qt2/html/table-main-cpp.html +share/doc/qt2/html/test.png +share/doc/qt2/html/tetrix-tetrix-cpp.html +share/doc/qt2/html/themes-main-cpp.html +share/doc/qt2/html/tictac-main-cpp.html +share/doc/qt2/html/time.html +share/doc/qt2/html/timers.html +share/doc/qt2/html/titleindex +share/doc/qt2/html/tools.html +share/doc/qt2/html/tooltip-main-cpp.html +share/doc/qt2/html/topicals.html +share/doc/qt2/html/trivial-trivial-cpp.html +share/doc/qt2/html/troll.html +share/doc/qt2/html/ttlogo-small.jpg +share/doc/qt2/html/ttlogo-small.png +share/doc/qt2/html/tutorial.html +share/doc/qt2/html/tutorial.png +share/doc/qt2/html/unicode.html +share/doc/qt2/html/validator-main-cpp.html +share/doc/qt2/html/whatsthis.png +share/doc/qt2/html/wizard-main-cpp.html +share/doc/qt2/html/xform-xform-cpp.html +share/doc/qt2/html/xt.html +share/doc/qt2/html/y2k.html +@dirrm share/doc/qt2/html