summaryrefslogtreecommitdiffstats
path: root/tests/manual/diaglib/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/diaglib/README.txt')
-rw-r--r--tests/manual/diaglib/README.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/manual/diaglib/README.txt b/tests/manual/diaglib/README.txt
index 0fb226c750..ab243da9ae 100644
--- a/tests/manual/diaglib/README.txt
+++ b/tests/manual/diaglib/README.txt
@@ -27,6 +27,22 @@ class EventFilter (eventfilter.h):
An event filter that logs Qt events to qDebug() depending on
configured categories (for example mouse, keyboard, etc).
+class DebugProxyStyle (debugproxystyle.h)
+ A proxy style that wraps around an existing style and outputs
+ the parameters and return values of its function calls, useful
+ for debugging QStyle.
+
+class LogWidget (logwidget.h)
+ A Log Widget inheriting QPlainTextEdit with convenience functions
+ to install as a message handler.
+
+class LogFunctionGuard
+ A guard class for use with LogWidget logging messages when a function
+ is entered/left (indenting the log messages).
+ Can be instantiated using:
+ LogFunctionGuard guard(__FUNCTION__) or
+ LogFunctionGuard guard(Q_FUNC_INFO)
+
function glInfo() (glinfo.h):
Returns a string describing the Open GL configuration (obtained
by querying GL_VENDOR and GL_RENDERER). Available only