summaryrefslogtreecommitdiffstats
path: root/src/webquerydblp.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-06-29 12:56:53 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-04 03:11:35 +0200
commit5f5e7c5455d52826b0bd50f64fcffb7695ce970d (patch)
treec8ee8792d3fb139365abbf70c2255f1e69d2aa34 /src/webquerydblp.cpp
parent251c9a439759c830d34c70683d0fc9454d703010 (diff)
downloadkbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz
kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip
Initial TQt conversion
Diffstat (limited to 'src/webquerydblp.cpp')
-rw-r--r--src/webquerydblp.cpp64
1 files changed, 32 insertions, 32 deletions
diff --git a/src/webquerydblp.cpp b/src/webquerydblp.cpp
index 38d6492..dceb074 100644
--- a/src/webquerydblp.cpp
+++ b/src/webquerydblp.cpp
@@ -17,13 +17,13 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
-#include <qfile.h>
-#include <qapplication.h>
-#include <qspinbox.h>
-#include <qregexp.h>
-#include <qcheckbox.h>
-#include <qlabel.h>
-#include <qlayout.h>
+#include <ntqfile.h>
+#include <ntqapplication.h>
+#include <ntqspinbox.h>
+#include <ntqregexp.h>
+#include <ntqcheckbox.h>
+#include <ntqlabel.h>
+#include <ntqlayout.h>
#include <klocale.h>
#include <klineedit.h>
@@ -40,62 +40,62 @@
namespace KBibTeX
{
- WebQueryDBLPWidget::WebQueryDBLPWidget( QWidget *parent, const char *name )
+ WebQueryDBLPWidget::WebQueryDBLPWidget( TQWidget *parent, const char *name )
: WebQueryWidget( parent, name )
{
init();
Settings *settings = Settings::self();
- QString value = settings->getWebQueryDefault( "DBLP_query" );
- value = value == QString::null ? "" : value;
+ TQString value = settings->getWebQueryDefault( "DBLP_query" );
+ value = value == TQString::null ? "" : value;
lineEditQuery->setText( value );
slotTextChanged( value, true );
value = settings->getWebQueryDefault( "DBLP_keepSeparate" );
- value = value == QString::null || value.isEmpty() ? "0" : value;
+ value = value == TQString::null || value.isEmpty() ? "0" : value;
checkBoxKeepEntriesSeparate->setChecked( value == "1" );
}
void WebQueryDBLPWidget::init()
{
- QVBoxLayout *vLayout = new QVBoxLayout( this, 0, KDialog::spacingHint() );
+ TQVBoxLayout *vLayout = new TQVBoxLayout( this, 0, KDialog::spacingHint() );
- QHBoxLayout *hLayout = new QHBoxLayout( );
+ TQHBoxLayout *hLayout = new TQHBoxLayout( );
vLayout->addLayout( hLayout );
KPushButton *clearSearchText = new KPushButton( this );
- clearSearchText->setIconSet( QIconSet( SmallIcon( "locationbar_erase" ) ) );
+ clearSearchText->setIconSet( TQIconSet( SmallIcon( "locationbar_erase" ) ) );
hLayout->addWidget( clearSearchText );
- QLabel *label = new QLabel( i18n( "Search &term:" ), this );
+ TQLabel *label = new TQLabel( i18n( "Search &term:" ), this );
hLayout->addWidget( label );
lineEditQuery = new KLineEdit( this );
hLayout->addWidget( lineEditQuery );
label->setBuddy( lineEditQuery );
hLayout->addSpacing( KDialog::spacingHint() * 2 );
connect( clearSearchText, SIGNAL( clicked() ), lineEditQuery, SLOT( clear() ) );
- connect( lineEditQuery, SIGNAL( textChanged( const QString& ) ), this, SLOT( slotTextChanged( const QString& ) ) );
+ connect( lineEditQuery, SIGNAL( textChanged( const TQString& ) ), this, SLOT( slotTextChanged( const TQString& ) ) );
hLayout->setStretchFactor( lineEditQuery, 4 );
KCompletion *completionQuery = lineEditQuery->completionObject();
- label = new QLabel( i18n( "&Number of results:" ), this );
+ label = new TQLabel( i18n( "&Number of results:" ), this );
hLayout->addWidget( label );
- spinBoxMaxHits = new QSpinBox( 1, 250, 1, this );
+ spinBoxMaxHits = new TQSpinBox( 1, 250, 1, this );
spinBoxMaxHits->setValue( 10 );
hLayout->addWidget( spinBoxMaxHits );
label->setBuddy( spinBoxMaxHits );
- hLayout = new QHBoxLayout( );
+ hLayout = new TQHBoxLayout( );
vLayout->addLayout( hLayout );
- checkBoxKeepEntriesSeparate = new QCheckBox( i18n( "Do not merge corresponding entries" ), this );
+ checkBoxKeepEntriesSeparate = new TQCheckBox( i18n( "Do not merge corresponding entries" ), this );
hLayout->addWidget( checkBoxKeepEntriesSeparate );
vLayout->addStretch( 0 );
connect( lineEditQuery, SIGNAL( returnPressed() ), this, SIGNAL( startSearch() ) );
- connect( lineEditQuery, SIGNAL( returnPressed( const QString& ) ), completionQuery, SLOT( addItem( const QString& ) ) );
+ connect( lineEditQuery, SIGNAL( returnPressed( const TQString& ) ), completionQuery, SLOT( addItem( const TQString& ) ) );
}
- WebQueryDBLP::WebQueryDBLP( QWidget* parent ): WebQuery( parent )
+ WebQueryDBLP::WebQueryDBLP( TQWidget* parent ): WebQuery( parent )
{
m_widget = new WebQueryDBLPWidget( parent );
}
@@ -105,17 +105,17 @@ namespace KBibTeX
delete m_widget;
}
- QString WebQueryDBLP::title()
+ TQString WebQueryDBLP::title()
{
return i18n( "DBLP" );
}
- QString WebQueryDBLP::disclaimer()
+ TQString WebQueryDBLP::disclaimer()
{
return i18n( "DBLP - Copyright" );
}
- QString WebQueryDBLP::disclaimerURL()
+ TQString WebQueryDBLP::disclaimerURL()
{
return "http://www.informatik.uni-trier.de/~ley/db/copyright.html";
}
@@ -135,19 +135,19 @@ namespace KBibTeX
int numberOfResults = m_widget->spinBoxMaxHits->value();
setNumStages( numberOfResults + 1 );
- QString searchTerm = m_widget->lineEditQuery->text().stripWhiteSpace().replace( '$', "" );
+ TQString searchTerm = m_widget->lineEditQuery->text().stripWhiteSpace().replace( '$', "" );
if ( searchTerm.isEmpty() )
{
setEndSearch( WebQuery::statusInvalidQuery );
return;
}
- KURL url = KURL( QString( "http://dblp.l3s.de/?newsearch=1&q=%1&search_opt=all&synt_query_exp=full" ).arg( searchTerm.replace( "%", "%25" ).replace( "+", "%2B" ).replace( " ", "%20" ).replace( "#", "%23" ).replace( "&", "%26" ).replace( "?", "%3F" ) ) );
+ KURL url = KURL( TQString( "http://dblp.l3s.de/?newsearch=1&q=%1&search_opt=all&synt_query_exp=full" ).arg( searchTerm.replace( "%", "%25" ).replace( "+", "%2B" ).replace( " ", "%20" ).replace( "#", "%23" ).replace( "&", "%26" ).replace( "?", "%3F" ) ) );
- QString completeText = download( url );
- if ( completeText != QString::null && !m_aborted )
+ TQString completeText = download( url );
+ if ( completeText != TQString::null && !m_aborted )
{
- QRegExp findBibTeXurl( "<a href=\"(http://dblp.uni-trier.de/rec/bibtex/[^\"]+)\"" );
+ TQRegExp findBibTeXurl( "<a href=\"(http://dblp.uni-trier.de/rec/bibtex/[^\"]+)\"" );
findBibTeXurl.search( completeText );
int pos = findBibTeXurl.pos( 1 );
@@ -198,10 +198,10 @@ namespace KBibTeX
}
else if ( !m_aborted )
{
- QString message = KIO::NetAccess::lastErrorString();
+ TQString message = KIO::NetAccess::lastErrorString();
if ( message.isEmpty() )
message.prepend( '\n' );
- message.prepend( QString( i18n( "Querying database '%1' failed." ) ).arg( title() ) );
+ message.prepend( TQString( i18n( "Querying database '%1' failed." ) ).arg( title() ) );
KMessageBox::error( m_parent, message );
setEndSearch( WebQuery::statusError );
}