Add support for websocket subprotocols

This commit is contained in:
2023-02-10 14:53:51 +01:00
parent 7a143c2505
commit 96b5379aba
2 changed files with 44 additions and 4 deletions

View File

@@ -6,7 +6,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<width>1011</width>
<height>600</height>
</rect>
</property>
@@ -16,7 +16,7 @@
<widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<layout class="QHBoxLayout" name="horizontalLayout" stretch="1,0,0,0,0">
<item>
<widget class="QLineEdit" name="lineEditUrl">
<property name="text">
@@ -24,6 +24,23 @@
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="checkBoxUseSubprotocol">
<property name="text">
<string>Use subprotocol:</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="lineEditSubprotocol">
<property name="enabled">
<bool>false</bool>
</property>
<property name="text">
<string>ocpp1.6</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pushButtonConnect">
<property name="text">
@@ -66,5 +83,22 @@
<widget class="QStatusBar" name="statusbar"/>
</widget>
<resources/>
<connections/>
<connections>
<connection>
<sender>checkBoxUseSubprotocol</sender>
<signal>toggled(bool)</signal>
<receiver>lineEditSubprotocol</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>654</x>
<y>22</y>
</hint>
<hint type="destinationlabel">
<x>787</x>
<y>22</y>
</hint>
</hints>
</connection>
</connections>
</ui>