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.
115 lines
4.0 KiB
115 lines
4.0 KiB
//
|
|
// C++ Implementation: %{MODULE}
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Roie Kerstein <sf_kersteinroie@bezeqint.net>, (C) 2004
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#include "addbookmarkspreferences.h"
|
|
#include "addbookmarksprefsui.h"
|
|
#include "addbookmarksplugin.h"
|
|
#include <kgenericfactory.h>
|
|
#include <kopetepluginmanager.h>
|
|
#include <kopetecontactlist.h>
|
|
#include <tqcheckbox.h>
|
|
#include <tqlayout.h>
|
|
#include <tqbuttongroup.h>
|
|
#include <tqlistbox.h>
|
|
#include <tqnamespace.h>
|
|
#include <tqradiobutton.h>
|
|
|
|
|
|
typedef KGenericFactory<BookmarksPreferences> BookmarksPreferencesFactory;
|
|
K_EXPORT_COMPONENT_FACTORY( kcm_kopete_addbookmarks, BookmarksPreferencesFactory("kcm_kopete_addbookmarks") )
|
|
|
|
BookmarksPreferences::BookmarksPreferences(TQWidget *parent, const char *name, const TQStringList &args)
|
|
: TDECModule(BookmarksPreferencesFactory::instance(), parent, args)
|
|
{
|
|
Q_UNUSED( name );
|
|
( new TQVBoxLayout (this) )->setAutoAdd( true );
|
|
p_dialog = new BookmarksPrefsUI( this );
|
|
load();
|
|
connect( p_dialog->yesButton, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT( slotSetStatusChanged() ));
|
|
connect( p_dialog->noButton, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT( slotSetStatusChanged() ));
|
|
connect( p_dialog->onlySelectedButton, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT( slotSetStatusChanged() ));
|
|
connect( p_dialog->onlyNotSelectedButton, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT( slotSetStatusChanged() ));
|
|
connect( p_dialog->contactList, TQT_SIGNAL( selectionChanged() ), this, TQT_SLOT( slotSetStatusChanged() ));
|
|
if(Kopete::PluginManager::self()->plugin("kopete_addbookmarks") )
|
|
connect( this, TQT_SIGNAL(PreferencesChanged()), Kopete::PluginManager::self()->plugin("kopete_addbookmarks") , TQT_SLOT(slotReloadSettings()));
|
|
connect( p_dialog->m_addUntrusted, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT( slotAddUntrustedChanged() ) );
|
|
}
|
|
|
|
|
|
BookmarksPreferences::~BookmarksPreferences()
|
|
{
|
|
}
|
|
|
|
void BookmarksPreferences::save()
|
|
{
|
|
TQStringList list;
|
|
TQStringList::iterator it;
|
|
|
|
|
|
m_settings.setFolderForEachContact( (BookmarksPrefsSettings::UseSubfolders)p_dialog->buttonGroup1->selectedId() );
|
|
if ( m_settings.isFolderForEachContact() == BookmarksPrefsSettings::SelectedContacts ||
|
|
m_settings.isFolderForEachContact() == BookmarksPrefsSettings::UnselectedContacts ) {
|
|
for( uint i = 0; i < p_dialog->contactList->count() ; ++i ){
|
|
if( p_dialog->contactList->isSelected( i ) ){
|
|
list += p_dialog->contactList->text( i );
|
|
}
|
|
}
|
|
m_settings.setContactsList( list );
|
|
}
|
|
m_settings.setAddBookmarksFromUnknownContacts( p_dialog->m_addUntrusted->isChecked() );
|
|
m_settings.save();
|
|
emit PreferencesChanged();
|
|
emit TDECModule::changed(false);
|
|
}
|
|
|
|
void BookmarksPreferences::slotSetStatusChanged()
|
|
{
|
|
if ( p_dialog->buttonGroup1->selectedId() == 1 || p_dialog->buttonGroup1->selectedId() == 0)
|
|
p_dialog->contactList->setEnabled(false);
|
|
else
|
|
p_dialog->contactList->setEnabled(true);
|
|
|
|
emit TDECModule::changed(true);
|
|
}
|
|
|
|
void BookmarksPreferences::slotAddUntrustedChanged()
|
|
{
|
|
emit TDECModule::changed(true);
|
|
}
|
|
|
|
void BookmarksPreferences::load()
|
|
{
|
|
TQStringList list;
|
|
TQStringList::iterator it;
|
|
TQListBoxItem* item;
|
|
|
|
m_settings.load();
|
|
p_dialog->buttonGroup1->setButton(m_settings.isFolderForEachContact());
|
|
p_dialog->m_addUntrusted->setChecked( m_settings.addBookmarksFromUnknownContacts() );
|
|
if( p_dialog->contactList->count() == 0 ){
|
|
TQStringList contacts = Kopete::ContactList::self()->contacts();
|
|
contacts.sort();
|
|
p_dialog->contactList->insertStringList( contacts );
|
|
}
|
|
p_dialog->contactList->clearSelection();
|
|
p_dialog->contactList->setEnabled( m_settings.isFolderForEachContact() == BookmarksPrefsSettings::SelectedContacts ||
|
|
m_settings.isFolderForEachContact() == BookmarksPrefsSettings::UnselectedContacts );
|
|
list = m_settings.getContactsList();
|
|
for( it = list.begin() ; it != list.end() ; ++it){
|
|
if ( ( item = p_dialog->contactList->findItem(*it, TQt::ExactMatch ) ) ){
|
|
p_dialog->contactList->setSelected( item, true );
|
|
}
|
|
}
|
|
emit TDECModule::changed(false);
|
|
}
|
|
|
|
#include "addbookmarkspreferences.moc"
|