¡@

Home 

python Programming Glossary: qt

How can I take a screenshot/image of a website using Python?

http://stackoverflow.com/questions/1197172/how-can-i-take-a-screenshot-image-of-a-website-using-python

of the latter being put to use. I recently came across QtWebKit which claims to be cross platform Qt rolled WebKit into.. came across QtWebKit which claims to be cross platform Qt rolled WebKit into their library I guess . But I've never tried.. But I've never tried it so I can't tell you much more. The QtWebKit links shows how to access from Python. You should be able..

Threading in a PyQt application: Use Qt threads or Python threads?

http://stackoverflow.com/questions/1595649/threading-in-a-pyqt-application-use-qt-threads-or-python-threads

in a PyQt application Use Qt threads or Python threads I'm writing a.. in a PyQt application Use Qt threads or Python threads I'm writing a GUI application that.. now I have two problems . Anyway the application uses PyQt4 so I'd like to know what the better choice is Use Qt's threads..

An executable Python app [closed]

http://stackoverflow.com/questions/2933/an-executable-python-app

on WxWidgets very popular free for commercial projects PyQt based on Qt also very popular and more stable than WxWidgets.. very popular free for commercial projects PyQt based on Qt also very popular and more stable than WxWidgets but costly..

Should wildcard import be avoided?

http://stackoverflow.com/questions/3615125/should-wildcard-import-be-avoided

wildcard import be avoided I'm using PyQt and am running into this issue. If my import statements are.. into this issue. If my import statements are from PyQt4.QtCore import from PyQt4.QtGui import then pylint gives hundreds.. into this issue. If my import statements are from PyQt4.QtCore import from PyQt4.QtGui import then pylint gives hundreds..

What cross-platform GUI libraries are simple, lightweight, and have minimal dependencies?

http://stackoverflow.com/questions/426718/what-cross-platform-gui-libraries-are-simple-lightweight-and-have-minimal-depe

to install to make this go Are there any better options Qt TkInter I suspect TkInter doesn't run natively on OS X and requires..

Cross-platform gui toolkit for deploying Python applications

http://stackoverflow.com/questions/520015/cross-platform-gui-toolkit-for-deploying-python-applications

supported as of 2.6 3.0 2 pyttk library 3 pyGTK 4 pyQt 5 wxPython 6 HTML CGI via Python based framework Django Turbogears.. for python as a whole. Tcl tk has a BSD style license. PyQt It's build on top of Qt a C framework. It's quite advanced and.. Tcl tk has a BSD style license. PyQt It's build on top of Qt a C framework. It's quite advanced and has some good tools like..

How would you implement a basic event-loop?

http://stackoverflow.com/questions/658403/how-would-you-implement-a-basic-event-loop

alive and responsive to different events. For example for Qt you would do this in main int main QApplication app argc argv..

Nice IDE for wxPython or Tkinter GUI Development [closed]

http://stackoverflow.com/questions/800849/nice-ide-for-wxpython-or-tkinter-gui-development

gs is right when saying that either you switch to PyQt or you write your application by hand. I had a look at Qt Designer.. or you write your application by hand. I had a look at Qt Designer in the past and thought this was what I needed. Unfortunately..

How to capture output of Python's interpreter and show in a Text widget?

http://stackoverflow.com/questions/8356336/how-to-capture-output-of-pythons-interpreter-and-show-in-a-text-widget

show in a Text widget I have a program in Python with PyQt designed to run on Windows. This program makes a lot of operations.. sys.__stderr__ Update Here is some working code for PyQt4. First define a stream that reports data written to it with.. define a stream that reports data written to it with a Qt signal from PyQt4 import QtCore class EmittingStream QtCore.QObject..

Embedding IPython Qt console in a PyQt application

http://stackoverflow.com/questions/11513132/embedding-ipython-qt-console-in-a-pyqt-application

in a PyQt application I'd like to embed an IPython qt console widget in a PyQt application I am working on. The code.. import find_connection_file from IPython.frontend.qt.kernelmanager import QtKernelManager from IPython.frontend.qt.console.rich_ipython_widget.. import QtKernelManager from IPython.frontend.qt.console.rich_ipython_widget import RichIPythonWidget from IPython.config.application..

PySide Qt: Auto vertical growth for TextEdit Widget, and spacing between widgets in a vertical layout

