// ConnectionWidget.h #ifndef CONNECTIONWIDGET_H #define CONNECTIONWIDGET_H #include "AuthWidget.h" #include #include class ConnectionWidget : public QWidget { public: ConnectionWidget(); ~ConnectionWidget(); private: AuthWidget *authWidget; QComboBox *protocolBox; QVBoxLayout *layout; }; #endif // CONNECTIONWIDGET_H