You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeartwork/kscreensaver/xsavers/helpers.h

24 lines
482 B

#ifndef __HELPERS__H__
#define __HELPERS__H__
#include <qwidget.h>
#include <kconfig.h>
void min_width(QWidget *);
void fixed_width(QWidget *);
void min_height(QWidget *);
void fixed_height(QWidget *);
void min_size(QWidget *);
void fixed_size(QWidget *);
/*
* Use this to get a KConfig object that uses a reasonable config filename.
* KGlobal::config() will use the klockrc config file.
*
* Caller must delete the object when finished.
*/
KConfig *klock_config();
#endif