MetaMonitor's theme howto

What you need

Creating a popup theme for MetaMonitor isn't hard to do. You just have to have some graphics editor (Gimp or Inkscape for example) and some text editor (like KWrite or mcedit).

This document will help you to create your first theme. It is divided into the two parts. The first will help you to prepare the necessary files, and the second one will show you how to create the theme.ini file.

Theme archive structure

Every MetaMonitor's theme is a gzipped tar archive which contain a directory (directory's name is also a theme name). In this directory there must be a file called theme.ini which contains definitions of theme, and other theme files as skin pixmaps, mask pixmaps, preview pixmap and maybe the additional pixmaps. Good idea is to create theme directory on your desktop. Now we can start :)

Designing theme

First thing you must do is to get an idea how the theme will look like. Once you plan your theme, you can create the theme's base file in you favourite graphics editor. I suggest you to store the base file in the theme directory. It won't be used by theme, but may be useful when you want to change something, or just for others (maybe someone will create theme based on your work). The theme base file can look like this:
base theme file

Cutting the base file

Once you created the base file, you have to cut it, because theme structure looks like this:
theme structure

As you can see all the themes must have 4 corners and borders. It also should have the body (the inner rectangle). It is a very good idea to remember this elements' widths and heights, because you'll need them when creating the theme.ini file.

You should remember that the corners won't be tiled nor scaled. The borders' pixmaps will be scaled (for example the top border pixmap will be stretched to fit the popups' width, and the left/right borders will fit the popup's height). The center pixmap will be stretched to fit the popup's width and height.

You also should know that every left pixmaps (top left corner, left border, bottom left corner) should have the same width, every right pixmaps (top right corner, right border, bottom right corner) should have the same width, every top pixmap (top right corner, top border, top left corner) should have the same height, and every bottom pixmap (bottom left corner, bottom border, bottom right corner) should also have the same height.

You can use pixmaps with alpha channel in your theme (in corners, borders, and body).

Every corners', body's, borders' pixmap should be saved in your theme directory. You can specify any filename, but the good idea is to call them properly, for example:

Creating mask files

If your theme uses rounded corners or if you use some fancy borders' shape you should create mask pixmaps. You should know that in KDE, every widget (and a popup is a widget) is a rectangle, so if you use the composite extension with shadows, the XServer will draw a shadow for rectangle widget. This looks ugly, so you can 'tell' the XServer that your theme isn't actually a rectangle. You can use 2 colors (black and white) bitmaps in which every white color means that this place is transparent, and the black pixels means non-transparent place. If you plan to create the mask you can load your corners/borders pixmaps, make them 2 colors bitmaps (for example in gimp: RMB on the image, image->mode->indexed->2 bits mode). Now you must fill the places you want to be visible with black color, and fill with the white color the rest of it. That's it! Your mask is created. You can now save the mask bitmap in your theme directory. For example:

The example mask image looks like this:
Example mask image
This is the bottom left corner's mask.

Note that the mask files must be the same size as their equivalents!

Additional pixmaps

Every theme can have any amount (including zero) of additional pixmaps. You can improve the theme look adding some pixmaps in any place of your theme. In this time you just have to collect those pixmaps in your theme directory. We will talk about putting them into a theme later.

Creating the theme.ini file

Once you prepared your directory with pixmaps, you can now now start to create the theme.ini file. Note that all the lines in theme.ini file are case sensitive, so be careful when putting new lines in it!. The file must start with this line:
[MetaMonitor Theme]

The theme.ini's header

Now you have to set some description values by putting those lines:
ThemeAuthor=<your name/nick here>
ThemeVersion=<theme version number>
ThemeDescription=<short theme description>
ThemePreview=<theme preview's filename>

Of course you don't have the preview's file so far (I suppose), so you can set the base's filename for now (you can do the theme's screenshot later and change this filename).

You can also translate the theme's description. For example if you want to put the polish description, you should add this line there:
ThemeDescription[pl]=<polish theme description>

Skin's pixmaps section

