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.
126 lines
3.8 KiB
126 lines
3.8 KiB
/*
|
|
* This file is part of ScalixAdmin.
|
|
*
|
|
* Copyright (C) 2007 Trolltech ASA. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <tqbuttongroup.h>
|
|
#include <tqlabel.h>
|
|
#include <tqlayout.h>
|
|
#include <tqpushbutton.h>
|
|
#include <tqradiobutton.h>
|
|
#include <tqtextedit.h>
|
|
|
|
#include <tdelocale.h>
|
|
#include <tdemessagebox.h>
|
|
|
|
#include "jobs.h"
|
|
#include "settings.h"
|
|
|
|
#include "outofofficepage.h"
|
|
|
|
OutOfOfficePage::OutOfOfficePage( TQWidget *parent )
|
|
: TQWidget( parent )
|
|
{
|
|
TQGridLayout *layout = new TQGridLayout( this, 4, 2, 11, 6 );
|
|
|
|
TQButtonGroup *group = new TQButtonGroup( 1, TQt::Vertical, this );
|
|
|
|
mDisabled = new TQRadioButton( i18n( "I am in the office" ), group );
|
|
mDisabled->setChecked( true );
|
|
mEnabled = new TQRadioButton( i18n( "I am out of the office" ), group );
|
|
|
|
mLabel = new TQLabel( i18n( "Auto-reply once to each sender with the following text:" ), this );
|
|
mMessage = new TQTextEdit( this );
|
|
mSaveButton = new TQPushButton( i18n( "Save" ), this );
|
|
|
|
layout->addMultiCellWidget( group, 0, 0, 0, 1 );
|
|
layout->addMultiCellWidget( mLabel, 1, 1, 0, 1 );
|
|
layout->addMultiCellWidget( mMessage, 2, 2, 0, 1 );
|
|
layout->addWidget( mSaveButton, 3, 1 );
|
|
|
|
statusChanged();
|
|
|
|
connect( mEnabled, TQ_SIGNAL( toggled( bool ) ), this, TQ_SLOT( statusChanged() ) );
|
|
connect( mEnabled, TQ_SIGNAL( toggled( bool ) ), this, TQ_SLOT( changed() ) );
|
|
connect( mSaveButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( store() ) );
|
|
connect( mMessage, TQ_SIGNAL( textChanged() ), this, TQ_SLOT( changed() ) );
|
|
|
|
load();
|
|
}
|
|
|
|
OutOfOfficePage::~OutOfOfficePage()
|
|
{
|
|
}
|
|
|
|
void OutOfOfficePage::load()
|
|
{
|
|
Scalix::GetOutOfOfficeJob *job = Scalix::getOutOfOffice( Settings::self()->globalSlave(),
|
|
Settings::self()->accountUrl() );
|
|
connect( job, TQ_SIGNAL( result( TDEIO::Job* ) ), TQ_SLOT( loaded( TDEIO::Job* ) ) );
|
|
}
|
|
|
|
void OutOfOfficePage::loaded( TDEIO::Job* job )
|
|
{
|
|
if ( job->error() ) {
|
|
KMessageBox::error( this, job->errorString() );
|
|
return;
|
|
}
|
|
|
|
Scalix::GetOutOfOfficeJob *outOfOfficeJob = static_cast<Scalix::GetOutOfOfficeJob*>( job );
|
|
|
|
mEnabled->setChecked( outOfOfficeJob->enabled() );
|
|
mMessage->setText( outOfOfficeJob->message() );
|
|
|
|
statusChanged();
|
|
|
|
mSaveButton->setEnabled( false );
|
|
}
|
|
|
|
void OutOfOfficePage::store()
|
|
{
|
|
Scalix::SetOutOfOfficeJob *job = Scalix::setOutOfOffice( Settings::self()->globalSlave(),
|
|
Settings::self()->accountUrl(),
|
|
mEnabled->isChecked(),
|
|
mMessage->text() );
|
|
|
|
connect( job, TQ_SIGNAL( result( TDEIO::Job* ) ), TQ_SLOT( stored( TDEIO::Job* ) ) );
|
|
|
|
mSaveButton->setEnabled( false );
|
|
}
|
|
|
|
void OutOfOfficePage::stored( TDEIO::Job* job )
|
|
{
|
|
if ( job->error() )
|
|
KMessageBox::error( this, job->errorString() );
|
|
}
|
|
|
|
void OutOfOfficePage::statusChanged()
|
|
{
|
|
bool state = mEnabled->isChecked();
|
|
|
|
mLabel->setEnabled( state );
|
|
mMessage->setEnabled( state );
|
|
}
|
|
|
|
void OutOfOfficePage::changed()
|
|
{
|
|
mSaveButton->setEnabled( true );
|
|
}
|
|
|
|
#include "outofofficepage.moc"
|