[qt] Removed searchwindow

This commit is contained in:
Alex Zolotarev 2011-05-17 19:27:05 +02:00 committed by Alex Zolotarev
parent 3007d09c6f
commit 9fd7ee3ac4
4 changed files with 0 additions and 120 deletions

View file

@ -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"

View file

@ -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

View file

@ -1,70 +0,0 @@
#include "searchwindow.hpp"
#include "../base/assert.hpp"
#include "../std/bind.hpp"
#include "../map/feature_vec_model.hpp"
#include <QtGui/QHeaderView>
#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];
}
}

View file

@ -1,47 +0,0 @@
#pragma once
#include "../indexer/feature.hpp"
#include "../std/vector.hpp"
#include <QtGui/QLineEdit>
#include <QtGui/QTableWidget>
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<FeatureType> m_features;
};
}