summaryrefslogtreecommitdiffstats
path: root/kscreensaver/xsavers/helpers.cpp
blob: 242d2f750a58b640319b5cabf5c606c64d41f05e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "helpers.h"

#include <kapplication.h>

void min_width(TQWidget *w) {
  w->setMinimumWidth(w->tqsizeHint().width());
}

void fixed_width(TQWidget *w) {
  w->setFixedWidth(w->tqsizeHint().width());
}

void min_height(TQWidget *w) {
  w->setMinimumHeight(w->tqsizeHint().height());
}

void fixed_height(TQWidget *w) {
  w->setFixedHeight(w->tqsizeHint().height());
}

void min_size(TQWidget *w) {
  w->setMinimumSize(w->tqsizeHint());
}

void fixed_size(TQWidget *w) {
  w->setFixedSize(w->tqsizeHint());
}

KConfig *klock_config()
{
    TQString name( kapp->argv()[0] );
    int slash = name.findRev( '/' );
    if ( slash )
	name = name.mid( slash+1 );

    return new KConfig( name + "rc" );
}