forked from Ivasoft/DSView
101 lines
2.2 KiB
C++
101 lines
2.2 KiB
C++
/*
|
|
* This file is part of the DSView project.
|
|
* DSView is based on PulseView.
|
|
*
|
|
* Copyright (C) 2013 DreamSourceLab <support@dreamsourcelab.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
|
|
#ifndef DSVIEW_PV_SEARCHDOCK_H
|
|
#define DSVIEW_PV_SEARCHDOCK_H
|
|
|
|
#include <QDockWidget>
|
|
#include <QPushButton>
|
|
#include <QLabel>
|
|
#include <QRadioButton>
|
|
#include <QSlider>
|
|
#include <QLineEdit>
|
|
#include <QSpinBox>
|
|
#include <QTableWidget>
|
|
#include <QCheckBox>
|
|
|
|
#include <QVector>
|
|
#include <QGridLayout>
|
|
#include <QVBoxLayout>
|
|
#include <QHBoxLayout>
|
|
|
|
#include <vector>
|
|
|
|
#include "../widgets/fakelineedit.h"
|
|
#include "../ui/dscombobox.h"
|
|
#include "../interface/icallbacks.h"
|
|
#include "../ui/uimanager.h"
|
|
|
|
namespace pv {
|
|
|
|
class SigSession;
|
|
|
|
namespace view {
|
|
class View;
|
|
}
|
|
|
|
namespace widgets {
|
|
class FakeLineEdit;
|
|
}
|
|
|
|
namespace dock {
|
|
|
|
class SearchDock : public QWidget, public IUiWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SearchDock(QWidget *parent, pv::view::View &view, SigSession *session);
|
|
~SearchDock();
|
|
|
|
void paintEvent(QPaintEvent *);
|
|
|
|
private:
|
|
void retranslateUi();
|
|
void reStyle();
|
|
|
|
//IUiWindow
|
|
void UpdateLanguage() override;
|
|
void UpdateTheme() override;
|
|
void UpdateFont() override;
|
|
|
|
public slots:
|
|
void on_previous();
|
|
void on_next();
|
|
void on_set();
|
|
|
|
private:
|
|
SigSession *_session;
|
|
view::View &_view;
|
|
std::map<uint16_t, QString> _pattern;
|
|
|
|
QPushButton _pre_button;
|
|
QPushButton _nxt_button;
|
|
widgets::FakeLineEdit* _search_value;
|
|
QPushButton *_search_button;
|
|
};
|
|
|
|
} // namespace dock
|
|
} // namespace pv
|
|
|
|
#endif // DSVIEW_PV_SEARCHDOCK_H
|