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.
39 lines
699 B
39 lines
699 B
#include "helpers.h"
|
|
|
|
#include <tdeapplication.h>
|
|
|
|
void min_width(TQWidget *w) {
|
|
w->setMinimumWidth(w->sizeHint().width());
|
|
}
|
|
|
|
void fixed_width(TQWidget *w) {
|
|
w->setFixedWidth(w->sizeHint().width());
|
|
}
|
|
|
|
void min_height(TQWidget *w) {
|
|
w->setMinimumHeight(w->sizeHint().height());
|
|
}
|
|
|
|
void fixed_height(TQWidget *w) {
|
|
w->setFixedHeight(w->sizeHint().height());
|
|
}
|
|
|
|
void min_size(TQWidget *w) {
|
|
w->setMinimumSize(w->sizeHint());
|
|
}
|
|
|
|
void fixed_size(TQWidget *w) {
|
|
w->setFixedSize(w->sizeHint());
|
|
}
|
|
|
|
TDEConfig *klock_config()
|
|
{
|
|
TQString name( kapp->argv()[0] );
|
|
int slash = name.findRev( '/' );
|
|
if ( slash )
|
|
name = name.mid( slash+1 );
|
|
|
|
return new TDEConfig( name + "rc" );
|
|
}
|
|
|