Re: Plasma & Python in KF5; was Re: Having an issue with the minimum size of Plasma.WebView

2013-01-17 Thread Sebastian Kügler
On Wednesday, January 16, 2013 20:48:35 Simon Edwards wrote: > On 01/16/2013 02:44 PM, Marco Martin wrote: > > On Wednesday 16 January 2013, Sebastian Kügler wrote: > >> So you'd write a set of QObject deriven classes in Python (you can use > >> various existing third party libraries for that, if y

Re: Plasma & Python in KF5; was Re: Having an issue with the minimum size of Plasma.WebView

2013-01-16 Thread Simon Edwards
On 01/16/2013 02:44 PM, Marco Martin wrote: On Wednesday 16 January 2013, Sebastian Kügler wrote: So you'd write a set of QObject deriven classes in Python (you can use various existing third party libraries for that, if you wish so), but they don't have any UI in them, they just offer non-visua

Re: Plasma & Python in KF5; was Re: Having an issue with the minimum size of Plasma.WebView

2013-01-16 Thread Sebastian Kügler
On Wednesday, January 16, 2013 14:52:41 Luca Beltrame wrote: > In data mercoledì 16 gennaio 2013 14:44:24, Marco Martin ha scritto: > > slots defined in those python classes would not visible from qml, due to > > how it internally works (they are not in the static metadata object that > > can't be

Re: Plasma & Python in KF5; was Re: Having an issue with the minimum size of Plasma.WebView

2013-01-16 Thread Marco Martin
On Wednesday 16 January 2013, Sebastian Kügler wrote: > On Wednesday, January 16, 2013 15:29:08 Aaron J. Seigo wrote: > > On Wednesday, January 16, 2013 14:38:28 Sebastian Kügler wrote: > > > So you'd write a set of QObject deriven classes in Python (you can use > > > > .. > > > > > These python

Re: Plasma & Python in KF5; was Re: Having an issue with the minimum size of Plasma.WebView

2013-01-16 Thread Sebastian Kügler
On Wednesday, January 16, 2013 15:29:08 Aaron J. Seigo wrote: > On Wednesday, January 16, 2013 14:38:28 Sebastian Kügler wrote: > > So you'd write a set of QObject deriven classes in Python (you can use > > .. > > > These python extensions would then be imported into the context of the > > (QML)

Re: Plasma & Python in KF5; was Re: Having an issue with the minimum size of Plasma.WebView

2013-01-16 Thread Aaron J. Seigo
On Wednesday, January 16, 2013 14:38:28 Sebastian Kügler wrote: > So you'd write a set of QObject deriven classes in Python (you can use .. > These python extensions would then be imported into the context of the (QML) this should be done via qml imports or libplasma plugins. is there any case whe

Re: Plasma & Python in KF5; was Re: Having an issue with the minimum size of Plasma.WebView

2013-01-16 Thread Luca Beltrame
In data mercoledì 16 gennaio 2013 14:44:24, Marco Martin ha scritto: > slots defined in those python classes would not visible from qml, due to how > it internally works (they are not in the static metadata object that can't > be touched at runtime, at least not outside of Qt) You are correct (se

Re: Plasma & Python in KF5; was Re: Having an issue with the minimum size of Plasma.WebView

2013-01-16 Thread Marco Martin
On Wednesday 16 January 2013, Sebastian Kügler wrote: > On Wednesday, January 16, 2013 11:41:05 Aaron J. Seigo wrote: > > the possibility exists for us to support Applets which are written in > > python but which use QML for the user visible parts. you'd still need to > > write and ship QML, but m

Plasma & Python in KF5; was Re: Having an issue with the minimum size of Plasma.WebView

2013-01-16 Thread Sebastian Kügler
On Wednesday, January 16, 2013 11:41:05 Aaron J. Seigo wrote: > the possibility exists for us to support Applets which are written in > python but which use QML for the user visible parts. you'd still need to > write and ship QML, but maybe you could do some behind-the-scenes parts in > python. th