diff --git a/qt/mainwindow.cpp b/qt/mainwindow.cpp index 87c7ad48be..19acd4f724 100644 --- a/qt/mainwindow.cpp +++ b/qt/mainwindow.cpp @@ -22,7 +22,6 @@ #ifdef DEBUG // code removed for desktop releases #include "update_dialog.hpp" -#include "searchwindow.hpp" #include "classificator_tree.hpp" #include "info_dialog.hpp" #include "guide_page.hpp" diff --git a/qt/qt.pro b/qt/qt.pro index d2c91e2694..f5d6185543 100644 --- a/qt/qt.pro +++ b/qt/qt.pro @@ -78,13 +78,11 @@ CONFIG(debug, debug|release) { QT *= webkit SOURCES += \ - searchwindow.cpp \ update_dialog.cpp \ classificator_tree.cpp \ guide_page.cpp HEADERS += \ - searchwindow.hpp \ update_dialog.hpp \ classificator_tree.hpp \ guide_page.hpp diff --git a/qt/searchwindow.cpp b/qt/searchwindow.cpp deleted file mode 100644 index e08699e61c..0000000000 --- a/qt/searchwindow.cpp +++ /dev/null @@ -1,70 +0,0 @@ -#include "searchwindow.hpp" - -#include "../base/assert.hpp" -#include "../std/bind.hpp" -#include "../map/feature_vec_model.hpp" - -#include - -#include "../base/start_mem_debug.hpp" - - -namespace qt { - -FindTableWnd::FindTableWnd(QWidget * pParent, FindEditorWnd * pEditor, model_t * pModel) -: base_type(0, 1, pParent), m_pEditor(pEditor), m_pModel(pModel) -{ - horizontalHeader()->hide(); - verticalHeader()->hide(); - - setShowGrid(false); - setSelectionMode(QAbstractItemView::NoSelection); - - setMouseTracking(true); - - connect(m_pEditor, SIGNAL(textChanged(QString const &)), this, SLOT(OnTextChanged(QString const &))); -} - -bool FindTableWnd::AddFeature(FeatureType const & f) -{ - string utf8name; - f.GetName(utf8name); - if (!utf8name.empty()) - { - // 200 rows is enough - int const r = rowCount(); - if (r > 200) - return false; - - insertRow(r); - - QTableWidgetItem * item = new QTableWidgetItem(QString::fromUtf8(utf8name.c_str())); - item->setFlags(item->flags() ^ Qt::ItemIsEditable); - setItem(r, 0, item); - - m_features.push_back(f); - } - - return true; -} - -void FindTableWnd::OnTextChanged(QString const & s) -{ - setRowCount(0); - - m_features.clear(); - - if (!s.isEmpty()) - { - QByteArray utf8bytes = s.toUtf8(); - // Search should be here, but it's currently unavailable. - } -} - -FeatureType const & FindTableWnd::GetFeature(size_t row) const -{ - ASSERT ( row < m_features.size(), (row, m_features.size()) ); - return m_features[row]; -} - -} diff --git a/qt/searchwindow.hpp b/qt/searchwindow.hpp deleted file mode 100644 index 3d51df34e0..0000000000 --- a/qt/searchwindow.hpp +++ /dev/null @@ -1,47 +0,0 @@ -#pragma once - -#include "../indexer/feature.hpp" - -#include "../std/vector.hpp" - -#include -#include - -namespace model -{ - class FeatureVector; - class FeaturesFetcher; -} - -namespace qt -{ - // edit box class - typedef QLineEdit FindEditorWnd; - - // feature names table class - class FindTableWnd : public QTableWidget - { - typedef QTableWidget base_type; - - Q_OBJECT - - typedef model::FeaturesFetcher model_t; - - FindEditorWnd * m_pEditor; - model_t * m_pModel; - - public: - FindTableWnd(QWidget * pParent, FindEditorWnd * pEditor, model_t * pModel); - - FeatureType const & GetFeature(size_t row) const; - - protected: - bool AddFeature(FeatureType const & f); - - protected Q_SLOTS: - void OnTextChanged(QString const & s); - - private: - vector m_features; - }; -}