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

11 years ago
/***************************************************************************
* 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 <tqlayout.h>
#include <tqlineedit.h>
#include <tqlabel.h>
#include <tqtooltip.h>
#include <tqheader.h>
#include <tqcombobox.h>
11 years ago
#include <kiconloader.h>
#include <tdelistview.h>
#include <tdelocale.h>
11 years ago
#include <kpushbutton.h>
#include <kdialogbase.h>
#include <tdemessagebox.h>
11 years ago
#include "settings.h"
11 years ago
#include "settingssearchurl.h"
namespace KBibTeX
{
SettingsSearchURL::SettingsSearchURL( TQWidget *parent, const char *name )
: TQWidget( parent, name ), m_counter( 1 )
11 years ago
{
setupGUI();
}
SettingsSearchURL::~SettingsSearchURL()
{
// nothing
}
void SettingsSearchURL::applyData()
{
Settings * settings = Settings::self();
settings->searchURLs.clear();
for ( TQListViewItemIterator it( m_listviewSearchURLs ); it.current(); it++ )
11 years ago
{
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 )
11 years ago
{
TDEListViewItem *item = new TDEListViewItem( m_listviewSearchURLs, ( *it ) ->description, ( *it ) ->includeAuthor ? i18n( "Yes" ) : i18n( "No" ), ( *it ) ->url );
item->setPixmap( 0, SmallIcon( "text-html" ) );
11 years ago
}
}
void SettingsSearchURL::slotNew()
{
urlDialog();
emit configChanged();
updateGUI();
}
void SettingsSearchURL::slotDelete()
{
TQListViewItem * item = m_listviewSearchURLs->selectedItem();
11 years ago
if ( item != NULL )
{
m_listviewSearchURLs->removeItem( item );
emit configChanged();
}
updateGUI();
}
void SettingsSearchURL::slotEdit()
{
TQListViewItem * item = m_listviewSearchURLs->selectedItem();
11 years ago
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() );
11 years ago
layout->setRowStretch( 3, 1 );
layout->setColStretch( 0, 1 );
m_listviewSearchURLs = new TDEListView( this );
11 years ago
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" ) ) );
11 years ago
layout->addWidget( m_pushbuttonNew, 0, 1 );
m_pushbuttonEdit = new KPushButton( i18n( "search url", "Edit" ), this );
m_pushbuttonEdit->setIconSet( TQIconSet( SmallIcon( "edit" ) ) );
11 years ago
layout->addWidget( m_pushbuttonEdit, 1, 1 );
m_pushbuttonDelete = new KPushButton( i18n( "search url", "Delete" ), this );
m_pushbuttonDelete->setIconSet( TQIconSet( SmallIcon( "edit-delete" ) ) );
11 years ago
layout->addWidget( m_pushbuttonDelete, 2, 1 );
m_pushbuttonReset = new KPushButton( i18n( "search url", "Reset" ), this );
m_pushbuttonReset->setIconSet( TQIconSet( SmallIcon( "reload" ) ) );
11 years ago
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() ) );
11 years ago
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() ) );
11 years ago
updateGUI();
}
void SettingsSearchURL::urlDialog( TQListViewItem * item )
11 years ago
{
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 );
11 years ago
layout->addWidget( label, 0, 0 );
TQLineEdit *descr = new TQLineEdit( container );
11 years ago
label->setBuddy( descr );
layout->addWidget( descr, 0, 1 );
label = new TQLabel( i18n( "URL:" ), container );
11 years ago
layout->addWidget( label, 1, 0 );
TQLineEdit *url = new TQLineEdit( container );
11 years ago
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 );
11 years ago
layout->addWidget( label, 2, 0 );
TQComboBox *cbIncludeAuthor = new TQComboBox( FALSE, container );
11 years ago
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 )
11 years ago
{
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" ) );
11 years ago
}
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"