http://stackoverflow.com/questions/11677499/pyside-qt-auto-vertical-growth-for-textedit-widget-and-spacing-between-widgets

the problem. I'll be accepting my own answer now. python qt qt4 pyqt pyside share improve this question 1 Layouts The.. problem. I'll be accepting my own answer now. python qt qt4 pyqt pyside share improve this question 1 Layouts The other.. I'll be accepting my own answer now. python qt qt4 pyqt pyside share improve this question 1 Layouts The other answer..

multiprocessing GUI schemas to combat the “Not Responding” blocking

http://stackoverflow.com/questions/15698251/multiprocessing-gui-schemas-to-combat-the-not-responding-blocking

back to the main GUI thread update_signal QtCore.pyqtSignal int done_signal QtCore.pyqtSignal def __init__ self parent.. update_signal QtCore.pyqtSignal int done_signal QtCore.pyqtSignal def __init__ self parent worker QtCore.QThread.__init__.. and pushed through a signal # to Tab.update_GUI @QtCore.pyqtSlot def start_computation self self.process.start while True..

QObject (QPlainTextEdit) & Multithreading issues

http://stackoverflow.com/questions/2104779/qobject-qplaintextedit-multithreading-issues

trying to learn Networking with Python asyncore and pyqt4. I coded a small server which basically listens on some port.. resends all messages it recieves to the sender. Since both qts QApplication.exec_ and asyncore.loop are functions which never.. . I read on some forum that this may be caused by calling qt functions from another Thread and that using signals slots instead..

Linking a qtDesigner .ui file to python/pyqt?

http://stackoverflow.com/questions/2398800/linking-a-qtdesigner-ui-file-to-python-pyqt

a qtDesigner .ui file to python pyqt So if I go into QtDesigner.. a qtDesigner .ui file to python pyqt So if I go into QtDesigner and build a UI it'll be saved as.. this as a python file or use this in python python gui qt pyqt qt designer share improve this question another way..

Why is PyQt connect() syntax so verbose?

http://stackoverflow.com/questions/4031489/why-is-pyqt-connect-syntax-so-verbose

the connect syntax needs to be so explicit verbose python qt qt4 pyqt pyqt4 share improve this question You can use PyQt's.. connect syntax needs to be so explicit verbose python qt qt4 pyqt pyqt4 share improve this question You can use PyQt's.. syntax needs to be so explicit verbose python qt qt4 pyqt pyqt4 share improve this question You can use PyQt's new..

PyQt/PySide - icon display problem

http://stackoverflow.com/questions/4573995/pyqt-pyside-icon-display-problem

help or pointers would be appreciated. Thanks. python pyqt pyqt4 py2exe pyside share improve this question kochelmonster's.. or pointers would be appreciated. Thanks. python pyqt pyqt4 py2exe pyside share improve this question kochelmonster's.. I still wanted to bundle everything else so I excluded the qt dlls and added them manually. My setup.py looks something like..

Is there a better layout language than HTML for printing?

http://stackoverflow.com/questions/458340/is-there-a-better-layout-language-than-html-for-printing

someone ordered which can spread over a few pages. python qt layout printing gpl share improve this question I have been..

Qt being now released under LGPL, would you recommend it over wxWidgets? [closed]

http://stackoverflow.com/questions/464463/qt-being-now-released-under-lgpl-would-you-recommend-it-over-wxwidgets

not Related http stackoverflow.com questions 443546 qt goes lgpl on windows is it good enough to use instead of mfc.. on windows is it good enough to use instead of mfc python qt wxpython wxwidgets share improve this question For those..

problem displaying sympy rendered svg in python

http://stackoverflow.com/questions/5265226/problem-displaying-sympy-rendered-svg-in-python

sys.argv form Form form.show app.exec_ python qt svg pyside sympy share improve this question You should..

pip install PyQt IOError

http://stackoverflow.com/questions/5517924/pip-install-pyqt-ioerror

1 Storing complete log in home john .pip pip.log python pyqt pip ioerror setup.py share improve this question That's.. configure.py generate a make file that you use to build pyqt against the qt lib you choose by passing qmake option to configure.py.. a make file that you use to build pyqt against the qt lib you choose by passing qmake option to configure.py it has..

How do I compile a PyQt script (.py) to a single standalone executable file for windows (.exe) and/or linux?

http://stackoverflow.com/questions/5888870/how-do-i-compile-a-pyqt-script-py-to-a-single-standalone-executable-file-for