Now, you have to specify the theme's elements' (files you've prepared before) filenames:
TopRight=<top right's corner filename>
TopLeft=<top left's corner filename>
TopCenter=<top border's filename>
CenterLeft=<left border's filename>
CenterCenter=<body's filename>
CenterRight=<right's border filename>
BottomCenter=<bottom's border filename>
BottomLeft=<bottom left's corner filename>
BottomRight=<bottom right's corner filename>
...and the mask files (if there are any):
TopLeftMask=<top left corner's mask filename>
TopRightMask=<top right corner's mask filename>
BottomLeftMask=<bottom left corner's mask filename>
BottomRightMask=<bottom right corner's mask filename>
TopMask=<top border's mask filename>
LeftMask=<left border's mask filename>
RightMask=<right border's mask filename>
BottomMask=<bottom border's mask filename>
You don't have to put all the masks' filenames if you didn't do them. Just put the masks filenames which you've prepared.

Widths and marging

Next we have to put the margins values:
LeftMarginWidth=<left margin's width>
RightMarginWidth=<wight margin's width>
TopMarginHeight=<top margin's height>
BottomMarginHeight=<bottom margin's height>
MarginWidth=<message's margin width>

The LeftMarginWidth, RightMarginWidth, TopMarginHeight and BottomMarginHeight are values equivalent to left border's width, right border's width, top border's width and bottom border's width (must be exactly the same as the borders/corners pixmaps' sizes).

The MarginWidth value is worth explanation. It is the margin of the message in the popup, which means the distance of the popup's borders to the message's body.

Message margin

Layout and colors

You can specify the theme's layout and colors for sender's and message's text. These lines are optional, but you may want to change the default values:
TextColor=<message's text color>
SenderColor=<sender's text color>
Body=<message's body layout>
The TextColor and SenderColor values must be a HTML notation of a color. You can set the RGB value, for example #001267, or the color's name from the web color's palette, for example 'white' (with no quotes). If you don't specify these values, the defaults will be used. The default values for this fields are the tooltip's pallette foreground color (black).

The Body line let's you to specify the message's layout using the Qt Richtext. It is a language simillar to HTML, but much simpler. You can use the tags specified by QStyleSheet in your theme. The default value is

<nobr>%IMG <nobr><b>%SENDER</b></nobr></nobr><br />%TEXT
Note that you don't have to put the <qt> and </qt> tags. They are added automatically. Remember that the %IMG will be replaced by the message's icon, the %SENDER will be replaced by the 'Message from foo' line and the %TEXT will be replaced by the message's text.

Also note that if the message will contain an anchor (when the command trigger is enabled) the anchor code will be added to the messages's text.

Additional pixmaps sections

As is said before, you can use any amount (including zero) additional pixmaps in you theme. These pixmaps can be for example some logo in the background of your theme, or some decoration elements. Every pixmap means a new section in the theme.ini file. This sections looks like this:
[Additional Pixmap <number>]
Path=<the pixmap's filename>
XAlign=<X alignment of the pixmap>
XOffset=<X offset of the pixmap>
YAlign=<Y alignment of the pixmap>
YOffset=<Y offset of the pixmap>
This section will tell MetaMonitor to load new pixmap and put in into the theme in the specified position. The values are:

Creating theme archive

Once you prepared your theme directory and the theme.ini file, you can now create theme archive. Just type in the console (but make sure you're in the directory where theme's directory lies):
tar -cvzf <themeName>.tgz <themeName>
... where themeName is the name of your theme's directory. You can also use Ark to create the archive. Just remeber that the archive must contain the theme directory (not only a files, but the directory with all it's entries).

Now you can test your theme. In MetaMonitor's config window click the 'Themes' section, then click the 'Add theme' button and choose the newly created archive. Click 'OK' and 'Apply'. You can now test how it works by writing in the console:

logger this is a test
...or using the DCOP mechanism:
dcop metamonitor-`dcop | grep metamonitor \
	| awk -F- '{print $2}'` metamonitor addMessage 'sender' 'text'
Once your theme is created and works fine (you might want to change some values) you can now prepare the theme's screenshot. Run KSnapshot, for example, and make a screenshot when popup with your theme is visible. Remember that the screenshot must not be bigger than 300x180 pixels, so you may want to scale/cut it in your graphics editor. When you create the preview file, save it in the theme directory as (for example) preview.png and update the theme.ini file's ThemePreview line. Create the archive once again and your theme is now ready!

Congratulations! Your theme is finished!


If you're in doubt, check out this theme example file.

If you find any bugs or have questions about this document, please send me an email and I'll try to update it.