Results 176 - 200 of about 264 results out of about 3506 pages. (0.87 seconds)

PyQt/Sorting numbers in columns . . . 1 match
...e. {{{ #!python import random, sys from PyQt4.QtCore import Qt, QVariant from PyQt4.QtGui import * class NumberSortModel(QSortFilterProxyModel): def lessThan(self, left, r...

1.3k - rev: 1 (current) last modified: 2014-06-07 15:37:11

PyQt/Showing a subset of a model in a view . . . 1 match
...to use a proxy model. {{{ #!python import sys from PyQt4.QtCore import * from PyQt4.QtGui import * tree_data = [ ("Alice", [ ("Keys", []), ("Purse", [ ...

2.7k - rev: 1 (current) last modified: 2014-06-07 21:52:06

PyQt/Show an image using a label . . . 1 match
... Freenode, `elhobab` asked how to show an image. {{{ #!python import sys from PyQt4.QtGui import * app = QApplication(sys.argv) label = QLabel() pixmap = QPixmap(sys.argv[1]) ...

0.3k - rev: 1 (current) last modified: 2014-06-06 23:56:24

PyQt/Sending Python values with signals and slots . . . 1 match
...e code are incorrect. {{{ #!python import sys from PyQt4.QtCore import * from PyQt4.QtGui import * class Window(QWidget): def __init__(self, parent = None): Q...

1.6k - rev: 1 (current) last modified: 2014-06-05 19:38:03

PyQt/Selecting items in unrelated views . . . 1 match
...on model to select it. {{{ #!python import sys from PyQt4.QtCore import * from PyQt4.QtGui import * data = [ ("Alice", [ ("Keys", []), ("Purse", [ ...

2.4k - rev: 1 (current) last modified: 2014-06-07 21:49:58

PyQt/Selecting a region of a widget . . . 1 match
...thon import random, sys from PyQt4.QtCore import QPoint, QRect, QSize, Qt from PyQt4.QtGui import * class Window(QLabel): def __init__(self, parent = None): QL...

2.3k - rev: 2 (current) last modified: 2014-06-07 14:29:15

PyQt/Removing a database . . . 1 match
...t data sources before the connection is removed. {{{ #!python import sys from PyQt4.QtGui import * from PyQt4.QtSql import * class Window(QMainWindow): def __init__(self, ...

2.4k - rev: 1 (current) last modified: 2014-06-07 22:55:09

PyQt/ReleaseForge . . . 1 match
...!ReleaseForge is a GUI application designed for project administrators and release engineers of projects that are hosted at !SourceForge. It is intended to make it easier and fast...

1.0k - rev: 2 (current) last modified: 2014-06-07 23:22:33

PyQt/Reading selections from a selection model . . . 1 match
...pdate them. {{{ #!python import sys from PyQt4.QtCore import QModelIndex from PyQt4.QtGui import * class Window(QMainWindow): def __init__(self, parent = None): ...

2.3k - rev: 1 (current) last modified: 2014-06-07 17:17:28

PyQt/PyQtLicensing . . . 1 match
...ersion. At the request of Trolltech, there is no version of !PyQt that corresponds to the non-commercial version of Qt distributed with the book ''C++ GUI Programming with Qt3''....

2.6k - rev: 1 (current) last modified: 2014-06-07 23:34:58

PyQt/Previewing a form . . . 1 match
...view a main window form created in Qt Designer. {{{ #!python import sys from PyQt4.QtGui import QApplication from PyQt4.uic import loadUi if __name__ == "__main__": app =...

0.6k - rev: 1 (current) last modified: 2014-06-07 22:56:22

PyQt/Playing a sound with QtMultimedia . . . 1 match
...t struct, sys from PyQt4.QtCore import QBuffer, QByteArray, QIODevice, Qt from PyQt4.QtGui import QApplication, QFormLayout, QLineEdit, QHBoxLayout, \ QPu...

3.6k - rev: 1 (current) last modified: 2014-06-07 22:40:17

PyQt/Painting and clipping demonstration (clipper_path.py) . . . 0 matches

5.0k - rev: 1 (current) last modified: 2014-06-05 23:07:28

PyQt/Painting and clipping demonstration (clipper.py) . . . 0 matches

5.0k - rev: 1 (current) last modified: 2014-06-05 23:07:28

PyQt/Painting and clipping demonstration . . . 1 match
...de a given rectangle. {{{ #!python import sys from PyQt4.QtCore import * from PyQt4.QtGui import * class Window(QWidget): def __init__(self): QWidget.__init__...

5.0k - rev: 1 (current) last modified: 2014-06-05 23:07:28

PyQt/Painting an overlay on an image . . . 1 match
...more complex overlays. {{{#!python import sys from PyQt4.QtCore import * from PyQt4.QtGui import * if __name__ == "__main__": app = QApplication(sys.argv) if len(...

1.4k - rev: 1 (current) last modified: 2014-06-06 23:50:25

PyQt/Paint on an image (painttext.py) . . . 0 matches

3.0k - rev: 1 (current) last modified: 2014-06-05 22:34:49

PyQt/Paint on an image . . . 1 match
...hment:painttext.png}} {{{ #!python import sys from PyQt4.QtCore import Qt from PyQt4.QtGui import * class Window(QWidget): def __init__(self, parent = None): Q...

3.0k - rev: 1 (current) last modified: 2014-06-05 22:34:49

PyQt/Multimedia_Resources/MPlayerWidget (mplayerwidget.py) . . . 0 matches

0.6k - rev: 1 (current) last modified: 2014-06-07 23:12:43

PyQt/Movie splash screen . . . 1 match
...creen. {{{ #!python import sys, time from PyQt4.QtCore import Qt, QTimer from PyQt4.QtGui import * class MovieSplashScreen(QSplashScreen): def __init__(self, movie, parent...

1.8k - rev: 1 (current) last modified: 2014-06-06 23:51:41

PyQt/Modifying_a_standard_Qt_image_plugin . . . 1 match
...ollowing code can be used as a test: {{{#!/usr/bin/env python import sys from PyQt4.QtGui import * app = QApplication([]) image = QImage(200, 200, QImage.Format_Mono) image.fi...

1.6k - rev: 1 (current) last modified: 2014-06-08 00:06:39

PyQt/Handling context menus (custommenu_subclass.py) . . . 0 matches

4.7k - rev: 1 (current) last modified: 2014-06-07 00:01:10

PyQt/Handling context menus (custommenu_signal.py) . . . 0 matches

4.7k - rev: 1 (current) last modified: 2014-06-07 00:01:10

PyQt/Handling context menus (custommenu_actions_standard.py) . . . 0 matches

4.7k - rev: 1 (current) last modified: 2014-06-07 00:01:10

PyQt/Handling context menus (custommenu_actions.py) . . . 0 matches

4.7k - rev: 1 (current) last modified: 2014-06-07 00:01:10

Previous 3 4 5 6 7 8 9 10 11 Next

Unable to edit the page? See the FrontPage for instructions.