diff options
author | dmcmahill <dmcmahill> | 2000-03-28 21:41:42 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2000-03-28 21:41:42 +0000 |
commit | 0307eea91857640780df79374a74531bbd30dce0 (patch) | |
tree | 0b57f3c7a595cc00e25cdf66d7a8fb600ea22a14 /x11 | |
parent | c119ae837e7f9affcf776a4b2d6b0377c6d995e3 (diff) | |
download | pkgsrc-0307eea91857640780df79374a74531bbd30dce0.tar.gz |
update to 2.0.2. Thanks to Matthias Scheler for doing most of the work.
Qt-1.44 is still available as the x11/qt1 package as Qt-2 is not 100% backwards
compatible with Qt-1.44.
A complete list of changes to Qt since 1.44 can be found online at
http://www.trolltech.com/changes/index.html
New major features
* Support for international software development:
+ QTranslator and the QObject::tr() function
+ QTextCodec (and subclasses)
+ QString is now a 16-bit Unicode string with good support for legacy 8-bit interoperation.
(The old 8-bit string class from Qt 1.x has been renamed to QCString.)
+ QChar - a Unicode character
* Rich Text
+ QTextView - formatted text and images
+ QTextBrowser - navigate formatted text and images
+ QStyleSheet - define your own XML formatting tags
+ QSimpleRichText - display rich text anywhere
* Convenient and powerful new collection classes:
+ QMap<Key,Type> - QDict with arbitrary keys
+ QValueList<Type> - QList of types other than pointers
+ QStringList - QValueList<QString> with helper functions
* Dialogs
+ QColorDialog - user picks a color
+ QFontDialog - user picks a font
+ QWizard - framework for leading users through steps
* Layout
+ QGrid, QHBox, QVBox - grid and boxes of widgets automatically assembled
+ QHGroupBox, QVGroupBox - easy framed groups of widgets
+ QSizePolicy - a widget's abilities to change size in different ways
* Custom layouts
+ New, much simpler and more powerful API for creating custom layouts
* PNG Support
+ PNG support is now included in the core library
* Support for generalized configurable GUI styles:
+ QStyle and subclasses
* Session management
+ QSessionManager - saving state when the system shuts down
* Extended coordinate system
+ QPoint, QPointArray, QSize and QRect now have 32-bit coordinates
* Cleaner namespace
+ Global functions, enums and macros now either start with a 'q' or have been moved into the
new namespace class "Qt"
Diffstat (limited to 'x11')
-rw-r--r-- | x11/qt/Makefile | 63 | ||||
-rw-r--r-- | x11/qt/files/enablegif.patch | 11 | ||||
-rw-r--r-- | x11/qt/files/md5 | 4 | ||||
-rw-r--r-- | x11/qt/files/patch-sum | 8 | ||||
-rw-r--r-- | x11/qt/patches/patch-aa | 55 | ||||
-rw-r--r-- | x11/qt/patches/patch-ab | 30 | ||||
-rw-r--r-- | x11/qt/patches/patch-ac | 42 | ||||
-rw-r--r-- | x11/qt/pkg/PLIST | 2209 |
8 files changed, 1762 insertions, 660 deletions
diff --git a/x11/qt/Makefile b/x11/qt/Makefile index f3597132b21..1b08693c816 100644 --- a/x11/qt/Makefile +++ b/x11/qt/Makefile @@ -1,58 +1,65 @@ -# $NetBSD: Makefile,v 1.29 1999/10/07 17:42:01 tron Exp $ +# $NetBSD: Makefile,v 1.30 2000/03/28 21:41:42 dmcmahill Exp $ # -DISTNAME= qt-1.44 +DISTNAME= qt-2.0.2 CATEGORIES= x11 MASTER_SITES= ftp://ftp.troll.no/qt/source/ \ ftp://ftp.fu-berlin.de/unix/X11/gui/Qt/source/ -MAINTAINER= packages@netbsd.org +MAINTAINER= tron@netbsd.org HOMEPAGE= http://www.troll.no/products/qt.html -CONFLICTS= qt-1.* +DEPENDS+= Mesa-*:../../graphics/Mesa +DEPENDS+= png-*:../../graphics/png -USE_X11BASE= yes -USE_GMAKE= yes -USE_LIBTOOL= yes +HAS_CONFIGURE= yes +USE_X11BASE= yes +USE_GMAKE= yes +USE_LIBTOOL= yes +CONFIGURE_ENV+= QTDIR=${WRKSRC} +CONFIGURE_ARGS+= -static -sm -system-zlib -system-libpng \ + -I${LOCALBASE}/include -L${LOCALBASE}/lib \ -MAKE_ENV= QTDIR=${WRKSRC} +MAKE_ENV+= QTDIR=${WRKSRC} ALL_TARGET= src .include "../../mk/bsd.prefs.mk" +.if defined(USE_GIF) +CONFIGURE_ARGS+= -gif +.endif + .if ${OPSYS} == "SunOS" DEPENDS+= egcs-1.1.2:../../lang/egcs CXX= ${LOCALBASE}/egcs/bin/g++ .endif -do-configure: - @cd ${WRKSRC} && ${MAKE} QTDIR=${WRKSRC} ${LOWER_OPSYS}-g++-static - -.if defined(USE_GIF) -pre-build: - cd ${WRKSRC} && ${PATCH} <${FILESDIR}/enablegif.patch -.endif +QTPREFIX= ${PREFIX}/qt2 do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bin/moc ${PREFIX}/bin/ - @${LIBTOOL} ${INSTALL_DATA} ${WRKSRC}/src/libqt.la ${PREFIX}/lib/ - ${INSTALL_DATA_DIR} ${PREFIX}/include/qt - ${INSTALL_DATA} ${WRKSRC}/include/* ${PREFIX}/include/qt/ - ${INSTALL_MAN} ${WRKSRC}/man/man1/* ${PREFIX}/man/man1/ + ${INSTALL_PROGRAM_DIR} ${QTPREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/bin/moc ${QTPREFIX}/bin + ${INSTALL_DATA_DIR} ${QTPREFIX}/lib + @${LIBTOOL} ${INSTALL_DATA} ${WRKSRC}/src/libqt.la ${QTPREFIX}/lib + ${LN} -fs ${QTPREFIX}/lib/libqt.so.2.0 ${PREFIX}/lib/libqt.so.2.0 + ${INSTALL_DATA_DIR} ${QTPREFIX}/include + ${INSTALL_DATA} ${WRKSRC}/include/* ${QTPREFIX}/include + ${INSTALL_MAN_DIR} ${QTPREFIX}/man/man1 + ${INSTALL_MAN_DIR} ${QTPREFIX}/man/man3 + ${INSTALL_MAN} ${WRKSRC}/man/man1/* ${QTPREFIX}/man/man1 @cd ${WRKSRC}/man/man3; PAGES="`ls -1 | ${SED} -e 's,3qt$$,3,'`"; \ (for PAGE in $$PAGES; do \ - ${ECHO} installing ${PREFIX}/man/man3/$${PAGE}; \ + ${ECHO} installing ${QTPREFIX}/man/man3/$${PAGE}; \ set - X `head -1 $${PAGE}qt`; \ if [ $$# -eq 3 ] && [ "$$2" = .so ]; then \ - ${RM} -f ${PREFIX}/man/man3/$${PAGE}; \ - ${LN} -s `basename $$3 | ${SED} s/qt$$//` \ - ${PREFIX}/man/man3/$${PAGE}; \ + ${LN} -fs `basename $$3 | ${SED} s/qt$$//` \ + ${QTPREFIX}/man/man3/$${PAGE}; \ else \ - ${INSTALL_MAN} $${PAGE}qt \ - ${PREFIX}/man/man3/$${PAGE}; \ + ${INSTALL_MAN} $${PAGE}qt ${QTPREFIX}/man/man3/$${PAGE}; \ fi; \ done) - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/qt - ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/README.QT ${PREFIX}/share/doc/qt/ + ${INSTALL_DATA_DIR} ${QTPREFIX}/share/doc/qt + ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/README.QT \ + ${WRKSRC}/doc/* ${QTPREFIX}/share/doc/qt .include "../../mk/bsd.pkg.mk" diff --git a/x11/qt/files/enablegif.patch b/x11/qt/files/enablegif.patch deleted file mode 100644 index d3b7924e0c4..00000000000 --- a/x11/qt/files/enablegif.patch +++ /dev/null @@ -1,11 +0,0 @@ -$NetBSD: enablegif.patch,v 1.1 1999/10/01 15:12:23 drochner Exp $ ---- src/kernel/qt_gif.h.orig Fri Feb 26 17:58:47 1999 -+++ src/kernel/qt_gif.h Sun Sep 26 00:09:22 1999 -@@ -14,6 +14,6 @@ - ** - *****************************************************************************/ - --#define QT_BUILTIN_GIF_READER 0 -+#define QT_BUILTIN_GIF_READER 1 - - bool qt_builtin_gif_reader(); diff --git a/x11/qt/files/md5 b/x11/qt/files/md5 index ca009a62025..3978361b975 100644 --- a/x11/qt/files/md5 +++ b/x11/qt/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.8 1999/06/04 15:29:32 drochner Exp $ +$NetBSD: md5,v 1.9 2000/03/28 21:41:44 dmcmahill Exp $ -MD5 (qt-1.44.tar.gz) = 143a6b7001c04843c304c96cfe608ed8 +MD5 (qt-2.0.2.tar.gz) = afeaf554f538b415a2f46ff6b36657f4 diff --git a/x11/qt/files/patch-sum b/x11/qt/files/patch-sum index 6128e4c68cb..62c7cc2f72f 100644 --- a/x11/qt/files/patch-sum +++ b/x11/qt/files/patch-sum @@ -1,5 +1,5 @@ -$NetBSD: patch-sum,v 1.1 1999/07/09 14:23:29 agc Exp $ +$NetBSD: patch-sum,v 1.2 2000/03/28 21:41:44 dmcmahill Exp $ -MD5 (patch-aa) = fe45c02a79ffac6c5062380b8305762c -MD5 (patch-ab) = 086f203472974e58dee805235f625bb7 -MD5 (patch-ac) = 7c34274c3a6c83b5f5eb0c25c16eea46 +MD5 (patch-aa) = e5f74faca4ba8334410e036e60dfb424 +MD5 (patch-ab) = 4f045be0e4e9df89dce9316ff1f2e6b7 +MD5 (patch-ac) = 22cab9b56814655b30817034464d66c6 diff --git a/x11/qt/patches/patch-aa b/x11/qt/patches/patch-aa index bceb5918c30..6b78e992aa3 100644 --- a/x11/qt/patches/patch-aa +++ b/x11/qt/patches/patch-aa @@ -1,16 +1,22 @@ -$NetBSD: patch-aa,v 1.6 1999/10/01 15:09:23 drochner Exp $ ---- configs/netbsd-g++-static.orig Fri Feb 26 18:02:07 1999 -+++ configs/netbsd-g++-static Fri Jun 4 14:00:58 1999 -@@ -1,5 +1,6 @@ +$NetBSD: patch-aa,v 1.7 2000/03/28 21:41:44 dmcmahill Exp $ + +--- configs/netbsd-g++-static.orig Tue Jul 20 04:45:11 1999 ++++ configs/netbsd-g++-static Thu Oct 21 14:15:45 1999 +@@ -1,6 +1,7 @@ # Compiling SYSCONF_CXX = g++ -+SYSCONF_CXX_LIB = $(LIBTOOL) --mode=compile g++ + SYSCONF_CC = gcc ++SYSCONF_CXX_LIB = $(LIBTOOL) --cplusplus --mode=compile g++ # Compiling with support libraries SYSCONF_CXXFLAGS_X11 = -I/usr/X11R6/include -@@ -14,8 +15,8 @@ - SYSCONF_LFLAGS_X11 = -L/usr/X11R6/lib - SYSCONF_LIBS_X11 = -lX11 -lXext +@@ -12,11 +13,11 @@ + + # Linking with support libraries + # X11 +-SYSCONF_LFLAGS_X11 = -L/usr/X11R6/lib ++SYSCONF_LFLAGS_X11 = -L/usr/X11R6/lib -Wl,-R/usr/X11R6/lib + SYSCONF_LIBS_X11 = -lXext -lX11 -lm # Qt, Qt+OpenGL -SYSCONF_LFLAGS_QT = -L$(QTDIR)/lib -SYSCONF_LIBS_QT = -lqt @@ -19,12 +25,12 @@ $NetBSD: patch-aa,v 1.6 1999/10/01 15:09:23 drochner Exp $ SYSCONF_LIBS_QT_OPENGL = -lqgl # OpenGL SYSCONF_LFLAGS_OPENGL = -L/usr/X11R6/lib -@@ -24,38 +25,24 @@ +@@ -25,41 +26,27 @@ SYSCONF_LIBS_YACC = # Linking applications -SYSCONF_LINK = g++ -+SYSCONF_LINK = $(LIBTOOL) --mode=link g++ ++SYSCONF_LINK = $(LIBTOOL) --cplusplus --mode=link g++ SYSCONF_LFLAGS = SYSCONF_LIBS = @@ -35,12 +41,12 @@ $NetBSD: patch-aa,v 1.6 1999/10/01 15:09:23 drochner Exp $ SYSCONF_MOC = $(QTDIR)/bin/moc -# Linking shared libraries --# - Build the $(TARGET) library, eg. lib$(TARGET).so.0.0 +-# - Build the $(TARGET) library, eg. lib$(TARGET).so.2.0.1 -# - Place target in $(DESTDIR) - which has a trailing / --# - Usually needs to incorporate $(VER_MAJ) and $(VER_MIN) +-# - Usually needs to incorporate $(VER_MAJ), $(VER_MIN) and $(VER_PATCH) -# -SYSCONF_LINK_SHLIB = ld --SYSCONF_LINK_TARGET_SHARED = lib$(TARGET).so.$(VER_MAJ).$(VER_MIN) +-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) - -# Linking static libraries @@ -52,17 +58,22 @@ $NetBSD: patch-aa,v 1.6 1999/10/01 15:09:23 drochner Exp $ -SYSCONF_LINK_TARGET_STATIC = lib$(TARGET).a -SYSCONF_LINK_LIB_STATIC = rm -f $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) ; \ - $(SYSCONF_AR) $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) $(OBJECTS) $(OBJMOC) -+SYSCONF_LINK_TARGET = lib$(TARGET).la -+SYSCONF_LINK_LIB = rm -f $(SYSCONF_LINK_TARGET) ; \ -+ $(LIBTOOL) --mode=link g++ -rpath $(PREFIX)/lib -version-info $(VER_MAJ):$(VER_MIN) \ -+ -o $(SYSCONF_LINK_TARGET) $(OBJECTS:.o=.lo) $(OBJMOC:.o=.lo) ++SYSCONF_LINK_TARGET = lib$(TARGET).la ++SYSCONF_LINK_LIB = rm -f $(DESTDIR)$(SYSCONF_LINK_TARGET) ; \ ++ $(SYSCONF_LINK) -rpath $(PREFIX)/lib -version-info $(VER_MAJ):$(VER_MIN) \ ++ -o $(SYSCONF_LINK_TARGET) $(OBJECTS:.o=.lo) $(OBJMOC:.o=.lo) # Compiling application source - SYSCONF_CXXFLAGS = -O2 -fno-strength-reduce + SYSCONF_CXXFLAGS = -O2 + SYSCONF_CFLAGS = -O2 # Compiling library source --SYSCONF_CXXFLAGS_LIB = -O2 -fno-strength-reduce -fPIC -+SYSCONF_CXXFLAGS_LIB = +-SYSCONF_CXXFLAGS_LIB = -fPIC +-SYSCONF_CFLAGS_LIB = -fPIC ++SYSCONF_CXXFLAGS_LIB = ++SYSCONF_CFLAGS_LIB = # Compiling shared-object source --SYSCONF_CXXFLAGS_SHOBJ = -O2 -fno-strength-reduce -fPIC +-SYSCONF_CXXFLAGS_SHOBJ = -fPIC +-SYSCONF_CFLAGS_SHOBJ = -fPIC -SYSCONF_LINK_LIB = $(SYSCONF_LINK_LIB_STATIC) -SYSCONF_LINK_TARGET = $(SYSCONF_LINK_TARGET_STATIC) -+SYSCONF_CXXFLAGS_SHOBJ = -O2 -fno-strength-reduce ++SYSCONF_CXXFLAGS_SHOBJ = ++SYSCONF_CFLAGS_SHOBJ = diff --git a/x11/qt/patches/patch-ab b/x11/qt/patches/patch-ab index 1f8e632a508..89a33ba31e3 100644 --- a/x11/qt/patches/patch-ab +++ b/x11/qt/patches/patch-ab @@ -1,26 +1,26 @@ -$NetBSD: patch-ab,v 1.4 1999/06/04 15:29:33 drochner Exp $ +$NetBSD: patch-ab,v 1.5 2000/03/28 21:41:44 dmcmahill Exp $ ---- src/Makefile.in.orig Thu Jun 3 21:09:55 1999 -+++ src/Makefile.in Thu Jun 3 21:25:50 1999 -@@ -14,7 +14,7 @@ +--- src/Makefile.in.orig Tue Jul 20 04:45:37 1999 ++++ src/Makefile.in Thu Oct 21 19:23:16 1999 +@@ -2,7 +2,7 @@ ####### Compiler, tools and options -CXX = $(SYSCONF_CXX) +CXX = $(SYSCONF_CXX_LIB) - CXXFLAGS= $(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS_X11) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) - LFLAGS = $(SYSCONF_LFLAGS_X11) $(SYSCONF_LFLAGS) - LIBS = $(SYSCONF_LIBS_X11) -@@ -23,7 +23,7 @@ + CXXFLAGS= $(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS_X11) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) $(QT_CXXFLAGS_OPT) + CC = $(SYSCONF_CC) + CFLAGS = $(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) $(QT_CFLAGS_OPT) +@@ -13,7 +13,7 @@ + ####### Target - TARGET = qt -DESTDIR = ../lib/ -+DESTDIR = - VER_MAJ = 1 - VER_MIN = 44 - -@@ -505,22 +505,10 @@ ++DESTDIR = + VER_MAJ = 2 + VER_MIN = 0 + VER_PATCH = 2 +@@ -694,22 +694,10 @@ ####### Implicit rules @@ -40,7 +40,7 @@ $NetBSD: patch-ab,v 1.4 1999/06/04 15:29:33 drochner Exp $ - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< - -.c.o: -- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< +- $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< + @cd `dirname $@` && $(CXX) -c $(CXXFLAGS) `basename $<` ####### Build rules diff --git a/x11/qt/patches/patch-ac b/x11/qt/patches/patch-ac index 8365235d18f..0f10ccd9845 100644 --- a/x11/qt/patches/patch-ac +++ b/x11/qt/patches/patch-ac @@ -1,14 +1,13 @@ -$NetBSD: patch-ac,v 1.1 1999/07/07 17:34:52 agc Exp $ +$NetBSD: patch-ac,v 1.2 2000/03/28 21:41:44 dmcmahill Exp $ -Make this compile on Solaris, using egcs, and X11R6 - ---- configs/solaris-g++-static 1999/07/07 15:52:56 1.1 -+++ configs/solaris-g++-static 1999/07/07 16:02:02 -@@ -1,30 +1,31 @@ +--- configs/solaris-g++-static.orig Fri Sep 24 05:22:03 1999 ++++ configs/solaris-g++-static Mon Mar 27 21:20:24 2000 +@@ -1,10 +1,11 @@ # Compiling -SYSCONF_CXX = g++ +SYSCONF_CXX = ${LOCALBASE}/egcs/bin/g++ -+SYSCONF_CXX_LIB = $(LIBTOOL) --mode=compile ${SYSCONF_CXX} ++SYSCONF_CXX_LIB = $(LIBTOOL) --cplusplus --mode=compile ${SYSCONF_CXX} + SYSCONF_CC = gcc # Compiling with support libraries -SYSCONF_CXXFLAGS_X11 = -I/usr/openwin/include @@ -18,21 +17,19 @@ Make this compile on Solaris, using egcs, and X11R6 +SYSCONF_CXXFLAGS_OPENGL = -I${X11BASE}/include # Compiline YACC output - SYSCONF_CXXFLAGS_YACC = -Wno-unused -Wno-parentheses - +@@ -13,5 +14,5 @@ # Linking with support libraries # X11 -SYSCONF_LFLAGS_X11 = -L/usr/openwin/lib +SYSCONF_LFLAGS_X11 = -L${X11BASE}/lib - SYSCONF_LIBS_X11 = -lX11 -lXext + SYSCONF_LIBS_X11 = -lXext -lX11 -lm # Qt, Qt+OpenGL - SYSCONF_LFLAGS_QT = -L$(QTDIR)/lib - SYSCONF_LIBS_QT = -lqt +@@ -20,11 +21,11 @@ SYSCONF_LIBS_QT_OPENGL = -lqgl # OpenGL -SYSCONF_LFLAGS_OPENGL = -SYSCONF_LIBS_OPENGL = -lGL -lGLU -lXmu -+SYSCONF_LFLAGS_OPENGL = -L${X11BASE}/lib ++SYSCONF_LFLAGS_OPENGL = -L${X11BASE}/lib +SYSCONF_LIBS_OPENGL = -lMesaGL -lMesaGLU -lXmu -lXext -lm # Yacc SYSCONF_LIBS_YACC = @@ -42,27 +39,22 @@ Make this compile on Solaris, using egcs, and X11R6 +SYSCONF_LINK = ${LOCALBASE}/egcs/bin/g++ SYSCONF_LFLAGS = SYSCONF_LIBS = - -@@ -39,7 +40,7 @@ - # - Place target in $(DESTDIR) - which has a trailing / - # - Usually needs to incorporate $(VER_MAJ) and $(VER_MIN) +@@ -41,5 +42,5 @@ + # - Usually needs to incorporate $(VER_MAJ), $(VER_MIN) and $(VER_PATCH) # -SYSCONF_LINK_SHLIB = g++ +SYSCONF_LINK_SHLIB = ${LOCALBASE}/egcs/bin/g++ - SYSCONF_LINK_TARGET_SHARED = lib$(TARGET).so.$(VER_MAJ).$(VER_MIN) - SYSCONF_LINK_LIB_SHARED = $(SYSCONF_LINK_SHLIB) -h $(TARGET1) -shared \ - $(LFLAGS) -o $(SYSCONF_LINK_TARGET_SHARED) \ -@@ -54,10 +55,10 @@ - # - Build the $(TARGET) library, eg. lib$(TARGET).a + SYSCONF_LINK_TARGET_SHARED = lib$(TARGET).so.$(VER_MAJ).$(VER_MIN).$(VER_PATCH) + SYSCONF_LINK_LIB_SHARED = $(SYSCONF_LINK_SHLIB) -shared -h $(TARGET1) \ +@@ -57,8 +58,8 @@ # - Place target in $(DESTDIR) - which has a trailing / # -SYSCONF_AR = ar cq -SYSCONF_LINK_TARGET_STATIC = lib$(TARGET).a -+SYSCONF_AR = $(LIBTOOL) --mode=link $(SYSCONF_CXX) -rpath $(PREFIX)/lib -version-info $(VER_MAJ):$(VER_MIN) -o ++SYSCONF_AR = $(LIBTOOL) --cplusplus --mode=link $(SYSCONF_CXX) -rpath $(PREFIX)/lib -version-info $(VER_MAJ):$(VER_MIN) -o +SYSCONF_LINK_TARGET_STATIC = lib$(TARGET).la SYSCONF_LINK_LIB_STATIC = rm -f $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) ; \ - $(SYSCONF_AR) $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) $(OBJECTS) $(OBJMOC) + $(SYSCONF_AR) $(DESTDIR)$(SYSCONF_LINK_TARGET_STATIC) $(OBJECTS:.o=.lo) $(OBJMOC:.o=.lo) # Compiling application source - SYSCONF_CXXFLAGS = -O2 -fno-strength-reduce - # Compiling library source + SYSCONF_CXXFLAGS = -O2 diff --git a/x11/qt/pkg/PLIST b/x11/qt/pkg/PLIST index 719f36a6351..78756f93ab9 100644 --- a/x11/qt/pkg/PLIST +++ b/x11/qt/pkg/PLIST @@ -1,553 +1,1656 @@ -@comment $NetBSD: PLIST,v 1.11 1999/06/04 15:29:33 drochner Exp $ -bin/moc -include/qt/jri.h -include/qt/jri_md.h -include/qt/jritypes.h -include/qt/npapi.h -include/qt/npupp.h -include/qt/qaccel.h -include/qt/qapp.h -include/qt/qapplication.h -include/qt/qarray.h -include/qt/qasyncimageio.h -include/qt/qasyncio.h -include/qt/qbitarray.h -include/qt/qbitarry.h -include/qt/qbitmap.h -include/qt/qbrush.h -include/qt/qbttngrp.h -include/qt/qbuffer.h -include/qt/qbutton.h -include/qt/qbuttongroup.h -include/qt/qcache.h -include/qt/qcheckbox.h -include/qt/qchkbox.h -include/qt/qclipboard.h -include/qt/qclipbrd.h -include/qt/qcollect.h -include/qt/qcollection.h -include/qt/qcolor.h -include/qt/qcombo.h -include/qt/qcombobox.h -include/qt/qconnect.h -include/qt/qconnection.h -include/qt/qcursor.h -include/qt/qdatastream.h -include/qt/qdatetime.h -include/qt/qdatetm.h -include/qt/qdialog.h -include/qt/qdict.h -include/qt/qdir.h -include/qt/qdragobject.h -include/qt/qdrawutil.h -include/qt/qdrawutl.h -include/qt/qdropsite.h -include/qt/qdstream.h -include/qt/qevent.h -include/qt/qfile.h -include/qt/qfiledef.h -include/qt/qfiledefs.h -include/qt/qfiledialog.h -include/qt/qfiledlg.h -include/qt/qfileinf.h -include/qt/qfileinfo.h -include/qt/qfocusdata.h -include/qt/qfont.h -include/qt/qfontdata.h -include/qt/qfontdta.h -include/qt/qfontinf.h -include/qt/qfontinfo.h -include/qt/qfontmet.h -include/qt/qfontmetrics.h -include/qt/qframe.h -include/qt/qgarray.h -include/qt/qgcache.h -include/qt/qgdict.h -include/qt/qgeneric.h -include/qt/qgl.h -include/qt/qglist.h -include/qt/qglobal.h -include/qt/qgmanager.h -include/qt/qgmanagr.h -include/qt/qgroupbox.h -include/qt/qgrpbox.h -include/qt/qgvector.h -include/qt/qheader.h -include/qt/qiconset.h -include/qt/qimage.h -include/qt/qimageio.h -include/qt/qintcach.h -include/qt/qintcache.h -include/qt/qintdict.h -include/qt/qiodev.h -include/qt/qiodevice.h -include/qt/qjpegio.h -include/qt/qkeycode.h -include/qt/qlabel.h -include/qt/qlayout.h -include/qt/qlcdnum.h -include/qt/qlcdnumber.h -include/qt/qlined.h -include/qt/qlineedit.h -include/qt/qlist.h -include/qt/qlistbox.h -include/qt/qlistview.h -include/qt/qmainwindow.h -include/qt/qmenubar.h -include/qt/qmenudata.h -include/qt/qmenudta.h -include/qt/qmessagebox.h -include/qt/qmetaobj.h -include/qt/qmetaobject.h -include/qt/qmlined.h -include/qt/qmovie.h -include/qt/qmsgbox.h -include/qt/qmultilinedit.h -include/qt/qnp.h -include/qt/qobjcoll.h -include/qt/qobjdefs.h -include/qt/qobject.h -include/qt/qobjectdefs.h -include/qt/qobjectdict.h -include/qt/qobjectlist.h -include/qt/qpaintd.h -include/qt/qpaintdc.h -include/qt/qpaintdevice.h -include/qt/qpaintdevicedefs.h -include/qt/qpaintdevicemetrics.h -include/qt/qpainter.h -include/qt/qpalette.h -include/qt/qpdevmet.h -include/qt/qpen.h -include/qt/qpicture.h -include/qt/qpixmap.h -include/qt/qpixmapcache.h -include/qt/qpmcache.h -include/qt/qpngio.h -include/qt/qpntarry.h -include/qt/qpoint.h -include/qt/qpointarray.h -include/qt/qpopmenu.h -include/qt/qpopupmenu.h -include/qt/qprintdialog.h -include/qt/qprinter.h -include/qt/qprndlg.h -include/qt/qprogbar.h -include/qt/qprogdlg.h -include/qt/qprogressbar.h -include/qt/qprogressdialog.h -include/qt/qpsprinter.h -include/qt/qpsprn.h -include/qt/qptrdict.h -include/qt/qpushbt.h -include/qt/qpushbutton.h -include/qt/qqueue.h -include/qt/qradiobt.h -include/qt/qradiobutton.h -include/qt/qrangecontrol.h -include/qt/qrangect.h -include/qt/qrect.h -include/qt/qregexp.h -include/qt/qregion.h -include/qt/qscrbar.h -include/qt/qscrollbar.h -include/qt/qscrollview.h -include/qt/qsemimodal.h -include/qt/qshared.h -include/qt/qsignal.h -include/qt/qsignalmapper.h -include/qt/qsignalslotimp.h -include/qt/qsize.h -include/qt/qslider.h -include/qt/qsocketnotifier.h -include/qt/qsocknot.h -include/qt/qspinbox.h -include/qt/qsplitter.h -include/qt/qstack.h -include/qt/qstatusbar.h -include/qt/qstring.h -include/qt/qstrlist.h -include/qt/qstrvec.h -include/qt/qt_gif.h -include/qt/qtabbar.h -include/qt/qtabdialog.h -include/qt/qtabdlg.h -include/qt/qtableview.h -include/qt/qtablevw.h -include/qt/qtextstream.h -include/qt/qtimer.h -include/qt/qtoolbar.h -include/qt/qtoolbutton.h -include/qt/qtooltip.h -include/qt/qtstream.h -include/qt/qvalidator.h -include/qt/qvector.h -include/qt/qwellarray.h -include/qt/qwhatsthis.h -include/qt/qwidcoll.h -include/qt/qwidget.h -include/qt/qwidgetintdict.h -include/qt/qwidgetlist.h -include/qt/qwidgetstack.h -include/qt/qwindefs.h -include/qt/qwindow.h -include/qt/qwindowdefs.h -include/qt/qwmatrix.h -include/qt/qxt.h -lib/libqt.a -lib/libqt.so.1.44 -man/man1/moc.1 -man/man3/QAccel.3 -man/man3/QApplication.3 -man/man3/QArray.3 -man/man3/QAsyncIO.3 -man/man3/QBitArray.3 -man/man3/QBitVal.3 -man/man3/QBitmap.3 -man/man3/QBoxLayout.3 -man/man3/QBrush.3 -man/man3/QBuffer.3 -man/man3/QButton.3 -man/man3/QButtonGroup.3 -man/man3/QByteArray.3 -man/man3/QCache.3 -man/man3/QCacheIterator.3 -man/man3/QCheckBox.3 -man/man3/QCheckListItem.3 -man/man3/QChildEvent.3 -man/man3/QClipboard.3 -man/man3/QCloseEvent.3 -man/man3/QCollection.3 -man/man3/QColor.3 -man/man3/QColorGroup.3 -man/man3/QComboBox.3 -man/man3/QConnection.3 -man/man3/QCursor.3 -man/man3/QCustomEvent.3 -man/man3/QDataPump.3 -man/man3/QDataSink.3 -man/man3/QDataSource.3 -man/man3/QDataStream.3 -man/man3/QDate.3 -man/man3/QDateTime.3 -man/man3/QDialog.3 -man/man3/QDict.3 -man/man3/QDictIterator.3 -man/man3/QDir.3 -man/man3/QDoubleValidator.3 -man/man3/QDragMoveEvent.3 -man/man3/QDragObject.3 -man/man3/QDropEvent.3 -man/man3/QEvent.3 -man/man3/QFile.3 -man/man3/QFileDialog.3 -man/man3/QFileIconProvider.3 -man/man3/QFileInfo.3 -man/man3/QFocusData.3 -man/man3/QFocusEvent.3 -man/man3/QFont.3 -man/man3/QFontInfo.3 -man/man3/QFontMetrics.3 -man/man3/QFrame.3 -man/man3/QGArray.3 -man/man3/QGCache.3 -man/man3/QGCacheIterator.3 -man/man3/QGDict.3 -man/man3/QGDictIterator.3 -man/man3/QGLContext.3 -man/man3/QGLFormat.3 -man/man3/QGLWidget.3 -man/man3/QGList.3 -man/man3/QGListIterator.3 -man/man3/QGManager.3 -man/man3/QGridLayout.3 -man/man3/QGroupBox.3 -man/man3/QHBoxLayout.3 -man/man3/QHeader.3 -man/man3/QIODevice.3 -man/man3/QIODeviceSource.3 -man/man3/QIconSet.3 -man/man3/QImage.3 -man/man3/QImageConsumer.3 -man/man3/QImageDecoder.3 -man/man3/QImageDrag.3 -man/man3/QImageFormat.3 -man/man3/QImageFormatType.3 -man/man3/QImageIO.3 -man/man3/QIntCache.3 -man/man3/QIntCacheIterator.3 -man/man3/QIntDict.3 -man/man3/QIntDictIterator.3 -man/man3/QIntValidator.3 -man/man3/QKeyEvent.3 -man/man3/QLCDNumber.3 -man/man3/QLNode.3 -man/man3/QLabel.3 -man/man3/QLayout.3 -man/man3/QLineEdit.3 -man/man3/QList.3 -man/man3/QListBox.3 -man/man3/QListBoxItem.3 -man/man3/QListBoxPixmap.3 -man/man3/QListBoxText.3 -man/man3/QListIterator.3 -man/man3/QListView.3 -man/man3/QListViewItem.3 -man/man3/QMainWindow.3 -man/man3/QMenuBar.3 -man/man3/QMenuData.3 -man/man3/QMessageBox.3 -man/man3/QMouseEvent.3 -man/man3/QMoveEvent.3 -man/man3/QMovie.3 -man/man3/QMultiLineEdit.3 -man/man3/QNPInstance.3 -man/man3/QNPStream.3 -man/man3/QNPWidget.3 -man/man3/QNPlugin.3 -man/man3/QObject.3 -man/man3/QPaintDevice.3 -man/man3/QPaintDeviceMetrics.3 -man/man3/QPaintEvent.3 -man/man3/QPainter.3 -man/man3/QPalette.3 -man/man3/QPen.3 -man/man3/QPicture.3 -man/man3/QPixmap.3 -man/man3/QPixmapCache.3 -man/man3/QPoint.3 -man/man3/QPointArray.3 -man/man3/QPointVal.3 -man/man3/QPopupMenu.3 -man/man3/QPrintDialog.3 -man/man3/QPrinter.3 -man/man3/QProgressBar.3 -man/man3/QProgressDialog.3 -man/man3/QPtrDict.3 -man/man3/QPtrDictIterator.3 -man/man3/QPushButton.3 -man/man3/QQueue.3 -man/man3/QRadioButton.3 -man/man3/QRangeControl.3 -man/man3/QRect.3 -man/man3/QRegExp.3 -man/man3/QRegion.3 -man/man3/QResizeEvent.3 -man/man3/QScrollBar.3 -man/man3/QScrollView.3 -man/man3/QSemiModal.3 -man/man3/QShared.3 -man/man3/QSignal.3 -man/man3/QSignalMapper.3 -man/man3/QSize.3 -man/man3/QSlider.3 -man/man3/QSocketNotifier.3 -man/man3/QSpinBox.3 -man/man3/QSplitter.3 -man/man3/QStack.3 -man/man3/QStatusBar.3 -man/man3/QStoredDrag.3 -man/man3/QStrIList.3 -man/man3/QStrList.3 -man/man3/QString.3 -man/man3/QTabBar.3 -man/man3/QTabDialog.3 -man/man3/QTableView.3 -man/man3/QTextDrag.3 -man/man3/QTextStream.3 -man/man3/QTime.3 -man/man3/QTimer.3 -man/man3/QTimerEvent.3 -man/man3/QToolBar.3 -man/man3/QToolButton.3 -man/man3/QToolTip.3 -man/man3/QToolTipGroup.3 -man/man3/QUrlDrag.3 -man/man3/QVBoxLayout.3 -man/man3/QValidator.3 -man/man3/QWMatrix.3 -man/man3/QWhatsThis.3 -man/man3/QWidget.3 -man/man3/QWidgetStack.3 -man/man3/QWindow.3 -man/man3/QXtApplication.3 -man/man3/QXtWidget.3 -man/man3/qaccel.3 -man/man3/qapplication.3 -man/man3/qarray.3 -man/man3/qasyncio.3 -man/man3/qbitarray.3 -man/man3/qbitmap.3 -man/man3/qbitval.3 -man/man3/qboxlayout.3 -man/man3/qbrush.3 -man/man3/qbuffer.3 -man/man3/qbutton.3 -man/man3/qbuttongroup.3 -man/man3/qbytearray.3 -man/man3/qcache.3 -man/man3/qcacheiterator.3 -man/man3/qcheckbox.3 -man/man3/qchecklistitem.3 -man/man3/qchildevent.3 -man/man3/qclipboard.3 -man/man3/qcloseevent.3 -man/man3/qcollection.3 -man/man3/qcolor.3 -man/man3/qcolorgroup.3 -man/man3/qcombobox.3 -man/man3/qconnection.3 -man/man3/qcursor.3 -man/man3/qcustomevent.3 -man/man3/qdatapump.3 -man/man3/qdatasink.3 -man/man3/qdatasource.3 -man/man3/qdatastream.3 -man/man3/qdate.3 -man/man3/qdatetime.3 -man/man3/qdialog.3 -man/man3/qdict.3 -man/man3/qdictiterator.3 -man/man3/qdir.3 -man/man3/qdoublevalidator.3 -man/man3/qdragmoveevent.3 -man/man3/qdragobject.3 -man/man3/qdropevent.3 -man/man3/qevent.3 -man/man3/qfile.3 -man/man3/qfiledialog.3 -man/man3/qfileiconprovider.3 -man/man3/qfileinfo.3 -man/man3/qfocusdata.3 -man/man3/qfocusevent.3 -man/man3/qfont.3 -man/man3/qfontinfo.3 -man/man3/qfontmetrics.3 -man/man3/qframe.3 -man/man3/qgarray.3 -man/man3/qgcache.3 -man/man3/qgcacheiterator.3 -man/man3/qgdict.3 -man/man3/qgdictiterator.3 -man/man3/qglcontext.3 -man/man3/qglformat.3 -man/man3/qglist.3 -man/man3/qglistiterator.3 -man/man3/qglwidget.3 -man/man3/qgmanager.3 -man/man3/qgridlayout.3 -man/man3/qgroupbox.3 -man/man3/qhboxlayout.3 -man/man3/qheader.3 -man/man3/qiconset.3 -man/man3/qimage.3 -man/man3/qimageconsumer.3 -man/man3/qimagedecoder.3 -man/man3/qimagedrag.3 -man/man3/qimageformat.3 -man/man3/qimageformattype.3 -man/man3/qimageio.3 -man/man3/qintcache.3 -man/man3/qintcacheiterator.3 -man/man3/qintdict.3 -man/man3/qintdictiterator.3 -man/man3/qintvalidator.3 -man/man3/qiodevice.3 -man/man3/qiodevicesource.3 -man/man3/qkeyevent.3 -man/man3/qlabel.3 -man/man3/qlayout.3 -man/man3/qlcdnumber.3 -man/man3/qlineedit.3 -man/man3/qlist.3 -man/man3/qlistbox.3 -man/man3/qlistboxitem.3 -man/man3/qlistboxpixmap.3 -man/man3/qlistboxtext.3 -man/man3/qlistiterator.3 -man/man3/qlistview.3 -man/man3/qlistviewitem.3 -man/man3/qlnode.3 -man/man3/qmainwindow.3 -man/man3/qmenubar.3 -man/man3/qmenudata.3 -man/man3/qmessagebox.3 -man/man3/qmouseevent.3 -man/man3/qmoveevent.3 -man/man3/qmovie.3 -man/man3/qmultilineedit.3 -man/man3/qnpinstance.3 -man/man3/qnplugin.3 -man/man3/qnpstream.3 -man/man3/qnpwidget.3 -man/man3/qobject.3 -man/man3/qpaintdevice.3 -man/man3/qpaintdevicemetrics.3 -man/man3/qpainter.3 -man/man3/qpaintevent.3 -man/man3/qpalette.3 -man/man3/qpen.3 -man/man3/qpicture.3 -man/man3/qpixmap.3 -man/man3/qpixmapcache.3 -man/man3/qpoint.3 -man/man3/qpointarray.3 -man/man3/qpointval.3 -man/man3/qpopupmenu.3 -man/man3/qprintdialog.3 -man/man3/qprinter.3 -man/man3/qprogressbar.3 -man/man3/qprogressdialog.3 -man/man3/qptrdict.3 -man/man3/qptrdictiterator.3 -man/man3/qpushbutton.3 -man/man3/qqueue.3 -man/man3/qradiobutton.3 -man/man3/qrangecontrol.3 -man/man3/qrect.3 -man/man3/qregexp.3 -man/man3/qregion.3 -man/man3/qresizeevent.3 -man/man3/qscrollbar.3 -man/man3/qscrollview.3 -man/man3/qsemimodal.3 -man/man3/qshared.3 -man/man3/qsignal.3 -man/man3/qsignalmapper.3 -man/man3/qsize.3 -man/man3/qslider.3 -man/man3/qsocketnotifier.3 -man/man3/qspinbox.3 -man/man3/qsplitter.3 -man/man3/qstack.3 -man/man3/qstatusbar.3 -man/man3/qstoreddrag.3 -man/man3/qstrilist.3 -man/man3/qstring.3 -man/man3/qstrlist.3 -man/man3/qtabbar.3 -man/man3/qtabdialog.3 -man/man3/qtableview.3 -man/man3/qtextdrag.3 -man/man3/qtextstream.3 -man/man3/qtime.3 -man/man3/qtimer.3 -man/man3/qtimerevent.3 -man/man3/qtoolbar.3 -man/man3/qtoolbutton.3 -man/man3/qtooltip.3 -man/man3/qtooltipgroup.3 -man/man3/qurldrag.3 -man/man3/qvalidator.3 -man/man3/qvboxlayout.3 -man/man3/qwhatsthis.3 -man/man3/qwidget.3 -man/man3/qwidgetstack.3 -man/man3/qwindow.3 -man/man3/qwmatrix.3 -man/man3/qxtapplication.3 -man/man3/qxtwidget.3 -share/doc/qt/README -share/doc/qt/README.QT -@dirrm share/doc/qt -@dirrm include/qt +@comment $NetBSD: PLIST,v 1.12 2000/03/28 21:41:44 dmcmahill Exp $ +qt2/bin/moc +qt2/include/jri.h +qt2/include/jritypes.h +qt2/include/npapi.h +qt2/include/npupp.h +qt2/include/q1xcompatibility.h +qt2/include/qabstractlayout.h +qt2/include/qaccel.h +qt2/include/qapp.h +qt2/include/qapplication.h +qt2/include/qarray.h +qt2/include/qasciicache.h +qt2/include/qasciidict.h +qt2/include/qasyncimageio.h +qt2/include/qasyncio.h +qt2/include/qbitarray.h +qt2/include/qbitarry.h +qt2/include/qbitmap.h +qt2/include/qbrush.h +qt2/include/qbttngrp.h +qt2/include/qbuffer.h +qt2/include/qbutton.h +qt2/include/qbuttongroup.h +qt2/include/qcache.h +qt2/include/qcdestyle.h +qt2/include/qcheckbox.h +qt2/include/qchkbox.h +qt2/include/qclipboard.h +qt2/include/qclipbrd.h +qt2/include/qcollect.h +qt2/include/qcollection.h +qt2/include/qcolor.h +qt2/include/qcolordialog.h +qt2/include/qcombo.h +qt2/include/qcombobox.h +qt2/include/qcommonstyle.h +qt2/include/qconnect.h +qt2/include/qconnection.h +qt2/include/qcstring.h +qt2/include/qcursor.h +qt2/include/qdatastream.h +qt2/include/qdatetime.h +qt2/include/qdatetm.h +qt2/include/qdialog.h +qt2/include/qdict.h +qt2/include/qdir.h +qt2/include/qdragobject.h +qt2/include/qdrawutil.h +qt2/include/qdrawutl.h +qt2/include/qdropsite.h +qt2/include/qdstream.h +qt2/include/qeucjpcodec.h +qt2/include/qeuckrcodec.h +qt2/include/qevent.h +qt2/include/qfile.h +qt2/include/qfiledef.h +qt2/include/qfiledefs.h +qt2/include/qfiledialog.h +qt2/include/qfiledlg.h +qt2/include/qfileinf.h +qt2/include/qfileinfo.h +qt2/include/qfocusdata.h +qt2/include/qfont.h +qt2/include/qfontdata.h +qt2/include/qfontdatabase.h +qt2/include/qfontdialog.h +qt2/include/qfontdta.h +qt2/include/qfontinf.h +qt2/include/qfontinfo.h +qt2/include/qfontmet.h +qt2/include/qfontmetrics.h +qt2/include/qframe.h +qt2/include/qgarray.h +qt2/include/qgcache.h +qt2/include/qgdict.h +qt2/include/qgeneric.h +qt2/include/qgif.h +qt2/include/qgl.h +qt2/include/qglist.h +qt2/include/qglobal.h +qt2/include/qgmanagr.h +qt2/include/qgrid.h +qt2/include/qgroupbox.h +qt2/include/qgrpbox.h +qt2/include/qgvector.h +qt2/include/qhbox.h +qt2/include/qhbuttongroup.h +qt2/include/qheader.h +qt2/include/qhgroupbox.h +qt2/include/qiconset.h +qt2/include/qimage.h +qt2/include/qimageio.h +qt2/include/qintcach.h +qt2/include/qintcache.h +qt2/include/qintdict.h +qt2/include/qiodev.h +qt2/include/qiodevice.h +qt2/include/qjiscodec.h +qt2/include/qjpegio.h +qt2/include/qjpunicode.h +qt2/include/qkeycode.h +qt2/include/qkoi8codec.h +qt2/include/qlabel.h +qt2/include/qlayout.h +qt2/include/qlayoutengine.h +qt2/include/qlcdnum.h +qt2/include/qlcdnumber.h +qt2/include/qlined.h +qt2/include/qlineedit.h +qt2/include/qlist.h +qt2/include/qlistbox.h +qt2/include/qlistview.h +qt2/include/qmainwindow.h +qt2/include/qmap.h +qt2/include/qmenubar.h +qt2/include/qmenudata.h +qt2/include/qmenudta.h +qt2/include/qmessagebox.h +qt2/include/qmetaobj.h +qt2/include/qmetaobject.h +qt2/include/qmime.h +qt2/include/qmlined.h +qt2/include/qmotifstyle.h +qt2/include/qmovie.h +qt2/include/qmsgbox.h +qt2/include/qmultilinedit.h +qt2/include/qmultilineedit.h +qt2/include/qnamespace.h +qt2/include/qnp.h +qt2/include/qobjcoll.h +qt2/include/qobjdefs.h +qt2/include/qobject.h +qt2/include/qobjectdefs.h +qt2/include/qobjectdict.h +qt2/include/qobjectlist.h +qt2/include/qpaintd.h +qt2/include/qpaintdc.h +qt2/include/qpaintdevice.h +qt2/include/qpaintdevicedefs.h +qt2/include/qpaintdevicemetrics.h +qt2/include/qpainter.h +qt2/include/qpalette.h +qt2/include/qpdevmet.h +qt2/include/qpen.h +qt2/include/qpicture.h +qt2/include/qpixmap.h +qt2/include/qpixmapcache.h +qt2/include/qplatinumstyle.h +qt2/include/qpmcache.h +qt2/include/qpngio.h +qt2/include/qpntarry.h +qt2/include/qpoint.h +qt2/include/qpointarray.h +qt2/include/qpopmenu.h +qt2/include/qpopupmenu.h +qt2/include/qprintdialog.h +qt2/include/qprinter.h +qt2/include/qprndlg.h +qt2/include/qprogbar.h +qt2/include/qprogdlg.h +qt2/include/qprogressbar.h +qt2/include/qprogressdialog.h +qt2/include/qpsprinter.h +qt2/include/qpsprn.h +qt2/include/qptrdict.h +qt2/include/qpushbt.h +qt2/include/qpushbutton.h +qt2/include/qqueue.h +qt2/include/qradiobt.h +qt2/include/qradiobutton.h +qt2/include/qrangecontrol.h +qt2/include/qrangect.h +qt2/include/qrect.h +qt2/include/qregexp.h +qt2/include/qregion.h +qt2/include/qrtlcodec.h +qt2/include/qscrbar.h +qt2/include/qscrollbar.h +qt2/include/qscrollview.h +qt2/include/qsemimodal.h +qt2/include/qserversocket.h +qt2/include/qsession.h +qt2/include/qsessionmanager.h +qt2/include/qshared.h +qt2/include/qsignal.h +qt2/include/qsignalmapper.h +qt2/include/qsignalslotimp.h +qt2/include/qsimplerichtext.h +qt2/include/qsize.h +qt2/include/qsizegrip.h +qt2/include/qsizepolicy.h +qt2/include/qsjiscodec.h +qt2/include/qslider.h +qt2/include/qsmartptr.h +qt2/include/qsocket.h +qt2/include/qsocketdevice.h +qt2/include/qsocketnotifier.h +qt2/include/qsocknot.h +qt2/include/qsortedlist.h +qt2/include/qspinbox.h +qt2/include/qsplitter.h +qt2/include/qstack.h +qt2/include/qstatusbar.h +qt2/include/qstring.h +qt2/include/qstringlist.h +qt2/include/qstrlist.h +qt2/include/qstrvec.h +qt2/include/qstyle.h +qt2/include/qstylesheet.h +qt2/include/qtabbar.h +qt2/include/qtabdialog.h +qt2/include/qtabdlg.h +qt2/include/qtableview.h +qt2/include/qtablevw.h +qt2/include/qtabwidget.h +qt2/include/qtextbrowser.h +qt2/include/qtextcodec.h +qt2/include/qtextstream.h +qt2/include/qtextview.h +qt2/include/qtimer.h +qt2/include/qtl.h +qt2/include/qtoolbar.h +qt2/include/qtoolbutton.h +qt2/include/qtooltip.h +qt2/include/qtranslator.h +qt2/include/qtstream.h +qt2/include/qutfcodec.h +qt2/include/qvalidator.h +qt2/include/qvaluelist.h +qt2/include/qvbox.h +qt2/include/qvbuttongroup.h +qt2/include/qvector.h +qt2/include/qvgroupbox.h +qt2/include/qwellarray.h +qt2/include/qwhatsthis.h +qt2/include/qwidcoll.h +qt2/include/qwidget.h +qt2/include/qwidgetintdict.h +qt2/include/qwidgetlist.h +qt2/include/qwidgetstack.h +qt2/include/qwindefs.h +qt2/include/qwindow.h +qt2/include/qwindowdefs.h +qt2/include/qwindowsstyle.h +qt2/include/qwizard.h +qt2/include/qwmatrix.h +qt2/include/qxt.h +qt2/lib/libqt.a +qt2/lib/libqt.so.2.0 +@exec ln -fs %D/qt2/lib/libqt.so.2.0 %D/lib/libqt.so.2.0 +@unexec rm -f %D/lib/libqt.so.2.0 +qt2/man/man1/moc.1 +qt2/man/man3/QAccel.3 +qt2/man/man3/QApplication.3 +qt2/man/man3/QArray.3 +qt2/man/man3/QAsciiCache.3 +qt2/man/man3/QAsciiCacheIterator.3 +qt2/man/man3/QAsciiDict.3 +qt2/man/man3/QAsciiDictIterator.3 +qt2/man/man3/QAsyncIO.3 +qt2/man/man3/QBitArray.3 +qt2/man/man3/QBitVal.3 +qt2/man/man3/QBitmap.3 +qt2/man/man3/QBoxLayout.3 +qt2/man/man3/QBrush.3 +qt2/man/man3/QBuffer.3 +qt2/man/man3/QButton.3 +qt2/man/man3/QButtonGroup.3 +qt2/man/man3/QCDEStyle.3 +qt2/man/man3/QCString.3 +qt2/man/man3/QCache.3 +qt2/man/man3/QCacheIterator.3 +qt2/man/man3/QChar.3 +qt2/man/man3/QCheckBox.3 +qt2/man/man3/QCheckListItem.3 +qt2/man/man3/QChildEvent.3 +qt2/man/man3/QClipboard.3 +qt2/man/man3/QCloseEvent.3 +qt2/man/man3/QCollection.3 +qt2/man/man3/QColor.3 +qt2/man/man3/QColorDialog.3 +qt2/man/man3/QColorGroup.3 +qt2/man/man3/QComboBox.3 +qt2/man/man3/QCommonStyle.3 +qt2/man/man3/QConnection.3 +qt2/man/man3/QConstString.3 +qt2/man/man3/QCursor.3 +qt2/man/man3/QCustomEvent.3 +qt2/man/man3/QDataPump.3 +qt2/man/man3/QDataSink.3 +qt2/man/man3/QDataSource.3 +qt2/man/man3/QDataStream.3 +qt2/man/man3/QDate.3 +qt2/man/man3/QDateTime.3 +qt2/man/man3/QDialog.3 +qt2/man/man3/QDict.3 +qt2/man/man3/QDictIterator.3 +qt2/man/man3/QDir.3 +qt2/man/man3/QDoubleValidator.3 +qt2/man/man3/QDragEnterEvent.3 +qt2/man/man3/QDragLeaveEvent.3 +qt2/man/man3/QDragMoveEvent.3 +qt2/man/man3/QDragObject.3 +qt2/man/man3/QDropEvent.3 +qt2/man/man3/QDropSite.3 +qt2/man/man3/QEvent.3 +qt2/man/man3/QFile.3 +qt2/man/man3/QFileDialog.3 +qt2/man/man3/QFileIconProvider.3 +qt2/man/man3/QFileInfo.3 +qt2/man/man3/QFocusData.3 +qt2/man/man3/QFocusEvent.3 +qt2/man/man3/QFont.3 +qt2/man/man3/QFontDialog.3 +qt2/man/man3/QFontInfo.3 +qt2/man/man3/QFontMetrics.3 +qt2/man/man3/QFrame.3 +qt2/man/man3/QGArray.3 +qt2/man/man3/QGCache.3 +qt2/man/man3/QGCacheIterator.3 +qt2/man/man3/QGDict.3 +qt2/man/man3/QGDictIterator.3 +qt2/man/man3/QGL.3 +qt2/man/man3/QGLContext.3 +qt2/man/man3/QGLFormat.3 +qt2/man/man3/QGLWidget.3 +qt2/man/man3/QGLayoutIterator.3 +qt2/man/man3/QGList.3 +qt2/man/man3/QGListIterator.3 +qt2/man/man3/QGrid.3 +qt2/man/man3/QGridLayout.3 +qt2/man/man3/QGroupBox.3 +qt2/man/man3/QHBox.3 +qt2/man/man3/QHBoxLayout.3 +qt2/man/man3/QHButtonGroup.3 +qt2/man/man3/QHGroupBox.3 +qt2/man/man3/QHeader.3 +qt2/man/man3/QHideEvent.3 +qt2/man/man3/QIODevice.3 +qt2/man/man3/QIODeviceSource.3 +qt2/man/man3/QIconSet.3 +qt2/man/man3/QImage.3 +qt2/man/man3/QImageConsumer.3 +qt2/man/man3/QImageDecoder.3 +qt2/man/man3/QImageDrag.3 +qt2/man/man3/QImageFormat.3 +qt2/man/man3/QImageFormatType.3 +qt2/man/man3/QImageIO.3 +qt2/man/man3/QIntCache.3 +qt2/man/man3/QIntCacheIterator.3 +qt2/man/man3/QIntDict.3 +qt2/man/man3/QIntDictIterator.3 +qt2/man/man3/QIntValidator.3 +qt2/man/man3/QKeyEvent.3 +qt2/man/man3/QLCDNumber.3 +qt2/man/man3/QLNode.3 +qt2/man/man3/QLabel.3 +qt2/man/man3/QLayout.3 +qt2/man/man3/QLayoutItem.3 +qt2/man/man3/QLayoutIterator.3 +qt2/man/man3/QLineEdit.3 +qt2/man/man3/QList.3 +qt2/man/man3/QListBox.3 +qt2/man/man3/QListBoxItem.3 +qt2/man/man3/QListBoxPixmap.3 +qt2/man/man3/QListBoxText.3 +qt2/man/man3/QListIterator.3 +qt2/man/man3/QListView.3 +qt2/man/man3/QListViewItem.3 +qt2/man/man3/QListViewItemIterator.3 +qt2/man/man3/QMainWindow.3 +qt2/man/man3/QMap.3 +qt2/man/man3/QMapConstIterator.3 +qt2/man/man3/QMapIterator.3 +qt2/man/man3/QMenuBar.3 +qt2/man/man3/QMenuData.3 +qt2/man/man3/QMessageBox.3 +qt2/man/man3/QMimeSource.3 +qt2/man/man3/QMimeSourceFactory.3 +qt2/man/man3/QMotifStyle.3 +qt2/man/man3/QMouseEvent.3 +qt2/man/man3/QMoveEvent.3 +qt2/man/man3/QMovie.3 +qt2/man/man3/QMultiLineEdit.3 +qt2/man/man3/QNPInstance.3 +qt2/man/man3/QNPStream.3 +qt2/man/man3/QNPWidget.3 +qt2/man/man3/QNPlugin.3 +qt2/man/man3/QObject.3 +qt2/man/man3/QPNGImagePacker.3 +qt2/man/man3/QPaintDevice.3 +qt2/man/man3/QPaintDeviceMetrics.3 +qt2/man/man3/QPaintEvent.3 +qt2/man/man3/QPainter.3 +qt2/man/man3/QPalette.3 +qt2/man/man3/QPen.3 +qt2/man/man3/QPicture.3 +qt2/man/man3/QPixmap.3 +qt2/man/man3/QPixmapCache.3 +qt2/man/man3/QPlatinumStyle.3 +qt2/man/man3/QPoint.3 +qt2/man/man3/QPointArray.3 +qt2/man/man3/QPopupMenu.3 +qt2/man/man3/QPrinter.3 +qt2/man/man3/QProgressBar.3 +qt2/man/man3/QProgressDialog.3 +qt2/man/man3/QPtrDict.3 +qt2/man/man3/QPtrDictIterator.3 +qt2/man/man3/QPushButton.3 +qt2/man/man3/QQueue.3 +qt2/man/man3/QRadioButton.3 +qt2/man/man3/QRangeControl.3 +qt2/man/man3/QRect.3 +qt2/man/man3/QRegExp.3 +qt2/man/man3/QRegion.3 +qt2/man/man3/QResizeEvent.3 +qt2/man/man3/QScrollBar.3 +qt2/man/man3/QScrollView.3 +qt2/man/man3/QSemiModal.3 +qt2/man/man3/QServerSocket.3 +qt2/man/man3/QSessionManager.3 +qt2/man/man3/QShared.3 +qt2/man/man3/QShowEvent.3 +qt2/man/man3/QSignal.3 +qt2/man/man3/QSignalMapper.3 +qt2/man/man3/QSimpleRichText.3 +qt2/man/man3/QSize.3 +qt2/man/man3/QSizeGrip.3 +qt2/man/man3/QSizePolicy.3 +qt2/man/man3/QSlider.3 +qt2/man/man3/QSocket.3 +qt2/man/man3/QSocketAddress.3 +qt2/man/man3/QSocketNotifier.3 +qt2/man/man3/QSortedList.3 +qt2/man/man3/QSpacerItem.3 +qt2/man/man3/QSpinBox.3 +qt2/man/man3/QSplitter.3 +qt2/man/man3/QStack.3 +qt2/man/man3/QStatusBar.3 +qt2/man/man3/QStoredDrag.3 +qt2/man/man3/QStrIList.3 +qt2/man/man3/QStrList.3 +qt2/man/man3/QString.3 +qt2/man/man3/QStringList.3 +qt2/man/man3/QStyle.3 +qt2/man/man3/QStyleSheet.3 +qt2/man/man3/QStyleSheetItem.3 +qt2/man/man3/QTab.3 +qt2/man/man3/QTabBar.3 +qt2/man/man3/QTabDialog.3 +qt2/man/man3/QTabWidget.3 +qt2/man/man3/QTableView.3 +qt2/man/man3/QTextBrowser.3 +qt2/man/man3/QTextCodec.3 +qt2/man/man3/QTextDecoder.3 +qt2/man/man3/QTextDrag.3 +qt2/man/man3/QTextEncoder.3 +qt2/man/man3/QTextIStream.3 +qt2/man/man3/QTextOStream.3 +qt2/man/man3/QTextStream.3 +qt2/man/man3/QTextView.3 +qt2/man/man3/QTime.3 +qt2/man/man3/QTimer.3 +qt2/man/man3/QTimerEvent.3 +qt2/man/man3/QToolBar.3 +qt2/man/man3/QToolButton.3 +qt2/man/man3/QToolTip.3 +qt2/man/man3/QToolTipGroup.3 +qt2/man/man3/QTranslator.3 +qt2/man/man3/QUriDrag.3 +qt2/man/man3/QVBox.3 +qt2/man/man3/QVBoxLayout.3 +qt2/man/man3/QVButtonGroup.3 +qt2/man/man3/QVGroupBox.3 +qt2/man/man3/QValidator.3 +qt2/man/man3/QValueList.3 +qt2/man/man3/QValueListConstIterator.3 +qt2/man/man3/QValueListIterator.3 +qt2/man/man3/QWMatrix.3 +qt2/man/man3/QWhatsThis.3 +qt2/man/man3/QWheelEvent.3 +qt2/man/man3/QWidget.3 +qt2/man/man3/QWidgetItem.3 +qt2/man/man3/QWidgetStack.3 +qt2/man/man3/QWindowsStyle.3 +qt2/man/man3/QWizard.3 +qt2/man/man3/QXtApplication.3 +qt2/man/man3/QXtWidget.3 +qt2/man/man3/Qt.3 +qt2/man/man3/qaccel.3 +qt2/man/man3/qapplication.3 +qt2/man/man3/qarray.3 +qt2/man/man3/qasciicache.3 +qt2/man/man3/qasciicacheiterator.3 +qt2/man/man3/qasciidict.3 +qt2/man/man3/qasciidictiterator.3 +qt2/man/man3/qasyncio.3 +qt2/man/man3/qbitarray.3 +qt2/man/man3/qbitmap.3 +qt2/man/man3/qbitval.3 +qt2/man/man3/qboxlayout.3 +qt2/man/man3/qbrush.3 +qt2/man/man3/qbuffer.3 +qt2/man/man3/qbutton.3 +qt2/man/man3/qbuttongroup.3 +qt2/man/man3/qcache.3 +qt2/man/man3/qcacheiterator.3 +qt2/man/man3/qcdestyle.3 +qt2/man/man3/qchar.3 +qt2/man/man3/qcheckbox.3 +qt2/man/man3/qchecklistitem.3 +qt2/man/man3/qchildevent.3 +qt2/man/man3/qclipboard.3 +qt2/man/man3/qcloseevent.3 +qt2/man/man3/qcollection.3 +qt2/man/man3/qcolor.3 +qt2/man/man3/qcolordialog.3 +qt2/man/man3/qcolorgroup.3 +qt2/man/man3/qcombobox.3 +qt2/man/man3/qcommonstyle.3 +qt2/man/man3/qconnection.3 +qt2/man/man3/qconststring.3 +qt2/man/man3/qcstring.3 +qt2/man/man3/qcursor.3 +qt2/man/man3/qcustomevent.3 +qt2/man/man3/qdatapump.3 +qt2/man/man3/qdatasink.3 +qt2/man/man3/qdatasource.3 +qt2/man/man3/qdatastream.3 +qt2/man/man3/qdate.3 +qt2/man/man3/qdatetime.3 +qt2/man/man3/qdialog.3 +qt2/man/man3/qdict.3 +qt2/man/man3/qdictiterator.3 +qt2/man/man3/qdir.3 +qt2/man/man3/qdoublevalidator.3 +qt2/man/man3/qdragenterevent.3 +qt2/man/man3/qdragleaveevent.3 +qt2/man/man3/qdragmoveevent.3 +qt2/man/man3/qdragobject.3 +qt2/man/man3/qdropevent.3 +qt2/man/man3/qdropsite.3 +qt2/man/man3/qevent.3 +qt2/man/man3/qfile.3 +qt2/man/man3/qfiledialog.3 +qt2/man/man3/qfileiconprovider.3 +qt2/man/man3/qfileinfo.3 +qt2/man/man3/qfocusdata.3 +qt2/man/man3/qfocusevent.3 +qt2/man/man3/qfont.3 +qt2/man/man3/qfontdialog.3 +qt2/man/man3/qfontinfo.3 +qt2/man/man3/qfontmetrics.3 +qt2/man/man3/qframe.3 +qt2/man/man3/qgarray.3 +qt2/man/man3/qgcache.3 +qt2/man/man3/qgcacheiterator.3 +qt2/man/man3/qgdict.3 +qt2/man/man3/qgdictiterator.3 +qt2/man/man3/qgl.3 +qt2/man/man3/qglayoutiterator.3 +qt2/man/man3/qglcontext.3 +qt2/man/man3/qglformat.3 +qt2/man/man3/qglist.3 +qt2/man/man3/qglistiterator.3 +qt2/man/man3/qglwidget.3 +qt2/man/man3/qgrid.3 +qt2/man/man3/qgridlayout.3 +qt2/man/man3/qgroupbox.3 +qt2/man/man3/qhbox.3 +qt2/man/man3/qhboxlayout.3 +qt2/man/man3/qhbuttongroup.3 +qt2/man/man3/qheader.3 +qt2/man/man3/qhgroupbox.3 +qt2/man/man3/qhideevent.3 +qt2/man/man3/qiconset.3 +qt2/man/man3/qimage.3 +qt2/man/man3/qimageconsumer.3 +qt2/man/man3/qimagedecoder.3 +qt2/man/man3/qimagedrag.3 +qt2/man/man3/qimageformat.3 +qt2/man/man3/qimageformattype.3 +qt2/man/man3/qimageio.3 +qt2/man/man3/qintcache.3 +qt2/man/man3/qintcacheiterator.3 +qt2/man/man3/qintdict.3 +qt2/man/man3/qintdictiterator.3 +qt2/man/man3/qintvalidator.3 +qt2/man/man3/qiodevice.3 +qt2/man/man3/qiodevicesource.3 +qt2/man/man3/qkeyevent.3 +qt2/man/man3/qlabel.3 +qt2/man/man3/qlayout.3 +qt2/man/man3/qlayoutitem.3 +qt2/man/man3/qlayoutiterator.3 +qt2/man/man3/qlcdnumber.3 +qt2/man/man3/qlineedit.3 +qt2/man/man3/qlist.3 +qt2/man/man3/qlistbox.3 +qt2/man/man3/qlistboxitem.3 +qt2/man/man3/qlistboxpixmap.3 +qt2/man/man3/qlistboxtext.3 +qt2/man/man3/qlistiterator.3 +qt2/man/man3/qlistview.3 +qt2/man/man3/qlistviewitem.3 +qt2/man/man3/qlistviewitemiterator.3 +qt2/man/man3/qlnode.3 +qt2/man/man3/qmainwindow.3 +qt2/man/man3/qmap.3 +qt2/man/man3/qmapconstiterator.3 +qt2/man/man3/qmapiterator.3 +qt2/man/man3/qmenubar.3 +qt2/man/man3/qmenudata.3 +qt2/man/man3/qmessagebox.3 +qt2/man/man3/qmimesource.3 +qt2/man/man3/qmimesourcefactory.3 +qt2/man/man3/qmotifstyle.3 +qt2/man/man3/qmouseevent.3 +qt2/man/man3/qmoveevent.3 +qt2/man/man3/qmovie.3 +qt2/man/man3/qmultilineedit.3 +qt2/man/man3/qnpinstance.3 +qt2/man/man3/qnplugin.3 +qt2/man/man3/qnpstream.3 +qt2/man/man3/qnpwidget.3 +qt2/man/man3/qobject.3 +qt2/man/man3/qpaintdevice.3 +qt2/man/man3/qpaintdevicemetrics.3 +qt2/man/man3/qpainter.3 +qt2/man/man3/qpaintevent.3 +qt2/man/man3/qpalette.3 +qt2/man/man3/qpen.3 +qt2/man/man3/qpicture.3 +qt2/man/man3/qpixmap.3 +qt2/man/man3/qpixmapcache.3 +qt2/man/man3/qplatinumstyle.3 +qt2/man/man3/qpngimagepacker.3 +qt2/man/man3/qpoint.3 +qt2/man/man3/qpointarray.3 +qt2/man/man3/qpopupmenu.3 +qt2/man/man3/qprinter.3 +qt2/man/man3/qprogressbar.3 +qt2/man/man3/qprogressdialog.3 +qt2/man/man3/qptrdict.3 +qt2/man/man3/qptrdictiterator.3 +qt2/man/man3/qpushbutton.3 +qt2/man/man3/qqueue.3 +qt2/man/man3/qradiobutton.3 +qt2/man/man3/qrangecontrol.3 +qt2/man/man3/qrect.3 +qt2/man/man3/qregexp.3 +qt2/man/man3/qregion.3 +qt2/man/man3/qresizeevent.3 +qt2/man/man3/qscrollbar.3 +qt2/man/man3/qscrollview.3 +qt2/man/man3/qsemimodal.3 +qt2/man/man3/qserversocket.3 +qt2/man/man3/qsessionmanager.3 +qt2/man/man3/qshared.3 +qt2/man/man3/qshowevent.3 +qt2/man/man3/qsignal.3 +qt2/man/man3/qsignalmapper.3 +qt2/man/man3/qsimplerichtext.3 +qt2/man/man3/qsize.3 +qt2/man/man3/qsizegrip.3 +qt2/man/man3/qsizepolicy.3 +qt2/man/man3/qslider.3 +qt2/man/man3/qsocket.3 +qt2/man/man3/qsocketaddress.3 +qt2/man/man3/qsocketnotifier.3 +qt2/man/man3/qsortedlist.3 +qt2/man/man3/qspaceritem.3 +qt2/man/man3/qspinbox.3 +qt2/man/man3/qsplitter.3 +qt2/man/man3/qstack.3 +qt2/man/man3/qstatusbar.3 +qt2/man/man3/qstoreddrag.3 +qt2/man/man3/qstrilist.3 +qt2/man/man3/qstring.3 +qt2/man/man3/qstringlist.3 +qt2/man/man3/qstrlist.3 +qt2/man/man3/qstyle.3 +qt2/man/man3/qstylesheet.3 +qt2/man/man3/qstylesheetitem.3 +qt2/man/man3/qt.3 +qt2/man/man3/qtab.3 +qt2/man/man3/qtabbar.3 +qt2/man/man3/qtabdialog.3 +qt2/man/man3/qtableview.3 +qt2/man/man3/qtabwidget.3 +qt2/man/man3/qtextbrowser.3 +qt2/man/man3/qtextcodec.3 +qt2/man/man3/qtextdecoder.3 +qt2/man/man3/qtextdrag.3 +qt2/man/man3/qtextencoder.3 +qt2/man/man3/qtextistream.3 +qt2/man/man3/qtextostream.3 +qt2/man/man3/qtextstream.3 +qt2/man/man3/qtextview.3 +qt2/man/man3/qtime.3 +qt2/man/man3/qtimer.3 +qt2/man/man3/qtimerevent.3 +qt2/man/man3/qtoolbar.3 +qt2/man/man3/qtoolbutton.3 +qt2/man/man3/qtooltip.3 +qt2/man/man3/qtooltipgroup.3 +qt2/man/man3/qtranslator.3 +qt2/man/man3/quridrag.3 +qt2/man/man3/qvalidator.3 +qt2/man/man3/qvaluelist.3 +qt2/man/man3/qvaluelistconstiterator.3 +qt2/man/man3/qvaluelistiterator.3 +qt2/man/man3/qvbox.3 +qt2/man/man3/qvboxlayout.3 +qt2/man/man3/qvbuttongroup.3 +qt2/man/man3/qvgroupbox.3 +qt2/man/man3/qwhatsthis.3 +qt2/man/man3/qwheelevent.3 +qt2/man/man3/qwidget.3 +qt2/man/man3/qwidgetitem.3 +qt2/man/man3/qwidgetstack.3 +qt2/man/man3/qwindowsstyle.3 +qt2/man/man3/qwizard.3 +qt2/man/man3/qwmatrix.3 +qt2/man/man3/qxtapplication.3 +qt2/man/man3/qxtwidget.3 +qt2/share/doc/qt/README +qt2/share/doc/qt/README.QT +qt2/share/doc/qt/abstractwidgets.html +qt2/share/doc/qt/accelerators.html +qt2/share/doc/qt/aclock-main-cpp.html +qt2/share/doc/qt/addressbook-main-cpp.html +qt2/share/doc/qt/annotated.html +qt2/share/doc/qt/application-main-cpp.html +qt2/share/doc/qt/application.html +qt2/share/doc/qt/bearings.png +qt2/share/doc/qt/biff-main-cpp.html +qt2/share/doc/qt/book.png +qt2/share/doc/qt/buttons_groups-main-cpp.html +qt2/share/doc/qt/checklists-main-cpp.html +qt2/share/doc/qt/classes.html +qt2/share/doc/qt/collection.html +qt2/share/doc/qt/coordsys.html +qt2/share/doc/qt/coordsys.png +qt2/share/doc/qt/credits.html +qt2/share/doc/qt/cursor-cursor-cpp.html +qt2/share/doc/qt/customlayout-main-cpp.html +qt2/share/doc/qt/customlayout.html +qt2/share/doc/qt/dclock-main-cpp.html +qt2/share/doc/qt/debug.html +qt2/share/doc/qt/design.html +qt2/share/doc/qt/desktop-desktop-cpp.html +qt2/share/doc/qt/dialogs.html +qt2/share/doc/qt/dirview-main-cpp.html +qt2/share/doc/qt/dnd.html +qt2/share/doc/qt/dochead.png +qt2/share/doc/qt/drawdemo-drawdemo-cpp.html +qt2/share/doc/qt/drawing.html +qt2/share/doc/qt/drawlines-connect-cpp.html +qt2/share/doc/qt/easteregg.html +qt2/share/doc/qt/easteregg2.html +qt2/share/doc/qt/examples.html +qt2/share/doc/qt/fontmatch.html +qt2/share/doc/qt/fonts.html +qt2/share/doc/qt/forever-forever-cpp.html +qt2/share/doc/qt/frames.png +qt2/share/doc/qt/functions.html +qt2/share/doc/qt/geomanagement.html +qt2/share/doc/qt/graph.g1n +qt2/share/doc/qt/grapher-grapher-cpp.html +qt2/share/doc/qt/gridlayout.png +qt2/share/doc/qt/guibooks.html +qt2/share/doc/qt/headers.html +qt2/share/doc/qt/hello-main-cpp.html +qt2/share/doc/qt/hierarchy.html +qt2/share/doc/qt/i18n-main-cpp.html +qt2/share/doc/qt/i18n.html +qt2/share/doc/qt/imageio.html +qt2/share/doc/qt/images.html +qt2/share/doc/qt/index.html +qt2/share/doc/qt/io.html +qt2/share/doc/qt/kernel.html +qt2/share/doc/qt/layout-layout-cpp.html +qt2/share/doc/qt/layout.html +qt2/share/doc/qt/letter.png +qt2/share/doc/qt/license.html +qt2/share/doc/qt/life-main-cpp.html +qt2/share/doc/qt/lineedits-main-cpp.html +qt2/share/doc/qt/listbox-main-cpp.html +qt2/share/doc/qt/listbox_combo-main-cpp.html +qt2/share/doc/qt/listview.png +qt2/share/doc/qt/listviews-main-cpp.html +qt2/share/doc/qt/mailinglists.html +qt2/share/doc/qt/mainlyMotif-editor-cpp.html +qt2/share/doc/qt/mainlyQt-editor-cpp.html +qt2/share/doc/qt/mainlyXt-editor-cpp.html +qt2/share/doc/qt/menu-menu-cpp.html +qt2/share/doc/qt/metaobjects.html +qt2/share/doc/qt/misc.html +qt2/share/doc/qt/moc.html +qt2/share/doc/qt/movies-main-cpp.html +qt2/share/doc/qt/nsplugin.html +qt2/share/doc/qt/opengl.html +qt2/share/doc/qt/picture-picture-cpp.html +qt2/share/doc/qt/pictures.html +qt2/share/doc/qt/pnglogo.png +qt2/share/doc/qt/popup-popup-cpp.html +qt2/share/doc/qt/porting.html +qt2/share/doc/qt/primes.html +qt2/share/doc/qt/printerdialog.png +qt2/share/doc/qt/progress-progress-cpp.html +qt2/share/doc/qt/progressbar-main-cpp.html +qt2/share/doc/qt/qabstractlayout-h.html +qt2/share/doc/qt/qaccel-h.html +qt2/share/doc/qt/qaccel-members.html +qt2/share/doc/qt/qaccel.html +qt2/share/doc/qt/qapplication-h.html +qt2/share/doc/qt/qapplication-members.html +qt2/share/doc/qt/qapplication.html +qt2/share/doc/qt/qarray-h.html +qt2/share/doc/qt/qarray-members.html +qt2/share/doc/qt/qarray.html +qt2/share/doc/qt/qasciicache-h.html +qt2/share/doc/qt/qasciicache-members.html +qt2/share/doc/qt/qasciicache.html +qt2/share/doc/qt/qasciicacheiterator-members.html +qt2/share/doc/qt/qasciicacheiterator.html +qt2/share/doc/qt/qasciidict-h.html +qt2/share/doc/qt/qasciidict-members.html +qt2/share/doc/qt/qasciidict.html +qt2/share/doc/qt/qasciidictiterator-members.html +qt2/share/doc/qt/qasciidictiterator.html +qt2/share/doc/qt/qasyncimageio-h.html +qt2/share/doc/qt/qasyncio-h.html +qt2/share/doc/qt/qasyncio-members.html +qt2/share/doc/qt/qasyncio.html +qt2/share/doc/qt/qbitarray-h.html +qt2/share/doc/qt/qbitarray-members.html +qt2/share/doc/qt/qbitarray.html +qt2/share/doc/qt/qbitmap-h.html +qt2/share/doc/qt/qbitmap-members.html +qt2/share/doc/qt/qbitmap.html +qt2/share/doc/qt/qbitval-members.html +qt2/share/doc/qt/qbitval.html +qt2/share/doc/qt/qboxlayout-members.html +qt2/share/doc/qt/qboxlayout.html +qt2/share/doc/qt/qbrowser-main-cpp.html +qt2/share/doc/qt/qbrush-h.html +qt2/share/doc/qt/qbrush-members.html +qt2/share/doc/qt/qbrush.html +qt2/share/doc/qt/qbttngrp-m.png +qt2/share/doc/qt/qbttngrp-w.png +qt2/share/doc/qt/qbuffer-h.html +qt2/share/doc/qt/qbuffer-members.html +qt2/share/doc/qt/qbuffer.html +qt2/share/doc/qt/qbutton-h.html +qt2/share/doc/qt/qbutton-members.html +qt2/share/doc/qt/qbutton.html +qt2/share/doc/qt/qbuttongroup-h.html +qt2/share/doc/qt/qbuttongroup-members.html +qt2/share/doc/qt/qbuttongroup.html +qt2/share/doc/qt/qcache-h.html +qt2/share/doc/qt/qcache-members.html +qt2/share/doc/qt/qcache.html +qt2/share/doc/qt/qcacheiterator-members.html +qt2/share/doc/qt/qcacheiterator.html +qt2/share/doc/qt/qcdestyle-h.html +qt2/share/doc/qt/qcdestyle-members.html +qt2/share/doc/qt/qcdestyle.html +qt2/share/doc/qt/qchar-members.html +qt2/share/doc/qt/qchar.html +qt2/share/doc/qt/qcheckbox-h.html +qt2/share/doc/qt/qcheckbox-m.png +qt2/share/doc/qt/qcheckbox-members.html +qt2/share/doc/qt/qcheckbox-w.png +qt2/share/doc/qt/qcheckbox.html +qt2/share/doc/qt/qchecklistitem-members.html +qt2/share/doc/qt/qchecklistitem.html +qt2/share/doc/qt/qchildevent-members.html +qt2/share/doc/qt/qchildevent.html +qt2/share/doc/qt/qchkbox-m.png +qt2/share/doc/qt/qchkbox-w.png +qt2/share/doc/qt/qclipboard-h.html +qt2/share/doc/qt/qclipboard-members.html +qt2/share/doc/qt/qclipboard.html +qt2/share/doc/qt/qcloseevent-members.html +qt2/share/doc/qt/qcloseevent.html +qt2/share/doc/qt/qcollection-h.html +qt2/share/doc/qt/qcollection-members.html +qt2/share/doc/qt/qcollection.html +qt2/share/doc/qt/qcolor-h.html +qt2/share/doc/qt/qcolor-members.html +qt2/share/doc/qt/qcolor.html +qt2/share/doc/qt/qcolordialog-h.html +qt2/share/doc/qt/qcolordialog-members.html +qt2/share/doc/qt/qcolordialog.html +qt2/share/doc/qt/qcolorgroup-members.html +qt2/share/doc/qt/qcolorgroup.html +qt2/share/doc/qt/qcombo1-m.png +qt2/share/doc/qt/qcombo1-w.png +qt2/share/doc/qt/qcombo2-m.png +qt2/share/doc/qt/qcombo2-w.png +qt2/share/doc/qt/qcombo3-m.png +qt2/share/doc/qt/qcombo3-w.png +qt2/share/doc/qt/qcombobox-h.html +qt2/share/doc/qt/qcombobox-members.html +qt2/share/doc/qt/qcombobox.html +qt2/share/doc/qt/qcommonstyle-h.html +qt2/share/doc/qt/qcommonstyle-members.html +qt2/share/doc/qt/qcommonstyle.html +qt2/share/doc/qt/qconnection-h.html +qt2/share/doc/qt/qconnection-members.html +qt2/share/doc/qt/qconnection.html +qt2/share/doc/qt/qconststring-members.html +qt2/share/doc/qt/qconststring.html +qt2/share/doc/qt/qcstring-h.html +qt2/share/doc/qt/qcstring-members.html +qt2/share/doc/qt/qcstring.html +qt2/share/doc/qt/qcursor-h.html +qt2/share/doc/qt/qcursor-members.html +qt2/share/doc/qt/qcursor.html +qt2/share/doc/qt/qcustomevent-members.html +qt2/share/doc/qt/qcustomevent.html +qt2/share/doc/qt/qdatapump-members.html +qt2/share/doc/qt/qdatapump.html +qt2/share/doc/qt/qdatasink-members.html +qt2/share/doc/qt/qdatasink.html +qt2/share/doc/qt/qdatasource-members.html +qt2/share/doc/qt/qdatasource.html +qt2/share/doc/qt/qdatastream-h.html +qt2/share/doc/qt/qdatastream-members.html +qt2/share/doc/qt/qdatastream.html +qt2/share/doc/qt/qdate-members.html +qt2/share/doc/qt/qdate.html +qt2/share/doc/qt/qdatetime-h.html +qt2/share/doc/qt/qdatetime-members.html +qt2/share/doc/qt/qdatetime.html +qt2/share/doc/qt/qdialog-h.html +qt2/share/doc/qt/qdialog-members.html +qt2/share/doc/qt/qdialog.html +qt2/share/doc/qt/qdict-h.html +qt2/share/doc/qt/qdict-members.html +qt2/share/doc/qt/qdict.html +qt2/share/doc/qt/qdictiterator-members.html +qt2/share/doc/qt/qdictiterator.html +qt2/share/doc/qt/qdir-h.html +qt2/share/doc/qt/qdir-members.html +qt2/share/doc/qt/qdir-qdir-cpp.html +qt2/share/doc/qt/qdir.html +qt2/share/doc/qt/qdoublevalidator-members.html +qt2/share/doc/qt/qdoublevalidator.html +qt2/share/doc/qt/qdragenterevent-members.html +qt2/share/doc/qt/qdragenterevent.html +qt2/share/doc/qt/qdragleaveevent-members.html +qt2/share/doc/qt/qdragleaveevent.html +qt2/share/doc/qt/qdragmoveevent-members.html +qt2/share/doc/qt/qdragmoveevent.html +qt2/share/doc/qt/qdragobject-h.html +qt2/share/doc/qt/qdragobject-members.html +qt2/share/doc/qt/qdragobject.html +qt2/share/doc/qt/qdrawutil-h.html +qt2/share/doc/qt/qdropevent-members.html +qt2/share/doc/qt/qdropevent.html +qt2/share/doc/qt/qdropsite-h.html +qt2/share/doc/qt/qdropsite-members.html +qt2/share/doc/qt/qdropsite.html +qt2/share/doc/qt/qevent-h.html +qt2/share/doc/qt/qevent-members.html +qt2/share/doc/qt/qevent.html +qt2/share/doc/qt/qfd-qfd-cpp.html +qt2/share/doc/qt/qfile-h.html +qt2/share/doc/qt/qfile-members.html +qt2/share/doc/qt/qfile.html +qt2/share/doc/qt/qfiledialog-h.html +qt2/share/doc/qt/qfiledialog-members.html +qt2/share/doc/qt/qfiledialog.html +qt2/share/doc/qt/qfiledlg-m.png +qt2/share/doc/qt/qfiledlg-w.png +qt2/share/doc/qt/qfileiconprovider-members.html +qt2/share/doc/qt/qfileiconprovider.html +qt2/share/doc/qt/qfileiconview-main-cpp.html +qt2/share/doc/qt/qfileinfo-h.html +qt2/share/doc/qt/qfileinfo-members.html +qt2/share/doc/qt/qfileinfo.html +qt2/share/doc/qt/qfocusdata-h.html +qt2/share/doc/qt/qfocusdata-members.html +qt2/share/doc/qt/qfocusdata.html +qt2/share/doc/qt/qfocusevent-members.html +qt2/share/doc/qt/qfocusevent.html +qt2/share/doc/qt/qfont-h.html +qt2/share/doc/qt/qfont-members.html +qt2/share/doc/qt/qfont.html +qt2/share/doc/qt/qfontdialog-h.html +qt2/share/doc/qt/qfontdialog-members.html +qt2/share/doc/qt/qfontdialog.html +qt2/share/doc/qt/qfontinfo-h.html +qt2/share/doc/qt/qfontinfo-members.html +qt2/share/doc/qt/qfontinfo.html +qt2/share/doc/qt/qfontmetrics-h.html +qt2/share/doc/qt/qfontmetrics-members.html +qt2/share/doc/qt/qfontmetrics.html +qt2/share/doc/qt/qframe-h.html +qt2/share/doc/qt/qframe-members.html +qt2/share/doc/qt/qframe.html +qt2/share/doc/qt/qgarray-h.html +qt2/share/doc/qt/qgarray-members.html +qt2/share/doc/qt/qgarray.html +qt2/share/doc/qt/qgcache-h.html +qt2/share/doc/qt/qgcache-members.html +qt2/share/doc/qt/qgcache.html +qt2/share/doc/qt/qgcacheiterator-members.html +qt2/share/doc/qt/qgcacheiterator.html +qt2/share/doc/qt/qgdict-h.html +qt2/share/doc/qt/qgdict-members.html +qt2/share/doc/qt/qgdict.html +qt2/share/doc/qt/qgdictiterator-members.html +qt2/share/doc/qt/qgdictiterator.html +qt2/share/doc/qt/qgl-h.html +qt2/share/doc/qt/qgl-members.html +qt2/share/doc/qt/qgl.html +qt2/share/doc/qt/qglayoutiterator-members.html +qt2/share/doc/qt/qglayoutiterator.html +qt2/share/doc/qt/qglcontext-members.html +qt2/share/doc/qt/qglcontext.html +qt2/share/doc/qt/qglformat-members.html +qt2/share/doc/qt/qglformat.html +qt2/share/doc/qt/qglist-h.html +qt2/share/doc/qt/qglist-members.html +qt2/share/doc/qt/qglist.html +qt2/share/doc/qt/qglistiterator-members.html +qt2/share/doc/qt/qglistiterator.html +qt2/share/doc/qt/qglobal-h.html +qt2/share/doc/qt/qglwidget-members.html +qt2/share/doc/qt/qglwidget.html +qt2/share/doc/qt/qgrid-h.html +qt2/share/doc/qt/qgrid-m.png +qt2/share/doc/qt/qgrid-members.html +qt2/share/doc/qt/qgrid-w.png +qt2/share/doc/qt/qgrid.html +qt2/share/doc/qt/qgrid.png +qt2/share/doc/qt/qgridlayout-members.html +qt2/share/doc/qt/qgridlayout.html +qt2/share/doc/qt/qgroupbox-h.html +qt2/share/doc/qt/qgroupbox-members.html +qt2/share/doc/qt/qgroupbox.html +qt2/share/doc/qt/qgrpbox-m.png +qt2/share/doc/qt/qgrpbox-w.png +qt2/share/doc/qt/qhbox-h.html +qt2/share/doc/qt/qhbox-m.png +qt2/share/doc/qt/qhbox-members.html +qt2/share/doc/qt/qhbox-w.png +qt2/share/doc/qt/qhbox.html +qt2/share/doc/qt/qhbox.png +qt2/share/doc/qt/qhboxlayout-members.html +qt2/share/doc/qt/qhboxlayout.html +qt2/share/doc/qt/qhbuttongroup-h.html +qt2/share/doc/qt/qhbuttongroup-members.html +qt2/share/doc/qt/qhbuttongroup.html +qt2/share/doc/qt/qheader-h.html +qt2/share/doc/qt/qheader-m.png +qt2/share/doc/qt/qheader-members.html +qt2/share/doc/qt/qheader-w.png +qt2/share/doc/qt/qheader.html +qt2/share/doc/qt/qhgroupbox-h.html +qt2/share/doc/qt/qhgroupbox-members.html +qt2/share/doc/qt/qhgroupbox.html +qt2/share/doc/qt/qhideevent-members.html +qt2/share/doc/qt/qhideevent.html +qt2/share/doc/qt/qiconset-h.html +qt2/share/doc/qt/qiconset-members.html +qt2/share/doc/qt/qiconset.html +qt2/share/doc/qt/qiconview-main-cpp.html +qt2/share/doc/qt/qimage-h.html +qt2/share/doc/qt/qimage-members.html +qt2/share/doc/qt/qimage.html +qt2/share/doc/qt/qimageconsumer-members.html +qt2/share/doc/qt/qimageconsumer.html +qt2/share/doc/qt/qimagedecoder-members.html +qt2/share/doc/qt/qimagedecoder.html +qt2/share/doc/qt/qimagedrag-members.html +qt2/share/doc/qt/qimagedrag.html +qt2/share/doc/qt/qimageformat-members.html +qt2/share/doc/qt/qimageformat.html +qt2/share/doc/qt/qimageformattype-members.html +qt2/share/doc/qt/qimageformattype.html +qt2/share/doc/qt/qimageio-members.html +qt2/share/doc/qt/qimageio.html +qt2/share/doc/qt/qintcache-h.html +qt2/share/doc/qt/qintcache-members.html +qt2/share/doc/qt/qintcache.html +qt2/share/doc/qt/qintcacheiterator-members.html +qt2/share/doc/qt/qintcacheiterator.html +qt2/share/doc/qt/qintdict-h.html +qt2/share/doc/qt/qintdict-members.html +qt2/share/doc/qt/qintdict.html +qt2/share/doc/qt/qintdictiterator-members.html +qt2/share/doc/qt/qintdictiterator.html +qt2/share/doc/qt/qintvalidator-members.html +qt2/share/doc/qt/qintvalidator.html +qt2/share/doc/qt/qiodevice-h.html +qt2/share/doc/qt/qiodevice-members.html +qt2/share/doc/qt/qiodevice.html +qt2/share/doc/qt/qiodevicesource-members.html +qt2/share/doc/qt/qiodevicesource.html +qt2/share/doc/qt/qkeyevent-members.html +qt2/share/doc/qt/qkeyevent.html +qt2/share/doc/qt/qlabel-h.html +qt2/share/doc/qt/qlabel-m.png +qt2/share/doc/qt/qlabel-members.html +qt2/share/doc/qt/qlabel-w.png +qt2/share/doc/qt/qlabel.html +qt2/share/doc/qt/qlayout-h.html +qt2/share/doc/qt/qlayout-members.html +qt2/share/doc/qt/qlayout.html +qt2/share/doc/qt/qlayoutitem-members.html +qt2/share/doc/qt/qlayoutitem.html +qt2/share/doc/qt/qlayoutiterator-members.html +qt2/share/doc/qt/qlayoutiterator.html +qt2/share/doc/qt/qlcdnum-m.png +qt2/share/doc/qt/qlcdnum-w.png +qt2/share/doc/qt/qlcdnumber-h.html +qt2/share/doc/qt/qlcdnumber-members.html +qt2/share/doc/qt/qlcdnumber.html +qt2/share/doc/qt/qlined-m.png +qt2/share/doc/qt/qlined-w.png +qt2/share/doc/qt/qlineedit-h.html +qt2/share/doc/qt/qlineedit-members.html +qt2/share/doc/qt/qlineedit.html +qt2/share/doc/qt/qlist-h.html +qt2/share/doc/qt/qlist-members.html +qt2/share/doc/qt/qlist.html +qt2/share/doc/qt/qlistbox-h.html +qt2/share/doc/qt/qlistbox-m.png +qt2/share/doc/qt/qlistbox-members.html +qt2/share/doc/qt/qlistbox-w.png +qt2/share/doc/qt/qlistbox.html +qt2/share/doc/qt/qlistboxitem-members.html +qt2/share/doc/qt/qlistboxitem.html +qt2/share/doc/qt/qlistboxpixmap-members.html +qt2/share/doc/qt/qlistboxpixmap.html +qt2/share/doc/qt/qlistboxtext-members.html +qt2/share/doc/qt/qlistboxtext.html +qt2/share/doc/qt/qlistiterator-members.html +qt2/share/doc/qt/qlistiterator.html +qt2/share/doc/qt/qlistview-h.html +qt2/share/doc/qt/qlistview-members.html +qt2/share/doc/qt/qlistview.html +qt2/share/doc/qt/qlistviewitem-members.html +qt2/share/doc/qt/qlistviewitem.html +qt2/share/doc/qt/qlistviewitemiterator-members.html +qt2/share/doc/qt/qlistviewitemiterator.html +qt2/share/doc/qt/qlnode-members.html +qt2/share/doc/qt/qlnode.html +qt2/share/doc/qt/qmag-qmag-cpp.html +qt2/share/doc/qt/qmainwindow-h.html +qt2/share/doc/qt/qmainwindow-m.png +qt2/share/doc/qt/qmainwindow-members.html +qt2/share/doc/qt/qmainwindow-w.png +qt2/share/doc/qt/qmainwindow.html +qt2/share/doc/qt/qmap-h.html +qt2/share/doc/qt/qmap-members.html +qt2/share/doc/qt/qmap.html +qt2/share/doc/qt/qmapconstiterator-members.html +qt2/share/doc/qt/qmapconstiterator.html +qt2/share/doc/qt/qmapiterator-members.html +qt2/share/doc/qt/qmapiterator.html +qt2/share/doc/qt/qmenubar-h.html +qt2/share/doc/qt/qmenubar-m.png +qt2/share/doc/qt/qmenubar-members.html +qt2/share/doc/qt/qmenubar-w.png +qt2/share/doc/qt/qmenubar.html +qt2/share/doc/qt/qmenudata-h.html +qt2/share/doc/qt/qmenudata-members.html +qt2/share/doc/qt/qmenudata.html +qt2/share/doc/qt/qmessagebox-h.html +qt2/share/doc/qt/qmessagebox-members.html +qt2/share/doc/qt/qmessagebox.html +qt2/share/doc/qt/qmime-h.html +qt2/share/doc/qt/qmimesource-members.html +qt2/share/doc/qt/qmimesource.html +qt2/share/doc/qt/qmimesourcefactory-members.html +qt2/share/doc/qt/qmimesourcefactory.html +qt2/share/doc/qt/qmlined-m.png +qt2/share/doc/qt/qmlined-w.png +qt2/share/doc/qt/qmotifstyle-h.html +qt2/share/doc/qt/qmotifstyle-members.html +qt2/share/doc/qt/qmotifstyle.html +qt2/share/doc/qt/qmouseevent-members.html +qt2/share/doc/qt/qmouseevent.html +qt2/share/doc/qt/qmoveevent-members.html +qt2/share/doc/qt/qmoveevent.html +qt2/share/doc/qt/qmovie-h.html +qt2/share/doc/qt/qmovie-members.html +qt2/share/doc/qt/qmovie.html +qt2/share/doc/qt/qmovie.png +qt2/share/doc/qt/qmsgbox-m.png +qt2/share/doc/qt/qmsgbox-w.png +qt2/share/doc/qt/qmultilineedit-h.html +qt2/share/doc/qt/qmultilineedit-members.html +qt2/share/doc/qt/qmultilineedit.html +qt2/share/doc/qt/qnamespace-h.html +qt2/share/doc/qt/qnetworkegg.html +qt2/share/doc/qt/qnp-h.html +qt2/share/doc/qt/qnpinstance-members.html +qt2/share/doc/qt/qnpinstance.html +qt2/share/doc/qt/qnplugin-members.html +qt2/share/doc/qt/qnplugin.html +qt2/share/doc/qt/qnpstream-members.html +qt2/share/doc/qt/qnpstream.html +qt2/share/doc/qt/qnpwidget-members.html +qt2/share/doc/qt/qnpwidget.html +qt2/share/doc/qt/qobject-h.html +qt2/share/doc/qt/qobject-members.html +qt2/share/doc/qt/qobject.html +qt2/share/doc/qt/qpaintdevice-h.html +qt2/share/doc/qt/qpaintdevice-members.html +qt2/share/doc/qt/qpaintdevice.html +qt2/share/doc/qt/qpaintdevicemetrics-h.html +qt2/share/doc/qt/qpaintdevicemetrics-members.html +qt2/share/doc/qt/qpaintdevicemetrics.html +qt2/share/doc/qt/qpainter-h.html +qt2/share/doc/qt/qpainter-members.html +qt2/share/doc/qt/qpainter.html +qt2/share/doc/qt/qpaintevent-members.html +qt2/share/doc/qt/qpaintevent.html +qt2/share/doc/qt/qpalette-h.html +qt2/share/doc/qt/qpalette-members.html +qt2/share/doc/qt/qpalette.html +qt2/share/doc/qt/qpen-h.html +qt2/share/doc/qt/qpen-members.html +qt2/share/doc/qt/qpen.html +qt2/share/doc/qt/qpicture-h.html +qt2/share/doc/qt/qpicture-members.html +qt2/share/doc/qt/qpicture.html +qt2/share/doc/qt/qpixmap-h.html +qt2/share/doc/qt/qpixmap-members.html +qt2/share/doc/qt/qpixmap.html +qt2/share/doc/qt/qpixmapcache-h.html +qt2/share/doc/qt/qpixmapcache-members.html +qt2/share/doc/qt/qpixmapcache.html +qt2/share/doc/qt/qplatinumstyle-h.html +qt2/share/doc/qt/qplatinumstyle-members.html +qt2/share/doc/qt/qplatinumstyle.html +qt2/share/doc/qt/qpngimagepacker-members.html +qt2/share/doc/qt/qpngimagepacker.html +qt2/share/doc/qt/qpngio-h.html +qt2/share/doc/qt/qpoint-h.html +qt2/share/doc/qt/qpoint-members.html +qt2/share/doc/qt/qpoint.html +qt2/share/doc/qt/qpointarray-h.html +qt2/share/doc/qt/qpointarray-members.html +qt2/share/doc/qt/qpointarray.html +qt2/share/doc/qt/qpopmenu-m.png +qt2/share/doc/qt/qpopmenu-w.png +qt2/share/doc/qt/qpopupmenu-h.html +qt2/share/doc/qt/qpopupmenu-members.html +qt2/share/doc/qt/qpopupmenu.html +qt2/share/doc/qt/qprinter-h.html +qt2/share/doc/qt/qprinter-members.html +qt2/share/doc/qt/qprinter.html +qt2/share/doc/qt/qprogbar-m.png +qt2/share/doc/qt/qprogbar-w.png +qt2/share/doc/qt/qprogdlg-m.png +qt2/share/doc/qt/qprogdlg-w.png +qt2/share/doc/qt/qprogressbar-h.html +qt2/share/doc/qt/qprogressbar-members.html +qt2/share/doc/qt/qprogressbar.html +qt2/share/doc/qt/qprogressdialog-h.html +qt2/share/doc/qt/qprogressdialog-members.html +qt2/share/doc/qt/qprogressdialog.html +qt2/share/doc/qt/qptrdict-h.html +qt2/share/doc/qt/qptrdict-members.html +qt2/share/doc/qt/qptrdict.html +qt2/share/doc/qt/qptrdictiterator-members.html +qt2/share/doc/qt/qptrdictiterator.html +qt2/share/doc/qt/qpushbt-m.png +qt2/share/doc/qt/qpushbt-w.png +qt2/share/doc/qt/qpushbutton-h.html +qt2/share/doc/qt/qpushbutton-members.html +qt2/share/doc/qt/qpushbutton.html +qt2/share/doc/qt/qqueue-h.html +qt2/share/doc/qt/qqueue-members.html +qt2/share/doc/qt/qqueue.html +qt2/share/doc/qt/qradiobt-m.png +qt2/share/doc/qt/qradiobt-w.png +qt2/share/doc/qt/qradiobutton-h.html +qt2/share/doc/qt/qradiobutton-members.html +qt2/share/doc/qt/qradiobutton.html +qt2/share/doc/qt/qrangecontrol-h.html +qt2/share/doc/qt/qrangecontrol-members.html +qt2/share/doc/qt/qrangecontrol.html +qt2/share/doc/qt/qrect-h.html +qt2/share/doc/qt/qrect-members.html +qt2/share/doc/qt/qrect.html +qt2/share/doc/qt/qregexp-h.html +qt2/share/doc/qt/qregexp-members.html +qt2/share/doc/qt/qregexp.html +qt2/share/doc/qt/qregion-h.html +qt2/share/doc/qt/qregion-members.html +qt2/share/doc/qt/qregion.html +qt2/share/doc/qt/qresizeevent-members.html +qt2/share/doc/qt/qresizeevent.html +qt2/share/doc/qt/qscrbar-m.png +qt2/share/doc/qt/qscrbar-w.png +qt2/share/doc/qt/qscrollbar-h.html +qt2/share/doc/qt/qscrollbar-members.html +qt2/share/doc/qt/qscrollbar.html +qt2/share/doc/qt/qscrollview-cl.png +qt2/share/doc/qt/qscrollview-h.html +qt2/share/doc/qt/qscrollview-m.png +qt2/share/doc/qt/qscrollview-members.html +qt2/share/doc/qt/qscrollview-vp.png +qt2/share/doc/qt/qscrollview-vp2.png +qt2/share/doc/qt/qscrollview-w.png +qt2/share/doc/qt/qscrollview.html +qt2/share/doc/qt/qsemimodal-h.html +qt2/share/doc/qt/qsemimodal-members.html +qt2/share/doc/qt/qsemimodal.html +qt2/share/doc/qt/qserversocket-h.html +qt2/share/doc/qt/qserversocket-members.html +qt2/share/doc/qt/qserversocket.html +qt2/share/doc/qt/qsessionmanager-h.html +qt2/share/doc/qt/qsessionmanager-members.html +qt2/share/doc/qt/qsessionmanager.html +qt2/share/doc/qt/qshared-h.html +qt2/share/doc/qt/qshared-members.html +qt2/share/doc/qt/qshared.html +qt2/share/doc/qt/qshowevent-members.html +qt2/share/doc/qt/qshowevent.html +qt2/share/doc/qt/qsignal-h.html +qt2/share/doc/qt/qsignal-members.html +qt2/share/doc/qt/qsignal.html +qt2/share/doc/qt/qsignalmapper-h.html +qt2/share/doc/qt/qsignalmapper-members.html +qt2/share/doc/qt/qsignalmapper.html +qt2/share/doc/qt/qsimplerichtext-h.html +qt2/share/doc/qt/qsimplerichtext-members.html +qt2/share/doc/qt/qsimplerichtext.html +qt2/share/doc/qt/qsize-h.html +qt2/share/doc/qt/qsize-members.html +qt2/share/doc/qt/qsize.html +qt2/share/doc/qt/qsizegrip-h.html +qt2/share/doc/qt/qsizegrip-members.html +qt2/share/doc/qt/qsizegrip.html +qt2/share/doc/qt/qsizepolicy-h.html +qt2/share/doc/qt/qsizepolicy-members.html +qt2/share/doc/qt/qsizepolicy.html +qt2/share/doc/qt/qslider-h.html +qt2/share/doc/qt/qslider-m.png +qt2/share/doc/qt/qslider-members.html +qt2/share/doc/qt/qslider-w.png +qt2/share/doc/qt/qslider.html +qt2/share/doc/qt/qsocket-h.html +qt2/share/doc/qt/qsocket-members.html +qt2/share/doc/qt/qsocket.html +qt2/share/doc/qt/qsocketaddress-members.html +qt2/share/doc/qt/qsocketaddress.html +qt2/share/doc/qt/qsocketdevice-h.html +qt2/share/doc/qt/qsocketnotifier-h.html +qt2/share/doc/qt/qsocketnotifier-members.html +qt2/share/doc/qt/qsocketnotifier.html +qt2/share/doc/qt/qsortedlist-h.html +qt2/share/doc/qt/qsortedlist-members.html +qt2/share/doc/qt/qsortedlist.html +qt2/share/doc/qt/qspaceritem-members.html +qt2/share/doc/qt/qspaceritem.html +qt2/share/doc/qt/qspinbox-h.html +qt2/share/doc/qt/qspinbox-m.png +qt2/share/doc/qt/qspinbox-members.html +qt2/share/doc/qt/qspinbox-w.png +qt2/share/doc/qt/qspinbox.html +qt2/share/doc/qt/qsplitter-h.html +qt2/share/doc/qt/qsplitter-m.png +qt2/share/doc/qt/qsplitter-members.html +qt2/share/doc/qt/qsplitter-w.png +qt2/share/doc/qt/qsplitter.html +qt2/share/doc/qt/qstack-h.html +qt2/share/doc/qt/qstack-members.html +qt2/share/doc/qt/qstack.html +qt2/share/doc/qt/qstatusbar-h.html +qt2/share/doc/qt/qstatusbar-m.png +qt2/share/doc/qt/qstatusbar-members.html +qt2/share/doc/qt/qstatusbar-w.png +qt2/share/doc/qt/qstatusbar.html +qt2/share/doc/qt/qstoreddrag-members.html +qt2/share/doc/qt/qstoreddrag.html +qt2/share/doc/qt/qstrilist-members.html +qt2/share/doc/qt/qstrilist.html +qt2/share/doc/qt/qstring-h.html +qt2/share/doc/qt/qstring-members.html +qt2/share/doc/qt/qstring.html +qt2/share/doc/qt/qstringlist-h.html +qt2/share/doc/qt/qstringlist-members.html +qt2/share/doc/qt/qstringlist.html +qt2/share/doc/qt/qstrlist-h.html +qt2/share/doc/qt/qstrlist-members.html +qt2/share/doc/qt/qstrlist.html +qt2/share/doc/qt/qstyle-h.html +qt2/share/doc/qt/qstyle-members.html +qt2/share/doc/qt/qstyle.html +qt2/share/doc/qt/qstylesheet-h.html +qt2/share/doc/qt/qstylesheet-members.html +qt2/share/doc/qt/qstylesheet.html +qt2/share/doc/qt/qstylesheetitem-members.html +qt2/share/doc/qt/qstylesheetitem.html +qt2/share/doc/qt/qt-members.html +qt2/share/doc/qt/qt.html +qt2/share/doc/qt/qtab-members.html +qt2/share/doc/qt/qtab.html +qt2/share/doc/qt/qtabbar-h.html +qt2/share/doc/qt/qtabbar-m.png +qt2/share/doc/qt/qtabbar-members.html +qt2/share/doc/qt/qtabbar-w.png +qt2/share/doc/qt/qtabbar.html +qt2/share/doc/qt/qtabdialog-h.html +qt2/share/doc/qt/qtabdialog-members.html +qt2/share/doc/qt/qtabdialog.html +qt2/share/doc/qt/qtabdlg-m.png +qt2/share/doc/qt/qtabdlg-w.png +qt2/share/doc/qt/qtableview-h.html +qt2/share/doc/qt/qtableview-members.html +qt2/share/doc/qt/qtableview.html +qt2/share/doc/qt/qtablevw-m.png +qt2/share/doc/qt/qtablevw-w.png +qt2/share/doc/qt/qtabwidget-h.html +qt2/share/doc/qt/qtabwidget-members.html +qt2/share/doc/qt/qtabwidget.html +qt2/share/doc/qt/qtextbrowser-h.html +qt2/share/doc/qt/qtextbrowser-members.html +qt2/share/doc/qt/qtextbrowser.html +qt2/share/doc/qt/qtextcodec-h.html +qt2/share/doc/qt/qtextcodec-members.html +qt2/share/doc/qt/qtextcodec.html +qt2/share/doc/qt/qtextdecoder-members.html +qt2/share/doc/qt/qtextdecoder.html +qt2/share/doc/qt/qtextdrag-members.html +qt2/share/doc/qt/qtextdrag.html +qt2/share/doc/qt/qtextencoder-members.html +qt2/share/doc/qt/qtextencoder.html +qt2/share/doc/qt/qtextistream-members.html +qt2/share/doc/qt/qtextistream.html +qt2/share/doc/qt/qtextostream-members.html +qt2/share/doc/qt/qtextostream.html +qt2/share/doc/qt/qtextstream-h.html +qt2/share/doc/qt/qtextstream-members.html +qt2/share/doc/qt/qtextstream.html +qt2/share/doc/qt/qtextview-h.html +qt2/share/doc/qt/qtextview-members.html +qt2/share/doc/qt/qtextview.html +qt2/share/doc/qt/qtimage-qtimage-cpp.html +qt2/share/doc/qt/qtime-members.html +qt2/share/doc/qt/qtime.html +qt2/share/doc/qt/qtimer-h.html +qt2/share/doc/qt/qtimer-members.html +qt2/share/doc/qt/qtimer.html +qt2/share/doc/qt/qtimerevent-members.html +qt2/share/doc/qt/qtimerevent.html +qt2/share/doc/qt/qtl.html +qt2/share/doc/qt/qtlogo.png +qt2/share/doc/qt/qtoolbar-h.html +qt2/share/doc/qt/qtoolbar-members.html +qt2/share/doc/qt/qtoolbar.html +qt2/share/doc/qt/qtoolbutton-h.html +qt2/share/doc/qt/qtoolbutton-members.html +qt2/share/doc/qt/qtoolbutton.html +qt2/share/doc/qt/qtooltip-h.html +qt2/share/doc/qt/qtooltip-members.html +qt2/share/doc/qt/qtooltip.html +qt2/share/doc/qt/qtooltipgroup-members.html +qt2/share/doc/qt/qtooltipgroup.html +qt2/share/doc/qt/qtranslator-h.html +qt2/share/doc/qt/qtranslator-members.html +qt2/share/doc/qt/qtranslator.html +qt2/share/doc/qt/quridrag-members.html +qt2/share/doc/qt/quridrag.html +qt2/share/doc/qt/qvalidator-h.html +qt2/share/doc/qt/qvalidator-members.html +qt2/share/doc/qt/qvalidator.html +qt2/share/doc/qt/qvaluelist-h.html +qt2/share/doc/qt/qvaluelist-members.html +qt2/share/doc/qt/qvaluelist.html +qt2/share/doc/qt/qvaluelistconstiterator-members.html +qt2/share/doc/qt/qvaluelistconstiterator.html +qt2/share/doc/qt/qvaluelistiterator-members.html +qt2/share/doc/qt/qvaluelistiterator.html +qt2/share/doc/qt/qvbox-h.html +qt2/share/doc/qt/qvbox-m.png +qt2/share/doc/qt/qvbox-members.html +qt2/share/doc/qt/qvbox-w.png +qt2/share/doc/qt/qvbox.html +qt2/share/doc/qt/qvbox.png +qt2/share/doc/qt/qvboxlayout-members.html +qt2/share/doc/qt/qvboxlayout.html +qt2/share/doc/qt/qvbuttongroup-h.html +qt2/share/doc/qt/qvbuttongroup-members.html +qt2/share/doc/qt/qvbuttongroup.html +qt2/share/doc/qt/qvgroupbox-h.html +qt2/share/doc/qt/qvgroupbox-members.html +qt2/share/doc/qt/qvgroupbox.html +qt2/share/doc/qt/qwerty-main-cpp.html +qt2/share/doc/qt/qwhatsthis-h.html +qt2/share/doc/qt/qwhatsthis-members.html +qt2/share/doc/qt/qwhatsthis.html +qt2/share/doc/qt/qwheelevent-members.html +qt2/share/doc/qt/qwheelevent.html +qt2/share/doc/qt/qwidget-h.html +qt2/share/doc/qt/qwidget-members.html +qt2/share/doc/qt/qwidget.html +qt2/share/doc/qt/qwidgetitem-members.html +qt2/share/doc/qt/qwidgetitem.html +qt2/share/doc/qt/qwidgetstack-h.html +qt2/share/doc/qt/qwidgetstack-members.html +qt2/share/doc/qt/qwidgetstack.html +qt2/share/doc/qt/qwindowdefs-h.html +qt2/share/doc/qt/qwindowsstyle-h.html +qt2/share/doc/qt/qwindowsstyle-members.html +qt2/share/doc/qt/qwindowsstyle.html +qt2/share/doc/qt/qwizard-h.html +qt2/share/doc/qt/qwizard-members.html +qt2/share/doc/qt/qwizard.html +qt2/share/doc/qt/qwmatrix-h.html +qt2/share/doc/qt/qwmatrix-members.html +qt2/share/doc/qt/qwmatrix.html +qt2/share/doc/qt/qxt-h.html +qt2/share/doc/qt/qxtapplication-members.html +qt2/share/doc/qt/qxtapplication.html +qt2/share/doc/qt/qxtwidget-members.html +qt2/share/doc/qt/qxtwidget.html +qt2/share/doc/qt/rangecontrols-main-cpp.html +qt2/share/doc/qt/realwidgets.html +qt2/share/doc/qt/removed20.html +qt2/share/doc/qt/richtext-main-cpp.html +qt2/share/doc/qt/rot13-rot13-cpp.html +qt2/share/doc/qt/scribble-main-cpp.html +qt2/share/doc/qt/scrollview-scrollview-cpp.html +qt2/share/doc/qt/session.html +qt2/share/doc/qt/session.png +qt2/share/doc/qt/shared.html +qt2/share/doc/qt/shclass.html +qt2/share/doc/qt/showimg-main-cpp.html +qt2/share/doc/qt/simple-application.html +qt2/share/doc/qt/splitter-splitter-cpp.html +qt2/share/doc/qt/t1.html +qt2/share/doc/qt/t1.png +qt2/share/doc/qt/t10-cannon-cpp.html +qt2/share/doc/qt/t10-cannon-h.html +qt2/share/doc/qt/t10-lcdrange-cpp.html +qt2/share/doc/qt/t10-lcdrange-h.html +qt2/share/doc/qt/t10-main-cpp.html +qt2/share/doc/qt/t10-makefile.html +qt2/share/doc/qt/t10.html +qt2/share/doc/qt/t10.png +qt2/share/doc/qt/t11-cannon-cpp.html +qt2/share/doc/qt/t11-cannon-h.html +qt2/share/doc/qt/t11-lcdrange-cpp.html +qt2/share/doc/qt/t11-lcdrange-h.html +qt2/share/doc/qt/t11-main-cpp.html +qt2/share/doc/qt/t11-makefile.html +qt2/share/doc/qt/t11.html +qt2/share/doc/qt/t11.png +qt2/share/doc/qt/t12-cannon-cpp.html +qt2/share/doc/qt/t12-cannon-h.html +qt2/share/doc/qt/t12-lcdrange-cpp.html +qt2/share/doc/qt/t12-lcdrange-h.html +qt2/share/doc/qt/t12-main-cpp.html +qt2/share/doc/qt/t12-makefile.html +qt2/share/doc/qt/t12.html +qt2/share/doc/qt/t12.png +qt2/share/doc/qt/t13-cannon-cpp.html +qt2/share/doc/qt/t13-cannon-h.html +qt2/share/doc/qt/t13-gamebrd-cpp.html +qt2/share/doc/qt/t13-gamebrd-h.html +qt2/share/doc/qt/t13-lcdrange-cpp.html +qt2/share/doc/qt/t13-lcdrange-h.html +qt2/share/doc/qt/t13-main-cpp.html +qt2/share/doc/qt/t13-makefile.html +qt2/share/doc/qt/t13.html +qt2/share/doc/qt/t13.png +qt2/share/doc/qt/t14-cannon-cpp.html +qt2/share/doc/qt/t14-cannon-h.html +qt2/share/doc/qt/t14-gamebrd-cpp.html +qt2/share/doc/qt/t14-gamebrd-h.html +qt2/share/doc/qt/t14-lcdrange-cpp.html +qt2/share/doc/qt/t14-lcdrange-h.html +qt2/share/doc/qt/t14-main-cpp.html +qt2/share/doc/qt/t14-makefile.html +qt2/share/doc/qt/t14.html +qt2/share/doc/qt/t14.png +qt2/share/doc/qt/t2.html +qt2/share/doc/qt/t2.png +qt2/share/doc/qt/t3.html +qt2/share/doc/qt/t3.png +qt2/share/doc/qt/t4.html +qt2/share/doc/qt/t4.png +qt2/share/doc/qt/t5.html +qt2/share/doc/qt/t5.png +qt2/share/doc/qt/t6.html +qt2/share/doc/qt/t6.png +qt2/share/doc/qt/t7-lcdrange-cpp.html +qt2/share/doc/qt/t7-lcdrange-h.html +qt2/share/doc/qt/t7-main-cpp.html +qt2/share/doc/qt/t7-makefile.html +qt2/share/doc/qt/t7.html +qt2/share/doc/qt/t7.png +qt2/share/doc/qt/t8-cannon-cpp.html +qt2/share/doc/qt/t8-cannon-h.html +qt2/share/doc/qt/t8-lcdrange-cpp.html +qt2/share/doc/qt/t8-lcdrange-h.html +qt2/share/doc/qt/t8-main-cpp.html +qt2/share/doc/qt/t8-makefile.html +qt2/share/doc/qt/t8.html +qt2/share/doc/qt/t8.png +qt2/share/doc/qt/t9-cannon-cpp.html +qt2/share/doc/qt/t9-cannon-h.html +qt2/share/doc/qt/t9-lcdrange-cpp.html +qt2/share/doc/qt/t9-lcdrange-h.html +qt2/share/doc/qt/t9-main-cpp.html +qt2/share/doc/qt/t9-makefile.html +qt2/share/doc/qt/t9.html +qt2/share/doc/qt/t9.png +qt2/share/doc/qt/t9_1.png +qt2/share/doc/qt/t9_2.png +qt2/share/doc/qt/tabdialog-tabdialog-cpp.html +qt2/share/doc/qt/table-main-cpp.html +qt2/share/doc/qt/test.png +qt2/share/doc/qt/tetrix-tetrix-cpp.html +qt2/share/doc/qt/themes-main-cpp.html +qt2/share/doc/qt/tictac-main-cpp.html +qt2/share/doc/qt/time.html +qt2/share/doc/qt/tools.html +qt2/share/doc/qt/tooltip-main-cpp.html +qt2/share/doc/qt/topicals.html +qt2/share/doc/qt/treeview.png +qt2/share/doc/qt/trivial-trivial-cpp.html +qt2/share/doc/qt/troll.html +qt2/share/doc/qt/ttlogo-small.jpg +qt2/share/doc/qt/ttlogo-small.png +qt2/share/doc/qt/tutorial.html +qt2/share/doc/qt/tutorial.png +qt2/share/doc/qt/validator-main-cpp.html +qt2/share/doc/qt/whatsthis.png +qt2/share/doc/qt/wizard-main-cpp.html +qt2/share/doc/qt/xform-xform-cpp.html +qt2/share/doc/qt/xt.html +qt2/share/doc/qt/y2k.html +@dirrm qt2/bin +@dirrm qt2/include +@dirrm qt2/lib +@dirrm qt2/man/man1 +@dirrm qt2/man/man3 +@dirrm qt2/man +@dirrm qt2/share/doc/qt +@dirrm qt2/share/doc +@dirrm qt2/share +@dirrm qt2 |