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.
konversation/konversation/src/nicklistbehavior_preference...

109 lines
3.2 KiB

/*
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.
*/
/*
Copyright (C) 2006 Dario Abatianni <eisfuchs@tigress.com>
Copyright (C) 2006 John Tapsell <johnflux@gmail.com>
Copyright (C) 2006 Eike Hein <hein@kde.org>
*/
#include "nicklistbehavior_preferences.h"
#include "valuelistviewitem.h"
#include "config/preferences.h"
#include <tqheader.h>
#include <tdeapplication.h>
#include <tdelocale.h>
NicklistBehavior_Config::NicklistBehavior_Config(TQWidget *parent, const char *name)
: NicklistBehavior_ConfigUI(parent, name)
{
// get page widget and populate listview
loadSettings();
// make items react to drag & drop
sortOrder->setSorting(-1,false);
sortOrder->header()->setMovingEnabled(false);
connect(sortOrder,TQT_SIGNAL (moved()),this,TQT_SIGNAL (modified()) );
}
NicklistBehavior_Config::~NicklistBehavior_Config()
{
}
void NicklistBehavior_Config::restorePageToDefaults()
{
setNickList(Preferences::defaultNicknameSortingOrder());
}
void NicklistBehavior_Config::loadSettings()
{
// get sorting order string from preferences
setNickList(Preferences::sortOrder());
m_oldSortingOrder=currentSortingOrder();
}
void NicklistBehavior_Config::setNickList(const TQString &sortingOrder)
{
sortOrder->clear();
// loop through the sorting order string, insert the matching descriptions in reverse order
// to keep the correct sorting
for(unsigned int index=sortingOrder.length();index!=0;index--)
{
// get next mode char
TQChar mode=sortingOrder[index-1];
// find appropriate description
if(mode=='-') new TDEListViewItem(sortOrder,mode,i18n("Normal Users"));
if(mode=='v') new TDEListViewItem(sortOrder,mode,i18n("Voice (+v)"));
if(mode=='h') new TDEListViewItem(sortOrder,mode,i18n("Halfops (+h)"));
if(mode=='o') new TDEListViewItem(sortOrder,mode,i18n("Operators (+o)"));
if(mode=='p') new TDEListViewItem(sortOrder,mode,i18n("Channel Admins (+p)"));
if(mode=='q') new TDEListViewItem(sortOrder,mode,i18n("Channel Owners (+q)"));
}
}
TQString NicklistBehavior_Config::currentSortingOrder()
{
// get the uppermost entry of the sorting list
TQListViewItem* item=sortOrder->firstChild();
// prepare the new sorting order string
TQString currentSortingOrder;
// iterate through all items of the listview
while(item)
{
// add mode char to the sorting order string
currentSortingOrder+=item->text(0);
// go to next item in the listview
item=item->itemBelow();
} // while
return currentSortingOrder;
}
// save settings permanently
void NicklistBehavior_Config::saveSettings()
{
// get the current sorting order
TQString newSortingOrder=currentSortingOrder();
// update sorting order on in-memory preferences
Preferences::setSortOrder(newSortingOrder);
// save current sorting order as a reference to hasChanged()
m_oldSortingOrder=currentSortingOrder();
}
bool NicklistBehavior_Config::hasChanged()
{
return(m_oldSortingOrder!=currentSortingOrder());
}
#include "nicklistbehavior_preferences.moc"