Re: Two patches for notes plasmoid

2008-08-27 Thread Aaron J. Seigo
On Sunday 24 August 2008, Björn Ruberg wrote: > Hello, > > for getting into KDE development I implemented two features that where on > the wishlist in bugzilla for the notes plasmoid. > See bugs 156312 and 168160 i committed the patches. they didn't really apply cleanly to trunk/ anymore, but no

Re: Review Request: Auto resize of fileWatcher plasmoid

2008-08-27 Thread Aaron Seigo
--- This is an automatically generated e-mail. To reply, visit: http://reviewboard.vidsolbach.de/r/163/#review142 --- there are a few issues to do with setting the size in init() for i

Review Request: Auto resize of fileWatcher plasmoid

2008-08-27 Thread michal seben
--- This is an automatically generated e-mail. To reply, visit: http://reviewboard.vidsolbach.de/r/163/ --- Review request for Plasma. Summary --- I made patch which allow automa

Re: Introducing myself (and maybe the team as well)

2008-08-27 Thread Aaron J. Seigo
hi Marcelo ... On Wednesday 27 August 2008, marcelo oliveira wrote: > Cheers from Brazil, what can i say other than, "welcome to the party!" with the plasma-mid project, we are right now working on a fingerable interface desgin. currently the rought idea is this: the main interface is broken i

Re: Dataengnies

2008-08-27 Thread Petri Damstén
On Wednesday 27 August 2008 21:24:48 Aaron J. Seigo wrote: > ah, you're connecting using a timeout (which is a bit odd in this case, > really; why would you want a regularly timed update from a command vs > getting it's output when it arrives?) I'm not sure if I understood this... Purpose of the e

Re: playground/base/plasma/applets

2008-08-27 Thread Sebastian Kügler
On Wednesday 27 August 2008 19:37:59 Aaron J. Seigo wrote: > On Wednesday 27 August 2008, Sebastian Kügler wrote: > > Thanks for saving me some hair :-) > > np. > > i've also noticed that the applet is brittle in that if it doesn't get a > valid QGraphicsWidget from Task::widget() things bre

Introducing myself (and maybe the team as well)

2008-08-27 Thread marcelo oliveira
Hello everyone, I work with MorpheuZ and the others in INdT here in Brazil, ( where I am the lead designer and product owner) and after a long time contributing to the company's projects in the UX / UI / areas, finally I see something that really interests me going on (because of QT entering the b

Re: Dataengnies

2008-08-27 Thread Aaron J. Seigo
On Wednesday 27 August 2008, Petri Damstén wrote: > On Wednesday 27 August 2008 20:04:11 Aaron J. Seigo wrote: > All three ways works the same way. Debug output in previous email shows > that it goes like this: > checkForUpdate() -> relay->checkQueueing() -> where m_queued == false and > signal wo

Re: playground/base/plasma/applets

2008-08-27 Thread Aaron J. Seigo
On Wednesday 27 August 2008, Sebastian Kügler wrote: > Thanks for saving me some hair :-) np. i've also noticed that the applet is brittle in that if it doesn't get a valid QGraphicsWidget from Task::widget() things break horribly and crash. after you've done the renaming, i think i'll ta

Re: Dataengnies

2008-08-27 Thread Petri Damstén
On Wednesday 27 August 2008 20:04:11 Aaron J. Seigo wrote: > actually, scratch that. checkForUpdate is better than doing it manually; > the issue is *probably* that the signal/slot connections haven't been made > yet. > > it's not safe to start an update from the constructor due to this. so . >

Re: playground/base/plasma/applets

2008-08-27 Thread Sebastian Kügler
On Wednesday 27 August 2008 19:13:10 Aaron J. Seigo wrote: > On Wednesday 27 August 2008, Sebastian Kügler wrote: > >    Can someone help me out and have a look why the signal is never > >    received (and keep me from banging my head against a wall)? > > the applets are created in MID::Protocol::

Re: [patch] PlasmaApp::adjustSize with multiple monitors

2008-08-27 Thread Thomas Fjellstrom
On Wednesday 27 August 2008, Aike J Sommer wrote: > Am Dienstag, 26. August 2008 07:00:35 schrieb Thomas Fjellstrom: > > On Monday 25 August 2008, Guillaume Pothier wrote: > > > Thanks for the info Aike, I look forward to seeing your work land in > > > trunk! When would that be? > > > g > > > > I a

Re: playground/base/plasma/applets

2008-08-27 Thread Aaron J. Seigo
On Wednesday 27 August 2008, Sebastian Kügler wrote: >Can someone help me out and have a look why the signal is never >received (and keep me from banging my head against a wall)? the applets are created in MID::Protocol::Protocol (the constructor), but the signal connection doesn't happen

Re: Dataengnies

2008-08-27 Thread Aaron J. Seigo
On Wednesday 27 August 2008, Aaron J. Seigo wrote: > On Wednesday 27 August 2008, Petri Damstén wrote: > > On Tuesday 26 August 2008 23:38:47 Aaron J. Seigo wrote: > > > and yes, if the engine is doing any sort of expensive work then the > > > code needs to protect against it being called while the

