X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdialogs%2Fconnect.hpp;h=914c58783ee3693b87ed6b7c2a3232c0eb119a62;hp=cc477631571eae3b97dc31f3b25a627bbab18ccc;hb=521bac13ae900d74005e5d76e2c88f586ec7367a;hpb=9894618a8c72e268b8cf2f0ca6ac57f01d9ad3f9 diff --git a/pv/dialogs/connect.hpp b/pv/dialogs/connect.hpp index cc477631..914c5878 100644 --- a/pv/dialogs/connect.hpp +++ b/pv/dialogs/connect.hpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #ifndef PULSEVIEW_PV_CONNECT_HPP @@ -23,22 +22,32 @@ #include +#include #include #include #include #include +#include #include #include #include +#include #include +using std::shared_ptr; + namespace sigrok { class Driver; +} + +namespace pv { +namespace devices { class HardwareDevice; } +} -Q_DECLARE_METATYPE(std::shared_ptr); -Q_DECLARE_METATYPE(std::shared_ptr); +Q_DECLARE_METATYPE(shared_ptr); +Q_DECLARE_METATYPE(shared_ptr); namespace pv { @@ -53,19 +62,20 @@ class Connect : public QDialog public: Connect(QWidget *parent, pv::DeviceManager &device_manager); - std::shared_ptr get_selected_device() const; + shared_ptr get_selected_device() const; private: void populate_drivers(); - void populate_serials(std::shared_ptr driver); + void populate_serials(shared_ptr driver); void unset_connection(); - void set_serial_connection(std::shared_ptr driver); - private Q_SLOTS: - void device_selected(int index); + void driver_selected(int index); + + void serial_toggled(bool checked); + void tcp_toggled(bool checked); void scan_pressed(); @@ -81,6 +91,11 @@ private: QComboBox serial_devices_; + QWidget *tcp_config_; + QLineEdit *tcp_host_; + QSpinBox *tcp_port_; + QComboBox *tcp_protocol_; + QPushButton scan_button_; QListWidget device_list_;