Re: irc meeting tomorrow @17:00 UTC

2010-09-12 Thread Marco Martin
On 9/12/10, Aaron J. Seigo ase...@kde.org wrote:


  argh, i'm back home only now after a week of littgled tgo no interwebs

  and i seen the thread just now.

  i'll see what i can do, it's quite unlikely i will be able to :/


 well, we can push it off until next weekend if that's better for you?


probably, but this date was good to many people, and my fault i
couldn't read it.
post the log and i'll argue with it by email ok? :p
the things i wanted to talk about arre the usual btw.
so qml bindings in 4.6 yes/no
status of activities in 4.6: a lot of work still seems to be done even
if is not my area i can give an help

at this pointg everything else i think important for 4.6 is fixes...

that's basically it

Cheers,
Marco Martin
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Launchersupport for the tasks-applet

2010-09-12 Thread Anton Kreuzkamp
Just a few weeks ago, I committed a patch for libtaskmanager, that adds 
support for Windows7 like launchers. Now of course the applets need to 
implement it, too.
So my question is: Is anyone here interested in implementing it or maybe 
already doing so?
If not I have to find the time to do it. (Yeah, I don't like to do it, as my 
todo-list is already too long)

best regards, Anton
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


export the lib behind the widget explorer

2010-09-12 Thread Giulio Camuffo
Hi,

The widget explorer and the activity switcher are sharing a lib providing some 
convenience classes that allows them to easily share the appearance.
This lib is located in kdebase/workspace/libs/plasmagenericshell and it is not 
exported.
Since I'd like to provide a similar widget to add groups in my groupingdesktop 
i'm asking if it could be exported, maybe without having to maintain binary 
compatibility.
If it needs to be cleaned a bit i could do the work.

Giulio
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: configChanged coverage for 4.6

2010-09-12 Thread Marco Martin
On Saturday 04 September 2010, Aaron J. Seigo wrote:
 hi all...
 
 as you can see here:
 
   http://community.kde.org/Plasma/Tasks#Plasmoids
 
checked/fixed all in netbook, desktop and mobile shells

Cheers,
Marco Martin
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Launchersupport for the tasks-applet

2010-09-12 Thread Aaron J. Seigo
On Sunday, September 12, 2010, Anton Kreuzkamp wrote:
 So my question is: Is anyone here interested in implementing it or maybe
 already doing so?

i haven't started doing so, and i don't know of anyone who has.

-- 
Aaron J. Seigo
humru othro a kohnu se
GPG Fingerprint: 8B8B 2209 0C6F 7C47 B1EA  EE75 D6B7 2EB1 A7F1 DB43

KDE core developer sponsored by Qt Development Frameworks


signature.asc
Description: This is a digitally signed message part.
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: export the lib behind the widget explorer

2010-09-12 Thread Giulio Camuffo
I've hacked a bit with it and i saw that there are actually only two classes 
needed to make an interface like the widget explorer: AbstractIcon and 
AbstractIconList.
Can we make those two public?

Giulio
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: multi-screen management

2010-09-12 Thread Chani

 
 ...btw, anyone feel like updating the wiki page (mentioned at the start of
 this thread) with the conclusions we came to? :)

done.  http://community.kde.org/Plasma/Multiscreen
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Review Request: Add an unit test for Plasma::ConfigLoader

2010-09-12 Thread Martin Blumenstingl

---
This is an automatically generated e-mail. To reply, visit:
http://svn.reviewboard.kde.org/r/5329/
---

Review request for Plasma.


Summary
---

Currently I'm changing some of the code in Plasma::ConfigLoader.
I want to make sure that I don't break that much ;)

Thus I wrote a unit test for the config loader.
Currently all it does it testing if the config loader can parse the 
default-values correctly.
One test for each (data-)type which ConfigLoader can handle.

Unfortunately ConfigLoaderTest::intListDefaultValue does not work yet 
(everything else works)


