t it hides the windows bar.
>
> thx,
>
> Fab
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQ
msecs = 0
> QThread.msleep(msecs)
> aSplashScreen = TeSplashScreen(self.sPixmap)
> aSplashScreen.show
> for i in range(len(messages)):
> aSplashScreen.showMessage(messages[i], alignment, color)
> SleeperThread.msleep(delay)
>
>
>
>
> -
>
> Best Regards
> Muhammad Bashir Al-Noimi
> My Blog: http://mbnoimi.net
>
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
nt, const QColor& color)
> {
> class SleeperThread : public QThread
> {
> public:
> static void msleep(unsigned long msecs) {QThread::msleep(msecs);}
> };
>
> TeSplashScreen* aSplashScreen = new TeSplashScreen(sPixmap);
> aSplashS
SIGNAL('clicked()'),
>> > partial(calluser, user_Handle))
>> >
>> > Thank You
>> >
>> > Ahmed
>> >
>> > ___
>> > PyQt mailing listPyQt@riverbankcomputing.com
>> > http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>> >
>>
>
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
ion with:
>
>self.lt.finished.connect(self.**accept)
>
> (obviously, i haven't tested this at all, but hopefully it will give you
> the general idea).
>
>
> __**_
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.r
p32145442.html
> Sent from the PyQt mailing list archive at Nabble.com.
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
PyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
Indeed, IIRC, "StackedWidget" had to be renamed to "QStackedWidget"..
Wkr,
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
archive at Nabble.com.
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
meone confirm this behavior? Thanks.
>
> Vicent
>
> --
> Share what you know, learn what you don't.
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.river
a QFont object to use with QLabel.setFont()?
>
> Kind regards
> Mikael
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
_
add other imput
> check in code to avoid that.
> Im look for in QDoubleValidate documentation any reference to milliar comma
> or similar, but i dont find nothing to solve it, is this a bug or is normal?
>
> ___
> PyQt mailing list Py
w.
>
> Thanks a lot for your help!
> Michael
>
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
__
abble.com.
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>> PyQt mailing list
>> PyQt@riverbankcomputing.com
>> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>>
>> End of PyQt Digest, Vol 76, Issue 18
>>
>>
>
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
_
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
parent_view_item = parent_view_item.parent
>if grandparent_view_item is None:
>return QtCore.QModelIndex()
>grandparent_view_item
>row = grandparent_view_item.children.index(parent_view_item)
>assert row != -1
>return self.createIndex(row, 0, parent_view_item)
>
>def view_item_from_index(self, index):
>return (index.internalPointer()
>if index.isValid() else self.aux_root_view_item)
>
>
> if __name__ == "__main__":
>
>run_time_item = RuntimeItem("Test", "test_12", "Test Item")
>view_factory = DummieViewItemFactory(run_time_item, max_items=5000)
>active_colums = ActiveColumns(["name", "ident", "item_type"])
>
>app = QtGui.QApplication(sys.argv)
>tree_view = TreeView(view_factory.aux_root_view_item, active_colums)
>app.setApplicationName("IPDM")
>tree_view.show()
>app.exec_()
>
>
>
>
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
f
this problem).
Is this normal behavior? How do I disable this vertical line to be shown?
--
Nick Gaens
<>___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
__
>> PyQt mailing listPyQt@riverbankcomputing.com
>> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>>
>
>
> _______
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
go Léveillé
> hu...@fastmail.net
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
active. I'd like to
> know is there any way to do stuff like that faster? Or calculating a million
> pixels in PyQt is just a bad idea? Any advice should be appreciated.
>
> Thanks,
>
> zhang
>
> ___
> PyQt mailing list
You might want to set a QStackedWidget as your centralWidget and toggle the
content of that first one?
On Wed, Aug 11, 2010 at 6:51 PM, Danny Shevitz wrote:
> ilman/listinfo/pyqt<http://www.riverbankcomputing.com/mailman/listinfo/pyqt>
--
N
doing that.
> Any ideas.
>
> Thanks in advance.
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
P
t;
>
> Tnanks
>
> Frans.
>
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riv
t; Csaba
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
bage collection.
>
> Armando
>
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
Qt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
1, twi)
self.tw.horizontalHeader().setVisible(True) # Nope, this doesn't work
> either
_twi = self.tw.horizontalHeaderItem(1)
_twi.setText("b") # Nope, doesn't get updated by this either..
What am I doing wrong? How much more combinations of horizontalHeader-stuff
do
y 10 seconds FOREVER....
>
> Thank you very much and sorry for my bad english
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
> --
> Passion is my style
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
> Sebastian
>
>
>
>
> --
> Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
happen?
>
> Thanks
>
> Sebastian
>
>
> --
> Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http:
ineer
> Zindagi Games
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
, 2010 at 4:24 PM, Jothybasu K Selvaraj > wrote:
>
>> Hi all,
>>
>> How can I disable the delete button on a form?
>>
>> Any hints?
>>
>> Thanks,
>>
>> Jothy
>>
>
>
> ___
> PyQ
ise(). but it's alredy a keyword in python!! how to
> use it?
>
>
> On Tue, Apr 13, 2010 at 9:36 PM, Anshul Jain wrote:
>
>> Can you just give me an example on how to use this?
>> Thanks for your reply.
>>
>>
>>
>>
>> On Tue, Apr 13, 2010 at
should i do.
>
>
> Regards
> Anshul
>
>
>
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
- --
- -- Nick Gaens
-BEGIN PGP SIGNATURE-
Ver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Why do you copy construct blobField on the line where you bindValue()
it? I assume it's verbose and can be omitted..
On 29/03/2010 15:36, IloChab wrote:
> 2010/3/28 IloChab :
>> I tried in this way:
>>
>> blobField = QtCore.QVariant ( QtCore.QByteArra
sh all of you a good day!
> --
> Sicherer, schneller und einfacher. Die aktuellen Internet-Browser -
> jetzt kostenlos herunterladen! http://portal.gmx.net/de/go/chbrowser
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www
is there any python example?
> The example that is in *Rapid GUI Programming With Python and Qt* is only
> for stackedwidgets.
>
> Thank you.
>
>
>
> On 19 March 2010 10:38, Nick Gaens wrote:
>
>> Take a look at a QStackedLayout.. You can add multiple widgets, each
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
gt;
>> Can you show a small piece of code (small stylesheet and the way you apply
>> it) please?
>>
>> On Tue, Mar 9, 2010 at 9:05 PM, Jebagnana Das > >wrote:
>>
>> > Hello all,
>> >
>> > If i apply a proper
; PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
_
>> PyQt mailing listPyQt@riverbankcomputing.com
>> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>>
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomput
nce.
>
> On Thu, Feb 25, 2010 at 3:00 PM, Nick Gaens wrote:
> > I'm guessing it has to do with the .png file not being found, but without
> > some example code, only supernatural powered humans can help you :-).
> >
> > On Wed, Feb 24, 2010 at 4:11 PM, bar tomas
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
om
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
> >
>
> --
> View this message in context:
> http://old.nabble.com/QGraphicsPixmapItem-not-showing-set-pixmap-tp27229352p27358788.html
> Sent from the PyQt mailing list archive at Nabble.com.
>
> ___
> PyQt mailing listPyQt@riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
--
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
On the page you link to, there is this link:
http://riverbankcomputing.com/static/Downloads/PyQt4/PyQt-Py2.6-gpl-4.7-1.exe
Isn't this what you are looking for?
On 21/01/2010 1:04, Chris Bergstresser wrote:
On Wed, Jan 20, 2010 at 5:57 PM, Demetrius Cassidy
wrote:
Er, you could compile i
Did you try QFile.exists('/.../.../pic1.png') ?
I'm guessing you are trying to do:
pic = QPixmap('../../pic1.png') <- note the change in the path to the
image file.
Nick
On 20/01/2010 22:21, dizou wrote:
The PNG does exist. I did DisplayItem.ensureVisible(10, 10, 10, 10) and
DisplayItem.en
Aron Bierbaum wrote:
I have been trying to use the QGraphicsGridLayout but I am running
into problems when I try to have a QGraphicsWidget span multiple
columns. The basic problem is that if I try to span a large widget in
the second row under four smaller widgets in the top row, the widgets
in t
Take a look at style sheets.
On 8-dec-2009, at 09:44, Nadav Chernin wrote:
Hi, i'm new for PyQt
I use TextEdit widget, and i want that it's background color will
black (for example)
I tried to use TextEdit.setTextBackgroundColor but only background
of text painted by black color.
How
g()) # crashes here already..
if myTcpSocket.isWritable():
print "writing data to ", str(socket.peerAddress().toString())
myTcpSocket.write(block)
-----
How on earth can this be?
--
Nick Gaens
___
PyQt maili
dizou schreef:
What does that mean?
One thing I thought I could do is have my TreeWidget have a GetSelectedItem
function. Then in my Main Window, when I click the button, it calls a
function that will call the GetSelectedItem function, then emit a signal
with the return value as a parameter
Hans-Peter Jansen schreef:
On Monday 23 November 2009, 15:19:06 Nick Gaens wrote:
Hans-Peter Jansen schreef:
[...]
def __init__(self):
self.server = QtNetwork.QTcpServer(self)
self.server.serverPort = 5
Hans-Peter Jansen schreef:
On Monday 23 November 2009, 13:27:52 Nick Gaens wrote:
Nick Gaens schreef:
Phil Thompson schreef:
On Sat, 21 Nov 2009 17:19:00 +0100, Nick Gaens
wrote:
Hello all,
I'm trying to get two clients to speak to each other, using an instanc
Nick Gaens schreef:
Phil Thompson schreef:
On Sat, 21 Nov 2009 17:19:00 +0100, Nick Gaens wrote:
Hello all,
I'm trying to get two clients to speak to each other, using an instance
of
QtNetwork.QTcpSocket for each client.
The client
Phil Thompson schreef:
On Sat, 21 Nov 2009 17:19:00 +0100, Nick Gaens wrote:
Hello all,
I'm trying to get two clients to speak to each other, using an instance
of
QtNetwork.QTcpSocket for each client.
The clients are on different computers with
e socket state remains
"UnconnectedState"..
What am I doing wrong here?
Wkr,
Nick Gaens
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt
59 matches
Mail list logo