
Useless clutter

Less clutter
The groupbox in the first UI is completely useless and it only adds more clutter for free, so it has been removed in the second UI. What we get is a less cluttered UI and every widget is grouped by the tabwidget.

Useless clutter

Less clutter
The groupbox in the first UI is completely useless and it only adds more clutter for free, so it has been removed in the second UI. What we get is a less cluttered UI and every widget is grouped by the tabwidget.

Bad Label Alignment

Good Label Alignment
The first UI has a wrong label alignment (KDE 3.x alignment), while the second UI has the right label alignment (KDE 4.x alignment).
HIG on techbase

Example of a bad ui layout.

Example of a good ui layout.
The first UI (the bad one) has a complex grid layout which is cluttered and confused, while the second UI has a better layout which looks like a book page that can be read easily from left to right and from top to bottom.
The second UI uses more vertical space, but we must not forget that one of our primary goals is to provide usable UIs.
Yesterday I’ve moved desktop theme configuration from Desktop Settings to System Settings style module. Now Desktop Settings dialog looks less cluttered.

New system settings/style desktop theme configuration tab
Now I’m still working on Desktop Settings dialog and I will continue to improve it.
Next step is to add categories to wallpaper settings.
It has been a long time since my last update…
I’ve been away for a long time due to several reasons (including school exams) but now I’m here in Swiss.
Now I’m in an amazing place with stunning views and fresh. I will post more things about this tokamak later.

KFormat

Without any doubt Tokamak II was a great meeting, as it allowed me to work on several things. Two of these things are High Definition Oxygen icons and Nuvola icons.
High Definition Oxygen is a folder that contains 256×256 icons for mimetypes and places and the really good news is that now Oxygen iconset uses less space on disk than before: we don’t install SVGs anymore (so we can save about 60 mb) and we can use a piece of that free space for the new high definition icons that are incredibly small (they requires only a couple of mb).
Something that I really liked about Oxygen is that it is already ready to render at big sizes (Oxygen artists have done a great work).
I have also great news for Nuvola icon set fans: Nuvola is back and it will be part of KDE 4.3 kdeartwork module ![]()
During tokamak I spent several hours renaming and fixing Nuvola icon names and now it can be used also on KDE 4
Use the word “applet” only in development contexts (when you are talking about Plasma::Applet), in any other case use the word “widget”.
void MyApplet:createConfigurationInterface(KConfigDialog *parent)
{
QWidget *widget = new QWidget();
ui.setupUi(widget); //ui is your configuration interface
parent->addPage(widget, i18n("General"), icon());
connect(parent, SIGNAL(applyClicked()), this, SLOT(configAccepted()));
connect(parent, SIGNAL(okClicked()), this, SLOT(configAccepted()));
}