to fiddle with PyQt and made a beautiful script from the pyqt whitepaper example app pastebin It works perfectly in Windows.. app pastebin It works perfectly in Windows and Linux with qt environment already installed on both . Now my question is Since.. who are not programmers at all. Thanks for reading python qt4 compilation executable pyqt4 share improve this question..

Choosing between different switch-case replacements in Python - dictionary or if-elif-else?

http://stackoverflow.com/questions/594442/choosing-between-different-switch-case-replacements-in-python-dictionary-or-if

lineColor 0.0 0.0 0.0 This method is called by a qt slot in response to choosing to draw a curve from a menu. The.. classes use kargs... 2 This second piece of code is a qt slot that is called when the user changes a property of a curve...

Qt and context menu

http://stackoverflow.com/questions/782255/qt-and-context-menu

language Python Graphical lib Qt PyQt . python qt pyqt menu share improve this question I can't speak for.. language Python Graphical lib Qt PyQt . python qt pyqt menu share improve this question I can't speak for python..

Setting Mac OSX Application Menu menu bar item to other than “Python” in my python Qt application

http://stackoverflow.com/questions/7827430/setting-mac-osx-application-menu-menu-bar-item-to-other-than-python-in-my-pyth

python is on the user PATH if possible. python osx qt menubar share improve this question You seem to need an..

Building a Mac and Windows GUI Application

http://stackoverflow.com/questions/11026541/building-a-mac-and-windows-gui-application

of a more native interface Or would I be better off using QT or wxWidgets If I am going down the wrong path and or there.. Mac I ruled out using cross platform GUI libraries like QT since it doesn't seem like they are able to provide a native.. with py2app that uses XIBs and Cocoa libraries rather than QT or wxWidgets. I don't want Xcode to manage the build since I..

Deleting and Redrawing Matplotlib Animation

http://stackoverflow.com/questions/18391038/deleting-and-redrawing-matplotlib-animation

from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas from matplotlib.figure import Figure import.. from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas from matplotlib.figure import Figure import.. # mpl clean up self.ui.mplWidget.deleteLater # QT cleanup self.ui.gridLayout.removeWidget self.ui.mplWidget dirs..

Linking a qtDesigner .ui file to python/pyqt?

http://stackoverflow.com/questions/2398800/linking-a-qtdesigner-ui-file-to-python-pyqt

both approaches are good. Do not forget that if you use QT recource files extremely useful for icons and so one you must..

Using QTDesigner with PyQT and Python 2.6

http://stackoverflow.com/questions/2489643/using-qtdesigner-with-pyqt-and-python-2-6

QTDesigner with PyQT and Python 2.6 I'm new to Python and am starting.. QTDesigner with PyQT and Python 2.6 I'm new to Python and am starting to teach myself.. starting to teach myself GUI programming hopefully using PyQT4.7 and Python 2.6 I just downloaded the whole PyQT QT4 package..

Cross-platform gui toolkit for deploying Python applications

http://stackoverflow.com/questions/520015/cross-platform-gui-toolkit-for-deploying-python-applications

written with toolkits such as Tkinter wxPython PyQT etc are special purpose applications. For the types of applications.. unins000.exe PyQt4.QtCore.pyd sip.pyd _socket.pyd QT comes with a widget designer and even in recent versions with..

Checkboxes in a Combobox using PyQt

http://stackoverflow.com/questions/5226091/checkboxes-in-a-combobox-using-pyqt

any alternate solution. I found an implementation in C at QT developer site by Nokia but don't know how to port it to python...

Triple inheritance causes metaclass conflict… Sometimes

http://stackoverflow.com/questions/6557407/triple-inheritance-causes-metaclass-conflict-sometimes

You need to examine each of your classes and the QT classes to figure out where the conflict is. Here's some simple..

Python distributions and environments for scientific computing

http://stackoverflow.com/questions/6719309/python-distributions-and-environments-for-scientific-computing

Numpy is part of Scipy. Spyder is a desktop IDE based on QT that loosely tries to emulate MATLAB IDE. It is part of the..

Python Text User Interface

http://stackoverflow.com/questions/791261/python-text-user-interface

build simple console applications but want something like QT and not like ncurses. Is there such a thing or is it only my.. It might be an exaggeration to describe it as being like QT but it does seem to offer a better richer API than curses on..