Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 596 results for
pyside
- Page 1
PySide QProcess, Need Help
Programming
Software Development
13 Years Ago
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
13 Years Ago
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
12 Years Ago
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
12 Years Ago
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
12 Years Ago
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
12 Years Ago
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
11 Years Ago
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
7 Years Ago
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
7 Years Ago
by Stuart_5
No module named
PySide
.
Python/SQLite and PySide
Programming
Software Development
14 Years Ago
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
14 Years Ago
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
13 Years Ago
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
13 Years Ago
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
13 Years Ago
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
4 Years Ago
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
13 Years Ago
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
14 Years Ago
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
10 Years Ago
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
13 Years Ago
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
12 Years Ago
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
12 Years Ago
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
11 Years Ago
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
10 Years Ago
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
10 Years Ago
by Gribouillis
Perhaps a `sudo apt-get install python-
pyside
` (or python3-
pyside
).
Re: No module named PySide
Programming
Software Development
10 Years Ago
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
10 Years Ago
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
13 Years Ago
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
13 Years Ago
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
13 Years Ago
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
12 Years Ago
by vegaseat
Here is a typical example: http://www.daniweb.com/software-development/python/code/445498/
pyside
-mainwindow
1
2
3
10
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC