summaryrefslogtreecommitdiffstats
path: root/kscreensaver/xsavers/helpers.h
blob: d8ba3b8c7ff6a31850d842ae649731835a2b1ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef __HELPERS__H__
#define __HELPERS__H__

#include <tqwidget.h>
#include <kconfig.h>

void min_width(TQWidget *);
void fixed_width(TQWidget *);
void min_height(TQWidget *);
void fixed_height(TQWidget *);
void min_size(TQWidget *);
void fixed_size(TQWidget *);

/*
 * Use this to get a KConfig object that uses a reasonable config filename.
 * TDEGlobal::config() will use the klockrc config file.
 *
 * Caller must delete the object when finished.
 */
KConfig *klock_config();

#endif