/*************************************************************************** contactlistpage.cpp - description ------------------- begin : Sun Mar 1 2009 copyright : (C) 2009 by Andrea Decorte email : "adecorte" --at-- "gmail.com" ***************************************************************************/ /*************************************************************************** * * * 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. * * * ***************************************************************************/ #include "contactlistpage.h" #include "../account.h" #include "../kmessdebug.h" /** * The constructor */ 00028 ContactListPage::ContactListPage( QWidget *parent ) : QWidget( parent ) , Ui::ContactListPage() { setupUi( this ); } /** * @brief Load the widget state from an account * * Reads an Account's info and sets our internal widgets accordingly * * @param account The account where to pick settings from */ 00044 void ContactListPage::loadSettings( const Account *account ) { nowListeningCheckBox_ ->setChecked( account->getShowNowListening() ); showEmailInfoCheckBox_ ->setChecked( account->getShowEmail() ); enableListFormattingCheckBox_->setChecked( account->getUseListFormatting() ); showContactEmailCheckBox_ ->setChecked( account->getShowContactEmail() ); showBirdCheckBox_ ->setChecked( account->getShowContactListBird() ); } /** * @brief Save account information from the alerts widget * * Calls the set-up methods from Account to change its properties, based on how * the user has set the widgets of this page. */ 00061 void ContactListPage::saveSettings( Account *account ) { account->setContactListOptions ( nowListeningCheckBox_->isChecked(), showContactEmailCheckBox_->isChecked(), enableListFormattingCheckBox_->isChecked() ); account->setEmailInformation ( showEmailInfoCheckBox_->isChecked(), false ); account->setShowContactListBird( showBirdCheckBox_->isChecked() ); } #include "contactlistpage.moc"