From 2a7a5e23eb28ea7bbc0e84282d369516ae929974 Mon Sep 17 00:00:00 2001 From: Luke Campagnola Date: Mon, 7 Jan 2013 10:46:49 -0500 Subject: [PATCH] Added Qt crash course file (mostly empty) --- doc/source/qtcrashcourse.rst | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 doc/source/qtcrashcourse.rst diff --git a/doc/source/qtcrashcourse.rst b/doc/source/qtcrashcourse.rst new file mode 100644 index 00000000..58b88de4 --- /dev/null +++ b/doc/source/qtcrashcourse.rst @@ -0,0 +1,28 @@ +Qt Crash Course +=============== + +Pyqtgraph makes extensive use of Qt for generating nearly all of its visual output and interfaces. Qt's documentation is very well written and we encourage all pyqtgraph developers to familiarize themselves with it. The purpose of this section is to provide an introduction to programming with Qt (using either PyQt or PySide) for the pyqtgraph developer. + + +QWidgets and Layouts +-------------------- + +Signals, Slots, and Events +-------------------------- + + +GraphicsView and GraphicsItems +------------------------------ + + +Coordinate Systems +------------------ + + +Mouse and Keyboard Input +------------------------ + + +QTimer, the Event Loop, and Multi-Threading +------------------------------------------- +