playground/base/plasma/applets

2008-08-27 Thread Sebastian Kügler
SVN commit 853392 by sebas: (As Jason is moving houses, I'll use this opportunity to sneak my code in) Beginnings of a applets-in-the-systray. This commit adds a new protocol (Systemtray::MID::Protocol) and a corresponding subclass to Systemtray::Task (which would be Systemtray::

Re: Question about C++ vs. Python/Ruby/JS plasmoids

2008-08-27 Thread Aaron J. Seigo
On Wednesday 27 August 2008, Paul B wrote: > On Wednesday 27 August 2008 07:07:50 Arne Babenhauserheide wrote: > > I have one real-world benefit: Because I can (as of now) only write > > meaningful stuff in any workable time-frame using Python. > > Main benefit I can think of is that when the plasm

Re: Dataengnies

2008-08-27 Thread Alex Merry
On Wednesday 27 August 2008 17:22:36 Aaron J. Seigo wrote: > On Wednesday 27 August 2008, Petri Damstén wrote: > > This was new to me :-) Converted ExecutableEngine to use custom Container > > (attached). One problem. exec is called in constructor to start process > > for the first time. checkForUp

Re: Dataengnies

2008-08-27 Thread Aaron J. Seigo
On Wednesday 27 August 2008, Petri Damstén wrote: > On Tuesday 26 August 2008 23:38:47 Aaron J. Seigo wrote: > > and yes, if the engine is doing any sort of expensive work then the code > > needs to protect against it being called while the async job is in > > progreess. > > Yes, that's true. > > >

Re: Question about C++ vs. Python/Ruby/JS plasmoids

2008-08-27 Thread Alex Merry
On Wednesday 27 August 2008 16:26:08 Paul B wrote: > On Wednesday 27 August 2008 07:07:50 Arne Babenhauserheide wrote: > > I have one real-world benefit: Because I can (as of now) only write > > meaningful stuff in any workable time-frame using Python. > > Main benefit I can think of is that when t

Re: Question about C++ vs. Python/Ruby/JS plasmoids

2008-08-27 Thread Paul B
On Wednesday 27 August 2008 07:07:50 Arne Babenhauserheide wrote: > I have one real-world benefit: Because I can (as of now) only write > meaningful stuff in any workable time-frame using Python. Main benefit I can think of is that when the plasmoids are scripted and don't need to be compiled you

Re: [patch] PlasmaApp::adjustSize with multiple monitors

2008-08-27 Thread Aike J Sommer
Am Dienstag, 26. August 2008 07:00:35 schrieb Thomas Fjellstrom: > On Monday 25 August 2008, Guillaume Pothier wrote: > > Thanks for the info Aike, I look forward to seeing your work land in > > trunk! When would that be? > > g > > I as well, I have a dual screen XRandR setup, and have also been wo

Re: [patch] PlasmaApp::adjustSize with multiple monitors

2008-08-27 Thread Aike J Sommer
Am Montag, 25. August 2008 19:58:22 schrieb Guillaume Pothier: > Thanks for the info Aike, I look forward to seeing your work land in > trunk! When would that be? > g Well... I dont really know!! ;-) I still have some things to work on, but i hope we can get started soon!! I think i'll fix up s

Re: Dataengnies

2008-08-27 Thread Petri Damstén
On Tuesday 26 August 2008 23:38:47 Aaron J. Seigo wrote: > and yes, if the engine is doing any sort of expensive work then the code > needs to protect against it being called while the async job is in > progreess. Yes, that's true. > doing async calls inside the DataEngine subclas itself is reall

Re: Question about C++ vs. Python/Ruby/JS plasmoids

2008-08-27 Thread Riccardo Iaconelli
On Tuesday 26 August 2008 23:56:14 Aaron J. Seigo wrote: > C++ can crash the > application And you must be really good to code a plasmoid so buggy that causes unexpected crashes once shipped. ;-P Bye, -Riccardo -- GPG key: 3D0F6376 When encrypting, please encrypt also for this subkey: 9EBD7FE1

Re: Review Request: [Analog Clock] Show Timezone String

2008-08-27 Thread Alessandro Diaferia
--- This is an automatically generated e-mail. To reply, visit: http://reviewboard.vidsolbach.de/r/148/ --- (Updated 2008-08-27 01:50:16.108936) Review request for Plasma. Summary -

Review Request: [Analog Clock] Show Timezone String

2008-08-27 Thread Alessandro Diaferia
--- This is an automatically generated e-mail. To reply, visit: http://reviewboard.vidsolbach.de/r/148/ --- Review request for Plasma. Summary --- A quick patch to allow showing

Re: Question about C++ vs. Python/Ruby/JS plasmoids

2008-08-27 Thread Aaron J. Seigo
On Wednesday 27 August 2008, Arne Babenhauserheide wrote: > Am Dienstag 26 August 2008 23:02:02 schrieb Aaron J. Seigo: > > other than "because i prefer to write in python" i'm not overly sure what > > real world compelling benefits there are to other languages. i think it's > > great they are ther