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.
67 lines
1.3 KiB
67 lines
1.3 KiB
#include <qobjectlist.h>
|
|
|
|
void WidgetsBase::init()
|
|
{
|
|
timeEdit->setTime( QTime::currentTime() );
|
|
dateEdit->setDate( QDate::currentDate() );
|
|
}
|
|
|
|
void WidgetsBase::destroy()
|
|
{
|
|
|
|
}
|
|
|
|
void WidgetsBase::resetColors()
|
|
{
|
|
groupBox->setPalette( palette(), FALSE );
|
|
QObjectList *chldn = groupBox->queryList();
|
|
if ( chldn ) {
|
|
for(QObject *obj=chldn->first(); obj; obj = chldn->next()) {
|
|
if(obj->isWidgetType()) {
|
|
QWidget *w = (QWidget *)obj;
|
|
if(!w->isTopLevel())
|
|
w->setPalette(palette(), FALSE);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void WidgetsBase::setColor( const QString & color )
|
|
{
|
|
groupBox->setPalette( QColor( color ), FALSE );
|
|
QObjectList *chldn = groupBox->queryList();
|
|
if ( chldn ) {
|
|
for(QObject *obj=chldn->first(); obj; obj = chldn->next()) {
|
|
if(obj->isWidgetType()) {
|
|
QWidget *w = (QWidget *)obj;
|
|
if(!w->isTopLevel())
|
|
w->setPalette(QColor(color), FALSE);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void WidgetsBase::setColor()
|
|
{
|
|
setColor( lineEdit->text() );
|
|
}
|
|
|
|
void WidgetsBase::updateClock()
|
|
{
|
|
clock->setTime( timeEdit->time() );
|
|
}
|
|
|
|
void WidgetsBase::updateColorTest( const QString & color )
|
|
{
|
|
colorTest->setPalette( QColor( color ), TRUE);
|
|
}
|
|
|
|
void WidgetsBase::updateDateTimeString()
|
|
{
|
|
QDateTime dt;
|
|
dt.setDate( dateEdit->date() );
|
|
dt.setTime( timeEdit->time() );
|
|
dateTimeLabel->setText( dt.toString() );
|
|
}
|
|
|