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.
kbibtex/src/settingssearchurl.cpp

222 lines
9.2 KiB

/***************************************************************************
* Copyright (C) 2004-2009 by Thomas Fischer *
* fischer@unix-ag.uni-kl.de *
* *
* 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., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqlineedit.h>
#include <ntqlabel.h>
#include <ntqtooltip.h>
#include <ntqheader.h>
#include <ntqcombobox.h>
#include <kiconloader.h>
#include <tdelistview.h>
#include <tdelocale.h>
#include <kpushbutton.h>
#include <kdialogbase.h>
#include <tdemessagebox.h>
#include <settings.h>
#include "settingssearchurl.h"
namespace KBibTeX
{
SettingsSearchURL::SettingsSearchURL( TQWidget *parent, const char *name )
: TQWidget( parent, name ), m_counter( 1 )
{
setupGUI();
}
SettingsSearchURL::~SettingsSearchURL()
{
// nothing
}
void SettingsSearchURL::applyData()
{
Settings * settings = Settings::self();
settings->searchURLs.clear();
for ( TQListViewItemIterator it( m_listviewSearchURLs ); it.current(); it++ )
{
Settings::SearchURL *searchURL = new Settings::SearchURL;
searchURL->description = it.current() ->text( 0 );
searchURL->includeAuthor = it.current() ->text( 1 ) == i18n( "Yes" );
searchURL->url = it.current() ->text( 2 );
settings->searchURLs.append( searchURL );
}
}
void SettingsSearchURL::readData()
{
Settings * settings = Settings::self();
m_listviewSearchURLs->clear();
for ( TQValueList<Settings::SearchURL*>::ConstIterator it = settings->searchURLs.begin(); it != settings->searchURLs.end(); ++it )
{
TDEListViewItem *item = new TDEListViewItem( m_listviewSearchURLs, ( *it ) ->description, ( *it ) ->includeAuthor ? i18n( "Yes" ) : i18n( "No" ), ( *it ) ->url );
item->setPixmap( 0, SmallIcon( "text-html" ) );
}
}
void SettingsSearchURL::slotNew()
{
urlDialog();
emit configChanged();
updateGUI();
}
void SettingsSearchURL::slotDelete()
{
TQListViewItem * item = m_listviewSearchURLs->selectedItem();
if ( item != NULL )
{
m_listviewSearchURLs->removeItem( item );
emit configChanged();
}
updateGUI();
}
void SettingsSearchURL::slotEdit()
{
TQListViewItem * item = m_listviewSearchURLs->selectedItem();
if ( item != NULL )
{
urlDialog( item );
emit configChanged();
}
updateGUI();
}
void SettingsSearchURL::slotReset()
{
if ( KMessageBox:: warningContinueCancel( this, i18n( "The list of URLs will be checked and known entries will be replaced by the program standards. Search entries you have defined by yourself will be kept most likely." ), i18n( "Reset list of URLs" ), KGuiItem( i18n( "Reset" ), "reload" ) ) == KMessageBox::Continue )
{
Settings::self() ->restoreDefaultSearchURLs();
readData();
emit configChanged();
}
updateGUI();
}
void SettingsSearchURL::updateGUI()
{
bool enable = m_listviewSearchURLs->selectedItem() != NULL;
m_pushbuttonEdit->setEnabled( enable );
m_pushbuttonDelete->setEnabled( enable );
}
void SettingsSearchURL::setupGUI()
{
TQGridLayout * layout = new TQGridLayout( this, 5, 2, 0, KDialog::spacingHint() );
layout->setRowStretch( 3, 1 );
layout->setColStretch( 0, 1 );
m_listviewSearchURLs = new TDEListView( this );
layout->addMultiCellWidget( m_listviewSearchURLs, 0, 4, 0, 0 );
m_listviewSearchURLs->setAllColumnsShowFocus( TRUE );
m_listviewSearchURLs->addColumn( i18n( "Description" ) );
m_listviewSearchURLs->addColumn( i18n( "Author" ) );
m_listviewSearchURLs->addColumn( i18n( "URL" ) );
m_listviewSearchURLs->header()->setClickEnabled( FALSE );
m_listviewSearchURLs->setFullWidth( true );
m_listviewSearchURLs->setMinimumWidth( 384 );
m_pushbuttonNew = new KPushButton( i18n( "search url", "New" ), this );
m_pushbuttonNew->setIconSet( TQIconSet( SmallIcon( "add" ) ) );
layout->addWidget( m_pushbuttonNew, 0, 1 );
m_pushbuttonEdit = new KPushButton( i18n( "search url", "Edit" ), this );
m_pushbuttonEdit->setIconSet( TQIconSet( SmallIcon( "edit" ) ) );
layout->addWidget( m_pushbuttonEdit, 1, 1 );
m_pushbuttonDelete = new KPushButton( i18n( "search url", "Delete" ), this );
m_pushbuttonDelete->setIconSet( TQIconSet( SmallIcon( "edit-delete" ) ) );
layout->addWidget( m_pushbuttonDelete, 2, 1 );
m_pushbuttonReset = new KPushButton( i18n( "search url", "Reset" ), this );
m_pushbuttonReset->setIconSet( TQIconSet( SmallIcon( "reload" ) ) );
layout->addWidget( m_pushbuttonReset, 4, 1 );
connect( m_pushbuttonNew, SIGNAL( clicked() ), this, SLOT( slotNew() ) );
connect( m_pushbuttonEdit, SIGNAL( clicked() ), this, SLOT( slotEdit() ) );
connect( m_listviewSearchURLs, SIGNAL( doubleClicked( TQListViewItem *, const TQPoint &, int ) ), this, SLOT( slotEdit() ) );
connect( m_pushbuttonDelete, SIGNAL( clicked() ), this, SLOT( slotDelete() ) );
connect( m_pushbuttonReset, SIGNAL( clicked() ), this, SLOT( slotReset() ) );
connect( m_listviewSearchURLs, SIGNAL( selectionChanged( TQListViewItem * ) ), this, SLOT( updateGUI() ) );
connect( m_listviewSearchURLs, SIGNAL( currentChanged( TQListViewItem * ) ), this, SLOT( updateGUI() ) );
connect( m_listviewSearchURLs, SIGNAL( onItem( TQListViewItem * ) ), this, SLOT( updateGUI() ) );
updateGUI();
}
void SettingsSearchURL::urlDialog( TQListViewItem * item )
{
KDialogBase * dlg = new KDialogBase( this, "urldialog", TRUE, item == NULL ? i18n( "New URL" ) : i18n( "Edit URL" ), KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok, TRUE );
TQWidget *container = new TQWidget( dlg, "container" );
TQGridLayout *layout = new TQGridLayout( container, 3, 2, 0, KDialog::spacingHint() );
TQLabel *label = new TQLabel( i18n( "Description:" ), container );
layout->addWidget( label, 0, 0 );
TQLineEdit *descr = new TQLineEdit( container );
label->setBuddy( descr );
layout->addWidget( descr, 0, 1 );
label = new TQLabel( i18n( "URL:" ), container );
layout->addWidget( label, 1, 0 );
TQLineEdit *url = new TQLineEdit( container );
layout->addWidget( url, 1, 1 );
label->setBuddy( url );
url->setMinimumWidth( 384 );
TQToolTip::add( url, i18n( "Within the URL, '%1' will be replaced by the search term." ) );
label = new TQLabel( i18n( "Include Author:" ), container );
layout->addWidget( label, 2, 0 );
TQComboBox *cbIncludeAuthor = new TQComboBox( FALSE, container );
layout->addWidget( cbIncludeAuthor, 2, 1 );
label->setBuddy( cbIncludeAuthor );
cbIncludeAuthor->insertItem( i18n( "Yes" ) );
cbIncludeAuthor->insertItem( i18n( "No" ) );
dlg->setMainWidget( container );
if ( item != NULL )
{
descr->setText( item->text( 0 ) );
url->setText( item->text( 2 ) );
cbIncludeAuthor->setCurrentItem( item->text( 1 ) == i18n( "Yes" ) ? 0 : 1 );
}
if ( dlg->exec() == TQDialog::Accepted )
{
if ( item == NULL )
{
TDEListViewItem *item = new TDEListViewItem( m_listviewSearchURLs, descr->text(), cbIncludeAuthor->currentItem() == 0 ? i18n( "Yes" ) : i18n( "No" ), url->text() );
item->setPixmap( 0, SmallIcon( "text-html" ) );
}
else
{
item->setText( 0, descr->text() );
item->setText( 1, cbIncludeAuthor->currentItem() == 0 ? i18n( "Yes" ) : i18n( "No" ) );
item->setText( 2, url->text() );
}
}
delete dlg;
}
}
#include "settingssearchurl.moc"