SVN_SILENT made messages (.desktop file)
[kdeartwork.git] / kscreensaver / xsavers / helpers.h
blob948c86ef036a7f9f9d175debe1f7a8408359bb25
1 #ifndef __HELPERS__H__
2 #define __HELPERS__H__
4 #include <qwidget.h>
5 #include <kconfig.h>
7 void min_width(QWidget *);
8 void fixed_width(QWidget *);
9 void min_height(QWidget *);
10 void fixed_height(QWidget *);
11 void min_size(QWidget *);
12 void fixed_size(QWidget *);
15 * Use this to get a KConfig object that uses a reasonable config filename.
16 * KGlobal::config() will use the klockrc config file.
18 * Caller must delete the object when finished.
20 KConfig *klock_config();
22 #endif