X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Ftoolbars%2Fmainbar.hpp;h=95959e1757212ae7d45738a60cdf649ddee9f02a;hb=fd22c71c1a9cc470b53c71c0ee131a4b2d645f80;hp=c05a146e28f77518744cf50cb37a0232bf8b2b52;hpb=101e7a9b40cc97fcd94aca7a1bed086b1f56f269;p=pulseview.git diff --git a/pv/toolbars/mainbar.hpp b/pv/toolbars/mainbar.hpp index c05a146..95959e1 100644 --- a/pv/toolbars/mainbar.hpp +++ b/pv/toolbars/mainbar.hpp @@ -88,11 +88,7 @@ public: void reset_device_selector(); - void select_device(std::shared_ptr device); - - void load_init_file(const std::string &file_name, - const std::string &format); - + QAction* action_new_view() const; QAction* action_open() const; QAction* action_save_as() const; QAction* action_save_selection_as() const; @@ -104,16 +100,13 @@ public: QAction* action_view_zoom_one_to_one() const; QAction* action_view_show_cursors() const; + void session_error(const QString text, const QString info_text); + private: void run_stop(); void select_init_device(); - void load_file(QString file_name, - std::shared_ptr format = nullptr, - const std::map &options = - std::map()); - void save_selection_to_file(); void update_sample_rate_selector(); @@ -123,8 +116,7 @@ private: void commit_sample_rate(); void commit_sample_count(); - void session_error(const QString text, const QString info_text); - + QAction *const action_new_view_; QAction *const action_open_; QAction *const action_save_as_; QAction *const action_save_selection_as_; @@ -147,12 +139,14 @@ private Q_SLOTS: void import_file(std::shared_ptr format); void on_device_selected(); + void on_device_changed(); 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(); @@ -169,9 +163,14 @@ private Q_SLOTS: void on_actionViewShowCursors_triggered(); + void on_always_zoom_to_fit_changed(bool state); + protected: bool eventFilter(QObject *watched, QEvent *event); +Q_SIGNALS: + void new_view(Session *session); + private: Session &session_; @@ -190,14 +189,6 @@ private: bool sample_count_supported_; - QIcon icon_red_; - QIcon icon_green_; - QIcon icon_grey_; - QToolButton run_stop_button_; - QAction *run_stop_button_action_; - - QToolButton menu_button_; - #ifdef ENABLE_DECODE QMenu *const menu_decoders_add_; #endif