X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fmainwindow.h;h=47d3e66d0cad0efa131b7a72b4d796026966eb34;hp=32b8f6f30da3af195bb1c6899ed3aa96f02a7272;hb=488f5d3fee3a3ec602718d59edf8a61b6888470c;hpb=1d478458c2b7b314a48981ceb3264ebc852df40d diff --git a/pv/mainwindow.h b/pv/mainwindow.h index 32b8f6f3..47d3e66d 100644 --- a/pv/mainwindow.h +++ b/pv/mainwindow.h @@ -21,6 +21,8 @@ #ifndef PULSEVIEW_PV_MAINWINDOW_H #define PULSEVIEW_PV_MAINWINDOW_H +#include + #include #include "sigsession.h" @@ -35,7 +37,9 @@ class QWidget; namespace pv { +namespace toolbars { class SamplingBar; +} namespace view { class View; @@ -51,15 +55,45 @@ public: private: void setup_ui(); + void scan_devices(); + + void session_error(const QString text, const QString info_text); + +private slots: + void load_file(QString file_name); + + + void show_session_error( + const QString text, const QString info_text); + + void on_actionOpen_triggered(); + void on_actionQuit_triggered(); + + void on_actionConnect_triggered(); + + void on_actionViewZoomIn_triggered(); + + void on_actionViewZoomOut_triggered(); + + void on_actionViewShowCursors_triggered(); + + void on_actionAbout_triggered(); + + void run_stop(); + + void capture_state_changed(int state); private: SigSession _session; + std::list _devices; + pv::view::View *_view; QMenuBar *_menu_bar; QMenu *_menu_file; QAction *_action_open; + QAction *_action_connect; QAction *_action_quit; QMenu *_menu_view; @@ -74,25 +108,7 @@ private: QVBoxLayout *_vertical_layout; QToolBar *_toolbar; - SamplingBar *_sampling_bar; - -private slots: - void load_file(QString file_name); - - void on_actionOpen_triggered(); - void on_actionQuit_triggered(); - - void on_actionViewZoomIn_triggered(); - - void on_actionViewZoomOut_triggered(); - - void on_actionViewShowCursors_triggered(); - - void on_actionAbout_triggered(); - - void run_stop(); - - void capture_state_changed(int state); + toolbars::SamplingBar *_sampling_bar; }; } // namespace pv