PySide QProcess, Need Help Programming Software Development by markfw … thank everyone in this forum who helped me to understand PySide. I have a question about QtCore.QProcess: Here how my… PySide & UI Programming - General Question Programming Software Development by markfw Hi Just a general question about PySide (menubar) and UI programming. I was thinking to add menubar … A Simple PySide Digital Clock Programming Software Development by vegaseat PySide (public license PyQT) is my preferred Python GUI toolkit. Here we explore how to test some of the widgets available and create a digital clock. Pyside Combobox Color Selector Programming Software Development by vegaseat I am exploring some of the PySide (PyQT public) widgets like the combo box, and how colors are applied ... PySide MainWindow Programming Software Development by vegaseat If you want a window with a menubar, toolbar, statusbar, dock and central widgets, you can use the PySide GUI toolkit's QMainWindow. To use the more traditional box and grid layouts, you simply add a QWidget instance as the central widget. Here is an example. Pyside GroupBox StyleSheet Programming Software Development by vegaseat This PySide (PyQT) code sample shows you how to apply a StyleSheet to a GroupBox containing a number of RadioButtons. View a web page with PySide/PyQt Programming Software Development by vegaseat PySide's QWebView can load a given url and display the web page associated with it with just a few lines of code. Re: A Simple PySide Digital Clock Programming Software Development by Gribouillis @Stuart_5 PySide is a third party module that needs to be installed separately. See https://pypi.python.org/pypi/PySide Re: A Simple PySide Digital Clock Programming Software Development by Stuart_5 No module named PySide. Python/SQLite and PySide Programming Software Development by J-M DESMETTRE …import pdfmetrics from reportlab.pdfbase.ttfonts import TTFont #from PySide.QtCore import * #from PySide.QtGui import * from tdict import * # ---…() fi.close() # <EOF> [/CODE] And here's the PySide script [CODE=PYTHON] #!/usr/bin/python #-*- coding: utf-8 -*- # # … LGPL: Pyside bindings for QT released! Programming Software Development by TrustyTony [URL="http://www.pyside.org/"]PySide[/URL]: Python for Qt 1.0 released! The PySide team is thrilled to announce… the release of PySide: Python for Qt version 1…Maemo 5 platform. With this release, the team regards PySide to be production quality and they will restart feature … Starting PySide, trouble Programming Software Development by pwolf …gui yesterday, and tried to do some things with PySide, however i have the following problem; Whats wrong …python # -*- coding: utf-8 -*- import sys from PySide.QtCore import * from PySide.QtGui import * class Form(QDialog): def __init__(self,…()) [/CODE] p.s im only just started learning pyside, i dont know how to make a button to… Re: Starting PySide, trouble Programming Software Development by HiHe …]#!/usr/bin/python # -*- coding: utf-8 -*- # PySide is the official LGPL-licensed version of PyQT # I downloaded… and used the Windows self-extracting installer # PySide-1.0.0qt472.win32-py2.7.exe # from:… # tested with pyside472 and Python27 from PySide.QtCore import * from PySide.QtGui import * class MyFrame(QWidget): def… Re: Starting PySide, trouble Programming Software Development by pwolf …usr/bin/python # -*- coding: utf-8 -*- # PySide is the official LGPL-licensed version of PyQT # I downloaded… and used the Windows self-extracting installer # PySide-1.0.0qt472.win32-py2.7.exe # from:…# tested with pyside472 and Python27 from PySide.QtCore import * from PySide.QtGui import * class MyFrame(QWidget): def… Circular Progress Bar using PySide Digital Media UI / UX Design by vijayakumar_1 …qroundprogressbar import QRoundProgressBar import sys from PySide.QtGui import * from PySide import QtCore, QtGui from time … __name__ == '__main__': main() **pysideroundprogressbar.py** from PySide import QtCore, QtGui class QRoundProgressBar(QtGui.QWidget): StyleDonut =… Re: Starting PySide, trouble Programming Software Development by snippsat … works,so now you have a couple working example with pyside. [CODE]#!/usr/bin/python # -*- coding: utf-8 -*- import sys from… PySide.QtCore import * from PySide.QtGui import * class Form(QDialog): def __init__(self, parent… Re: LGPL: Pyside bindings for QT released! Programming Software Development by vegaseat Thanks Tony! I posted an example of PySide code at: [url]http://www.daniweb.com/software-development/python/threads/191210/1522002#post1522002[/url] Re: No module named PySide Programming Software Development by Gribouillis On my system, PySide is in the folder /usr/lib/python2.7/dist-packages … path, set the environment variable PYTHONPATH. You can also find PySide in a terminal with sudo apt-get install mlocate sudo… Re: Question about PySide Programming Software Development by bumsfeld … # get widget's size from PySide.QtCore import * from PySide.QtGui import * app = QApplication([]) # ----- start your widget test code ---- label = '… how should I access the layout in a different moudule in PySide Programming Software Development by krystosan … QVBoxLayout, however I have implemented it in `toolbar_UI.py` from PySide import QtCore,QtGui class ToolBarUI(QtGui.QWidget): def __init__(self… this import resources_rc1 as icons import toolBarUI as toolBar from PySide import QtGui,QtCore class MyUI(QtGui.QMainWindow): def __init__(self… Re: how should I access the layout in a different moudule in PySide Programming Software Development by glenwill101 QMainWindow inherits the QWidget class so you shouldnt have a problem getting it to work [QMainWindow Documentation](http://srinikom.github.com/pyside-docs/PySide/QtGui/QMainWindow.html) How to set width of PySide.QtGui.QDockWidget in python Programming Software Development by Ravi_exact … new to python, i have question with setting width of PySide.QtGui.QDockWidget in python. I have MainWindow class in python… which inherits QtGui.QMainWindow ( PySide ) and have added one left dock widget with simple plot… No module named PySide Programming Software Development by tony75 Hi When I run main.py I got this error how can I fix it? I'm using https://github.com/PicciMario/iPhone-Backup-Analyzer-2 / Traceback (most recent call last): File "./main.py", line 44, in <module> from PySide import QtCore, QtGui ImportError: No module named PySide I appreciate your help Re: No module named PySide Programming Software Development by Gribouillis Perhaps a `sudo apt-get install python-pyside` (or python3-pyside). Re: No module named PySide Programming Software Development by jbennet Well, install it. apt-get instal python-pyside or install it from pypi using pip (apt-get install python-pip then pip install pyside). It probably has other dependencies too, like PIL and QT. Re: PLAY animated GIF files with PySide Programming Software Development by Lardmeister To install the PySide package on Linux use for Python2 --> `sudo apt-get install python-pyside` or for Python3 --> `sudo apt-get install python3-pyside` Re: Question about PySide Programming Software Development by vegaseat … recommend the following style ... [code]# explore QFrame() from PySide.QtCore import * from PySide.QtGui import * class FrameTester(QWidget): def __init__(self, title… Re: Question about PySide Programming Software Development by markfw … advise on coding and also done some research on the PySide docs. Here is another problem: I want the top 2… that didn't work, and advice? [CODE] import sys from PySide import QtCore, QtGui class Window(QtGui.QWidget): __WND_WIDTH = 800 __WND_HEIGHT… Re: Question about PySide Programming Software Development by vegaseat …() ... [code]# explore multiple QFrame() in a QGridLayout() from PySide.QtCore import * from PySide.QtGui import * class FrameTester(QWidget): def __init__(self, title… Re: how should I access the layout in a different moudule in PySide Programming Software Development by vegaseat Here is a typical example: http://www.daniweb.com/software-development/python/code/445498/pyside-mainwindow