blob: fcd98779cc8d01d1876791a1d709f363fb5cbea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>user_select_dialog</class>
<widget class="QMainWindow" name="user_select_dialog">
<property name="windowModality">
<enum>Qt::ApplicationModal</enum>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>269</width>
<height>190</height>
</rect>
</property>
<property name="maximumSize">
<size>
<width>269</width>
<height>16777215</height>
</size>
</property>
<property name="windowTitle">
<string>Select a Steam account</string>
</property>
<widget class="QWidget" name="centralWidget">
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QGridLayout" name="gridLayout">
<item row="3" column="0">
<widget class="QLineEdit" name="steam_url_text">
<property name="text">
<string>76561198055087665</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="info_label">
<property name="text">
<string>Enter a Steam account ID or select a user</string>
</property>
</widget>
</item>
<item row="6" column="0">
<widget class="QPushButton" name="select_account_button">
<property name="text">
<string>Select</string>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QPushButton" name="manage_users_button">
<property name="text">
<string>Manage users</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QComboBox" name="player_dropdown"/>
</item>
<item row="7" column="0">
<widget class="QPushButton" name="close_button">
<property name="text">
<string>Close</string>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QPushButton" name="refresh_users_button">
<property name="text">
<string>Refresh list</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections>
<connection>
<sender>close_button</sender>
<signal>clicked()</signal>
<receiver>user_select_dialog</receiver>
<slot>close()</slot>
<hints>
<hint type="sourcelabel">
<x>259</x>
<y>128</y>
</hint>
<hint type="destinationlabel">
<x>268</x>
<y>110</y>
</hint>
</hints>
</connection>
</connections>
</ui>
|