Results 151 - 175 of about 264 results out of about 3506 pages. (0.94 seconds)

lwickjr/Modules . . . 1 match
...d stuff, commented out. ---- * [[attachment:GWiz.py]], a ""functional"" but incomplete GUI editor. More details later. ---- * [[attachment:WinReg.py]], a higher-level abstractio...

5.1k - rev: 6 (current) last modified: 2008-11-15 14:00:04

WxWindows . . . 1 match
...wxWindows was the former name of a cross-platform graphical user interface (GUI) toolkit written in C++. wxWindows was recently renamed to WxWidgets and can be found at http://www...

0.2k - rev: 7 (current) last modified: 2014-03-17 04:40:00

WikiLikeSyntax . . . 1 match
...representing tree high level)? * what's a diagram of the nesting look like? ideas: * GUI for construction of grammar * stack match-object groups * doc-node creation generic /...

14.9k - rev: 14 (current) last modified: 2008-11-15 13:59:54

WikiKurs/30 Der grafische Editor . . . 1 match
...ellen. Man kann im Editor auch jeweils in den anderen Editor umschalten (Text-Modus vs. GUI-Modus). Vorteile grafischer Editor: * hübscher * einfacher Nachteile grafischer Edi...

1.0k - rev: 1 (current) last modified: 0

When I import Tkinter, Python exits. Why? . . . 1 match
...' I have just installed the Python executable on Win2K. Here is the info from the IDLE GUI: Python 2.3.4 (#53, May 25 2004, 21:17:02) [MSC v.1200 32 bit (Intel)] on win32. I als...

1.3k - rev: 8 (current) last modified: 2008-11-15 14:00:05

