forked from organicmaps/organicmaps
[qt] Added search active indicator and clear text button
This commit is contained in:
parent
dd93eaae8f
commit
6eb1705e08
9 changed files with 66 additions and 9 deletions
|
@ -15,7 +15,7 @@
|
|||
AboutDialog::AboutDialog(QWidget * parent)
|
||||
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint)
|
||||
{
|
||||
QIcon icon(":logo.png");
|
||||
QIcon icon(":/ui/logo.png");
|
||||
setWindowIcon(icon);
|
||||
setWindowTitle(QMenuBar::tr("About"));
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ namespace qt
|
|||
QStringList const & buttons)
|
||||
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint)
|
||||
{
|
||||
QIcon icon(":logo.png");
|
||||
QIcon icon(":/ui/logo.png");
|
||||
setWindowIcon(icon);
|
||||
setWindowTitle(title);
|
||||
setFocusPolicy(Qt::StrongFocus);
|
||||
|
|
|
@ -54,7 +54,7 @@ MainWindow::MainWindow()
|
|||
setCentralWidget(m_pDrawWidget);
|
||||
|
||||
setWindowTitle(tr("MapsWithMe"));
|
||||
setWindowIcon(QIcon(":logo.png"));
|
||||
setWindowIcon(QIcon(":/ui/logo.png"));
|
||||
|
||||
#ifndef OMIM_OS_WINDOWS
|
||||
QMenu * helpMenu = new QMenu(tr("Help"), this);
|
||||
|
|
|
@ -16,7 +16,7 @@ namespace qt
|
|||
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint),
|
||||
m_autoUpdatesEnabled(autoUpdatesEnabled)
|
||||
{
|
||||
QIcon icon(":logo.png");
|
||||
QIcon icon(":/ui/logo.png");
|
||||
setWindowIcon(icon);
|
||||
setWindowTitle(tr("Preferences"));
|
||||
|
||||
|
|
BIN
qt/res/busy.png
Normal file
BIN
qt/res/busy.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
|
@ -18,7 +18,9 @@
|
|||
<file>location-search.png</file>
|
||||
<file>location.png</file>
|
||||
</qresource>
|
||||
<qresource prefix="/">
|
||||
<qresource prefix="/ui">
|
||||
<file>logo.png</file>
|
||||
<file>busy.png</file>
|
||||
<file>x.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
</RCC>
|
BIN
qt/res/x.png
Normal file
BIN
qt/res/x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.2 KiB |
|
@ -3,10 +3,13 @@
|
|||
|
||||
#include "../std/bind.hpp"
|
||||
|
||||
#include <QtCore/QTimer>
|
||||
#include <QtGui/QHeaderView>
|
||||
#include <QtGui/QTableWidget>
|
||||
#include <QtGui/QLineEdit>
|
||||
#include <QtGui/QVBoxLayout>
|
||||
#include <QtGui/QHBoxLayout>
|
||||
#include <QtGui/QPushButton>
|
||||
|
||||
namespace qt
|
||||
{
|
||||
|
@ -26,8 +29,18 @@ SearchPanel::SearchPanel(DrawWidget * drawWidget, QWidget * parent)
|
|||
m_pTable->horizontalHeader()->setResizeMode(QHeaderView::ResizeToContents);
|
||||
connect(m_pTable, SIGNAL(cellClicked(int,int)), this, SLOT(OnSearchPanelItemClicked(int,int)));
|
||||
|
||||
m_pClearButton = new QPushButton(this);
|
||||
connect(m_pClearButton, SIGNAL(pressed()), this, SLOT(OnClearButton()));
|
||||
m_pClearButton->setVisible(false);
|
||||
m_pClearButton->setFocusPolicy(Qt::NoFocus);
|
||||
m_pAnimationTimer = new QTimer(this);
|
||||
connect(m_pAnimationTimer, SIGNAL(timeout()), this, SLOT(OnAnimationTimer()));
|
||||
|
||||
QHBoxLayout * horizontalLayout = new QHBoxLayout();
|
||||
horizontalLayout->addWidget(m_pEditor);
|
||||
horizontalLayout->addWidget(m_pClearButton);
|
||||
QVBoxLayout * verticalLayout = new QVBoxLayout();
|
||||
verticalLayout->addWidget(m_pEditor);
|
||||
verticalLayout->addLayout(horizontalLayout);
|
||||
verticalLayout->addWidget(m_pTable);
|
||||
setLayout(verticalLayout);
|
||||
|
||||
|
@ -62,7 +75,7 @@ void SearchPanel::OnSearchResult(search::Result * result, int queryId)
|
|||
if (queryId != m_queryId)
|
||||
return;
|
||||
|
||||
if (!result->GetString().empty()) // last element
|
||||
if (!result->GetString().empty())
|
||||
{
|
||||
int const rowCount = m_pTable->rowCount();
|
||||
m_pTable->setRowCount(rowCount + 1);
|
||||
|
@ -72,7 +85,12 @@ void SearchPanel::OnSearchResult(search::Result * result, int queryId)
|
|||
m_results.push_back(result);
|
||||
}
|
||||
else
|
||||
{ // last element
|
||||
delete result;
|
||||
// stop search busy indicator
|
||||
m_pAnimationTimer->stop();
|
||||
m_pClearButton->setIcon(QIcon(":/ui/x.png"));
|
||||
}
|
||||
}
|
||||
|
||||
void SearchPanel::OnSearchTextChanged(QString const & str)
|
||||
|
@ -85,8 +103,20 @@ void SearchPanel::OnSearchTextChanged(QString const & str)
|
|||
|
||||
QString const normalized = str.normalized(QString::NormalizationForm_KC);
|
||||
if (!normalized.isEmpty())
|
||||
{
|
||||
m_pDrawWidget->Search(normalized.toUtf8().constData(),
|
||||
bind(&SearchPanel::SearchResultThreadFunc, this, _1, m_queryId));
|
||||
// show busy indicator
|
||||
if (!m_pAnimationTimer->isActive())
|
||||
m_pAnimationTimer->start(200);
|
||||
OnAnimationTimer();
|
||||
m_pClearButton->setFlat(true);
|
||||
m_pClearButton->setVisible(true);
|
||||
}
|
||||
else
|
||||
{ // hide X button
|
||||
m_pClearButton->setVisible(false);
|
||||
}
|
||||
}
|
||||
|
||||
void SearchPanel::OnSearchPanelItemClicked(int row, int)
|
||||
|
@ -122,4 +152,23 @@ void SearchPanel::OnViewportChanged()
|
|||
OnSearchTextChanged(txt);
|
||||
}
|
||||
|
||||
void SearchPanel::OnAnimationTimer()
|
||||
{
|
||||
static int angle = 0;
|
||||
QPixmap pixmap(":/ui/busy.png");
|
||||
QSize const oldSize = pixmap.size();
|
||||
QMatrix rm;
|
||||
angle += 15;
|
||||
if (angle >= 360)
|
||||
angle = 0;
|
||||
rm.rotate(angle);
|
||||
pixmap = pixmap.transformed(rm);
|
||||
m_pClearButton->setIcon(QIcon(pixmap));
|
||||
}
|
||||
|
||||
void SearchPanel::OnClearButton()
|
||||
{
|
||||
m_pEditor->setText("");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -8,6 +8,8 @@
|
|||
|
||||
class QTableWidget;
|
||||
class QLineEdit;
|
||||
class QPushButton;
|
||||
class QTimer;
|
||||
|
||||
namespace qt
|
||||
{
|
||||
|
@ -19,6 +21,8 @@ class SearchPanel : public QWidget
|
|||
DrawWidget * m_pDrawWidget;
|
||||
QTableWidget * m_pTable;
|
||||
QLineEdit * m_pEditor;
|
||||
QPushButton * m_pClearButton;
|
||||
QTimer * m_pAnimationTimer;
|
||||
|
||||
/// Stores current search results
|
||||
vector<search::Result *> m_results;
|
||||
|
@ -38,12 +42,14 @@ public:
|
|||
explicit SearchPanel(DrawWidget * drawWidget, QWidget * parent);
|
||||
~SearchPanel();
|
||||
|
||||
protected slots:
|
||||
private slots:
|
||||
void OnSearchPanelItemClicked(int row, int column);
|
||||
void OnSearchTextChanged(QString const &);
|
||||
/// Called via signal to support multithreading
|
||||
void OnSearchResult(search::Result * result, int queryId);
|
||||
void OnViewportChanged();
|
||||
void OnAnimationTimer();
|
||||
void OnClearButton();
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue