X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fmainwindow.hpp;h=e3e98e36b6daa6a0b6432f5b78f10d69e6fcf2af;hb=0402d7a3e425c56321234e4bb546d9b698c6d237;hp=90e915033b8bab19490a3614fbc3b5bc513e6fe5;hpb=051ba3b399abbd83fea8b7ef6f8876884ac0786c;p=pulseview.git diff --git a/pv/mainwindow.hpp b/pv/mainwindow.hpp index 90e91503..e3e98e36 100644 --- a/pv/mainwindow.hpp +++ b/pv/mainwindow.hpp @@ -33,6 +33,11 @@ #include "session.hpp" #include "views/viewbase.hpp" +using std::list; +using std::map; +using std::shared_ptr; +using std::string; + struct srd_decoder; class QVBoxLayout; @@ -65,22 +70,22 @@ private: public: explicit MainWindow(DeviceManager &device_manager, - std::string open_file_name = std::string(), - std::string open_file_format = std::string(), - QWidget *parent = 0); + string open_file_name = string(), + string open_file_format = string(), + QWidget *parent = nullptr); ~MainWindow(); - std::shared_ptr get_active_view() const; + shared_ptr get_active_view() const; - std::shared_ptr add_view(const QString &title, + shared_ptr add_view(const QString &title, views::ViewType type, Session &session); - void remove_view(std::shared_ptr view); + void remove_view(shared_ptr view); - std::shared_ptr add_session(); + shared_ptr add_session(); - void remove_session(std::shared_ptr session); + void remove_session(shared_ptr session); private: void setup_ui(); @@ -89,7 +94,7 @@ private: void restore_ui_settings(); - std::shared_ptr get_tab_session(int index) const; + shared_ptr get_tab_session(int index) const; void closeEvent(QCloseEvent *event); @@ -106,7 +111,7 @@ private Q_SLOTS: Session *session); void on_focus_changed(); - void on_focused_session_changed(std::shared_ptr session); + void on_focused_session_changed(shared_ptr session); void on_new_session_clicked(); void on_run_stop_clicked(); @@ -133,12 +138,12 @@ private Q_SLOTS: private: DeviceManager &device_manager_; - std::list< std::shared_ptr > sessions_; - std::shared_ptr last_focused_session_; + list< shared_ptr > sessions_; + shared_ptr last_focused_session_; - std::map< QDockWidget*, std::shared_ptr > view_docks_; + map< QDockWidget*, shared_ptr > view_docks_; - std::map< std::shared_ptr, QMainWindow*> session_windows_; + map< shared_ptr, QMainWindow*> session_windows_; QWidget *static_tab_widget_; QToolButton *new_session_button_, *run_stop_button_, *settings_button_;