ThaiLanguage . . . 1 match
...ของการผสมตัว Ajax เข้ามาไว้ในระบบ * '''การพัฒนาโปรแกรมที่มีส่วนติดต่อผู้ใช้แบบกราฟิก (GUI)''' ก็มีเฟรมเวิร์กได้แก่ [[http://wiki.python.org/moin/WxPython|wxPython]], [[http://wi...

13.4k - rev: 40 (current) last modified: 2011-04-11 10:02:38

SummerOfCode/2011/PyGame . . . 1 match
...e same area as their proposal would have them working in. == A new Gtk+ like standard, GUI toolkit for Pygame == Involves Python coding. Need to understand Pygame blitting, incl...

0.7k - rev: 1 (current) last modified: 2011-03-10 13:06:36

SummerOfCode/2010 . . . 1 match
...ocess model on ZeroMQ]] and [[http://ipython.scipy.org/moin/GSoC2010/IPythonQt|Qt-based GUI]] ||<style="border-bottom:1px dotted #000;"> Python ||<style="border-bottom:1px dotted...

10.2k - rev: 45 (current) last modified: 2010-04-09 19:12:16

SummerOfCode/2009 . . . 1 match
...stem performance, and social network ||<style="border-bottom:1px dotted #000;"> Python, GUI ||<style="border-bottom:1px dotted #000;"> TahoeMentors || ||<style="border-bottom:1px ...

14.8k - rev: 59 (current) last modified: 2009-04-02 03:50:50

SkeletonBuilderTools . . . 1 match
...Full feature set]] * 3rd-party: [[https://pypi.org/project/cookiedough/|cookiedough]] GUI browser/installer with ~4150 cookiecutter templates. * [[https://docs.djangoproject.co...

1.9k - rev: 13 (current) last modified: 2021-04-06 09:22:20

ShellRedirectionFails . . . 1 match
...es: command line options of your script, parameters stored in a configuration file, and GUI dialogs are common examples. === References === [[http://docs.python.org/lib/module-...

1.0k - rev: 5 (current) last modified: 2008-11-15 14:01:25

SQL Server . . . 1 match
...ous flavours. The latest free version has a 10GB database size limit. It comes with the GUI tools and Reporting Services. The standard and other versions include many extra featu...

5.0k - rev: 34 (current) last modified: 2017-08-07 19:32:49

PythonWikiTasks . . . 1 match
... unwiki to impose some structure like I did in WebProgramming and trying to keep it up? GuiProgramming and IntegratingPythonWithOtherLanguages are also candidates for this kind of...

4.0k - rev: 71 (current) last modified: 2012-06-10 08:59:59

PythonImagingLibrary . . . 1 match
...raphics capabilities. PIL comes with interfaces for TkInter and PythonWin. Many other GuiProgramming toolkits also support PIL images. More here: http://www.pythonware.com/prod...

0.5k - rev: 10 (current) last modified: 2012-05-27 01:13:05

PyWiew . . . 1 match
...PyWiew is an image viewer/editor written entirely in Python using WxPython for GUI and PythonImagingLibrary for image manipulation. [[http://members.lycos.co.uk/anandpillai/|"Py...

0.3k - rev: 21 (current) last modified: 2008-11-15 14:00:38

PyQt5/Threading,_Signals_and_Slots . . . 1 match
...lp us draw stars. {{{ import math, random, sys from PyQt5.QtCore import * from PyQt5.QtGui import * from PyQt5.QtWidgets import * class Window(QWidget): def __init__(self, p...

9.9k - rev: 1 (current) last modified: 2019-08-06 23:08:53

PyQt/Windows with gradient backgrounds . . . 1 match
...t so that it changes when the window is resized. {{{ #!python import sys from PyQt4.QtGui import * if __name__ == "__main__": app = QApplication([]) w = QWidget()...

0.8k - rev: 1 (current) last modified: 2014-06-05 22:19:17

PyQt/Widgets in a layout . . . 1 match
...Widgets example on GitHub]]. {{{ #!python # [Create a window] import sys from PyQt4.QtGui import * app = QApplication(sys.argv) #ignore() window = QWidget() window.setWindowTit...

1.4k - rev: 2 (current) last modified: 2019-07-01 15:55:59

PyQt/Using a translation of Qt . . . 1 match
...ns of the Qt dialogs. {{{ #!python import sys from PyQt4.QtCore import * from PyQt4.QtGui import * if __name__ == "__main__": app = QApplication(sys.argv) qt_tran...

0.6k - rev: 1 (current) last modified: 2014-06-05 19:39:33

PyQt/Using a signal mapper . . . 1 match
... subclass of QWidget. {{{ #!python import sys from PyQt4.QtCore import * from PyQt4.QtGui import * class Window(QWidget): def __init__(self, parent = None): Q...

1.5k - rev: 1 (current) last modified: 2014-06-05 08:14:47

PyQt/Using a different view with QComboBox . . . 1 match
... does this: {{{ #!python import sys from PyQt4.QtCore import Qt, QVariant from PyQt4.QtGui import * app = QApplication(sys.argv) model = QStandardItemModel() items = [("ABC", ...

1.4k - rev: 1 (current) last modified: 2014-06-07 14:43:03

PyQt/Using a Custom Protocol with QtWebKit . . . 1 match
.../env python import sys from PyQt4.QtCore import QTimer, QVariant, SIGNAL from PyQt4.QtGui import * from PyQt4.QtNetwork import QNetworkAccessManager, QNetworkRequest, QNetworkRe...

5.6k - rev: 1 (current) last modified: 2014-06-07 21:57:59

PyQt/Using GStreamer with PyQt . . . 1 match
...gst pygst.require('0.10') import gst from PyQt4.QtCore import SIGNAL, SLOT from PyQt4.QtGui import QApplication, QMainWindow, QPushButton, \ QFileDialog ...

2.6k - rev: 1 (current) last modified: 2014-06-04 21:21:54

PyQt/Undo and redo with line edits . . . 1 match
... some help with undo/redo and a form interface. {{{ #!python import sys from PyQt4.QtGui import * class Form(QWidget): def __init__(self, parent = None): QWi...

2.3k - rev: 1 (current) last modified: 2014-06-05 07:58:27

PyQt/Threading,_Signals_and_Slots . . . 1 match
...lp us draw stars. {{{ import math, random, sys from PyQt4.QtCore import * from PyQt4.QtGui import * class Window(QWidget): def __init__(self, parent = None): Q...

9.9k - rev: 1 (current) last modified: 2014-06-04 21:48:33

Previous 2 3 4 5 6 7 8 9 10 11 Next

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