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

2008-08-31 Thread Arne Babenhauserheide
Am Mittwoch 27 August 2008 18:38:05 schrieb Aaron J. Seigo: > this is a feature also provided by ECMA Script. the question is "why $LANG" > instead of just stickign to ECMA Script. > > the reasons i see are: > > * you know $LANG, or the project your are integrating with is written in > $LANG > > *

Re: plasma/kdelibs coding style and pointers

2008-08-31 Thread Jason Stubbs
2008/9/1 Gerhard Gappmeier <[EMAIL PROTECTED]> > Hi Jason, > > in my opinion this is correct > > and that's the way I'm coding :-) > > Putting the asterisk to the variable is the correct way > > to use because it doesn't lead to misunderstanding > > and it's the way the compiler interprets it >

How know if desktop effects (composition) is enabled?

2008-08-31 Thread Percy Camilo Triveño Aucahuasi
Hello there, I didn't know where send this post (kwin or plasma), but it seems that the plasma list is more active. My question is: Wich are the best way to know if the composition is enabled? I mean, how my application knows if the desktop effects are enabled? I was reading about KWin::Extension

Re: kickoff regressions

2008-08-31 Thread Marijn Kruisselbrink
On Monday 01 September 2008 01:49:33 Sebastian Kügler wrote: > On Sunday 31 August 2008 23:08:22 Davide Bettio wrote: > > Il Sunday 31 August 2008 19:06:01 Sebastian Kügler ha scritto: > > > But I need to show of my amateurish painting skills as well! I think it > > > would look much nicer if the k

Re: kickoff regressions

2008-08-31 Thread Sebastian Kügler
On Sunday 31 August 2008 23:08:22 Davide Bettio wrote: > Il Sunday 31 August 2008 19:06:01 Sebastian Kügler ha scritto: > > But I need to show of my amateurish painting skills as well! I think it > > would look much nicer if the kickoff PanelSvg didn't have the border > > towards the panel and the

Re: kickoff regressions

2008-08-31 Thread Davide Bettio
Hi, Il Sunday 31 August 2008 19:06:01 Sebastian Kügler ha scritto: > But I need to show of my amateurish painting skills as well! I think it > would look much nicer if the kickoff PanelSvg didn't have the border > towards the panel and the screen's edge. This would make the hitarea on the > left h

Re: kickoff regressions

2008-08-31 Thread Sebastian Kügler
On Sunday 31 August 2008 22:43:13 Davide Bettio wrote: > it is still a work in progress. > Anyway thanks sebas and notmart for your mails ;) Cool =) Thanks for replying :-) (we're all sooo friendly people!) -- sebas http://www.kde.org | http://vizZzion.org | GPG Key ID: 9119 0EF9 signatur

Re: Patch: New KRunner for places.

2008-08-31 Thread Sebastian Kügler
Hi David, welcome to Plasma development :) (Michael is correct, please use plasma-devel for plasma development issues, CC:) On Sunday 31 August 2008 20:03:09 David Edmundson wrote: > I've written a new KRunner for KDE. It looks at the bookmarks list for > dolphin, the folders in the Places panel

Re: kickoff regressions

2008-08-31 Thread Davide Bettio
Hi, it is still a work in progress. Anyway thanks sebas and notmart for your mails ;) Bye, Davide Bettio. ___ Plasma-devel mailing list Plasma-devel@kde.org https://mail.kde.org/mailman/listinfo/plasma-devel

Re: kickoff regressions

2008-08-31 Thread Sebastian Kügler
On Sunday 31 August 2008 22:40:52 Ambroz Bizjak wrote: > Marco Martin wrote: > > -right mouse click on items seems to sometimes work but usually not > > I've noticed that right click incorrectly identifies the item below the > pointer. It opens a context menu referring to the item about 100 pixels

Re: kickoff regressions

2008-08-31 Thread Ambroz Bizjak
Marco Martin wrote: > -right mouse click on items seems to sometimes work but usually not I've noticed that right click incorrectly identifies the item below the pointer. It opens a context menu referring to the item about 100 pixels below the pointer (if there is one), so it's not converting some

Re: kickoff regressions

2008-08-31 Thread Marco Martin
On Sunday 31 August 2008, Sebastian Kügler wrote: > After the restyling of kickoff some weeks ago, we've got two regressions > left: > > - going back in categories doesn't take the left screen edge into account, > breaking Fitt's Law (it does get highlighted, but clicks don't seem to > make > > -

Re: plasma/kdelibs coding style and pointers

2008-08-31 Thread Gerhard Gappmeier
Hi Jason, in my opinion this is correct and that's the way I'm coding :-) Putting the asterisk to the variable is the correct way to use because it doesn't lead to misunderstanding and it's the way the compiler interprets it e.g. Wrong: QString* pVar1, pVar2; // second var is no pointer from th

kickoff regressions

2008-08-31 Thread Sebastian Kügler
After the restyling of kickoff some weeks ago, we've got two regressions left: - going back in categories doesn't take the left screen edge into account, breaking Fitt's Law (it does get highlighted, but clicks don't seem to make - you cannot resize kickoff anymore Davide, you've been work

plasma/kdelibs coding style and pointers

2008-08-31 Thread Jason Stubbs
The kdelibs coding style on techbase[1] only says "For pointers or references, use a single space before '*' or '&', but not after". When looking through applet.h and applet.cpp, I see this rule being broken in some circumstances. Am I right to believe that the first in each of the following gr