X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fmainwindow.hpp;h=0611e0021c512e4c3fb7b654a5432bae168bc38d;hp=90e915033b8bab19490a3614fbc3b5bc513e6fe5;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=00f6bae935837b38b0d03a5928ba8175d460413f diff --git a/pv/mainwindow.hpp b/pv/mainwindow.hpp index 90e91503..0611e002 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(), + string open_file_name = string(), + string open_file_format = string(), QWidget *parent = 0); ~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_;