summaryrefslogtreecommitdiffstats
path: root/src/searchbar.h
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/searchbar.h
parent251c9a439759c830d34c70683d0fc9454d703010 (diff)
downloadkbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz
kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip
Initial TQt conversion
Diffstat (limited to 'src/searchbar.h')
-rw-r--r--src/searchbar.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/searchbar.h b/src/searchbar.h
index e733d42..7f31a38 100644
--- a/src/searchbar.h
+++ b/src/searchbar.h
@@ -20,14 +20,14 @@
#ifndef KBIBTEXSEARCHBAR_H
#define KBIBTEXSEARCHBAR_H
-#include <qwidget.h>
+#include <ntqwidget.h>
#include <kxmlguifactory.h>
#include <documentlistview.h>
#include <entryfield.h>
-class QTimer;
+class TQTimer;
class KPushButton;
class KPopupMenu;
class KHistoryCombo;
@@ -38,27 +38,27 @@ namespace KBibTeX
/**
@author Thomas Fischer
*/
- class SearchBar : public QWidget
+ class SearchBar : public TQWidget
{
Q_OBJECT
public:
- SearchBar( QWidget *parent = 0, const char *name = "search_bar" );
+ SearchBar( TQWidget *parent = 0, const char *name = "search_bar" );
~SearchBar();
void setFactory( KXMLGUIFactory *factory, KXMLGUIClient *client );
void restoreState();
signals:
- void doSearch( const QString &text, BibTeX::Element::FilterType, BibTeX::EntryField::FieldType fieldType );
+ void doSearch( const TQString &text, BibTeX::Element::FilterType, BibTeX::EntryField::FieldType fieldType );
void onlineSearch();
public slots:
- void setSearch( const QString&text, BibTeX::Element::FilterType, BibTeX::EntryField::FieldType fieldType );
+ void setSearch( const TQString&text, BibTeX::Element::FilterType, BibTeX::EntryField::FieldType fieldType );
private:
KPushButton *m_pushButtonClearSearchText;
KHistoryCombo *m_comboboxFilter;
- QTimer *m_timerInput;
+ TQTimer *m_timerInput;
KPushButton *m_pushButtonAddElement;
KPushButton *m_pushButtonSearchOnlineDatabases;
KComboBox *m_comboboxFilterType;