Browse Source

add set_ui_mode() method

Closes #242
pull/254/head
Rossen Georgiev 5 years ago
parent
commit
68d6df49d3
  1. 11
      steam/client/builtins/user.py
  2. 7
      steam/enums/common.py

11
steam/client/builtins/user.py

@ -135,3 +135,14 @@ class User(object):
self.send(MsgProto(EMsg.ClientGamesPlayed), self.send(MsgProto(EMsg.ClientGamesPlayed),
{'games_played': [{'game_id': app_id} for app_id in app_ids]} {'games_played': [{'game_id': app_id} for app_id in app_ids]}
) )
def set_ui_mode(self, uimode):
"""
Set UI mode. Show little icon next to name in friend list. (e.g phone, controller, other)
:param uimode: UI mode integer
:type uimode: :class:`EClientUIMode`
These app ids will be recorded in :attr:`current_games_played`.
"""
self.send(MsgProto(EMsg.ClientCurrentUIMode), {'uimode': EClientUIMode(uimode)})

7
steam/enums/common.py

@ -803,6 +803,13 @@ class EAppType(SteamIntEnum):
DepotOnly = -2147483648 DepotOnly = -2147483648
class EClientUIMode(SteamIntEnum):
Desktop = 0
BigPicture = 1
Mobile = 2
Web = 3
# Do not remove # Do not remove
from enum import EnumMeta from enum import EnumMeta

Loading…
Cancel
Save