Diffs
-

  /trunk/KDE/kdelibs/plasma/tests/configloadertest.xml PRE-CREATION 
  /trunk/KDE/kdelibs/plasma/tests/CMakeLists.txt 1174512 
  /trunk/KDE/kdelibs/plasma/tests/configloadertest.h PRE-CREATION 
  /trunk/KDE/kdelibs/plasma/tests/configloadertest.cpp PRE-CREATION 

Diff: http://svn.reviewboard.kde.org/r/5329/diff


Testing
---

I ran the tests on my box.
20/21 were successful.

The only one failing is: ConfigLoaderTest::intListDefaultValue
(and I need some help there)


Thanks,

Martin

___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: Review Request: Add an unit test for Plasma::ConfigLoader

2010-09-12 Thread Martin Blumenstingl

---
This is an automatically generated e-mail. To reply, visit:
http://svn.reviewboard.kde.org/r/5329/#review7566
---



/trunk/KDE/kdelibs/plasma/tests/configloadertest.cpp
http://svn.reviewboard.kde.org/r/5329/#comment7726

I am not sure why, but actual is always empty.
I can't figure out the reason, because building the list is OK in 
ConfigLoader.

I can access the list when I use it in a javascript plasmoid - so there may 
be something wrong with the code in my test.


- Martin


On 2010-09-12 21:45:48, Martin Blumenstingl wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://svn.reviewboard.kde.org/r/5329/
 ---
 
 (Updated 2010-09-12 21:45:48)
 
 
 Review request for Plasma.
 
 
 Summary
 ---
 
 Currently I'm changing some of the code in Plasma::ConfigLoader.
 I want to make sure that I don't break that much ;)
 
 Thus I wrote a unit test for the config loader.
 Currently all it does it testing if the config loader can parse the 
 default-values correctly.
 One test for each (data-)type which ConfigLoader can handle.
 
 Unfortunately ConfigLoaderTest::intListDefaultValue does not work yet 
 (everything else works)
 
 
 Diffs
 -
 
   /trunk/KDE/kdelibs/plasma/tests/configloadertest.xml PRE-CREATION 
   /trunk/KDE/kdelibs/plasma/tests/CMakeLists.txt 1174512 
   /trunk/KDE/kdelibs/plasma/tests/configloadertest.h PRE-CREATION 
   /trunk/KDE/kdelibs/plasma/tests/configloadertest.cpp PRE-CREATION 
 
 Diff: http://svn.reviewboard.kde.org/r/5329/diff
 
 
 Testing
 ---
 
 I ran the tests on my box.
 20/21 were successful.
 
 The only one failing is: ConfigLoaderTest::intListDefaultValue
 (and I need some help there)
 
 
 Thanks,
 
 Martin
 


___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


Re: export the lib behind the widget explorer

2010-09-12 Thread Aaron J. Seigo
On Sunday, September 12, 2010, Giulio Camuffo wrote:
 I've hacked a bit with it and i saw that there are actually only two
 classes needed to make an interface like the widget explorer: AbstractIcon
 and AbstractIconList.
 Can we make those two public?

i'm really not comfortable with making that library public in the least. the 
API is not good enough and we need the ability to continue to change it at 
this point.

-- 
Aaron J. Seigo
humru othro a kohnu se
GPG Fingerprint: 8B8B 2209 0C6F 7C47 B1EA  EE75 D6B7 2EB1 A7F1 DB43

KDE core developer sponsored by Qt Development Frameworks


signature.asc
Description: This is a digitally signed message part.
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel


today's meeting notes

2010-09-12 Thread Aaron J. Seigo
hi all..

thanks to everyone who attended, here are notes from today's meeting on irc:

http://community.kde.org/Plasma/20100912

-- 
Aaron J. Seigo
humru othro a kohnu se
GPG Fingerprint: 8B8B 2209 0C6F 7C47 B1EA  EE75 D6B7 2EB1 A7F1 DB43

KDE core developer sponsored by Qt Development Frameworks


signature.asc
Description: This is a digitally signed message part.
___
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel