Re: [PyQt] [PyKDE] kioslave example?

2009-04-03 Thread David Boddie
On Fri Apr 3 08:27:54 BST 2009, Lukas Hetzenecker wrote: [Writing kioslaves] > Are there any simple examples for a similar task? > > I only found the API reference for PyKDE4.kio.KIO.Slave, but that doesn't > really help me. I wrote this tutorial for KDE 3 some time ago: http://www.diotavelli

Re: [PyQt] Search for a simple example using OpenGL

2009-04-03 Thread Michał Andrzej Woźniak
Dnia piątek 03 kwiecień 2009, projet...@club-internet.fr napisał(a): > > > > > Flashmail > > BODY, TABLE, TR, TD, P {margin:0;padding:0;} > BODY {background:#FF;} > > > > Hello, I would like to draw for example a 3D triangle in an > OpneGL.Best regards. Please be so kind as to NOT use H

[PyQt] Search for a simple example using OpenGL

2009-04-03 Thread projetmbc
Title: Flashmail Hello, I would like to draw for example a 3D triangle in an OpneGL.Best regards. ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] selection behavior of a TableView

2009-04-03 Thread Andreas Pakulat
On 03.04.09 09:36:31, Michael Wyss wrote: > Greetings > I am currently working on a Model-View-Delegate which works fine so far > but I'm not happy with the standard selection behavior and I can't find > a way to modify it. > I'm using: > View: QTableView > Model QAbstractTableModel > Delegate:

Re: [PyQt] PyQt and Acrobat

2009-04-03 Thread Roberto Alsina
NARCISO, Rui writes: Hi all, I would like to be able to visualise a pdf document in a widget so as then to add a couple of buttons for different actions and to have the widget integrate into my Gui environment. How to go about doing this ? Does anyone already have something done ? Thanks

[PyQt] PyQt and Acrobat

2009-04-03 Thread NARCISO, Rui
Hi all, I would like to be able to visualise a pdf document in a widget so as then to add a couple of buttons for different actions and to have the widget integrate into my Gui environment. How to go about doing this ? Does anyone already have something done ? Thanks Rui The information in

[PyQt] selection behavior of a TableView

2009-04-03 Thread Michael Wyss
Greetings I am currently working on a Model-View-Delegate which works fine so far but I'm not happy with the standard selection behavior and I can't find a way to modify it. I'm using: View: QTableView Model QAbstractTableModel Delegate: QItemDelegate What I want is to change the Shift selecti

[PyQt] [PyKDE] kioslave example?

2009-04-03 Thread Lukas Hetzenecker
Hello, i wanted to make a simple kioslave for the following disadvantage: I have to directorys /files/backuped /files/notbackuped And now i want to make a kioslave myfiles:// that displays a folder which consists of the content of both /files/ directories. Writing support for the slave isn't n

Re: [PyQt] lambda slot problem

2009-04-03 Thread Linos
Ok, reading about the scoping problem with lambda i now understand the problem, activated it is the bool emitted from the clicked signal so i have changed it to: lambda activated, m=msg: self.changeStatus(m, activated) and now works correctly, thanks Brian. If i have understand the way that lam