Domino

KDE 3.5 Themes by morgenrot 401 comments

Please check your email. - Jul 18 2006
improved offline web browsing

Various KDE 1.-4. Improvements by maps4711 10 comments

If you get the current domain with metaData("cross-domain") (kdelibs patch at line 123) it doesn't work here. I haven't looked so deeply into this to know why, but at the first glance, metaData("referrer") works. - Jun 26 2006
Serenity

KDE 3.5 Themes by Maxilys 251 comments

I noticed you have still the mousover effect for the tabs in your todo list. The secrets solution is easier as you think:
just unset your hoverWidget in the move event ;).

Now my wishlist :-P

1.
The default checkListIndicators and checkListExclusiveIndicators are looking quite ugly. I wonder why everyone ignores them.
Can you make it better?

2.
Smoother scrolling is nice! I mean not a smoothscrolling which scrolls pixel for pixel but something where one can just follow the scrolling.
You can filter here the QScrollView events and do some time shifted scrollBy() triggered by the wheel event.
Unfortunately this will not work for kate :-(

3.
A transparent rubberband. This seems not to be so easy but I believe its possible.

4.
Get rid of the (background) flicker in konqs statusbar. For this you have to set back the fore- and backgroundcolor on the PaletteChange event.

5.
Your radioButtons need more love. Why don't you paint a nice one in gimp and use it as a pixmap? The radio- and checkbuttons are cached internaly by qt
so every state will be only drawn once.
A trick to archive a nice antialiased look in khtml: draw them once in the paint event and return false. So you will have your complete pixmap in khtml and
qt can draw its masked one on top on it.


I found one crash in kcmshell display -> Monitor-Gamma. To fix this you can change the static_cast to dynamic_cast at line 4940 and return false if the groupbox does not exist.

If you're interested, here is a screenshot of an older version of a style I working on. And as you already mentioned some posts obove, working on styles is truly frustrating
and I can't say when it will be ready.
http://img290.imageshack.us/img290/6595/screenshot4ib.png - Apr 25 2006
Fuchsia

Wallpaper Other by figinilago 1 comment

really hot! - Mar 08 2006
Serenity

KDE 3.5 Themes by Maxilys 251 comments

As for your toolboxtab hover problem, the only way I see is to go through the eventFilter.
The following worked for me:

global variable:
QWidget* hoverWidget;

in polish:
if(dynamic_cast(widget) && widget->parentWidget() && widget->parentWidget()->isA("QToolBox")) {
widget->installEventFilter(this);
}

in eventFilter:
if(dynamic_cast(obj) && obj->parent() && obj->parent()->isA("QToolBox")) {
QWidget* w = dynamic_cast(obj);
if(!w->isEnabled())
return false;
if(ev->type() == QEvent::Paint && hoverWidget == w) {
QPainter p(w);
p.fillRect(w->rect(), red);
return true;
}
if(ev->type() == QEvent::Enter) {
hoverWidget = w;
w->repaint(true);
return false;
}
if(ev->type() == QEvent::Leave) {
hoverWidget = 0;
w->repaint(true);
}
return false;
} - Mar 04 2006
Throbber: KDE Logo [CCW]

Icon Sub-Sets by tyrerj 18 comments

hi,
Cleaning small icons per hand after resizeing to keep the quality is imho a must do.
I set the background to transparent and cleaned the small 16x16, look at the difference:
http://img243.imageshack.us/my.php?image=kdethrobber0zo.png - Dec 17 2005
WIP from GNOME

Various KDE 1.-4. Styles by zammi 8 comments

For such a theme no new features are needed.
Here a screenshot of a qt3 theme I currenty (slowly) working on.

http://img290.imageshack.us/img290/6595/screenshot4ib.png - Aug 15 2005
disable (flash) plugins when images are disabled

Various KDE 1.-4. Improvements by zvonSully 14 comments

You can filter it out with a userdefined stylesheed. Put something like this in it:

embed[type="application/x-shockwave-flash"]{
display: none !important;
} - May 19 2005