X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Ftoolbars%2Fmainbar.hpp;h=a47288c736c022b415e5cece48fd9bb81ac68197;hp=8e299dc9f8a121436c77891ad9fbb0ce7ac9c656;hb=f4ce3e772e3dad5b59f1ab27a6a3c01fdbfb8e1d;hpb=ed43ef2e59baab85aa0381b08db101b7800e5c64 diff --git a/pv/toolbars/mainbar.hpp b/pv/toolbars/mainbar.hpp index 8e299dc9..a47288c7 100644 --- a/pv/toolbars/mainbar.hpp +++ b/pv/toolbars/mainbar.hpp @@ -26,6 +26,8 @@ #include #include +#include + #include #include #include @@ -33,6 +35,7 @@ #include #include +#include #include #include #include @@ -40,6 +43,7 @@ namespace sigrok { class Device; class InputFormat; +class OutputFormat; } Q_DECLARE_METATYPE(std::shared_ptr) @@ -51,9 +55,15 @@ namespace pv { class MainWindow; class Session; +namespace views { +namespace TraceView { +class View; +} +} + namespace toolbars { -class MainBar : public QToolBar +class MainBar : public pv::views::trace::StandardBar { Q_OBJECT @@ -62,14 +72,43 @@ private: static const uint64_t MaxSampleCount; static const uint64_t DefaultSampleCount; + /** + * Name of the setting used to remember the directory + * containing the last file that was opened. + */ + static const char *SettingOpenDirectory; + + /** + * Name of the setting used to remember the directory + * containing the last file that was saved. + */ + static const char *SettingSaveDirectory; + public: - MainBar(Session &session, pv::MainWindow &main_window); + MainBar(Session &session, QWidget *parent, + pv::views::TraceView::View *view); void update_device_list(); void set_capture_state(pv::Session::capture_state state); + void reset_device_selector(); + + QAction* action_new_view() const; + QAction* action_open() const; + QAction* action_save_as() const; + QAction* action_save_selection_as() const; + QAction* action_connect() const; + + void session_error(const QString text, const QString info_text); + private: + void run_stop(); + + void select_init_device(); + + void save_selection_to_file(); + void update_sample_rate_selector(); void update_sample_rate_selector_value(); void update_sample_count_selector(); @@ -77,20 +116,47 @@ private: void commit_sample_rate(); void commit_sample_count(); + QAction *const action_new_view_; + QAction *const action_open_; + QAction *const action_save_as_; + QAction *const action_save_selection_as_; + QAction *const action_connect_; + private Q_SLOTS: + void show_session_error(const QString text, const QString info_text); + + void add_decoder(srd_decoder *decoder); + + void export_file(std::shared_ptr format, + bool selection_only = false); + void import_file(std::shared_ptr format); + void on_device_selected(); + void on_device_changed(); + void on_capture_state_changed(int state); void on_sample_count_changed(); void on_sample_rate_changed(); - void on_run_stop(); void on_config_changed(); + void on_actionNewView_triggered(); + + void on_actionOpen_triggered(); + void on_actionSaveAs_triggered(); + void on_actionSaveSelectionAs_triggered(); + + void on_actionConnect_triggered(); + protected: + void add_toolbar_widgets(); + bool eventFilter(QObject *watched, QEvent *event); +Q_SIGNALS: + void new_view(Session *session); + private: - Session &session_; - MainWindow &main_window_; + QToolButton *open_button_, *save_button_; pv::widgets::DeviceToolButton device_selector_; @@ -98,6 +164,7 @@ private: QAction *configure_button_action_; pv::widgets::PopupToolButton channels_button_; + QAction *channels_button_action_; pv::widgets::SweepTimingWidget sample_count_; pv::widgets::SweepTimingWidget sample_rate_; @@ -106,12 +173,10 @@ private: bool sample_count_supported_; - QIcon icon_red_; - QIcon icon_green_; - QIcon icon_grey_; - QToolButton run_stop_button_; - - QToolButton menu_button_; +#ifdef ENABLE_DECODE + QToolButton *add_decoder_button_; + QMenu *const menu_decoders_add_; +#endif }; } // namespace toolbars