On 18/03/24 10:02, Jim Schwartz wrote:
Actually, I have a sleep disorder that requires me to keep a constant sleep
schedule. Thats why I asked.
At a weekend meeting, discussion swirled around topics such as the best
way to learn/work, how much work we should attempt in one sitting,
could/sho
of NZPUG meets this Wednesday, 20 March at 1830 NZDT
>>> (0530 UTC, midnight-ish Tue/Wed in American time-zones), for a virtual
>>> meeting.
>>>
>>> Part 1: Learn the basics of PyQt with code examples.
>>> Hannan Khan is currently consulting as a Data
of NZPUG meets this Wednesday, 20 March at 1830 NZDT (0530
UTC, midnight-ish Tue/Wed in American time-zones), for a virtual meeting.
Part 1: Learn the basics of PyQt with code examples.
Hannan Khan is currently consulting as a Data Scientist for the (US) National
Oceanic and Atmospheric Adm
> Part 1: Learn the basics of PyQt with code examples.
> Hannan Khan is currently consulting as a Data Scientist for the (US) National
> Oceanic and Atmospheric Administration. He holds a Bachelor's degree in
> Neuroscience as well as a Masters in Computer Science. As a keen m
The Auckland Branch of NZPUG meets this Wednesday, 20 March at 1830 NZDT
(0530 UTC, midnight-ish Tue/Wed in American time-zones), for a virtual
meeting.
Part 1: Learn the basics of PyQt with code examples.
Hannan Khan is currently consulting as a Data Scientist for the (US)
National Oceanic
27;s the view
that does the actual font setting. Remember that a single model can be
used with more than one view at the same time, each view implementing
its own style. Thus a model has no information like fonts in it, nor
should it, other than perhaps HTML text markup that the view will render.
Di
On 10/27/2022 3:47 PM, Thomas Passin wrote:
On 10/27/2022 11:15 AM, DFS wrote:
On 10/25/2022 1:45 PM, Thomas Passin wrote:
On 10/25/2022 1:03 PM, DFS wrote:
Having problems with removeRow() on a QTableView object.
removeRow() isn't listed as being a method of a QTableView, not even
an inher
On 10/28/2022 1:01 AM, Thomas Passin wrote:
{snip]
You might also be able to make the item bold using CSS, but I'm not sure.
Apparently so:
QTreeView::item:selected {
background-color: #1d3dec;
color: white;
}
See https://joekuan.wordpress.com/2015/10/02/styling-qt-qtreeview-with-css
This looks like a useful tutorial -
https://doc.qt.io/qt-6/modelview.html
On 10/27/2022 3:47 PM, Thomas Passin wrote:
On 10/27/2022 11:15 AM, DFS wrote:
On 10/25/2022 1:45 PM, Thomas Passin wrote:
On 10/25/2022 1:03 PM, DFS wrote:
Having problems with removeRow() on a QTableView object.
re
On 10/27/2022 11:15 AM, DFS wrote:
On 10/25/2022 1:45 PM, Thomas Passin wrote:
On 10/25/2022 1:03 PM, DFS wrote:
Having problems with removeRow() on a QTableView object.
removeRow() isn't listed as being a method of a QTableView, not even
an inherited method, so how are you calling removeRow
On 10/25/2022 1:45 PM, Thomas Passin wrote:
On 10/25/2022 1:03 PM, DFS wrote:
Having problems with removeRow() on a QTableView object.
removeRow() isn't listed as being a method of a QTableView, not even an
inherited method, so how are you calling removeRow() on it? (See
https://doc.qt.io/qt
On 10/25/2022 2:03 PM, Barry Scott wrote:
There is an active PyQt mailing list that has lots of helpful and knowledgeable
people on it.
https://www.riverbankcomputing.com/mailman/listinfo/pyqt
Barry
Thanks. I'll send some questions their way, I'm sure.
--
https://mail.python.o
On 10/25/2022 1:45 PM, Thomas Passin wrote:
On 10/25/2022 1:03 PM, DFS wrote:
Having problems with removeRow() on a QTableView object.
removeRow() isn't listed as being a method of a QTableView, not even an
inherited method, so how are you calling removeRow() on it? (See
https://doc.qt.io/qt
There is an active PyQt mailing list that has lots of helpful and knowledgeable
people on it.
https://www.riverbankcomputing.com/mailman/listinfo/pyqt
Barry
> On 25 Oct 2022, at 18:03, DFS wrote:
>
> Having problems with removeRow() on a QTableView object.
>
> After ca
On 10/25/2022 1:03 PM, DFS wrote:
Having problems with removeRow() on a QTableView object.
removeRow() isn't listed as being a method of a QTableView, not even an
inherited method, so how are you calling removeRow() on it? (See
https://doc.qt.io/qt-6/qtableview-members.html)
After calling r
Having problems with removeRow() on a QTableView object.
After calling removeRow(), the screen isn't updating. It's as if the
model is read-only, but it's a QSqlTableModel() model, which is not
read-only.
The underlying SQL is straightforward (one table) and all columns are
editable.
None
Hi,
Currently I'm making a statistics tool for a game I'm playing with PyQt5. I'm
not happy with my current graphing library though. In the beginning I've used
matplotlib, which was way too laggy for my use case. Currently I have
pyqtgraph, which is snappy, but is missing useful features.
The
On 03/02/2018 04:15 PM, jlada...@itu.edu wrote:
> Python's standard library has (to take three examples) threads,
> processes, and datetime functions. Meanwhile, PyQt has QThread,
> QProcess, and QDateTime.
>
> Does this redundancy exist for C++ programmers who are programmin
Python's standard library has (to take three examples) threads, processes, and
datetime functions. Meanwhile, PyQt has QThread, QProcess, and QDateTime.
Does this redundancy exist for C++ programmers who are programming Qt directly,
and who may lack a standard C++ library with these fea
On 2017-09-26 16:41, Veek M wrote:
> Thanks - i'm on debian stretch so python 2.7 is what I use.
https://packages.debian.org/stretch/python3
https://packages.debian.org/stretch/python3-pyqt4
https://packages.debian.org/stretch/python3-pyqt5
--
https://mail.python.org/mailman/listinfo/python-li
On Wed, Sep 27, 2017 at 12:41 AM, Veek M wrote:
> Thanks - i'm on debian stretch so python 2.7 is what I use.
Debian Stretch ships with Python 3.5 too.
ChrisA
--
https://mail.python.org/mailman/listinfo/python-list
gt;> is not making sense.
> >> ##
> >> I'm trying to understand widget parenting, from the book: Rapid GUI
> >> Programming, pg 118, and thereabouts - he says:
> >>
> >> A. All PyQt classes that derive from QObjectand this inclu
widget parenting, from the book: Rapid GUI
>> Programming, pg 118, and thereabouts - he says:
>>
>> A. All PyQt classes that derive from QObjectand this includes all the
>> widgets,
>> since QWidget is a QObject subclasscan have a “parent”.
>>
>> B. PyQt
ramming, pg 118, and thereabouts - he says:
>
> A. All PyQt classes that derive from QObjectand this includes all the widgets,
> since QWidget is a QObject subclasscan have a “parent”.
>
> B. PyQt automatically repar-
> ents the widgets that are laid out. So although we did not gi
Summary: Could someone explain widget and dialog parenting - the text book is
not making sense.
##
I'm trying to understand widget parenting, from the book: Rapid GUI
Programming, pg 118, and thereabouts - he says:
A. All PyQt classes that derive from QObjectand
google groups but my knode is broken and pan is horrible
> > on olvwm - my plan is to write myself a News client in PyQt :))
>
> I don't think you need to know that much about graphics coordinate
> systems to get started with Qt. Most GUI layout stuff does not depend on
> pixels
500,-200, which would make things stretched
out in the x axis compared to the y axis.
> (sorry for using google groups but my knode is broken and pan is horrible on
> olvwm - my plan is to write myself a News client in PyQt :))
I don't think you need to know that much about graphics coordi
pg 329, Rapid GUI Programming
http://storage4.static.itmages.com/i/17/0923/h_1506165624_2588733_59fdfcd4cc.png
In PyQt terminology the physical coordinate system is called the “viewport”,
and confusingly, the logical coordinate system is called the “window”.
In Figure 11.4
foo.some_method()
a=foo()
b=bar(a)
Of course since you're dealing with PyQt your classes will involve some
other parameters to __init__ but you can still tack your parameter on there.
You may want to re-examine how you're building your classes, though.
There's likely a way you can
Thanks for your reply
Is the latter, can you explain how i can do it.
Thanks
--
https://mail.python.org/mailman/listinfo/python-list
ss the
member of one class from a method in another class?
If it's the former, you can ask PyQt to suppress a callback for a while.
Look up the blockSignals() method of QWidget.
If it's the latter, your best bet is to pass the object you want to
access into the other class somehow, perhap
at is in the class Form
>
> in wich way i can have access to the lineedit of class Form without event
> from class Cornice
>
> Many Thanks
Traditionally you'd have Cornice emit a Signal, which when you
__init__the Form you'd connect to the appropriate slot. I don'
Hello i need to this
class Form(QWidget, Ui_Form):
"""
Class documentation goes here.
"""
def __init__(self, parent=None):
"""
Constructor
@param parent reference to the parent widget
@type QWidget
"""
super(Form, self).__ini
trayIcon = SystemTrayIcon(QtGui.QIcon("virtualdvd.png"), w)
trayIcon.show()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
On 11/07/2016 10:49 AM, Anssi Saari wrote:
Demosthenes Koptsis writes:
Hello, i have a PyQT systray app with a menu and two actions.
Action1
sys.exit(app.exec_())
if __name__ == '__main__':
main()
On 11/07/2016 10:49 AM, Anssi Saari wrote:
Demosthenes Koptsis writes:
Hello, i have a PyQT systray app with a menu and two actions.
Action1 is Exit and action2 display a MessageBox with Hello World message.
When i click OK
Demosthenes Koptsis writes:
> Hello, i have a PyQT systray app with a menu and two actions.
>
> Action1 is Exit and action2 display a MessageBox with Hello World message.
>
> When i click OK to MessageBox app quits...why?
>
> http://pastebin.com/bVA49k1C
I haven't
Hello, i have a PyQT systray app with a menu and two actions.
Action1 is Exit and action2 display a MessageBox with Hello World message.
When i click OK to MessageBox app quits...why?
http://pastebin.com/bVA49k1C
--
https://mail.python.org/mailman/listinfo/python-list
's announce and atzero defined?
In your example code, "atzero" is implicitly defined as a signal in the
connect() call. Under the hood in Qt, signals are all dispatched by
strings when you emit() the signal. PyQt does allow you to define
signals in a more pythonic way using class
Mark Summerfield wrote:
>
> The ZeroSpinBox is a tiny example designed to show how the signal/slot
> mechanism works. It is just a QSpinBox with the addition of
> remembering how many times (all the) ZeroSpinBox(es) have had a 0
> value.
>
> Nowadays the connections would be made with a new impr
The ZeroSpinBox is a tiny example designed to show how the signal/slot
mechanism works. It is just a QSpinBox with the addition of remembering
how many times (all the) ZeroSpinBox(es) have had a 0 value.
Nowadays the connections would be made with a new improved syntax:
self.connect(self, SIGNAL
signalSignature -> functionName
-> instance.methodName
-> instance.slotSignature
If signalSignature is a C++ implemented thingy then we got to pass type
info as part of the mapping so "signalSignature(int, float, const char
*). PyQT signals are any type and a
PyQt v5.7 has been released. These are the Python bindings for the Qt
application toolkit and runs on Linux, OS X, Windows, iOS and Android.
Also released for the first time under the GPL are PyQtChart,
PyQtDataVisualization and PyQtPurchasing.
PyQtChart are the bindings for the Qt Charts
Am 27.06.2016 um 22:14 schrieb codewiz...@gmail.com:
On Sunday, June 26, 2016 at 5:45:18 PM UTC-4, Michael Torrie wrote:
Qt's a fantastic toolkit, and the most mature of any of them, and the
most portable, but man the bindings are not Pythonic at all.
Enaml feels pretty Pythonic to me:
https
On 06/30/2016 07:45 AM, tommy yama wrote:
> Hi all,
>
> Let me post my question here
> Has anyone installed and run any of sample chat apps in pyqt?
>
> Although I've tried to install and run sample scripts in pyqt once, the
> error said pyqt must be reinstalled.
If y
Hi all,
Let me post my question here
Has anyone installed and run any of sample chat apps in pyqt?
Although I've tried to install and run sample scripts in pyqt once, the
error said pyqt must be reinstalled.
Appreciate for your suggestions.
Thanks.
Tomo
--
https://mail.python.org/ma
On 06/27/2016 02:14 PM, codewiz...@gmail.com wrote:
> On Sunday, June 26, 2016 at 5:45:18 PM UTC-4, Michael Torrie wrote:
>>
>> Qt's a fantastic toolkit, and the most mature of any of them, and the
>> most portable, but man the bindings are not Pythonic at all.
>
> Enaml feels pretty Pythonic to m
On 06/26/2016 07:12 PM, MRAB wrote:
Is it a problem with Tk itself or with the Python wrapper? Would it be
better if we made a more Pythonic version of Tkinter, e.g. making
Frame.title a property?
I would say it's the wrapper.
I appreciate all the work being done on tkinter lately, but it's s
On Sunday, June 26, 2016 at 5:45:18 PM UTC-4, Michael Torrie wrote:
>
> Qt's a fantastic toolkit, and the most mature of any of them, and the
> most portable, but man the bindings are not Pythonic at all.
Enaml feels pretty Pythonic to me:
https://github.com/nucleic/enaml
--
https://mail.python
hon 2.
>
> I started with WxPython, but WxPython/Phoenix has been very slow to migrate
> to Python 3.
>
> Between the Py3 requirement and the need to work with all major OS's, I
> decided to learn PyQt and not GTK+.
>
> In my current day job, I'm developing
On 06/27/2016 12:44 AM, Lawrence D’Oliveiro wrote:
> On Monday, June 27, 2016 at 6:16:01 PM UTC+12, John Ladasky wrote:
>
>> Between the Py3 requirement and the need to work with all major OS's, I
>> decided to learn PyQt and not GTK+.
>
> GTK+ is available for P
are:
- Not very Pythonic.
- The event handling works very differently from other toolkits so it can be
quite tricky to learn and get right.
- The bindings are incomplete (e.g., http://bugs.python.org/issue3405)
And for me there are show-stopping weaknesses.
- Show stopper #1: there is no ni
PyGTK is obsolete and stopped at Python 2.7, while PyGObject for Windows is
several versions behind (currently 3.18 vs 3.21) and it doesn't support Python
3.5. Game over for GTK+.
--
https://mail.python.org/mailman/listinfo/python-list
On Monday, June 27, 2016 at 6:16:01 PM UTC+12, John Ladasky wrote:
> Between the Py3 requirement and the need to work with all major OS's, I
> decided to learn PyQt and not GTK+.
GTK+ is available for Python 3.
No doubt it will work on Windows as well, once Microsoft get
and the need to work with all major OS's, I decided
to learn PyQt and not GTK+.
In my current day job, I'm developing an application on a Linux box, but I'll
be handing it off to Windows users. My choice of PyQt turned out to be the
right one in that situation as well.
--
https://mail.python.org/mailman/listinfo/python-list
On 06/26/2016 07:05 PM, llanitedave wrote:
> Not sure that wxPython is really any different in that respect, and
> Tkinter doesn't feel Pythonic to me, either -- considering how it's
> Tk at heart. So what's the alternative? There really is no good
> Python-based GUI tool, and that's a shame.
Gu
rface
from GTK+ to Qt (PyQt4 for now as that's what I have installed). For
the most part it worked out pretty well. It's been a while since I used
PyQt or PySide, and I had forgotten what a horrid Python experience Qt
really is, at least in PyQt4. Maybe the bindings for Qt5 are better...
On Monday, June 27, 2016 at 6:35:31 AM UTC+5:30, llanitedave wrote:
> So what's the alternative? There really is no good Python-based GUI tool,
> and that's a shame.
The last time Ranting Rick made a big rant about this (saying wxpython should
replace tkinter in core CPython) everyone took note
Qt (PyQt4 for now as that's what I have installed). For
> the most part it worked out pretty well. It's been a while since I used
> PyQt or PySide, and I had forgotten what a horrid Python experience Qt
> really is, at least in PyQt4. Maybe the bindings for Qt5 are better..
retty well. It's been a while since I used
PyQt or PySide, and I had forgotten what a horrid Python experience Qt
really is, at least in PyQt4. Maybe the bindings for Qt5 are better...
I'll be working with them next as I convert my working code.
Qt's a fantastic toolkit, and the most m
This question was reasked and answered on StackOverflow:
http://stackoverflow.com/q/33869721/939986
--
https://mail.python.org/mailman/listinfo/python-list
Hello all fellow Python programmers!
I am using PyQt5 (5.5.1) with Python 3.4.0 (64-bit) on Windows 8.1
64-bit. I don't think this much data was needed. :P
I am having trouble restoring the position and size (geometry) of my
very simple PyQt app.
What I read online is that this is the de
PyQt5 v5.5 has been released and is available from
http://www.riverbankcomputing.com/software/pyqt/download5.
PyQt5 is a comprehensive set of bindings for v5 of The Qt Company's Qt
cross-platform application framework. It supports Python v3, v2.7 and
v2.6.
The highlights of this re
File
"/opt/local/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages/objc/_lazyimport.py",
line 82, in __init__
if nm.startswith(pfx):
AttributeError: 'NoneType' object has no attribute 'startswith'
> "/opt/local/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/importlib/_bootstrap.py",
> line 1532, in _find_and_load_unlocked
>
> loader.load_module(name)
>
> File
> "/opt/local/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages/CoreFoundation/__init__.py",
> line 20, in
>
> }, ())
>
> File
> "/opt/local/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages/objc/_lazyimport.py",
> line 82, in __init__
>
> if nm.startswith(pfx):
>
> AttributeError: 'NoneType' object has no attribute 'startswith'
>
> logout
>
>
> [Process completed]
>
>
>
> ___
> PyQt mailing listp...@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
https://mail.python.org/mailman/listinfo/python-list
PyQt5 v5.4 has been released and is available from
http://www.riverbankcomputing.com/software/pyqt/download5.
PyQt5 is a comprehensive set of bindings for v5 of Digia's Qt
cross-platform application framework. It supports Python v3, v2.7 and
v2.6.
The highlights of this release include su
On 12/18/2014 04:16 AM, Mark Summerfield wrote:
> It looks to me that what you are doing is sharing a single core
> between your GUI and your processing. Threading isn't usually a good
> approach to Python concurrency that is CPU-bound.
Except that his code was not CPU-bound to begin with. His re
ere's an
example of how to do this in chapter 4. The example uses Tkinter but I use
exactly the same approach in PyQt and PySide. This chapter also discusses many
issues related to Python concurrency.
--
https://mail.python.org/mailman/listinfo/python-list
Chris Angelico :
> And I don't remember how Java did things, except that I struggled to
> find basic fundamental primitives like semaphores, and had to use
> synchronized functions/objects instead.
Java now has a diverse set of synchornization facilities, but the
builtin object synchronization pr
On Fri, Dec 12, 2014 at 6:18 PM, Marko Rauhamaa wrote:
> GUI developers have been doing event-driven programming for decades.
> That's an excellent preparation for network programming as well.
> Unfortunately, the minds of a generation of programmers were
> contaminated by the thread craze of the
Michael Torrie :
> An asynchronous API lets you start long-running I/O calls and define a
> function that is automatically called upon completion. In other words
> it's event-driven. Qt may provide everything you need already in an
> asynchronous form.
GUI developers have been doing event-driven
On 12/11/2014 08:20 PM, iMath wrote:
> 在 2014年12月11日星期四UTC+8下午1时25分41秒,Michael Torrie写道:
>> On 12/10/2014 09:52 PM, iMath wrote:
> "when it comes to I/O and GUIs, asynchronous calls are always better than
> threads."
>
> I cannot grasp your meaning here, IMO, asynchronous calls are done by using
rameworks in Python to speak to that, though I
> did use Python-Twisted once... very powerful once you get your head
> wrapped around it.
>
> Look through the list archives because in the last 3 or 4 weeks I and
> another Python user talked proper thread use with PyQt or PySide, wi
because in the last 3 or 4 weeks I and
another Python user talked proper thread use with PyQt or PySide, with
code examples.
--
https://mail.python.org/mailman/listinfo/python-list
I think the user interface shouldn't be freezed when using
concurrent.futures.ThreadPoolExecutor here,as it executes asynchronously ,
but it doesn't meet my expectations,anyone can explain why ? any other
solutions here to not let user interface freezed?
code is here
http://stackoverflow.com/qu
On Saturday, October 4, 2014 3:35:33 PM UTC+5:30, Sachin Tiwari wrote:
> Hi
>
>
>
> I want to drag and drop push multiple push buttons but its working for only
> for last button. And I want to connect them by a wire.
>
>
>
> Please help.
>
>
>
> import sys
>
> from PyQt4 import
Hi
I want to drag and drop push multiple push buttons but its working for only for
last button. And I want to connect them by a wire.
Please help.
import sys
from PyQt4 import QtGui, QtCore
class Button(QtGui.QPushButton):
def mouseMoveEvent(self, e):
if e.buttons() != Q
On Thursday, October 2, 2014 3:19:22 PM UTC+5:30, Sachin Tiwari wrote:
> Hi
>
> I am learning pyqt, can any one help me to make instances of pushbutton
> wherever cursor will be clicked on canvas,like a circuit simulator where we
> add components on canvas just by left
On 02/10/2014 10:49, sachin.tiwar...@gmail.com wrote:
Hi
I am learning pyqt, can any one help me to make instances of pushbutton
wherever cursor will be clicked on canvas,like a circuit simulator where we
add components on canvas just by left or right click.
Thanks & Regards,
Sa
Hi
I am learning pyqt, can any one help me to make instances of pushbutton
wherever cursor will be clicked on canvas,like a circuit simulator where we
add components on canvas just by left or right click.
Thanks & Regards,
Sachin
--
https://mail.python.org/mailman/listinfo/python-list
ing module that would
> work nicely with a python3/pyqt4 application? Thanks.
>
> Tim
> ___
> PyQt mailing listp...@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt--
*Detlev Offenbach*
det...@die-of
在 2014年7月1日星期二UTC+7下午5时27分59秒,不坏阿峰写道:
> I want to modify the pyqt network ftp demo to include an upload function, but
> I am failing. Could someone can show me how to do this? I have tried to add
> this code, but it does not work.
>
> [Orignal
> demo]https://github.com
I want to modify the pyqt network ftp demo to include an upload function, but I
am failing. Could someone can show me how to do this? I have tried to add this
code, but it does not work.
[Orignal
demo]https://github.com/Werkov/PyQt4/blob/master/examples/network/ftp/ftp.py
at First, i add
PyQt5 v5.3 has been released and is available from
http://www.riverbankcomputing.com/software/pyqt/download5.
PyQt5 is a comprehensive set of bindings for v5 of Digia's Qt
cross-platform application framework. It supports Python v3, v2.7 and
v2.6.
The highlights of this release include su
PyQt5 v5.2 has been released and is available from
http://www.riverbankcomputing.com/software/pyqt/download5.
PyQt5 is a comprehensive set of bindings for v5 of Digia's Qt
cross-platform application framework. It supports Python v3, v2.7 and
v2.6.
The highlights of this release include
Dear all,
I need to a dialg such as aler in javascript in pyqt, my question is at:
http://stackoverflow.com/questions/18625406/a-dialog-for-throublshooting-instead-of-print-command-pyqt
Before answering, thank you...
Yours,
Mohsen
--
https://mail.python.org/mailman/listinfo/python-list
Dear all,
My question is at:
http://stackoverflow.com/questions/18564293/main-program-work-good-but-when-put-it-into-a-function-doesnt-work-pyqt
before answering, thank you
Yours,
mohsen
--
http://mail.python.org/mailman/listinfo/python-list
ou need to go to Form -> Preview... to see the actual preview.
>
> That said...
>
> 1.) You may want to ask your question on the PyQt mailing list. Though
> you are talking with the undisputed PyQt expert in Phil, there are more
> people on the other list who are familiar wit
7;s just the regular design view.
> (you can tell by the little dots in the background)
>
> You need to go to Form -> Preview... to see the actual preview.
>
> That said...
>
> 1.) You may want to ask your question on the PyQt mailing list. Though
> you are talking with t
preview.
>
> That said...
>
> 1.) You may want to ask your question on the PyQt mailing list. Though
> you are talking with the undisputed PyQt expert in Phil, there are more
> people on the other list who are familiar with PyQt and who may be willing
> to look more closely at
ell by the little dots in the background)
You need to go to Form -> Preview... to see the actual preview.
That said...
1.) You may want to ask your question on the PyQt mailing list. Though
you are talking with the undisputed PyQt expert in Phil, there are more
people on the other list who are f
ut how to import and use my form as designed by qt designer
>
> > and run through pyuic4 it doesn't seem to even notice my ui file...and
>
> > certainly isnt acting on it.
>
> >
>
>
>
> I don't know PyQT, so I've kept quiet so far...
&
sign it in QT Designer. It is designed
> just like I want it. The problem is, when I try to follow zetcode and other
> tutorials about how to import and use my form as designed by qt designer
> and run through pyuic4 it doesn't seem to even notice my ui file...and
> certainly isnt
Again thoughI'm finished with QT Designer. I have the finished product
I want exactly like I want it. But, as ive shown in the screenshots, I'm
doing exactly what ive seen in zetcode and other tutorials but It doesn't
seem to incorporate and act upon that ui file. The first thing you notice
is
doesn't seem to even notice my ui file...and
certainly isnt acting on it.
I posted my code above where I was trying anything just to get it to use
that ui I designed in qt designer.so far to no avail
-- Forwarded message --
From: "Michael Staggs"
Date: Aug 23, 20
On Fri, 23 Aug 2013 12:30:41 -0500, Michael Staggs
wrote:
> Right. I know that if I redesign it I have to run pyuic4 again and that
I
> shouldn't change that file...let qt designer do its job.
>
> But, that's exactly what I'm having the problem with...incorporating the
> file pyuic4 gave me... an
Right. I know that if I redesign it I have to run pyuic4 again and that I
shouldn't change that file...let qt designer do its job.
But, that's exactly what I'm having the problem with...incorporating the
file pyuic4 gave me... and why I posted here.
If you can point me towards something I need to
On Fri, 23 Aug 2013 08:00:29 -0500, Michael Staggs
wrote:
> I tried that this morning and it destroyed my form. So, right now,
that's
> probably not what I'm looking for.
>
> But, if you look at that picture, the app isn't resized to 800x600 like
it
> says in the ui file. The pixmaps aren't on th
I tried that this morning and it destroyed my form. So, right now, that's
probably not what I'm looking for.
But, if you look at that picture, the app isn't resized to 800x600 like it
says in the ui file. The pixmaps aren't on the buttons like I set them up
in the ui file. It's not using the ui fi
On Thu, 22 Aug 2013 18:08:14 -0700 (PDT), tausc...@gmail.com wrote:
> On Thursday, August 22, 2013 3:26:17 AM UTC-5, Phil Thompson wrote:
>
>> It looks like you aren't using a layout to arrange your widgets.
>>
>> Explicitly specifying geometries is a bad idea.
>>
>>
>>
>> Phil
>
> Thanks.QT
On Thursday, August 22, 2013 3:26:17 AM UTC-5, Phil Thompson wrote:
> It looks like you aren't using a layout to arrange your widgets.
>
> Explicitly specifying geometries is a bad idea.
>
>
>
> Phil
Thanks.QT Designer uses set geometry and I'm totally lost as how to implement
it. I've tried
1 - 100 of 775 matches
Mail list logo