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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/* Copyright 2009 James Bendig <james@imptalk.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) version 3 or any later version
accepted by the membership of KDE e.V. (or its successor approved
by the membership of KDE e.V.), which shall act as a proxy
defined in Section 14 of version 3 of the license.
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, see <http://www.gnu.org/licenses/>.
*/
#include "themecombobox.h"
#include "messagelist/utils/themecombobox.h"
#include "messagelist/utils/themecombobox_p.h"
#include "messagelist/storagemodel.h"
#include "messagelist/core/manager.h"
#include "messagelist/core/theme.h"
#include "messagelist/core/settings.h"
#include <KDE/KGlobal>
using namespace MessageList::Core;
using namespace MessageList::Utils;
ThemeComboBox::ThemeComboBox( QWidget * parent )
: KComboBox( parent ), d( new ThemeComboBoxPrivate( this ) )
{
if( Manager::instance() )
d->slotLoadThemes();
else
setEnabled(false);
}
ThemeComboBox::~ThemeComboBox()
{
delete d;
}
QString ThemeComboBox::currentTheme() const
{
return itemData( currentIndex() ).toString();
}
void ThemeComboBox::writeDefaultConfig() const
{
KConfigGroup group( Settings::self()->config(), "MessageListView::StorageModelThemes" );
const QString themeID = currentTheme();
group.writeEntry( QLatin1String( "DefaultSet" ), themeID );
if (Manager::instance())
Manager::instance()->themesConfigurationCompleted();
}
void ThemeComboBox::writeStorageModelConfig( const Akonadi::Collection &col, bool isPrivateSetting ) const
{
if ( col.isValid() )
writeStorageModelConfig( QString::number( col.id() ), isPrivateSetting );
}
void ThemeComboBox::writeStorageModelConfig( MessageList::Core::StorageModel *storageModel, bool isPrivateSetting ) const
{
writeStorageModelConfig( storageModel->id(), isPrivateSetting );
}
void ThemeComboBox::writeStorageModelConfig( const QString &id, bool isPrivateSetting )const
{
if (Manager::instance()) {
QString themeID;
if ( isPrivateSetting ) {
themeID = currentTheme();
} else { // explicitly use default theme id when using default theme.
themeID = Manager::instance()->defaultTheme()->id();
}
Manager::instance()->saveThemeForStorageModel( id, themeID, isPrivateSetting );
Manager::instance()->themesConfigurationCompleted();
}
}
void ThemeComboBox::readStorageModelConfig( const Akonadi::Collection& col, bool &isPrivateSetting )
{
if (Manager::instance()) {
const Theme *theme = Manager::instance()->themeForStorageModel( col, &isPrivateSetting );
d->setCurrentTheme( theme );
}
}
void ThemeComboBox::readStorageModelConfig( MessageList::Core::StorageModel *storageModel, bool &isPrivateSetting )
{
if (Manager::instance()) {
const Theme *theme = Manager::instance()->themeForStorageModel( storageModel, &isPrivateSetting );
d->setCurrentTheme( theme );
}
}
void ThemeComboBox::selectDefault()
{
if (Manager::instance()) {
const Theme *defaultTheme = Manager::instance()->defaultTheme();
d->setCurrentTheme( defaultTheme );
}
}
void ThemeComboBoxPrivate::slotLoadThemes()
{
if (!Manager::instance())
return;
q->clear();
// Get all message list themes and sort them into alphabetical order.
QList< Theme * > themes = Manager::instance()->themes().values();
qSort( themes.begin(), themes.end(), MessageList::Core::Theme::compareName );
foreach( const Theme * theme, themes )
{
q->addItem( theme->name(), QVariant( theme->id() ) );
}
}
void ThemeComboBoxPrivate::setCurrentTheme( const Theme *theme )
{
Q_ASSERT( theme != 0 );
const QString themeID = theme->id();
const int themeIndex = q->findData( QVariant( themeID ) );
q->setCurrentIndex( themeIndex );
}
#include "moc_themecombobox.cpp"
|