/* * This file is part of the DSLogic-gui project. * DSLogic-gui is based on PulseView. * * Copyright (C) 2012 Joel Holdsworth * Copyright (C) 2013 DreamSourceLab * * 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 DSLOGIC_PV_MEASUREDOCK_H #define DSLOGIC_PV_MEASUREDOCK_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace pv { class SigSession; namespace view { class View; } namespace dock { class MeasureDock : public QWidget { Q_OBJECT public: MeasureDock(QWidget *parent, pv::view::View &view, SigSession &session); ~MeasureDock(); void paintEvent(QPaintEvent *); signals: private slots: void delta_update(); void goto_cursor(); public slots: void cursor_update(); void cursor_moved(); void mouse_moved(); private: SigSession &_session; view::View &_view; QGridLayout *_mouse_layout; QGroupBox *_mouse_groupBox; QCheckBox *_fen_checkBox; QLabel *_width_label; QLabel *_period_label; QLabel *_freq_label; QGridLayout *_cursor_layout; QGroupBox *_cursor_groupBox; QComboBox *_t1_comboBox; QComboBox *_t2_comboBox; QLabel *_delta_label; QLabel *_cnt_label; QVector _cursor_pushButton_list; QVector _curpos_label_list; QVector _curvalue_label_list; QVector _radix_comboBox_list; QVector _space_label_list; }; } // namespace dock } // namespace pv #endif // DSLOGIC_PV_MEASUREDOCK_H