diff options
| author | daniel-Jones <daniel@danieljon.es> | 2016-08-01 21:57:47 +0930 | 
|---|---|---|
| committer | daniel-Jones <daniel@danieljon.es> | 2016-08-01 21:59:15 +0930 | 
| commit | ca548026050c9643c82640cb46926545c2114949 (patch) | |
| tree | e967b23dd94cff4914a71459c7877687bd13bb1e /user_management.ui | |
| parent | 58cc302ca32c807b1fd238dfc5149ff847c0c454 (diff) | |
| download | csgo_stats-ca548026050c9643c82640cb46926545c2114949.tar.gz csgo_stats-ca548026050c9643c82640cb46926545c2114949.zip | |
Added stats for maps, added a user management tool that will allow you to add/remove user profiles from storage.
Diffstat (limited to 'user_management.ui')
| -rw-r--r-- | user_management.ui | 100 | 
1 files changed, 100 insertions, 0 deletions
| diff --git a/user_management.ui b/user_management.ui new file mode 100644 index 0000000..c9f3fe7 --- /dev/null +++ b/user_management.ui @@ -0,0 +1,100 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>user_management</class> + <widget class="QWidget" name="user_management"> +  <property name="windowModality"> +   <enum>Qt::ApplicationModal</enum> +  </property> +  <property name="geometry"> +   <rect> +    <x>0</x> +    <y>0</y> +    <width>157</width> +    <height>208</height> +   </rect> +  </property> +  <property name="windowTitle"> +   <string>User Management</string> +  </property> +  <layout class="QVBoxLayout" name="verticalLayout"> +   <item> +    <widget class="QComboBox" name="user_dropdown"/> +   </item> +   <item> +    <widget class="QPushButton" name="delete_user_button"> +     <property name="text"> +      <string>Remove selected user</string> +     </property> +    </widget> +   </item> +   <item> +    <widget class="QPushButton" name="refresh_users_button"> +     <property name="text"> +      <string>Refresh list</string> +     </property> +    </widget> +   </item> +   <item> +    <widget class="QLabel" name="username_label"> +     <property name="text"> +      <string>Username</string> +     </property> +    </widget> +   </item> +   <item> +    <widget class="QLineEdit" name="username_text"> +     <property name="placeholderText"> +      <string>Username</string> +     </property> +    </widget> +   </item> +   <item> +    <widget class="QLabel" name="stean_id_label"> +     <property name="text"> +      <string>Steam ID</string> +     </property> +    </widget> +   </item> +   <item> +    <widget class="QLineEdit" name="user_id_text"> +     <property name="placeholderText"> +      <string>Steam ID</string> +     </property> +    </widget> +   </item> +   <item> +    <widget class="QPushButton" name="add_user_button"> +     <property name="text"> +      <string>Add user</string> +     </property> +    </widget> +   </item> +   <item> +    <widget class="QPushButton" name="close_button"> +     <property name="text"> +      <string>Close</string> +     </property> +    </widget> +   </item> +  </layout> + </widget> + <resources/> + <connections> +  <connection> +   <sender>close_button</sender> +   <signal>clicked()</signal> +   <receiver>user_management</receiver> +   <slot>close()</slot> +   <hints> +    <hint type="sourcelabel"> +     <x>99</x> +     <y>84</y> +    </hint> +    <hint type="destinationlabel"> +     <x>94</x> +     <y>107</y> +    </hint> +   </hints> +  </connection> + </connections> +</ui> | 
