This forum has been archived. All content is frozen. Please use KDE Discuss instead.

fullscreen GUI & larger cover images over dcop

Tags: None
(comma "," separated)
yaccin
Registered Member
Posts
19
Karma
0
stokedfish wrote:
yaccin wrote:0.4 looks really great :)

how does it work with the skins? :)


the README file isn't there just for fun...  ;)


i dont have a readme file, i just installed the deb :P

*downloading source package now for readme file*

//edit//

finished my first theme :D

kinda looks  more like apples coverflow now o.O

maybe you can add the option to have a background-image as well? :D

Image

(remove the .txt at the end of the attached file :P )

//edit 2//

thats how it could look with background image:

Image

:D

Last edited by yaccin on Wed Feb 07, 2007 2:11 pm, edited 1 time in total.
comar
Registered Member
Posts
16
Karma
0
yaccin wrote:finished my first theme :D

kinda looks  more like apples coverflow now o.O

maybe you can add the option to have a background-image as well? :D

Image

would you mind if I add your theme to the default package?
yaccin
Registered Member
Posts
19
Karma
0
comar wrote:
yaccin wrote:finished my first theme :D

kinda looks  more like apples coverflow now o.O

maybe you can add the option to have a background-image as well? :D

Image

would you mind if I add your theme to the default package?


of course not... but if you wait a hour or 2 ill have another version ready, with better fitting buttons :)

im also thinking about displaying the track lenght...

/edit/

semmes that the download is borken anyways, so ill finish the theme and upload it to my server :)

Last edited by yaccin on Wed Feb 07, 2007 5:52 pm, edited 1 time in total.
yaccin
Registered Member
Posts
19
Karma
0
Image

Download here (0.1)

------

version 0.2 - new buttons

http://bennid.de/files/CoverFlow_0.2.tar.gz

[img]http://img266.imageshack.us/img266/2189/coverflowwc2jd6.th.png[/img]


------

version 0.2b - 1024x768 Version

http://bennid.de/files/CoverFlow_0.2b.tar.gz

Image

-----

0.2.1 - minor fixes (text & image aligning)

Image

http://www.kde-look.org/content/show.php?content=52887 << download

//feature requests//

- background image support
- combine play/pause button (optional)
- make currentTime() update itself (if its possible)
- option to add shadow/reflection to text (if its possible. reflection like cover :) )
- themable progress bar (i dont tink this is possible, but would be great :) )
- change logo and logob.png within the themes xml file (like the buttons, oh and the gradient file also :D )
-

Last edited by yaccin on Wed Feb 07, 2007 10:58 pm, edited 1 time in total.
cyrus007
Registered Member
Posts
42
Karma
0
Is it possible to temporarily disable the screensaver when this is running ?
yaccin
Registered Member
Posts
19
Karma
0
cyrus007 wrote:Is it possible to temporarily disable the screensaver when this is running ?


good feature request :)

maybe you can somehow already set amarokFS as you screensaver :)
cyrus007
Registered Member
Posts
42
Karma
0
yaccin wrote:
cyrus007 wrote:Is it possible to temporarily disable the screensaver when this is running ?


good feature request :)

maybe you can somehow already set amarokFS as you screensaver :)


Right now there exists a script to start amarokFS using right-click menu option, avilable at http://www.kde-apps.org/content/show.php?content=52787

Here is a patch to disable the screensaver:
Code: Select all
--- amfs-xml.cpp.bak    2007-02-07 17:30:15.229762250 -0600
+++ amfs-xml.cpp        2007-02-07 17:23:13.539408250 -0600
@@ -211,6 +211,14 @@
        dcopClient = new DCOPClient();
        dcopClient->attach();

+       //disable screensaver
+        QByteArray data;
+        QDataStream arg(data, IO_WriteOnly);
+        arg << false;
+       if (!dcopClient->send("kdesktop", "KScreensaverIface", "enable(bool)", data))
+               qDebug("there was some error in disabling the KScreensaver.");
+       //cout << "called: " << command << "\n";
+
        timer = new QTimer( this );
        connect( timer, SIGNAL(timeout()), this, SLOT(updateTime()) );
        timer->start( 1000, FALSE );
@@ -221,6 +229,11 @@


 AmfsXML::~AmfsXML() {
+        QByteArray data;
+        QDataStream arg(data, IO_WriteOnly);
+        arg << true;
+       if (!dcopClient->send("kdesktop", "KScreensaverIface", "enable(bool)", data))
+               qDebug("there was some error in enabling the KScreensaver.");
        //nothing to do here
 }
comar
Registered Member
Posts
16
Karma
0
I've uploaded a new version to kde-apps.org which makes the theme change much easier.

yaccin wrote://feature requests//

- background image support
maybe later, currently there are more important things..
- combine play/pause button (optional)
you can do it yourself - just leave out the play button
- make currentTime() update itself (if its possible)
-
done
- option to add shadow/reflection to text (if its possible. reflection like cover :) )
currently not possible. The whole reflection thing ist just one ugly hack... I have to rewrite the code and make it more flexible. Unfortunately qt3 doesn't handle transparent png very well.  :-(
- themable progress bar (i dont tink this is possible, but would be great :) )
this is very well possible, I'll see what I can do
- change logo and logob.png within the themes xml file (like the buttons, oh and the gradient file also :D )
logo.png and logoB are part of the relflection hack...
- disable screensaver (as option vie right-click menu)

this is the next thing on my list.

and thanks for the themes. I'll make a theme-pack and post it togehter with the program on kde-apps.org

@cyrus007: thanks a lot! I'll try your code tomorow.

Last edited by comar on Thu Feb 08, 2007 12:30 am, edited 1 time in total.
yaccin
Registered Member
Posts
19
Karma
0
comar wrote:
yaccin wrote://feature requests//

- background image support
maybe later, currently there are more important things..
- combine play/pause button (optional)
you can do it yourself - just leave out the play button

but does pause then work as play-button when not in pause? and how can i define that pause uses the image from the play-button when not in pause? :)

anyways... version 0.3:

[img]http://img365.imageshack.us/img365/5043/coverflow03yg9.th.png[/img]

http://www.kde-look.org/content/show.php?content=52887

Last edited by yaccin on Thu Feb 08, 2007 8:52 am, edited 1 time in total.
comar
Registered Member
Posts
16
Karma
0
cyrus007 wrote:Here is a patch to disable the screensaver:


thanks. I've added this to the program and uploaded the new version to kde-apps.org

there won't be any updates or support for about two weeks because I'm going on holiday.
yaccin
Registered Member
Posts
19
Karma
0
hope your holidays were ok :)

i have 2 new feature requests:

1. hide from taskbar (maybe tray icon :) )
2. stay on top... everytime i switch my desktop i have kicker over amarokfs ^^ (maybe its a beryl bug?... )


Bookmarks



Who is online

Registered users: Bing [Bot], Google [Bot], lockheed, Sogou [Bot]