commit a1fd0554882ab418b9889ed0bddb5457500a83da Author: JackMyth Date: Tue Jul 3 11:51:33 2018 +0800 Init Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..751553b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.bak diff --git a/Previews/SteamSkinMiku_Chat.png b/Previews/SteamSkinMiku_Chat.png new file mode 100644 index 0000000..7907490 Binary files /dev/null and b/Previews/SteamSkinMiku_Chat.png differ diff --git a/Previews/default.PNG b/Previews/default.PNG new file mode 100644 index 0000000..54d12ee Binary files /dev/null and b/Previews/default.PNG differ diff --git a/Previews/details.PNG b/Previews/details.PNG new file mode 100644 index 0000000..70925c5 Binary files /dev/null and b/Previews/details.PNG differ diff --git a/Previews/downloads.PNG b/Previews/downloads.PNG new file mode 100644 index 0000000..340a6ab Binary files /dev/null and b/Previews/downloads.PNG differ diff --git a/Previews/friends.png b/Previews/friends.png new file mode 100644 index 0000000..eca12ae Binary files /dev/null and b/Previews/friends.png differ diff --git a/Previews/grid.PNG b/Previews/grid.PNG new file mode 100644 index 0000000..32e7a19 Binary files /dev/null and b/Previews/grid.PNG differ diff --git a/Previews/list.PNG b/Previews/list.PNG new file mode 100644 index 0000000..c0f4ef9 Binary files /dev/null and b/Previews/list.PNG differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..6643b6d --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# Threshold Miku Skin for Steam +From Threshold Skin +Modified By JackMyth + +![](http:/jackmyth.cn/Resource/SteamSkinMiku.jpg) + +## Installation +1. Download the skin, extract the zip file, and copy the folder to: + * Windows - C:\Program Files (x86)\Steam\skins + * Mac - /Users/\/Library/Application Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/skins/ + * Linux - ~/.steam/skins + +2. In Steam, go to Settings > Interface > and choose Threshold Miku from the list of skins. + +3. Restart Steam and enjoy! diff --git a/config.ini b/config.ini new file mode 100644 index 0000000..ef9e85d --- /dev/null +++ b/config.ini @@ -0,0 +1,26 @@ +config.ini{ + +//Window Outlines +//Whether to include window outlines or not. +//Comment the next line to enable outlines + + include "resource/styles/colors/no_outline.styles" + +//TitleBar Color +//Whether the Titlebar is Black or defined by your Accent color +//Comment the next line for Accent colored titlebars + + //include "resource/styles/colors/titlebar_black.styles" + +//Accent Color Selection +//Uncomment your choice of color. Make sure one and only one is uncommented! + + include "resource/styles/colors/cobalt.styles" + //include "resource/styles/colors/red.styles" + //include "resource/styles/colors/green.styles" + //include "resource/styles/colors/cyan.styles" + //include "resource/styles/colors/orange.styles" + //include "resource/styles/colors/purple.styles" + //include "resource/styles/colors/magenta.styles" + //include "resource/styles/colors/gray.styles" +} diff --git a/friends/AchievementNotification.res b/friends/AchievementNotification.res new file mode 100644 index 0000000..f9be2fb --- /dev/null +++ b/friends/AchievementNotification.res @@ -0,0 +1,119 @@ +"friends/AchievementNotification.res" +{ + + styles + { + Label + { + font-size=14 [$LINUX] + font-size=18 + } + } + + layout + { + place {control="AchievementIcon" x=14 y=15 width=64 height=64} + place {control="IconBorder" x=13 y=14 width=66 height=66} + place {control="LabelTitle" x=88 y=26 width=max height=32} + place {control="LabelText" x=88 y=48 width=max height=32} + } + + "AchievementNotification" + { + "ControlName" "CAchievmentNotification" + "fieldName" "AchievementNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "94" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "1" + "ypos" "74" + "wide" "238" + "tall" "23" + "fillcolor" "ClientBG" + "zpos" "-1" + } + "AchievementIcon" + { + "ControlName" "ImagePanel" + "fieldName" "AchievementIcon" + "xpos" "14" + "ypos" "14" + "wide" "64" + "tall" "64" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "IconBorder" + { + "ControlName" "Panel" + "fieldName" "IconBorder" + "xpos" "13" + "ypos" "13" + "zpos" "0" + "wide" "66" + "tall" "66" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelTitle" + { + "ControlName" "Label" + "fieldName" "LabelTitle" + "xpos" "88" + "ypos" "25" + "wide" "144" + "tall" "28" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%title%" + "textAlignment" "center" + "wrap" "1" + "font" FriendsSmall + } + "LabelDescription" + { + "ControlName" "Label" + "fieldName" "LabelText" + "xpos" "88" + "ypos" "53" + "wide" "144" + "tall" "28" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%text%" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + } +} diff --git a/friends/BlockCommunicationResultDialog.res b/friends/BlockCommunicationResultDialog.res new file mode 100644 index 0000000..e85b9e3 --- /dev/null +++ b/friends/BlockCommunicationResultDialog.res @@ -0,0 +1,77 @@ +"friends/BlockCommunicationResultDialog.res" +{ + "BlockCommunicationResultDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "BlockCommunicationResultDialog" + "xpos" "979" + "ypos" "454" + "wide" "400" + "tall" "200" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Friends_BlockCommunicationWarning_Title" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "ContinueButton" + "xpos" "27" + "ypos" "150" + "wide" "120" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#vgui_ok" + "textAlignment" "west" + "wrap" "0" + "Command" "close" + "Default" "1" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "28" + "ypos" "32" + "wide" "320" + "tall" "100" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_BlockCommunicationResult" + "textAlignment" "north-west" + "wrap" "1" + } + "Label4" + { + "ControlName" "URLLabel" + "fieldName" "Label4" + "xpos" "28" + "ypos" "100" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_BlockCommunicationResult_YourBlockedList" + "URLText" "steam://url/BlockedPlayers" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/friends/BlockCommunicationWarningDialog.res b/friends/BlockCommunicationWarningDialog.res new file mode 100644 index 0000000..ac3cfb8 --- /dev/null +++ b/friends/BlockCommunicationWarningDialog.res @@ -0,0 +1,114 @@ +"friends/BlockCommunicationWarningDialog.res" +{ + "BlockCommunicationDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "BlockCommunicationDialog" + "xpos" "979" + "ypos" "454" + "wide" "435" + "tall" "245" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Friends_BlockCommunicationWarning_Title" + } + "ContinueButton" + { + "ControlName" "Button" + "fieldName" "ContinueButton" + "xpos" "27" + "ypos" "197" + "wide" "231" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Friends_BlockCommunicationWarning_Block" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "265" + "ypos" "197" + "wide" "134" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Friends_BlockCommunicationWArning_Cancel" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "DontShowAgain" + { + "ControlName" "CheckButton" + "fieldName" "DontShowAgain" + "xpos" "24" + "ypos" "166" + "wide" "370" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_BlockCommunicationWarning_DontAskAgainCheck" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "28" + "ypos" "32" + "wide" "320" + "tall" "135" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_BlockCommunicationWarning_Info" + "textAlignment" "north-west" + "wrap" "1" + } + "Label4" + { + "ControlName" "URLLabel" + "fieldName" "Label4" + "xpos" "28" + "ypos" "132" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_BlockCommunicationWarning_LinkInfo" + "URLText" "https://support.steampowered.com/kb_article.php?ref=7367-QRTZ-1192" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/friends/ChatIntroductionDialog.res b/friends/ChatIntroductionDialog.res new file mode 100644 index 0000000..dd96f51 --- /dev/null +++ b/friends/ChatIntroductionDialog.res @@ -0,0 +1,232 @@ +"friends/ChatIntroductionDialog.res" +{ + "ChatIntroductionDialog" + { + "ControlName" "CChatIntroductionDialog" + "fieldName" "ChatIntroductionDialog" + "xpos" "829" + "ypos" "567" + "wide" "400" + "tall" "506" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Friends_ChatIntro_Title" + } + "AcceptButton" + { + "ControlName" "Button" + "fieldName" "AcceptButton" + "xpos" "32" + "ypos" "365" + "wide" "100" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Friends_ChatIntro_Accept" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "DeclineButton" + { + "ControlName" "Button" + "fieldName" "DeclineButton" + "xpos" "138" + "ypos" "366" + "wide" "100" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Friends_ChatIntro_Decline" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "FriendPanel" + { + "ControlName" "CFriendPanel" + "fieldName" "FriendPanel" + "xpos" "30" + "ypos" "82" + "wide" "304" + "tall" "52" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Clan0" + { + "ControlName" "CClanPanel" + "fieldName" "Clan0" + "xpos" "30" + "ypos" "184" + "wide" "304" + "tall" "52" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Clan1" + { + "ControlName" "CClanPanel" + "fieldName" "Clan1" + "xpos" "30" + "ypos" "241" + "wide" "304" + "tall" "52" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "30" + "ypos" "42" + "wide" "314" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_ChatIntro_Info" + "textAlignment" "west" + "font" "FriendsMedium" + "wrap" "1" + } + "CheckButton1" + { + "ControlName" "CheckButton" + "fieldName" "CheckButton1" + "xpos" "30" + "ypos" "403" + "wide" "312" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Friends_ChatIntro_DontShowCheckBox" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "Divider1" + { + "ControlName" "Divider" + "fieldName" "Divider1" + "xpos" "30" + "ypos" "438" + "wide" "314" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "30" + "ypos" "447" + "wide" "314" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_ChatIntro_WarningInfo" + "textAlignment" "west" + "wrap" "1" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "30" + "ypos" "142" + "wide" "314" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_ChatIntro_Info2" + "textAlignment" "west" + "font" "FriendsMedium" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "30" + "ypos" "318" + "wide" "314" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "ListPanelSectionHeader" + "labelText" "#Friends_ChatIntro_Request" + "textAlignment" "west" + "font" "FriendsMedium" + "wrap" "1" + } + "IgnoreButton" + { + "ControlName" "Button" + "fieldName" "IgnoreButton" + "xpos" "244" + "ypos" "366" + "wide" "100" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Friends_ChatIntro_Ignore" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } +} diff --git a/friends/ChatInviteNotification.res b/friends/ChatInviteNotification.res new file mode 100644 index 0000000..112c986 --- /dev/null +++ b/friends/ChatInviteNotification.res @@ -0,0 +1,157 @@ +"friends/ChatInviteNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + layout{ + place {control="ImageAvatar" x=16 y=16 width=42 height=42} + place {control="NotificationClickPanel" x=0 y=0 width=max height=max} + place {control="LabelSender" x=64 y=16 width=172 height=16} + place {control="LabelInfo" x=64 y=30 width=172 height=16} + place {control="LabelChat" x=64 y=44 width=172 height=16} + place {control="LabelHotkey" x=0 y=74 width=240 height=24} + } + + "ChatInvitationNotification" + { + "ControlName" "CChatInvitationNotification" + "fieldName" "ChatInvitationNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_ChatInvitation_Info" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelChat" + { + "ControlName" "Label" + "fieldName" "LabelChat" + "xpos" "64" + "ypos" "44" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%chat%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/ChatMsgNotification.res b/friends/ChatMsgNotification.res new file mode 100644 index 0000000..e091893 --- /dev/null +++ b/friends/ChatMsgNotification.res @@ -0,0 +1,158 @@ +"friends/ChatMsgNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + layout{ + place {control="ImageAvatar" x=16 y=16 width=42 height=42} + place {control="NotificationClickPanel" x=0 y=0 width=max height=max} + place {control="LabelSender" x=64 y=16 width=172 height=16} + place {control="LabelInfo" x=64 y=30 width=172 height=16} + place {control="LabelMessage" x=64 y=44 width=172 height=30} + place {control="LabelHotkey" x=0 y=74 width=240 height=24} + } + + "ChatMsgNotification" + { + "ControlName" "CChatMsgNotification" + "fieldName" "ChatMsgNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_ChatNotification_Info" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelMessage" + { + "ControlName" "Label" + "fieldName" "LabelMessage" + "xpos" "64" + "ypos" "44" + "wide" "172" + "tall" "30" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%message%" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + "textcolor" "NotificationBodyText" + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_ChatNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/ChatPasswordWarningDialog.res b/friends/ChatPasswordWarningDialog.res new file mode 100644 index 0000000..350bcd4 --- /dev/null +++ b/friends/ChatPasswordWarningDialog.res @@ -0,0 +1,114 @@ +"friends/ChatPasswordWarningDialog.res" +{ + "PasswordWarningDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "PasswordWarningDialog" + "xpos" "1334" + "ypos" "750" + "wide" "516" + "tall" "238" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Friends_ChatPasswordWarning_Title" + } + "ContinueButton" + { + "ControlName" "Button" + "fieldName" "ContinueButton" + "xpos" "64" + "ypos" "174" + "wide" "231" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Friends_ChatPasswordWarning_Continue" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "309" + "ypos" "174" + "wide" "134" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Friends_ChatPasswordWarning_DontSend" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "65" + "ypos" "46" + "wide" "437" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "ListPanelSectionHeader" + "labelText" "#Friends_ChatPasswordWarning_Info" + "textAlignment" "west" + "font" "UIBold" + "wrap" "1" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "65" + "ypos" "84" + "wide" "375" + "tall" "80" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_ChatPasswordWarning_Info2" + "textAlignment" "north-west" + "wrap" "1" + } + "ImagePanel1" + { + "ControlName" "ImagePanel" + "fieldName" "ImagePanel1" + "xpos" "3" + "ypos" "27" + "wide" "59" + "tall" "59" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "resource/icon_warning" + "gradientVertical" "0" + "scaleImage" "0" + } +} diff --git a/friends/ChatRoomDlg.res b/friends/ChatRoomDlg.res new file mode 100644 index 0000000..2f4deeb --- /dev/null +++ b/friends/ChatRoomDlg.res @@ -0,0 +1,288 @@ +"friends/ChatRoomDlg.res" +{ + controls + { + "ChatRoomDlg" + { + "ControlName" "CChatRoomDlg" + "title" "#Friends_Chat_Group_Title" + } + "TextEntry" + { + "ControlName" "TextEntry" + "tabPosition" "1" + "editable" "1" + "maxchars" "2048" + "unicode" "1" + style="Textentryfocus_chat" + } + "ChatHistory" + { + "ControlName" "RichText" + "maxchars" "-1" + "ScrollBar" "1" + style="chatlistpanel" + } + "SendButton" + { + "ControlName" "Button" + "labelText" "#Friends_Chat_Send" + "Default" "1" + } + "StatusLabel" + { + "ControlName" "Label" + "wrap" "0" + } + "VoiceBar" + { + "ControlName" "CVoiceBar" + } + "TitlePanel" + { + "ControlName" "CChatTitlePanel" + "zpos" "-2" + width=400 + } + "UserList" + { + "ControlName" "CFriendsListSubPanel" + style="FriendsList" + "linespacing" "50" + wide=200 + } + "Splitter" + { + "ControlName" "CChatSplitter" + resizepanel="UserList" + zpos=1 + } + "VoiceChat" + { + "ControlName" "Button" + style="Chat_MenuButton_withChrome" + + } + "EmoticonButton" + { + "ControlName" "CEmoticonButton" + } + } + + styles + { + CChatRoomDlg + { + //bgcolor=DefaultBackground + render + { + } + render_bg + { + 0="image_scale(x0,y0-32,x1,y1,graphics/JackMyth/ChatRoom)" + } + } + FriendsList + { + bgcolor=none + render_bg{ + //0="fill( x0, y0, x1, y1, DefaultBackground )" + 0="fill(x0, y0, x1, y1, JackMyth.HalfTranslucent)" + 1="fill( x0, y0, x0+1, y1, Root.Header )" + } + } + "Textentryfocus_chat" + { + // opaque bgcolor for rendering optimization during typing + //bgcolor=TextBox.Back + bgcolor=JackMyth.Opacity + render + { + 0="fill(x0, y0, x1, y1, JackMyth.HalfTranslucent)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + font-size=16 + } + + CEmoticonButton + { + inset="5 0 0 0" + image="graphics/Threshold/friends/icon_emoticon" + render_bg + { + //0="fill(x0, y0, x1, y1, Chat.Back)" + 0="fill(x0, y0, x1, y1, JackMyth.HalfTranslucent)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + CEmoticonButton:hover + { + render_bg + { + 0="fill(x0, y0, x1, y1, Menu.Hover)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + CEmoticonButton:selected + { + render_bg + { + 0="fill(x0, y0, x1, y1, Accent)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, Chat.Div)" // top + } + } + + button //Send button + { + inset="0 0 0 0" + padding=0 + minimum-height=0 + textcolor=none + image="graphics/Threshold/send" + //bgcolor=Chat.Back + render_bg + { + // lines around + 0="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + render{} + } + + button:hover + { + bgcolor=Menu.Button.Hover + render_bg + { + // lines around + 0="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + button:active + { + bgcolor=Menu.Button.Active + render_bg + { + // lines around + 0="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + button:disabled + { + image="graphics/Threshold/send_dis" + } + + EmoticonMenuItemStyle + { + inset="-5 0 0 0" + padding=0 + font-size=24 + bgcolor=none + } + + EmoticonMenuItemStyle:hover + { + textcolor=white + bgcolor=none + } + + EmoticonMenuItemStyle:selected + { + textcolor=white + bgcolor=none + } + + CChatActionsButton + { + inset="2 0 0 0" + image="graphics/Threshold/dots" + } + + CChatActionsButton:hover + { + image="graphics/Threshold/dots" + bgcolor=Menu.Hover + } + + CChatActionsButton:selected + { + image="graphics/Threshold/dots" + bgcolor=Accent + } + + GridMenu + { + font-size=16 + } + + TextEntry + { + textcolor=TextBox.Hover.Text //TextBox.Text is the empty text color, we want hover + selectedtextcolor=TextBox.Hover.Text + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor // this is the cursor color + render_bg + { + //0="fill(x0, y0, x1, y1, Chat.Back)" + 0="fill(x0, y0, x1, y1, JackMyth.Opacity)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + TextEntry:hover + { + textcolor=TextBox.Hover.Text + selectedtextcolor=TextBox.Hover.Text + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor + render_bg + { + //0="fill(x0, y0, x1, y1, Chat.Back)" + 0="fill(x0, y0, x1, y1, JackMyth.Opacity)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + TextEntry:focus + { + textcolor=TextBox.Hover.Text + selectedtextcolor=TextBox.Hover.Text + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor + render_bg + { + //0="fill(x0, y0, x1, y1, Chat.Back)" + 0="fill(x0, y0, x1, y1, JackMyth.Opacity)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + } + + layout + { + region { name="hidden" width=0 height=0} + + place { control="Splitter" width=6 } + place { control="Splitter,UserList" align=right height=max } + + place { control="TitlePanel" margin-left=6 y=2 height=50 width=max margin-right=6 end-right=UserList} + place { control="VoiceBar" y=34 height=24 width=max margin-left=8 margin-right=52 end-right=UserList} + place { control="ChatHistory" width=max height=max margin-bottom=84 margin-top=55 end-right=UserList} + place { control="SendButton" height=42 width=42 align=bottom-right margin-bottom=42 end-right=UserList} + place { control="EmoticonButton" height=42 width=42 align=bottom-right margin-bottom=42 end-right=SendButton} + place { control="TextEntry" align=bottom end-right="EmoticonButton" margin-bottom=42 height=42 width=max } + place { control="StatusLabel" width=max margin-left=10 height=40 align=bottom end-right="VoiceChat"} + place { control="VoiceChat,ChatActionsButton" width=42 height=42 align=bottom-right spacing=0 dir=right end-right=UserList} + } +} diff --git a/friends/ChatRoomDlgFriend.res b/friends/ChatRoomDlgFriend.res new file mode 100644 index 0000000..c21e315 --- /dev/null +++ b/friends/ChatRoomDlgFriend.res @@ -0,0 +1,274 @@ +"friends/ChatRoomDlgFriend.res" +{ + controls + { + "ChatRoomDlg" + { + "ControlName" "CChatRoomDlg" + "title" "#Friends_Chat_Title" + } + "TextEntry" + { + "ControlName" "TextEntry" + "tabPosition" "1" + "editable" "1" + "maxchars" "2048" + "unicode" "1" + style="textentryfocus_chat" + } + "ChatHistory" + { + "ControlName" "RichText" + "maxchars" "-1" + "ScrollBar" "1" + style="ChatListPanel" + } + "SendButton" + { + "ControlName" "Button" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Friends_Chat_Send" + "textAlignment" "west" + "Default" "1" + style="button" + } + "StatusLabel" + { + "ControlName" "Label" + "labelText" "" + } + "TitlePanel" + { + "ControlName" "CFriendPanel" + "zpos" "-2" + paintbackgroundenabled=0 + + } + "VoiceBar" + { + "ControlName" "CVoiceBar" + } + "VoiceChat" + { + "ControlName" "Button" + style="controlbutton" + minimum-width="120" + } + "GameInviteBar" + { + "ControlName" "GameInviteBar" + } + "EmoticonButton" + { + "ControlName" "CEmoticonButton" + } + } + + styles + { + + + label + { + font-size=14 + } + + controlbutton + { + minimum-width=120 + } + + Textentryfocus_chat + { + // opaque bgcolor for rendering optimization during typing + //bgcolor=TextBox.Back + bgcolor=JackMyth.Opacity + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + + //font-size=16 + } + + CEmoticonButton + { + inset="6 0 0 0" + image="graphics/Threshold/friends/icon_emoticon" + render_bg + { + 0="fill(x0, y0, x1, y1, Chat.Back)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + CEmoticonButton:hover + { + render_bg + { + 0="fill(x0, y0, x1, y1, Menu.Button.Hover)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + CEmoticonButton:selected + { + render_bg + { + 0="fill(x0, y0, x1, y1, Menu.Button.Active)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + button //Send button + { + inset="0 0 0 0" + textcolor=none + image="graphics/Threshold/send" + bgcolor=Chat.Back + render_bg + { + // lines around + 0="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + render{} + } + + button:hover + { + bgcolor=Menu.Button.Hover + render_bg + { + // lines around + 0="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + button:active + { + bgcolor=Menu.Button.Active + render_bg + { + // lines around + 0="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + button:disabled + { + image="graphics/Threshold/send_dis" + } + + EmoticonMenuItemStyle + { + inset="-5 0 0 0" + padding=0 + font-size=16 + bgcolor=none + } + + EmoticonMenuItemStyle:hover + { + textcolor=white + bgcolor=none + } + + EmoticonMenuItemStyle:selected + { + textcolor=white + bgcolor=none + } + + CChatActionsButton + { + inset="3 0 0 0" + image="graphics/Threshold/dots" + } + + CChatActionsButton:hover + { + image="graphics/Threshold/dots" + bgcolor=Menu.Button.Hover + } + + CChatActionsButton:selected + { + image="graphics/Threshold/dots" + bgcolor=Menu.Button.Active + } + + GridMenu + { + font-size=16 + } + + TextEntry + { + textcolor=TextBox.Hover.Text //TextBox.Text is the empty text color, we want hover + selectedtextcolor=TextBox.Hover.Text + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor // this is the cursor color + render_bg + { + 0="fill(x0, y0, x1, y1, Chat.Back)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + TextEntry:hover + { + textcolor=TextBox.Hover.Text + selectedtextcolor=TextBox.Hover.Text + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor + render_bg + { + //0="fill(x0, y0, x1, y1, Chat.Back)" + 0="fill(x0, y0, x1, y1, Chat.Back)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + TextEntry:focus + { + textcolor=TextBox.Hover.Text + selectedtextcolor=TextBox.Hover.Text + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor + render_bg + { + 0="fill(x0, y0, x1, y1, Chat.Back)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, Chat.Div )" // top + } + } + + } + + layout + { + + region { name="hidden" width=0 height=0} + + place { control="GameInviteBar,TradeInviteBar,ChatInfoBar,BIBar,BABar" height=54 } + + region { name=chat width=max height=max margin-bottom=42} + place { control="TitlePanel" region=chat margin-left=6 y=2 height=50 width=max margin-right=6} + place { control="VoiceBar" region=chat y=34 height=24 width=max margin-left=8 margin-right=52 } + place { control="TradeInviteBar,GameInviteBar,ChatInfoBar,BIBar,BABar,ChatHistory" dir=down region=chat width=max height=max margin-bottom=42 margin-top=55} + region {name=textinput region=chat width=max height=42 align=bottom} + place { control="EmoticonButton,SendButton" region=textinput dir=right spacing=0 height=42 width=42 align=right} + place { control="TextEntry" align=bottom region=textinput end-right="EmoticonButton" height=42 width=max } + + region { name=bottomrow align=bottom height=42} + place { control="StatusLabel" region=bottomrow width=max margin-left=10 height=40 end-right="VoiceChat"} + place { control="VoiceChat,ChatActionsButton" region=bottomrow width=42 height=42 margin-right=0 align=right spacing=0 dir=right } + } +} diff --git a/friends/ChatURLWarningDialog.res b/friends/ChatURLWarningDialog.res new file mode 100644 index 0000000..5062671 --- /dev/null +++ b/friends/ChatURLWarningDialog.res @@ -0,0 +1,209 @@ +"friends/ChatURLWarningDialog.res" +{ + "URLWarningDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "URLWarningDialog" + "xpos" "395" + "ypos" "1048" + "wide" "516" + "tall" "298" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Friends_ChatURLWarning_Title" + } + "ContinueButton" + { + "ControlName" "Button" + "fieldName" "ContinueButton" + "xpos" "70" + "ypos" "186" + "wide" "249" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Friends_ChatURLWarning_Continue" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "Button2" + { + "ControlName" "Button" + "fieldName" "Button2" + "xpos" "327" + "ypos" "186" + "wide" "120" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#vgui_cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "70" + "ypos" "36" + "wide" "437" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "ListPanelSectionHeader" + "labelText" "#Friends_ChatURLWarning_Info" + "textAlignment" "west" + "wrap" "1" + style="warning" + } + "DontShowCheckButton" + { + "ControlName" "CheckButton" + "fieldName" "DontShowCheckButton" + "xpos" "70" + "ypos" "245" + "wide" "374" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Friends_ChatURLWarning_DontAskAgainCheck" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "107" + "ypos" "71" + "wide" "373" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%url%" + "textAlignment" "west" + "font" "basefont" + "font-weight" "800" + "wrap" "0" + style="danger" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "70" + "ypos" "116" + "wide" "375" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_ChatURLWarning_Info2" + "textAlignment" "north-west" + "wrap" "1" + } + "Divider1" + { + "ControlName" "Divider" + "fieldName" "Divider1" + "xpos" "70" + "ypos" "229" + "wide" "377" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "ImagePanel1" + { + "ControlName" "ImagePanel" + "fieldName" "ImagePanel1" + "xpos" "42" + "ypos" "58" + "wide" "59" + "tall" "59" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "resource/icon_warning" + "gradientVertical" "0" + "scaleImage" "0" + } + "ImagePanel2" + { + "ControlName" "ImagePanel" + "fieldName" "ImagePanel2" + "xpos" "107" + "ypos" "69" + "zpos" "-1" + "wide" "340" + "tall" "28" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "fillcolor" "label" + "gradientVertical" "0" + "scaleImage" "0" + + + } + + styles + { + danger + { + textcolor="clientbg" + font-family=basefont + font-weight=800 + inset="8 0 0 0" + } + + warning + { + textcolor="text" + font-family=basefont + font-weight=800 + } + } +} diff --git a/friends/ClanEventDialog.res b/friends/ClanEventDialog.res new file mode 100644 index 0000000..99fe5a2 --- /dev/null +++ b/friends/ClanEventDialog.res @@ -0,0 +1,132 @@ +"friends/ClanEventDialog.res" +{ + "ClanEventDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "ClanEventDialog" + "xpos" "820" + "ypos" "506" + "wide" "280" + "tall" "140" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Friends_GroupEvent_Title" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "34" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "ViewEventButton" + { + "ControlName" "Button" + "fieldName" "ViewEventButton" + "xpos" "16" + "ypos" "98" + "wide" "136" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_GroupEvent_View" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "161" + "ypos" "98" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_Close" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "LabelGroup" + { + "ControlName" "Label" + "fieldName" "LabelGroup" + "xpos" "64" + "ypos" "34" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%group%" + "textAlignment" "north-west" + "font" "FriendsSmall" + "wrap" "0" + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "48" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_GroupEvent_NowStarting" + "textAlignment" "north-west" + "font" "FriendsSmall" + "wrap" "0" + } + "LabelEventTitle" + { + "ControlName" "Label" + "fieldName" "LabelEventTitle" + "xpos" "64" + "ypos" "62" + "wide" "172" + "tall" "30" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%event%" + "textAlignment" "north-west" + "font" "FriendsSmall" + "wrap" "1" + } +} diff --git a/friends/ClanEventNotification.res b/friends/ClanEventNotification.res new file mode 100644 index 0000000..0aa0205 --- /dev/null +++ b/friends/ClanEventNotification.res @@ -0,0 +1,157 @@ +"friends/ClanEventNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + layout{ + place {control="ImageAvatar" x=16 y=16 width=42 height=42} + place {control="NotificationClickPanel" x=0 y=0 width=max height=max} + place {control="LabelGroup" x=64 y=16 width=172 height=16} + place {control="LabelInfo" x=64 y=30 width=172 height=16} + place {control="LabelEventTitle" x=64 y=44 width=172 height=30} + place {control="LabelHotkey" x=0 y=74 width=240 height=24} + } + + "ClanEventNotification" + { + "ControlName" "CClanEventNotification" + "fieldName" "ClanEventNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelGroup" + { + "ControlName" "Label" + "fieldName" "LabelGroup" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%group%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelEventTitle" + { + "ControlName" "Label" + "fieldName" "LabelEventTitle" + "xpos" "64" + "ypos" "44" + "wide" "172" + "tall" "30" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%event%" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/ClanInvitationNotification.res b/friends/ClanInvitationNotification.res new file mode 100644 index 0000000..2a152e3 --- /dev/null +++ b/friends/ClanInvitationNotification.res @@ -0,0 +1,159 @@ +"friends/ClanInvitationNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + layout{ + place {control="ImageAvatar" x=16 y=16 width=42 height=42} + place {control="NotificationClickPanel" x=0 y=0 width=max height=max} + place {control="LabelSender" x=64 y=16 width=172 height=16} + place {control="LabelInfo" x=64 y=30 width=172 height=16} + place {control="LabelGroup" x=64 y=44 width=172 height=16} + place {control="LabelHotkey" x=0 y=74 width=240 height=24} + } + + "ClanInvitationNotification" + { + "ControlName" "CClanInvitationNotification" + "fieldName" "ClanInvitationNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteInfo_BeenInvited" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + "textcolor" "NotificationBodyText" + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteInfo_JoinGroup" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelGroup" + { + "ControlName" "Label" + "fieldName" "LabelGroup" + "xpos" "64" + "ypos" "44" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%group%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + "textcolor" "NotificationBodyText" + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/DialogFindBuddy.res b/friends/DialogFindBuddy.res new file mode 100644 index 0000000..97d27fe --- /dev/null +++ b/friends/DialogFindBuddy.res @@ -0,0 +1,15 @@ +"Resource\DialogFindBuddy.res" +{ + "Frame" + { + "tabPosition" "0" + "enabled" "0" + "visible" "1" + "tall" "280" + "wide" "332" + "ypos" "236" + "xpos" "360" + "fieldName" "Frame" + "ControlName" "Frame" + } +} diff --git a/friends/DialogHelpIngame.res b/friends/DialogHelpIngame.res new file mode 100644 index 0000000..e8ffed5 --- /dev/null +++ b/friends/DialogHelpIngame.res @@ -0,0 +1,59 @@ +"Resource/DialogHelpIngame.res" +{ + "HelpDialog" + { + "ControlName" "Frame" + "fieldName" "HelpDialog" + "xpos" "154" + "ypos" "206" + "wide" "484" + "tall" "240" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "InfoText" + { + "ControlName" "Label" + "fieldName" "InfoText" + "xpos" "18" + "ypos" "36" + "wide" "450" + "tall" "136" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "textAlignment" "center" + } + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "384" + "ypos" "188" + "wide" "64" + "tall" "24" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "labelText" "#TrackerUI_Close" + "textAlignment" "center" + "command" "Close" + "default" "0" + } + "NeverShowButton" + { + "ControlName" "CheckButton" + "fieldName" "NeverShowButton" + "xpos" "172" + "ypos" "186" + "wide" "194" + "tall" "24" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "labelText" "#TrackerUI_NeverShowThisDialogAgain" + "textAlignment" "center" + "default" "0" + } +} diff --git a/friends/DialogRemoveUser.res b/friends/DialogRemoveUser.res new file mode 100644 index 0000000..d074f98 --- /dev/null +++ b/friends/DialogRemoveUser.res @@ -0,0 +1,108 @@ +"Friends/DialogRemoveUser.res" +{ + "DialogRemoveUser" + { + "ControlName" "Frame" + "fieldName" "DialogRemoveUser" + "xpos" "221" + "ypos" "354" + "wide" "452" + "tall" "216" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "SysMenu" + { + "ControlName" "Menu" + "fieldName" "SysMenu" + "xpos" "0" + "ypos" "0" + "wide" "64" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + } + "OK" + { + "ControlName" "Button" + "fieldName" "OK" + "xpos" "220" + "ypos" "180" + "wide" "116" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "labelText" "#TrackerUI_RemoveUser" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "Command" "OK" + "Default" "0" + } + "Cancel" + { + "ControlName" "Button" + "fieldName" "Cancel" + "xpos" "352" + "ypos" "180" + "wide" "84" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "labelText" "#TrackerUI_Cancel" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "Command" "Close" + "Default" "0" + } + "WarningLabel" + { + "ControlName" "Label" + "fieldName" "WarningLabel" + "xpos" "24" + "ypos" "40" + "wide" "396" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "You are about to remove johnc from your contact list." + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "76" + "wide" "396" + "tall" "92" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TrackerUI_WarningNoLongerSeeYou" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } +} diff --git a/friends/DialogSendMessage.res b/friends/DialogSendMessage.res new file mode 100644 index 0000000..d6c881c --- /dev/null +++ b/friends/DialogSendMessage.res @@ -0,0 +1,97 @@ +"Resource\DialogSendMessage.res" +{ + "CancelButton" + { + "command" "Cancel" + "textAlignment" "center" + "labelText" "#TrackerUI_Close" + "tabPosition" "3" + "enabled" "1" + "visible" "1" + "BgColor" "70 70 70 255" + "FgColor" "255 170 0 255" + "tall" "24" + "wide" "104" + "ypos" "192" + "xpos" "8" + "fieldName" "CancelButton" + "ControlName" "Button" + } + "SendButton" + { + "command" "SendMessage" + "textAlignment" "center" + "labelText" "#TrackerUI_Reply" + "tabPosition" "2" + "enabled" "1" + "visible" "1" + "BgColor" "70 70 70 255" + "FgColor" "255 170 0 255" + "tall" "24" + "wide" "104" + "ypos" "192" + "xpos" "252" + "fieldName" "SendButton" + "ControlName" "Button" + } + "NameLabel" + { + "textAlignment" "west" + "labelText" "test2" + "tabPosition" "0" + "enabled" "1" + "visible" "1" + "BgColor" "70 70 70 255" + "FgColor" "255 255 255 255" + "tall" "20" + "wide" "148" + "ypos" "32" + "xpos" "92" + "fieldName" "NameLabel" + "ControlName" "Label" + } + "InfoText" + { + "textAlignment" "west" + "labelText" "#TrackerUI_MessageFrom" + "tabPosition" "0" + "enabled" "1" + "visible" "1" + "BgColor" "70 70 70 255" + "FgColor" "255 170 0 255" + "tall" "20" + "wide" "88" + "ypos" "32" + "xpos" "4" + "fieldName" "InfoText" + "ControlName" "Label" + } + "TextPanel" + { + "tabPosition" "1" + "enabled" "0" + "visible" "1" + "BgColor" "100 100 100 255" + "FgColor" "255 170 0 255" + "tall" "128" + "wide" "356" + "ypos" "56" + "xpos" "4" + "fieldName" "TextPanel" + "ControlName" "Panel" + } + "Frame" + { + "tabPosition" "0" + "enabled" "1" + "visible" "1" + "BgColor" "70 70 70 255" + "FgColor" "255 170 0 255" + "tall" "224" + "wide" "364" + "ypos" "320" + "xpos" "388" + "fieldName" "Frame" + "ControlName" "CDialogSendMessage" + } +} diff --git a/friends/DialogSystemMessage.res b/friends/DialogSystemMessage.res new file mode 100644 index 0000000..5e02c22 Binary files /dev/null and b/friends/DialogSystemMessage.res differ diff --git a/friends/FriendIngameNotification.res b/friends/FriendIngameNotification.res new file mode 100644 index 0000000..9e862a4 --- /dev/null +++ b/friends/FriendIngameNotification.res @@ -0,0 +1,157 @@ +"friends/FriendInGameNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + layout{ + place {control="ImageAvatar" x=16 y=16 width=42 height=42} + place {control="NotificationClickPanel" x=0 y=0 width=max height=max} + place {control="LabelSender" x=64 y=14 width=172 height=16} + place {control="LabelInfo" x=64 y=28 width=172 height=16} + place {control="LabelGame" x=64 y=44 width=172 height=16} + place {control="LabelHotkey" x=0 y=74 width=240 height=24} + } + + "FriendIngameNotification" + { + "ControlName" "CFriendInGameNotification" + "fieldName" "FriendIngameNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InGameNotification_Info" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelGame" + { + "ControlName" "Label" + "fieldName" "LabelGame" + "xpos" "64" + "ypos" "44" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%game%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_OnlineNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/FriendInvitationNotification.res b/friends/FriendInvitationNotification.res new file mode 100644 index 0000000..88c95a7 --- /dev/null +++ b/friends/FriendInvitationNotification.res @@ -0,0 +1,158 @@ +"friends/FriendInvitationNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + layout{ + place {control="ImageAvatar" x=16 y=16 width=42 height=42} + place {control="NotificationClickPanel" x=0 y=0 width=max height=max} + place {control="LabelSender" x=64 y=16 width=172 height=16} + place {control="LabelInfo" x=64 y=30 width=172 height=16} + place {control="LabelFriendsList" x=64 y=44 width=172 height=16} + place {control="LabelHotkey" x=0 y=74 width=240 height=24} + } + + "FriendInvitationNotification" + { + "ControlName" "CFriendInvitationNotification" + "fieldName" "FriendInvitationNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteInfo_HasAdded" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelFriendsList" + { + "ControlName" "Label" + "fieldName" "LabelFriendsList" + "xpos" "64" + "ypos" "44" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteInfo_FriendsList" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + "textcolor" "NotificationBodyText" + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/FriendOnlineNotification.res b/friends/FriendOnlineNotification.res new file mode 100644 index 0000000..a9a8085 --- /dev/null +++ b/friends/FriendOnlineNotification.res @@ -0,0 +1,138 @@ +"friends/FriendOnlineNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + layout{ + place {control="ImageAvatar" x=16 y=16 width=42 height=42} + place {control="NotificationClickPanel" x=0 y=0 width=max height=max} + place {control="LabelSender" x=64 y=16 width=172 height=16} + place {control="LabelInfo" x=64 y=30 width=172 height=16} + place {control="LabelHotkey" x=0 y=74 width=240 height=24} + } + + "FriendOnlineNotification" + { + "ControlName" "CFriendOnlineNotification" + "fieldName" "FriendOnlineNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_OnlineNotification_Info" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + "textcolor" "NotificationBodyText" + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_OnlineNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/FriendsDialog.res b/friends/FriendsDialog.res new file mode 100644 index 0000000..18cdd1d --- /dev/null +++ b/friends/FriendsDialog.res @@ -0,0 +1,308 @@ +"Friends/FriendsDialog.res" +{ + controls + { + "FriendsDialog" + { + "ControlName" "CFriendsDialog" + "fieldName" "FriendsDialog" + "xpos" "2123" + "ypos" "549" + "wide" "356" + "tall" "746" + "AutoResize" "1" + "PinCorner" "0" + "enabled" "1" + + "paintbackground" "1" + "settitlebarvisible" "1" + style="FriendsPanel" + closeonescape=1 + } + + "BuddyList" + { + "ControlName" "CFriendsListSubPanel" + tabposition=1 + } + + "frame_title" + { + "ControlName" "Label" + "labelText" "#SteamRootFriends" + "xpos" "0" + "ypos" "8" + style="FriendsTitle" + "textAlignment" "west" + "textAlignment" "center" [$OSX] + } + + + "DownLabel" + { + "ControlName" "Label" + "fieldName" "DownLabel" + "xpos" "10" + "ypos" "85" + "wide" "336" + "tall" "80" + "AutoResize" "1" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "paintbackground" "1" + "labelText" "#Friends_NoFriendsInList" + "textAlignment" "north-west" + "wrap" "1" + } + + "MenuBar" + { + style="RootMenu" + "ControlName" "MenuBar" + "fieldName" "MenuBar" + "xpos" "29" + "ypos" "2" + "wide" "75" + "tall" "27" + "AutoResize" "0" + "PinCorner" "0" + "enabled" "1" + "paintbackground" "1" + zpos="-1" + } + + "FriendPanelSelf" + { + "ControlName" "CFriendPanel" + "fieldName" "FriendPanelSelf" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "paintbackground" "1" + } + + "AddFriendsButton" + { + style="AddFriendsButton" + "ControlName" "Button" + "fieldName" "AddFriendsButton" + "xpos" "10" + "ypos" "707" + "wide" "150" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Friends_AddFriend" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + + + "NoFriendsAddFriendButton" + { + "ControlName" "Button" + "fieldName" "NoFriendsAddFriendButton" + "xpos" "10" + "ypos" "129" + "wide" "200" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + + "paintbackground" "1" + "labelText" "#Friends_AddFriend" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "FriendsState" + { + "ControlName" "EditablePanel" + "fieldName" "FriendsState" + "xpos" "6" + "ypos" "52" + "wide" "310" + "tall" "457" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + + "paintbackground" "1" + } + + friends_search { ControlName=TextEntry maxchars=16 hintText="#steam_library_search" style="FriendsSearch" unicode=1 tabposition=2 } + friends_search_icon { ControlName=Label style="FriendsSearchIcon" zpos="4" } + + } + + + styles + { + FriendsPanel + { + render_bg + { + //0="fill(x0, y0, x1, y0 + 82, DefaultBackground)" + 0="image(x0, y1-889, x0+320, y1, graphics/JackMyth/FriendsList)" + //1="gradient(x0,y0,x1,y0+50,)" + 1="fill(x0,y0,x1,y0+123,JackMyth.HalfTranslucent)" + 2="fill(x0, y0 + 81, x1, y0 + 82, Root.Div)" + //2="fill(x0, y0 + 82, x1, y1, Root.TabBar)" + } + } + + AddFriendsButton + { + font-family=basefont + font-size=14 + font-weight=400 + padding-left=15 + padding-right=0 + textcolor="labelfocus" + bgcolor=none + + render_bg + { + 1="image( x0, y0 + 4, x0 + 200, y1, graphics/icon_collapse )" + } + } + + + AddFriendsButton:hover + { + textcolor="white" + render_bg + { + 0="image( x0, y0 + 4, x1, y1, graphics/icon_collapse_over )" + } + } + + RootMenu + { + bgcolor="none" + } + + + FriendsTitle + { + //inset="0 0 0 0" + render_bg + { + 0="fill( x0, y0, x1, y0 + 32, TitleBar.Focus)" //SIGH... + } + } + + FriendsTitle:FrameFocus + { + render_bg + { + 0="fill( x0, y0, x1, y0 + 32, TitleBar)" //SIGH... + } + } + + FriendsSearch + { + padding-left=-4 + padding-top=1 + font-family=basefont + font-size=20 + font-weight=400 + textcolor=Search.Active.Text + shadowtextcolor=Search.Active.Text + render { } + bgcolor=none + render_bg + { + // background fill + 0="fill( x0, y0, x1, y1, Search.Back )" + + } + } + + FriendsSearch:empty + { + textcolor=Search.Text + font-style=normal + + } + + FriendsSearch:hover + { + textcolor=Search.Active.Text + } + + FriendsSearch:empty:hover + { + textcolor=Search.Hover.Text + font-style=normal + + } + + FriendsSearch:disabled + { + textcolor="None" + + } + + FriendsSearchIcon + { + bgcolor="none" + inset="4 2 0 0" + image="graphics/Threshold/icons/search" + padding-left=10 + padding-right=5 + render_bg + { + 0="fill( x0, y0, x1, y1, Search.Back )" + } + } + + FriendsSearchIcon:disabled + { + bgcolor="none" + inset="4 2 0 0" + image="none" + padding-left=10 + padding-right=5 + } + } + + layout + { + region {name=hidden width=0 height=0} + place { control="frame_title" visible=0 x=0 y=0 width=max height=0 } + + // the title bar is missing, so increase the size of the grip + place { control="frame_captiongrip" margin=0 width=max height=32 } + place { control="MenuBar" margin-left=0 height=32 width=50} + + place { control="FriendPanelSelf" align=top margin-left=15 y=30 } //modifying the width & height of this element kills cpu usage + + place { control="friends_search" width=max} + place { control="friends_search_icon,friends_search" align=left y=82 height=40 spacing=0 x=0} + + //place { control="friends_search_icon" align=right dir=right margin-right=145 height=31} + //place { control="friends_search" start=friends_search_icon dir=right y=-2 margin-right=45 width=100 height=31} + + place { control="FriendsDialogSheet" y=118 dir=down width=max height=max spacing=3} + + place { control="DownLabel" x=0 y=90 width=max margin-left=15 margin-right=15} + place { control="NoFriendsAddFriendButton" height=32 align=right start="DownLabel" dir=down margin-top=10 margin-right=15} + + place { control="addFriendsButton" align=bottom margin-left=16 margin-right=9 margin-bottom=7 height=24 region=hidden} + } + +} + + diff --git a/friends/GameInviteNotification.res b/friends/GameInviteNotification.res new file mode 100644 index 0000000..23af6f9 --- /dev/null +++ b/friends/GameInviteNotification.res @@ -0,0 +1,157 @@ +"friends/GameInviteNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + layout{ + place {control="ImageAvatar" x=16 y=16 width=42 height=42} + place {control="NotificationClickPanel" x=0 y=0 width=max height=max} + place {control="LabelSender" x=64 y=16 width=172 height=16} + place {control="LabelInfo" x=64 y=30 width=172 height=16} + place {control="LabelGame" x=64 y=44 width=172 height=16} + place {control="LabelHotkey" x=0 y=74 width=240 height=24} + } + + "GameInviteNotification" + { + "ControlName" "CGameInvitationNotification" + "fieldName" "GameInviteNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_GameInvitation_Info" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelGame" + { + "ControlName" "Label" + "fieldName" "LabelGame" + "xpos" "64" + "ypos" "44" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%game%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/InviteFriendResultSubPanel.res b/friends/InviteFriendResultSubPanel.res new file mode 100644 index 0000000..3864e8f --- /dev/null +++ b/friends/InviteFriendResultSubPanel.res @@ -0,0 +1,38 @@ +"friends/AddFriendResultSubPanel.res" +{ + "AddFriendResultSubPanel" + { + "ControlName" "CInviteFriendResultSubPanel" + "fieldName" "InviteFriendResultSubPanel" + "xpos" "10" + "ypos" "30" + "wide" "460" + "tall" "289" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "32" + "wide" "384" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Friends_InvitingFriend" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } +} diff --git a/friends/InviteFriendResultSubPanel_failure.res b/friends/InviteFriendResultSubPanel_failure.res new file mode 100644 index 0000000..faf93bb --- /dev/null +++ b/friends/InviteFriendResultSubPanel_failure.res @@ -0,0 +1,38 @@ +"friends/AddFriendResultSubPanel_failure.res" +{ + "AddFriendResultSubPanel" + { + "ControlName" "CInviteFriendResultSubPanel" + "fieldName" "InviteFriendResultSubPanel" + "xpos" "8" + "ypos" "48" + "wide" "464" + "tall" "264" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "32" + "wide" "384" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_DefaultInviteError" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/friends/InviteFriendResultSubPanel_success.res b/friends/InviteFriendResultSubPanel_success.res new file mode 100644 index 0000000..1de9734 --- /dev/null +++ b/friends/InviteFriendResultSubPanel_success.res @@ -0,0 +1,38 @@ +"friends/AddFriendResultSubPanel_success.res" +{ + "AddFriendResultSubPanel" + { + "ControlName" "CInviteFriendResultSubPanel" + "fieldName" "InviteFriendResultSubPanel" + "xpos" "8" + "ypos" "48" + "wide" "464" + "tall" "264" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "60" + "wide" "384" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InvitationSent" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/friends/PlayersSubRecentPlayers.res b/friends/PlayersSubRecentPlayers.res new file mode 100644 index 0000000..b80f06b --- /dev/null +++ b/friends/PlayersSubRecentPlayers.res @@ -0,0 +1,43 @@ +"friends/PlayersSubRecentPlayers.res" +{ + layout{ + region {name="bottom" align=bottom height=50 width=max} + place {control="PlayersList" x=0 y=0 width=max height=max margin-bottom=50} + place {control="AddFriendButton" region=bottom align=right margin-right=10 margin-top=12} + } + + + "PlayersList" + { + "ControlName" "ListPanel" + "fieldName" "PlayersList" + "xpos" "8" + "ypos" "10" + "wide" "567" + "tall" "322" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "AddFriendButton" + { + "ControlName" "Button" + "fieldName" "AddFriendButton" + "xpos" "420" + "ypos" "344" + "wide" "155" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } +} diff --git a/friends/SubPanelFindBuddy.res b/friends/SubPanelFindBuddy.res new file mode 100644 index 0000000..f96fdf8 --- /dev/null +++ b/friends/SubPanelFindBuddy.res @@ -0,0 +1,165 @@ +"Friends/SubPanelFindBuddy.res" +{ + "UserNameEdit" + { + "ControlName" "TextEntry" + "fieldName" "UserNameEdit" + "xpos" "30" + "ypos" "134" + "wide" "240" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + } + "FirstNameEdit" + { + "ControlName" "TextEntry" + "fieldName" "FirstNameEdit" + "xpos" "30" + "ypos" "184" + "wide" "240" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + } + "LastNameEdit" + { + "ControlName" "TextEntry" + "fieldName" "LastNameEdit" + "xpos" "30" + "ypos" "234" + "wide" "240" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + } + "EmailEdit" + { + "ControlName" "TextEntry" + "fieldName" "EmailEdit" + "xpos" "30" + "ypos" "84" + "wide" "240" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + } + "LastNameText" + { + "ControlName" "Label" + "fieldName" "LastNameText" + "xpos" "30" + "ypos" "160" + "wide" "240" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TrackerUI_FirstName" + "textAlignment" "west" + "associate" "FirstNameEdit" + "dulltext" "0" + "brighttext" "0" + } + "FirstNameText" + { + "ControlName" "Label" + "fieldName" "FirstNameText" + "xpos" "30" + "ypos" "110" + "wide" "240" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TrackerUI_UserName" + "textAlignment" "west" + "associate" "UserNameEdit" + "dulltext" "0" + "brighttext" "0" + } + "UserNameText" + { + "ControlName" "Label" + "fieldName" "UserNameText" + "xpos" "30" + "ypos" "210" + "wide" "240" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TrackerUI_LastName" + "textAlignment" "west" + "associate" "LastNameEdit" + "dulltext" "0" + "brighttext" "0" + } + "Unnamed dialog1" + { + "ControlName" "Label" + "fieldName" "Unnamed dialog1" + "xpos" "30" + "ypos" "60" + "wide" "240" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TrackerUI_EMailAddress" + "textAlignment" "west" + "associate" "EmailEdit" + "dulltext" "0" + "brighttext" "0" + } + "Unnamed dialog2" + { + "ControlName" "Label" + "fieldName" "Unnamed dialog2" + "xpos" "30" + "ypos" "22" + "wide" "430" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#TrackerUI_EnterInformationAboutFriend" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/friends/SubPanelFindBuddyComplete.res b/friends/SubPanelFindBuddyComplete.res new file mode 100644 index 0000000..0027323 Binary files /dev/null and b/friends/SubPanelFindBuddyComplete.res differ diff --git a/friends/SubPanelFindBuddyRequestAuth.res b/friends/SubPanelFindBuddyRequestAuth.res new file mode 100644 index 0000000..5abfffb --- /dev/null +++ b/friends/SubPanelFindBuddyRequestAuth.res @@ -0,0 +1,33 @@ +"Resource\SubPanelFindBuddyReque" +{ + "EditBox" + { + "tabPosition" "1" + "enabled" "1" + "visible" "1" + "BgColor" "100 100 100 255" + "FgColor" "255 170 0 255" + "tall" "84" + "wide" "364" + "ypos" "164" + "xpos" "44" + "fieldName" "EditBox" + "ControlName" "Panel" + } + "InfoText" + { + "textAlignment" "west" + "labelText" "" + "tabPosition" "0" + "enabled" "1" + "visible" "1" + "BgColor" "70 70 70 255" + "FgColor" "255 170 0 255" + "tall" "88" + "wide" "364" + "ypos" "48" + "xpos" "44" + "fieldName" "InfoText" + "ControlName" "Label" + } +} diff --git a/friends/SubPanelFindBuddyResults.res b/friends/SubPanelFindBuddyResults.res new file mode 100644 index 0000000..bc087b8 Binary files /dev/null and b/friends/SubPanelFindBuddyResults.res differ diff --git a/friends/SubPanelUserInfoDetails.res b/friends/SubPanelUserInfoDetails.res new file mode 100644 index 0000000..fd1dc96 --- /dev/null +++ b/friends/SubPanelUserInfoDetails.res @@ -0,0 +1,203 @@ +"Friends/SubPanelUserInfoDetails.res" +{ + "SubPanelUserInfoDetails" + { + "ControlName" "CSubPanelUserInfoDetails" + "fieldName" "SubPanelUserInfoDetails" + "xpos" "0" + "ypos" "28" + "wide" "384" + "tall" "328" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "NotifyCheck" + { + "ControlName" "CheckButton" + "fieldName" "NotifyCheck" + "xpos" "20" + "ypos" "92" + "wide" "340" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Friends_NotifyMeWhenUserComesOnline" + "textAlignment" "north-west" + "wrap" "1" + "Default" "0" + "selected" "0" + } + "SoundOnlineCheck" + { + "ControlName" "CheckButton" + "fieldName" "SoundOnlineCheck" + "xpos" "20" + "ypos" "134" + "wide" "340" + "tall" "39" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Friends_PlaySoundWhenUserComesOnline" + "textAlignment" "north-west" + "wrap" "1" + "Default" "0" + "selected" "0" + } + "SoundIngameCheck" + { + "ControlName" "CheckButton" + "fieldName" "SoundIngameCheck" + "xpos" "20" + "ypos" "176" + "wide" "340" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Friends_PlaySoundWhenUserJoinsGame" + "textAlignment" "north-west" + "wrap" "1" + "Default" "0" + "selected" "0" + } + "InvisibleCheck" + { + "ControlName" "CheckButton" + "fieldName" "InvisibleCheck" + "xpos" "26" + "ypos" "152" + "wide" "340" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#TrackerUI_BlockUserFromSeeingMe" + "textAlignment" "north-west" + "wrap" "1" + "Default" "0" + "selected" "0" + } + "RemoveButton" + { + "ControlName" "Button" + "fieldName" "RemoveButton" + "xpos" "22" + "ypos" "232" + "wide" "180" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#Friends_RemoveUser" + "textAlignment" "west" + "wrap" "0" + "Command" "RemoveUser" + "Default" "0" + "selected" "0" + } + "RemoveText" + { + "ControlName" "Label" + "fieldName" "RemoveText" + "xpos" "22" + "ypos" "264" + "wide" "340" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_RemoveUserExplanation" + "textAlignment" "north-west" + "wrap" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "22" + "ypos" "22" + "wide" "152" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_RecentlyUsedNames" + "textAlignment" "north-west" + "wrap" "0" + } + "FriendNameOld" + { + "ControlName" "Label" + "fieldName" "FriendNameOld" + "xpos" "174" + "ypos" "22" + "wide" "201" + "tall" "57" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "johnc" + "textAlignment" "north-west" + "wrap" "1" + } + "Divider1" + { + "ControlName" "Divider" + "fieldName" "Divider1" + "xpos" "24" + "ypos" "80" + "wide" "332" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Divider2" + { + "ControlName" "Divider" + "fieldName" "Divider2" + "xpos" "24" + "ypos" "218" + "wide" "332" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/friends/TrackerDialog.res b/friends/TrackerDialog.res new file mode 100644 index 0000000..686273a Binary files /dev/null and b/friends/TrackerDialog.res differ diff --git a/friends/VoiceChatInviteNotification.res b/friends/VoiceChatInviteNotification.res new file mode 100644 index 0000000..b6d599b --- /dev/null +++ b/friends/VoiceChatInviteNotification.res @@ -0,0 +1,128 @@ +"friends/VoiceChatInviteNotification.res" +{ + layout{ + place {control="ImageAvatar" x=16 y=16 width=42 height=42} + place {control="NotificationClickPanel" x=0 y=0 width=max height=max} + place {control="LabelSender" x=64 y=16 width=172 height=16} + place {control="LabelInfo" x=64 y=30 width=172 height=16} + place {control="LabelHotkey" x=0 y=74 width=240 height=24} + } + + "VoiceChatInviteNotification" + { + "ControlName" "CVoiceChatInviteNotification" + "fieldName" "VoiceChatInviteNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "style"="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_VoiceChatInvitation_Info" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/addfriendenterdetailssubpanel.res b/friends/addfriendenterdetailssubpanel.res new file mode 100644 index 0000000..cee2d50 --- /dev/null +++ b/friends/addfriendenterdetailssubpanel.res @@ -0,0 +1,96 @@ +"friends/AddFriendEnterDetailsSubPanel.res" +{ + "AddFriendEnterDetailsSubPanel" + { + "ControlName" "CAddFriendEnterDetailsSubPanel" + "fieldName" "AddFriendEnterDetailsSubPanel" + "xpos" "8" + "ypos" "28" + "wide" "464" + "tall" "284" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "FriendNameEntry" + { + "ControlName" "TextEntry" + "fieldName" "FriendNameEntry" + "xpos" "24" + "ypos" "92" + "wide" "380" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "128" + "NumericInputOnly" "0" + "unicode" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "32" + "wide" "380" + "tall" "58" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_EnterAccountNameOrEmailAddress" + "textAlignment" "north-west" + "wrap" "1" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "25" + "ypos" "120" + "wide" "412" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_AddRecentPlayerAsFriend" + "textAlignment" "west" + "wrap" "0" + "URLText" "steam://friends/players" + } + "URLLabel2" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel2" + "xpos" "25" + "ypos" "140" + "wide" "412" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#friends_searchOnline" + "textAlignment" "west" + "wrap" "0" + "command" "OpenCommunitySearch" + } +} diff --git a/friends/addfriendresultsubpanel.res b/friends/addfriendresultsubpanel.res new file mode 100644 index 0000000..9020568 --- /dev/null +++ b/friends/addfriendresultsubpanel.res @@ -0,0 +1,38 @@ +"friends/AddFriendResultSubPanel.res" +{ + "AddFriendResultSubPanel" + { + "ControlName" "CAddFriendResultSubPanel" + "fieldName" "AddFriendResultSubPanel" + "xpos" "10" + "ypos" "30" + "wide" "460" + "tall" "289" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "32" + "wide" "384" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Friends_SearchingForFriend" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } +} diff --git a/friends/addfriendresultsubpanel_failure.res b/friends/addfriendresultsubpanel_failure.res new file mode 100644 index 0000000..bae6d43 --- /dev/null +++ b/friends/addfriendresultsubpanel_failure.res @@ -0,0 +1,38 @@ +"friends/AddFriendResultSubPanel_failure.res" +{ + "AddFriendResultSubPanel" + { + "ControlName" "CAddFriendResultSubPanel" + "fieldName" "AddFriendResultSubPanel" + "xpos" "8" + "ypos" "48" + "wide" "464" + "tall" "264" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "32" + "wide" "384" + "tall" "134" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_CannotAddSelfToList" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/friends/addfriendresultsubpanel_success.res b/friends/addfriendresultsubpanel_success.res new file mode 100644 index 0000000..3972a43 --- /dev/null +++ b/friends/addfriendresultsubpanel_success.res @@ -0,0 +1,38 @@ +"friends/AddFriendResultSubPanel_success.res" +{ + "AddFriendResultSubPanel" + { + "ControlName" "CAddFriendResultSubPanel" + "fieldName" "AddFriendResultSubPanel" + "xpos" "8" + "ypos" "48" + "wide" "464" + "tall" "264" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "60" + "wide" "384" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_FriendHasBeenAddedToYourListUnderName" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/friends/broadcastapprovebar.res b/friends/broadcastapprovebar.res new file mode 100644 index 0000000..ab5beb4 --- /dev/null +++ b/friends/broadcastapprovebar.res @@ -0,0 +1,70 @@ +"friends/broadcastapprovebar.res" +{ + colors + { + invitebg="163 160 153 255" + } + + controls + { + "BABar" { ControlName="BABar" } + "InviteLabel" { ControlName="Label" labeltext="#Friends_BroadcastApprove" mouseinputenabled=0 } + "GameLabel" { ControlName="Label" labeltext="%game%" mouseinputenabled=0 } + "ApproveLabel" { ControlName="URLLabel" labeltext="#Friends_BroadcastApprove_Approve" } + "OrLabel" { ControlName="Label" labeltext="#Friends_BroadcastApprove_Or" } + "IgnoreLabel" { ControlName="URLLabel" labeltext="#Friends_BroadcastApprove_Ignore" } + "InviteImage" { ControlName="ImagePanel" image="resource/invite" mouseinputenabled=0 } + "CloseButton" { ControlName="Button" labeltext="X" command="Close" } + } + + styles + { + CBroadcastApproveBar + { + render_bg { + 0="fill( x0, y0 + 2, x1, y1 - 2, invitebg )" // fill the center + 1="fill( x0 + 2, y0, x1 - 2, y0 + 2, invitebg )" // top + 2="fill( x0 + 2, y1 - 2, x1 - 2, y1, invitebg )" // bottom + + 3="fill4( x0 + 1, y0 + 1, x0 + 2, y0 + 2, invitebg )" // top-left + 4="fill4( x0 + 1, y0, x0 + 2, y0 + 1, invitebg, 127 )" // + 5="fill4( x0, y0 + 1, x0 + 1, y0 + 2, invitebg, 127 )" // + } + } + + Button + { + render {} + render_bg { } + bgcolor=none + font-style=none + } + + Label + { + textcolor="41 41 40 255" + } + + Button + { + textcolor="41 41 40 255" + } + Button:hover + { + textcolor=white + } + + URLLabel + { + textcolor="41 41 40 255" + } + } + + layout + { + place { control="InviteImage" x=2 y=2 width=50 height=50 } + place { control="InviteLabel,GameLabel,ApproveLabel" dir=down spacing=2 margin-top=6 margin-right=2 margin-left=60 } + place {control="OrLabel,IgnoreLabel" dir=right spacing=4 start=ApproveLabel margin-left=4 margin-top=0 margin-right=0 } + place { control="CloseButton" align=right margin=0 width=20 height=20 } + } +} diff --git a/friends/broadcastapprovenotification.res b/friends/broadcastapprovenotification.res new file mode 100644 index 0000000..9512df0 --- /dev/null +++ b/friends/broadcastapprovenotification.res @@ -0,0 +1,131 @@ +"friends/BroadcastApproveNotification.res" +{ + + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + "BroadcastApproveNotification" + { + "ControlName" "BroadcastApproveNotification" + "fieldName" "BroadcastApproveNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_BroadcastApproveNotification" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + "textcolor" "NotificationBodyText" + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_OnlineNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/broadcastcantstartfriend.res b/friends/broadcastcantstartfriend.res new file mode 100644 index 0000000..478825d --- /dev/null +++ b/friends/broadcastcantstartfriend.res @@ -0,0 +1,131 @@ +"friends/BroadcastCantStartFriend.res" +{ + + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + "BroadcastCantStartFriend" + { + "ControlName" "BroadcastCantStartFriend" + "fieldName" "BroadcastCantStartFriend" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_BroadcastCantStart_Streaming" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + "textcolor" "NotificationBodyText" + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_OnlineNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/broadcastinvitebar.res b/friends/broadcastinvitebar.res new file mode 100644 index 0000000..c725887 --- /dev/null +++ b/friends/broadcastinvitebar.res @@ -0,0 +1,62 @@ +"friends/broadcastinvitebar.res" +{ + colors + { + invitebg="163 160 153 255" + } + + controls + { + "BIBar" { ControlName="BIBar" } + "InviteLabel" { ControlName="Label" labeltext="#Friends_BroadcastInvite" mouseinputenabled=0 } + "GameLabel" { ControlName="Label" labeltext="%game%" mouseinputenabled=0 } + "ClickHereLabel" { ControlName="Label" labeltext="#friends_game_invite_action" mouseinputenabled=0 } + "InviteImage" { ControlName="ImagePanel" image="resource/invite" mouseinputenabled=0 } + "CloseButton" { ControlName="Button" labeltext="X" command="Close" } + } + + styles + { + CBroadcastInviteBar + { + render_bg { + 0="fill( x0, y0 + 2, x1, y1 - 2, invitebg )" // fill the center + 1="fill( x0 + 2, y0, x1 - 2, y0 + 2, invitebg )" // top + 2="fill( x0 + 2, y1 - 2, x1 - 2, y1, invitebg )" // bottom + + 3="fill4( x0 + 1, y0 + 1, x0 + 2, y0 + 2, invitebg )" // top-left + 4="fill4( x0 + 1, y0, x0 + 2, y0 + 1, invitebg, 127 )" // + 5="fill4( x0, y0 + 1, x0 + 1, y0 + 2, invitebg, 127 )" // + } + } + + Button + { + render {} + render_bg { } + bgcolor=none + font-style=none + } + + Label + { + textcolor="41 41 40 255" + } + + Button + { + textcolor="41 41 40 255" + } + Button:hover + { + textcolor=white + } + } + + layout + { + place { control="InviteImage" x=2 y=2 width=50 height=50 } + place { control="InviteLabel,GameLabel,ClickHereLabel" width=max dir=down spacing=2 margin-top=6 margin-right=2 margin-left=60 } + place { control="CloseButton" align=right margin=0 width=20 height=20 } + } +} diff --git a/friends/broadcastinvitenotification.res b/friends/broadcastinvitenotification.res new file mode 100644 index 0000000..2bcd1aa --- /dev/null +++ b/friends/broadcastinvitenotification.res @@ -0,0 +1,130 @@ +"friends/BroadcastInviteNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + "BroadcastInviteNotification" + { + "ControlName" "BroadcastInviteNotification" + "fieldName" "BroadcastInviteNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_BroadcastInviteNotification" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + "textcolor" "NotificationBodyText" + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_OnlineNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/broadcastpublicstatenotification.res b/friends/broadcastpublicstatenotification.res new file mode 100644 index 0000000..89599ae --- /dev/null +++ b/friends/broadcastpublicstatenotification.res @@ -0,0 +1,111 @@ +"resource/BroadcastPublicState.res" +{ + + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + "BroadcastPublicStateNotification" + { + "ControlName" "BroadcastPublicStateNotification" + "fieldName" "BroadcastPublicStateNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "74" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "style" "Notification" + } + + "BroadcastImageBlue" + { + "ControlName" "ImagePanel" + "fieldName" "BroadcastImageBlue" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "238" + "tall" "72" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + "image" "graphics/stream_notification" + } + + "BroadcastImageRed" + { + "ControlName" "ImagePanel" + "fieldName" "BroadcastImageRed" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "238" + "tall" "72" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + "image" "graphics/stream_disconnect_notification" + } + + "LabelTitle" + { + "ControlName" "Label" + "fieldName" "LabelTitle" + "style" "NotifyRemoteClientTitle" + "xpos" "64" + "ypos" "10" + "zpos" "2" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Broadcast_Notification_Title" + "textAlignment" "north-west" + "wrap" "1" + } + + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "style" "NotifyRemoteClientInfo" + "xpos" "64" + "ypos" "30" + "zpos" "2" + "wide" "172" + "tall" "50" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "Test" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/friends/broadcastrecordererrornotification.res b/friends/broadcastrecordererrornotification.res new file mode 100644 index 0000000..cf20f20 --- /dev/null +++ b/friends/broadcastrecordererrornotification.res @@ -0,0 +1,90 @@ +"friends/broadcastrecordererrornotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + "BroadcastRecorderNotification" + { + "ControlName" "CBroadcastRecorderNotification" + "fieldName" "BroadcastRecorderNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "74" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "style" "Notification" + } + + "BroacdastImageError" + { + "ControlName" "ImagePanel" + "fieldName" "BroacdastImageError" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "238" + "tall" "72" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + "image" "graphics/stream_disconnect_notification" + } + + "LabelStreaming" + { + "ControlName" "Label" + "fieldName" "LabelStreaming" + "style" "NotifyRemoteClientTitle" + "xpos" "64" + "ypos" "10" + "zpos" "2" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "Broadcast" + "textAlignment" "north-west" + "wrap" "1" + } + + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "style" "NotifyRemoteClientInfo" + "xpos" "64" + "ypos" "30" + "zpos" "2" + "wide" "172" + "tall" "50" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Broadcast_RecordingError_Notification" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/friends/broadcastuploaderrornotification.res b/friends/broadcastuploaderrornotification.res new file mode 100644 index 0000000..7c37487 --- /dev/null +++ b/friends/broadcastuploaderrornotification.res @@ -0,0 +1,90 @@ +"resource/BroadcastUploadErrorNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + "BroadcastUploadErrorNotification" + { + "ControlName" "BroadcastUploadErrorNotification" + "fieldName" "BroadcastUploadErrorNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "74" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "style" "Notification" + } + + "BroacdastImageError" + { + "ControlName" "ImagePanel" + "fieldName" "BroacdastImageError" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "238" + "tall" "72" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + "image" "graphics/stream_disconnect_notification" + } + + "LabelStreaming" + { + "ControlName" "Label" + "fieldName" "LabelStreaming" + "style" "NotifyRemoteClientTitle" + "xpos" "64" + "ypos" "10" + "zpos" "2" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "Broadcast" + "textAlignment" "north-west" + "wrap" "1" + } + + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "style" "NotifyRemoteClientInfo" + "xpos" "64" + "ypos" "30" + "zpos" "2" + "wide" "172" + "tall" "50" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Broadcast_UploadError_Notification" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/friends/broadcastviewernotification.res b/friends/broadcastviewernotification.res new file mode 100644 index 0000000..4c5edb1 --- /dev/null +++ b/friends/broadcastviewernotification.res @@ -0,0 +1,130 @@ +"friends/BroadcastViewerNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + "BroadcastViewerNotification" + { + "ControlName" "BroadcastViewerNotification" + "fieldName" "BroadcastViewerNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Broadcast_Notification_Is_Watching" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + "textcolor" "NotificationBodyText" + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_OnlineNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/friendaliasesdialog.res b/friends/friendaliasesdialog.res new file mode 100644 index 0000000..3dd6211 --- /dev/null +++ b/friends/friendaliasesdialog.res @@ -0,0 +1,86 @@ +"friends/friendaliasesdialog.res" +{ + controls + { + FriendAliasesDialog + { + title "#Friends_FriendAliases_Title" + wide "348" + tall "288" + } + + CloseButton + { + ControlName "Button" + labelText "#vgui_close" + Command "Close" + PinCorner "2" + } + + Caption + { + ControlName "Label" + labelText "#Friends_FriendAliasesInfo" + } + + Label1 { ControlName="Label" labelText="%FriendNameOld1%" } + Label2 { ControlName="Label" labelText="%FriendNameOld2%" } + Label3 { ControlName="Label" labelText="%FriendNameOld3%" } + Label4 { ControlName="Label" labelText="%FriendNameOld4%" } + Label5 { ControlName="Label" labelText="%FriendNameOld5%" } + Label6 { ControlName="Label" labelText="%FriendNameOld6%" } + Label7 { ControlName="Label" labelText="%FriendNameOld7%" } + Label8 { ControlName="Label" labelText="%FriendNameOld8%" } + Label9 { ControlName="Label" labelText="%FriendNameOld9%" } + Label10 { ControlName="Label" labelText="%FriendNameOld10%" } + + Date1 { ControlName="Label" labelText="%FriendDate1%" } + Date2 { ControlName="Label" labelText="%FriendDate2%" } + Date3 { ControlName="Label" labelText="%FriendDate3%" } + Date4 { ControlName="Label" labelText="%FriendDate4%" } + Date5 { ControlName="Label" labelText="%FriendDate5%" } + Date6 { ControlName="Label" labelText="%FriendDate6%" } + Date7 { ControlName="Label" labelText="%FriendDate7%" } + Date8 { ControlName="Label" labelText="%FriendDate8%" } + Date9 { ControlName="Label" labelText="%FriendDate9%" } + Date10 { ControlName="Label" labelText="%FriendDate10%" } + + FriendAliasesNone + { + ControlName "Label" + labelText "#Friends_FriendAliases_None" + textAlignment "north-west" + } + } + + layout + { + region { name="dates" align=left margin-top=60 margin-left=16 } + region { name="aliases" margin-top=60 margin-left=10 margin-right=20 } + region { name="bottomrow" align=bottom height=36 } + place { control=CloseButton region=bottomrow align=right margin-right=24 } + place { control=Caption x=10 y=40 margin-right=20 } + place { control=FriendAliasesNone x=25 y=60 width=250 height=200 } + place + { + control=Label1,Label2,Label3,Label4,Label5,Label6,Label7,Label8,Label9,Label10 + region="aliases" + dir=down + spacing=4 + height=15 + width=max + align=left + margin-left=130 + } + place + { + control=Date1,Date2,Date3,Date4,Date5,Date6,Date7,Date8,Date9,Date10 + region="dates" + dir=down + width=120 + spacing=4 + height=15 + } + } +} + diff --git a/friends/friendgameinvitedialog.res b/friends/friendgameinvitedialog.res new file mode 100644 index 0000000..a36a1f5 --- /dev/null +++ b/friends/friendgameinvitedialog.res @@ -0,0 +1,115 @@ +"Friends/friendgameinvitedialog.res" +{ + controls + { + "FriendGameInviteDialog" + { + "ControlName" "CFriendGameInviteDialog" + "fieldName" "FriendGameInviteDialog" + "xpos" "2123" + "ypos" "549" + "wide" "356" + "tall" "746" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + style="FriendsPanel" + closeonescape=1 + } + + "BuddyList" + { + "ControlName" "CFriendsListSubPanel" + "fieldName" "BuddyList" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + "linespacing" "48" + style="FriendsList" + } + + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "10" + "ypos" "707" + "wide" "150" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteToGame_Close" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + } + + + styles + { + FriendsPanel + { + bgcolor="dialogBG" + render_bg + { + + 1="image( x0, y0, x1, y1, graphics/clienttexture2)" + } + } + + RootMenu + { + bgcolor="none" + } + + + FriendsTitle + { + inset="0 0 0 0" + } + + FriendsTitle [$OSX] + { + font-family=basefont + font-size=15 + font-weight=400 + textcolor="textdisabled" + bgcolor="none" + inset="0 9 0 0" + } + + FriendsTitle:FrameFocus [$OSX] + { + font-family=basefont + font-size=15 + font-weight=400 + textcolor="texthover" + bgcolor="none" + inset="0 9 0 0" + } + } + + layout + { + // the title bar is missing, so increase the size of the grip + place { control="frame_captiongrip" margin=2 width=max height=38 } + + place { control="buddylist" align=left margin-left=10 margin-right=7 margin-top=36 margin-bottom=48 width=max height=max } + } + +} + + diff --git a/friends/friendnotificationoptionsdialog.res b/friends/friendnotificationoptionsdialog.res new file mode 100644 index 0000000..f9713b1 --- /dev/null +++ b/friends/friendnotificationoptionsdialog.res @@ -0,0 +1,243 @@ +"friends/friendnotificationoptionsdialog.res" +{ + layout{ + region {name="bottom" align=bottom width=max height=40} + place {control=Label4 margin-left=20 y=50 width=max} + place {control=JoinGameNotifyCheck start=Label4 margin-top=5 margin-left=20 dir=down width=max} + place {control=JoinGamePlaySoundCheck start=JoinGameNotifyCheck dir=down width=max} + + place {control=Label5 start=Label4 margin-top=70 width=max dir=down} + place {control=FriendOnlineNotifyCheck start=Label5 margin-top=5 margin-left=20 dir=down width=max} + place {control=FriendOnlinePlaySoundCheck start=FriendOnlineNotifyCheck dir=down width=max} + + place {control=Label6 start=Label5 margin-top=70 dir=down width=max} + place {control=ReceiveMessageNotifyCheck start=Label6 margin-top=5 margin-left=20 dir=down width=max} + place {control=ReceiveMessagePlaySoundCheck start=ReceiveMessageNotifyCheck dir=down width=max} + + place {control=OKButton,Button1 dir=right spacing=10 region="bottom" align=right margin-right=10} + } + + "CFriendNotificationOptionsDialog" + { + "ControlName" "CFriendNotificationOptionsDialog" + "fieldName" "CFriendNotificationOptionsDialog" + "xpos" "1100" + "ypos" "586" + "wide" "360" + "tall" "400" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Friends_NotificationOptions_Title" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "168" + "ypos" "358" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "7" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "258" + "ypos" "358" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "8" + "paintbackground" "1" + "labelText" "#vgui_cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "20" + "ypos" "50" + "wide" "364" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_WhenThisFriendJoinsGame" + "textAlignment" "west" + "wrap" "0" + } + "JoinGameNotifyCheck" + { + "ControlName" "CheckButton" + "fieldName" "JoinGameNotifyCheck" + "xpos" "40" + "ypos" "75" + "wide" "364" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Friends_DisplayNotification" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "JoinGamePlaySoundCheck" + { + "ControlName" "CheckButton" + "fieldName" "JoinGamePlaySoundCheck" + "xpos" "40" + "ypos" "96" + "wide" "364" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Friends_PlayASound" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "20" + "ypos" "128" + "wide" "404" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_WhenThisFriendComesOnline" + "textAlignment" "west" + "wrap" "0" + } + "FriendOnlineNotifyCheck" + { + "ControlName" "CheckButton" + "fieldName" "FriendOnlineNotifyCheck" + "xpos" "40" + "ypos" "154" + "wide" "364" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Friends_DisplayNotification" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "FriendOnlinePlaySoundCheck" + { + "ControlName" "CheckButton" + "fieldName" "FriendOnlinePlaySoundCheck" + "xpos" "40" + "ypos" "177" + "wide" "364" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#Friends_PlayASound" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "20" + "ypos" "210" + "wide" "404" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_WhenReceiveMessageFromThisFriend" + "textAlignment" "west" + "wrap" "0" + } + "ReceiveMessageNotifyCheck" + { + "ControlName" "CheckButton" + "fieldName" "ReceiveMessageNotifyCheck" + "xpos" "39" + "ypos" "230" + "wide" "364" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#Friends_DisplayNotification" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "ReceiveMessagePlaySoundCheck" + { + "ControlName" "CheckButton" + "fieldName" "ReceiveMessagePlaySoundCheck" + "xpos" "40" + "ypos" "254" + "wide" "364" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "6" + "paintbackground" "1" + "labelText" "#Friends_PlayASound" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } +} diff --git a/friends/friendsrefreshlogindialog.res b/friends/friendsrefreshlogindialog.res new file mode 100644 index 0000000..4b552b0 --- /dev/null +++ b/friends/friendsrefreshlogindialog.res @@ -0,0 +1,150 @@ +"Steam/RefreshLoginDialog.res" +{ + "RefreshLoginDialog" + { + "ControlName" "Frame" + "fieldName" "RefreshLoginDialog" + "xpos" "396" + "ypos" "338" + "wide" "388" + "tall" "244" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "ErrorInfoLabel" + { + "ControlName" "Label" + "fieldName" "ErrorInfoLabel" + "xpos" "31" + "ypos" "42" + "wide" "328" + "tall" "51" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "UserNameEdit" + { + "ControlName" "TextEntry" + "fieldName" "UserNameEdit" + "xpos" "121" + "ypos" "100" + "wide" "238" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + } + "PasswordEdit" + { + "ControlName" "TextEntry" + "fieldName" "PasswordEdit" + "xpos" "121" + "ypos" "133" + "wide" "238" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "1" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + } + "LoginButton" + { + "ControlName" "Button" + "fieldName" "LoginButton" + "xpos" "120" + "ypos" "167" + "wide" "80" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "labelText" "#Friends_Login_Btn" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "Command" "Login" + "Default" "1" + } + "UserNameLabel" + { + "ControlName" "Label" + "fieldName" "UserNameLabel" + "xpos" "10" + "ypos" "100" + "wide" "104" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Friends_AccountName" + "textAlignment" "east" + "associate" "UserNameEdit" + "dulltext" "0" + "brighttext" "0" + } + "Unnamed dialog1" + { + "ControlName" "Label" + "fieldName" "Unnamed dialog1" + "xpos" "10" + "ypos" "133" + "wide" "104" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Friends_Login_Password" + "textAlignment" "east" + "associate" "PasswordEdit" + "dulltext" "0" + "brighttext" "0" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "206" + "ypos" "167" + "wide" "84" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "labelText" "#vgui_cancel" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "Command" "Close" + "Default" "0" + } +} diff --git a/friends/gameinvitebar.res b/friends/gameinvitebar.res new file mode 100644 index 0000000..0e2650d --- /dev/null +++ b/friends/gameinvitebar.res @@ -0,0 +1,60 @@ +"friends/gameinvitebar.res" +{ + colors + { + invitebg="163 160 153 255" + } + + controls + { + "GameInviteBar" { ControlName="GameInviteBar" } + "InviteLabel" { ControlName="Label" labeltext="#friends_game_invite" mouseinputenabled=0 } + "GameLabel" { ControlName="Label" labeltext="%game%" mouseinputenabled=0 } + "ClickHereLabel" { ControlName="Label" labeltext="#friends_game_invite_action" mouseinputenabled=0 } + "InviteImage" { ControlName="ImagePanel" image="resource/invite" mouseinputenabled=0 } + "CloseButton" { ControlName="Button" labeltext="X" command="Close" } + } + + styles + { + CGameInviteBar + { + render_bg { + 0="fill( x0, y0, x1, y1, DefaultBackground )" // fill the center + //1="fill( x0 + 2, y0, x1 - 2, y0 + 2, invitebg )" // top + //2="fill( x0 + 2, y1 - 2, x1 - 2, y1, invitebg )" // bottom + + //3="fill4( x0 + 1, y0 + 1, x0 + 2, y0 + 2, invitebg )" // top-left + //4="fill4( x0 + 1, y0, x0 + 2, y0 + 1, invitebg, 127 )" // + //5="fill4( x0, y0 + 1, x0 + 1, y0 + 2, invitebg, 127 )" // + } + } + + Button + { + render {} + render_bg { } + bgcolor=none + font-style=none + textcolor=DefaultText + } + + Button:hover + { + textcolor=DefaultText.Hover + } + + //Label + //{ + // textcolor=DefaultText + //} + + } + + layout + { + place { control="InviteImage" x=2 y=2 width=50 height=50 } + place { control="InviteLabel,GameLabel,ClickHereLabel" width=max dir=down spacing=2 margin-top=6 margin-right=2 margin-left=60 } + place { control="CloseButton" align=right margin=0 width=20 height=20 } + } +} diff --git a/friends/giftreceivednotification.res b/friends/giftreceivednotification.res new file mode 100644 index 0000000..abba4f0 --- /dev/null +++ b/friends/giftreceivednotification.res @@ -0,0 +1,130 @@ +"friends/GiftReceivedNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + "GiftReceivedNotification" + { + "ControlName" "GiftReceivedNotification" + "fieldName" "GiftReceivedNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "GiftImage" + { + "ControlName" "ImagePanel" + "fieldName" "GiftImage" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + "image" "graphics/icon_toast_gift" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#friends_giftreceived_info" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/icon_chatFailed.tga b/friends/icon_chatFailed.tga new file mode 100644 index 0000000..6f8634e Binary files /dev/null and b/friends/icon_chatFailed.tga differ diff --git a/friends/icon_chat_activity.tga b/friends/icon_chat_activity.tga new file mode 100644 index 0000000..63d1e82 Binary files /dev/null and b/friends/icon_chat_activity.tga differ diff --git a/friends/icon_chat_idle.tga b/friends/icon_chat_idle.tga new file mode 100644 index 0000000..e671f9c Binary files /dev/null and b/friends/icon_chat_idle.tga differ diff --git a/friends/icon_connected.tga b/friends/icon_connected.tga new file mode 100644 index 0000000..90156f8 Binary files /dev/null and b/friends/icon_connected.tga differ diff --git a/friends/icon_connected_speaking.tga b/friends/icon_connected_speaking.tga new file mode 100644 index 0000000..3b9e760 Binary files /dev/null and b/friends/icon_connected_speaking.tga differ diff --git a/friends/icon_groupchat_activity.tga b/friends/icon_groupchat_activity.tga new file mode 100644 index 0000000..7eb8f79 Binary files /dev/null and b/friends/icon_groupchat_activity.tga differ diff --git a/friends/icon_groupchat_idle.tga b/friends/icon_groupchat_idle.tga new file mode 100644 index 0000000..cd79d44 Binary files /dev/null and b/friends/icon_groupchat_idle.tga differ diff --git a/friends/icon_microphone.tga b/friends/icon_microphone.tga new file mode 100644 index 0000000..f5914ee Binary files /dev/null and b/friends/icon_microphone.tga differ diff --git a/friends/icon_microphone_hold.tga b/friends/icon_microphone_hold.tga new file mode 100644 index 0000000..994aba7 Binary files /dev/null and b/friends/icon_microphone_hold.tga differ diff --git a/friends/icon_notChatting.tga b/friends/icon_notChatting.tga new file mode 100644 index 0000000..9f0836e Binary files /dev/null and b/friends/icon_notChatting.tga differ diff --git a/friends/icon_speaker.tga b/friends/icon_speaker.tga new file mode 100644 index 0000000..4577998 Binary files /dev/null and b/friends/icon_speaker.tga differ diff --git a/friends/icon_speaker_ringing.tga b/friends/icon_speaker_ringing.tga new file mode 100644 index 0000000..e31310a Binary files /dev/null and b/friends/icon_speaker_ringing.tga differ diff --git a/friends/itemreceivednotification.res b/friends/itemreceivednotification.res new file mode 100644 index 0000000..cae503d --- /dev/null +++ b/friends/itemreceivednotification.res @@ -0,0 +1,118 @@ +"friends/ItemReceivedNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + layout{ + place {control="ItemImage" x=16 y=16 width=42 height=42} + place {control="NotificationClickPanel" x=0 y=0 width=max height=max} + place {control="LabelInfo" x=64 y=16 width=172 height=34} + place {control="LabelHotkey" x=0 y=74 width=240 height=24} + } + + "ItemReceivedNotification" + { + "ControlName" "ItemReceivedNotification" + "fieldName" "ItemReceivedNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ItemImage" + { + "ControlName" "ImagePanel" + "fieldName" "ItemImage" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + "image" "graphics/icon_toast_item" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "34" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#friends_itemsreceived_info" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/loop_1.tga b/friends/loop_1.tga new file mode 100644 index 0000000..f2a54f5 Binary files /dev/null and b/friends/loop_1.tga differ diff --git a/friends/loop_2.tga b/friends/loop_2.tga new file mode 100644 index 0000000..e97537e Binary files /dev/null and b/friends/loop_2.tga differ diff --git a/friends/loop_3.tga b/friends/loop_3.tga new file mode 100644 index 0000000..7ea4c1f Binary files /dev/null and b/friends/loop_3.tga differ diff --git a/friends/loop_4.tga b/friends/loop_4.tga new file mode 100644 index 0000000..4767aa8 Binary files /dev/null and b/friends/loop_4.tga differ diff --git a/friends/loop_5.tga b/friends/loop_5.tga new file mode 100644 index 0000000..916631b Binary files /dev/null and b/friends/loop_5.tga differ diff --git a/friends/loop_6.tga b/friends/loop_6.tga new file mode 100644 index 0000000..cfb99fb Binary files /dev/null and b/friends/loop_6.tga differ diff --git a/friends/loop_7.tga b/friends/loop_7.tga new file mode 100644 index 0000000..8872c2a Binary files /dev/null and b/friends/loop_7.tga differ diff --git a/friends/loop_8.tga b/friends/loop_8.tga new file mode 100644 index 0000000..cadff15 Binary files /dev/null and b/friends/loop_8.tga differ diff --git a/friends/newturnsnotification.res b/friends/newturnsnotification.res new file mode 100644 index 0000000..cdc93a7 --- /dev/null +++ b/friends/newturnsnotification.res @@ -0,0 +1,118 @@ +"friends/NewTurnsNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + layout{ + place {control="ItemImage" x=16 y=16 width=42 height=42} + place {control="NotificationClickPanel" x=0 y=0 width=max height=max} + place {control="LabelInfo" x=64 y=16 width=172 height=34} + place {control="LabelHotkey" x=0 y=74 width=240 height=24} + } + + "NewTurnsNotification" + { + "ControlName" "NewTurnsNotification" + "fieldName" "NewTurnsNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ItemImage" + { + "ControlName" "ImagePanel" + "fieldName" "ItemImage" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + "image" "graphics/icon_toast_newturns" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "34" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#friends_newturns_info" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/rampDown_1.tga b/friends/rampDown_1.tga new file mode 100644 index 0000000..e454b0d Binary files /dev/null and b/friends/rampDown_1.tga differ diff --git a/friends/rampDown_2.tga b/friends/rampDown_2.tga new file mode 100644 index 0000000..3c134dd Binary files /dev/null and b/friends/rampDown_2.tga differ diff --git a/friends/rampUp_1.tga b/friends/rampUp_1.tga new file mode 100644 index 0000000..3c134dd Binary files /dev/null and b/friends/rampUp_1.tga differ diff --git a/friends/rampUp_2.tga b/friends/rampUp_2.tga new file mode 100644 index 0000000..e454b0d Binary files /dev/null and b/friends/rampUp_2.tga differ diff --git a/friends/setnicknamedialog.layout b/friends/setnicknamedialog.layout new file mode 100644 index 0000000..f22c0d0 --- /dev/null +++ b/friends/setnicknamedialog.layout @@ -0,0 +1,59 @@ +"friends/setnicknamedialog.layout" +{ + controls + { + FriendAliasesDialog + { + title "#friends_setnickname_title" + wide "388" + tall "148" + } + + CloseButton + { + ControlName "Button" + labelText "#vgui_close" + Command "Close" + } + + OKButton + { + ControlName "Button" + labelText "#vgui_ok" + Command "Apply" + default "1" + } + + Details + { + ControlName "Label" + labelText "#friends_setnickname_info" + wrap "1" + } + + NicknameEdit + { + ControlName "TextEntry" + tabposition "1" + unicode "1" + } + + } + + styles + { + Button + { + minimum-width=80 + } + } + + layout + { + region { name="bottomrow" align=bottom height=36 } + place { control="OKButton,CloseButton" region=bottomrow align=right spacing=8 margin-right=24 } + place { control=Details x=20 y=38 width=348 margin-right=20 height=40 } + place { control=NicknameEdit x=20 y=75 width=335 height=24 } + } +} + diff --git a/friends/tradeinvitebar.res b/friends/tradeinvitebar.res new file mode 100644 index 0000000..598b7ff --- /dev/null +++ b/friends/tradeinvitebar.res @@ -0,0 +1,65 @@ +"friends/tradeinvitebar.res" +{ + colors + { + invitebg="163 160 153 255" + } + + controls + { + "InviteLabel" { ControlName="Label" labeltext="#friends_trade_invite" mouseinputenabled=0 group="recv" } + "ClickHereLabel" { ControlName="Label" labeltext="#friends_trade_invite_action" mouseinputenabled=0 group="recv" } + + "InviteSentLabel" { ControlName="Label" labeltext="#friends_trade_invite_sent" mouseinputenabled=0 group="send" } + "WaitingForResponseLabel" { ControlName="Label" labeltext="#friends_trade_invite_sent_waiting" mouseinputenabled=0 group="send" } + + "InviteImage" { ControlName="ImagePanel" image="resource/icon_trade_request" mouseinputenabled=0 group="recv" } + "InviteSentImage" { ControlName="ImagePanel" image="resource/icon_trade_request" mouseinputenabled=0 group="send" } + + "CloseButton" { ControlName="Button" labeltext="X" command="Close" } + } + + styles + { + CTradeInviteBar + { + render_bg { + 0="fill( x0, y0, x1, y1, DefaultBackground )" // fill the center + //1="fill( x0 + 2, y0, x1 - 2, y0 + 2, invitebg )" // top + //2="fill( x0 + 2, y1 - 2, x1 - 2, y1, invitebg )" // bottom + + //3="fill4( x0 + 1, y0 + 1, x0 + 2, y0 + 2, invitebg )" // top-left + //4="fill4( x0 + 1, y0, x0 + 2, y0 + 1, invitebg, 127 )" // + //5="fill4( x0, y0 + 1, x0 + 1, y0 + 2, invitebg, 127 )" // + } + } + + Button + { + render {} + render_bg { } + bgcolor=none + font-style=none + textcolor=DefaultText + } + + Button:hover + { + textcolor=DefaultText.Hover + } + + //Label + //{ + // textcolor="41 41 40 255" + //} + + + } + + layout + { + place { control="InviteImage,InviteSentImage" x=2 y=2 width=50 height=50 } + place { control="InviteLabel,ClickHereLabel,InviteSentLabel,WaitingForResponseLabel" width=max dir=down spacing=12 margin-top=6 margin-right=2 margin-left=60 } + place { control="CloseButton" align=right margin=0 width=20 height=20 } + } +} diff --git a/friends/tradeinvitenotification.res b/friends/tradeinvitenotification.res new file mode 100644 index 0000000..61130db --- /dev/null +++ b/friends/tradeinvitenotification.res @@ -0,0 +1,128 @@ +"friends/TradeInviteNotification.res" +{ + layout{ + place {control="ImageAvatar" x=16 y=16 width=42 height=42} + place {control="NotificationClickPanel" x=0 y=0 width=max height=max} + place {control="LabelSender" x=64 y=16 width=172 height=16} + place {control="LabelInfo" x=64 y=30 width=172 height=16} + place {control="LabelHotkey" x=0 y=74 width=240 height=24} + } + + "TradeInviteNotification" + { + "ControlName" "TradInvitationNotification" + "fieldName" "TradeInviteNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LabelSender" + { + "ControlName" "Label" + "fieldName" "LabelSender" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_TradeInvitation_Info" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InviteNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + } +} diff --git a/friends/voicebar.res b/friends/voicebar.res new file mode 100644 index 0000000..f9cad9a --- /dev/null +++ b/friends/voicebar.res @@ -0,0 +1,57 @@ +"friends/voicebar.res" +{ + controls + { + "VoiceBar" + { + "ControlName" "CVoiceBar" + } + "micvolume" + { + "ControlName" "CVoiceTraffic" + } + "SpeakerVolume" + { + "ControlName" "CVoiceTraffic" + } + "action2" + { + "ControlName" "Button" + style="Chat_MenuButton_withChrome" + } + + "StatusLabel" + { + "ControlName" "Label" + style="status_label" + } + "VoiceImage" + { + "ControlName" "ImagePanel" + style="voice_image" + } + } + + styles + { + settingsstyle + { + padding-top=4 + } + + status_label + { + inset="0 3 0 0" + } + voice_image + { + inset="0 -2 0 0" + } + } + + layout + { + place { control="action2" minimum-width="120" align=right } + place { control="VoiceImage,StatusLabel,micvolume,speakervolume,action2" align=right spacing=8 margin=0 } + } +} diff --git a/graphics/JackMyth/About.tga b/graphics/JackMyth/About.tga new file mode 100644 index 0000000..f886e8d Binary files /dev/null and b/graphics/JackMyth/About.tga differ diff --git a/graphics/JackMyth/BackupWizard.tga b/graphics/JackMyth/BackupWizard.tga new file mode 100644 index 0000000..5f6a06d Binary files /dev/null and b/graphics/JackMyth/BackupWizard.tga differ diff --git a/graphics/JackMyth/CDKeyWizard.tga b/graphics/JackMyth/CDKeyWizard.tga new file mode 100644 index 0000000..2fee613 Binary files /dev/null and b/graphics/JackMyth/CDKeyWizard.tga differ diff --git a/graphics/JackMyth/ChatRoom.tga b/graphics/JackMyth/ChatRoom.tga new file mode 100644 index 0000000..e94d78c Binary files /dev/null and b/graphics/JackMyth/ChatRoom.tga differ diff --git a/graphics/JackMyth/DownloadBG.tga b/graphics/JackMyth/DownloadBG.tga new file mode 100644 index 0000000..97aa905 Binary files /dev/null and b/graphics/JackMyth/DownloadBG.tga differ diff --git a/graphics/JackMyth/FadeLR.tga b/graphics/JackMyth/FadeLR.tga new file mode 100644 index 0000000..dfb0eda Binary files /dev/null and b/graphics/JackMyth/FadeLR.tga differ diff --git a/graphics/JackMyth/FriendsList.tga b/graphics/JackMyth/FriendsList.tga new file mode 100644 index 0000000..8fac1b3 Binary files /dev/null and b/graphics/JackMyth/FriendsList.tga differ diff --git a/graphics/JackMyth/InstallAppWizard.tga b/graphics/JackMyth/InstallAppWizard.tga new file mode 100644 index 0000000..a9c009e Binary files /dev/null and b/graphics/JackMyth/InstallAppWizard.tga differ diff --git a/graphics/JackMyth/LittleVirgin.tga b/graphics/JackMyth/LittleVirgin.tga new file mode 100644 index 0000000..c0511bf Binary files /dev/null and b/graphics/JackMyth/LittleVirgin.tga differ diff --git a/graphics/JackMyth/LoginBG.tga b/graphics/JackMyth/LoginBG.tga new file mode 100644 index 0000000..43706aa Binary files /dev/null and b/graphics/JackMyth/LoginBG.tga differ diff --git a/graphics/JackMyth/MainBG.tga b/graphics/JackMyth/MainBG.tga new file mode 100644 index 0000000..41b6a12 Binary files /dev/null and b/graphics/JackMyth/MainBG.tga differ diff --git a/graphics/JackMyth/OpenLeg.tga b/graphics/JackMyth/OpenLeg.tga new file mode 100644 index 0000000..587fa51 Binary files /dev/null and b/graphics/JackMyth/OpenLeg.tga differ diff --git a/graphics/JackMyth/SettingsDialog.tga b/graphics/JackMyth/SettingsDialog.tga new file mode 100644 index 0000000..5a20f75 Binary files /dev/null and b/graphics/JackMyth/SettingsDialog.tga differ diff --git a/graphics/JackMyth/SettingsDialog_Fade.tga b/graphics/JackMyth/SettingsDialog_Fade.tga new file mode 100644 index 0000000..db427cd Binary files /dev/null and b/graphics/JackMyth/SettingsDialog_Fade.tga differ diff --git a/graphics/JackMyth/SliderBar.tga b/graphics/JackMyth/SliderBar.tga new file mode 100644 index 0000000..37fd659 Binary files /dev/null and b/graphics/JackMyth/SliderBar.tga differ diff --git a/graphics/JackMyth/SystemInfo.tga b/graphics/JackMyth/SystemInfo.tga new file mode 100644 index 0000000..331eb36 Binary files /dev/null and b/graphics/JackMyth/SystemInfo.tga differ diff --git a/graphics/JackMyth/bg_security_wizard.tga b/graphics/JackMyth/bg_security_wizard.tga new file mode 100644 index 0000000..b3f6d09 Binary files /dev/null and b/graphics/JackMyth/bg_security_wizard.tga differ diff --git a/graphics/Threshold/add.tga b/graphics/Threshold/add.tga new file mode 100644 index 0000000..d742ec8 Binary files /dev/null and b/graphics/Threshold/add.tga differ diff --git a/graphics/Threshold/back.tga b/graphics/Threshold/back.tga new file mode 100644 index 0000000..30d6de0 Binary files /dev/null and b/graphics/Threshold/back.tga differ diff --git a/graphics/Threshold/back_dis.tga b/graphics/Threshold/back_dis.tga new file mode 100644 index 0000000..60da155 Binary files /dev/null and b/graphics/Threshold/back_dis.tga differ diff --git a/graphics/Threshold/back_sm.tga b/graphics/Threshold/back_sm.tga new file mode 100644 index 0000000..a4ea470 Binary files /dev/null and b/graphics/Threshold/back_sm.tga differ diff --git a/graphics/Threshold/back_sm_dis.tga b/graphics/Threshold/back_sm_dis.tga new file mode 100644 index 0000000..b29ad82 Binary files /dev/null and b/graphics/Threshold/back_sm_dis.tga differ diff --git a/graphics/Threshold/beta.tga b/graphics/Threshold/beta.tga new file mode 100644 index 0000000..0cef6c0 Binary files /dev/null and b/graphics/Threshold/beta.tga differ diff --git a/graphics/Threshold/community.tga b/graphics/Threshold/community.tga new file mode 100644 index 0000000..10a0a81 Binary files /dev/null and b/graphics/Threshold/community.tga differ diff --git a/graphics/Threshold/detail.tga b/graphics/Threshold/detail.tga new file mode 100644 index 0000000..6c61366 Binary files /dev/null and b/graphics/Threshold/detail.tga differ diff --git a/graphics/Threshold/detail_hover.tga b/graphics/Threshold/detail_hover.tga new file mode 100644 index 0000000..779b073 Binary files /dev/null and b/graphics/Threshold/detail_hover.tga differ diff --git a/graphics/Threshold/detail_scale.tga b/graphics/Threshold/detail_scale.tga new file mode 100644 index 0000000..8f552d5 Binary files /dev/null and b/graphics/Threshold/detail_scale.tga differ diff --git a/graphics/Threshold/detail_scale_hover.tga b/graphics/Threshold/detail_scale_hover.tga new file mode 100644 index 0000000..8a5bab6 Binary files /dev/null and b/graphics/Threshold/detail_scale_hover.tga differ diff --git a/graphics/Threshold/dots.tga b/graphics/Threshold/dots.tga new file mode 100644 index 0000000..c8d2704 Binary files /dev/null and b/graphics/Threshold/dots.tga differ diff --git a/graphics/Threshold/downloads.tga b/graphics/Threshold/downloads.tga new file mode 100644 index 0000000..44d93f9 Binary files /dev/null and b/graphics/Threshold/downloads.tga differ diff --git a/graphics/Threshold/familyview.tga b/graphics/Threshold/familyview.tga new file mode 100644 index 0000000..dbc5a94 Binary files /dev/null and b/graphics/Threshold/familyview.tga differ diff --git a/graphics/Threshold/forward.tga b/graphics/Threshold/forward.tga new file mode 100644 index 0000000..a821b8e Binary files /dev/null and b/graphics/Threshold/forward.tga differ diff --git a/graphics/Threshold/forward_dis.tga b/graphics/Threshold/forward_dis.tga new file mode 100644 index 0000000..d1bb1e4 Binary files /dev/null and b/graphics/Threshold/forward_dis.tga differ diff --git a/graphics/Threshold/friends/friends.tga b/graphics/Threshold/friends/friends.tga new file mode 100644 index 0000000..d625edb Binary files /dev/null and b/graphics/Threshold/friends/friends.tga differ diff --git a/graphics/Threshold/friends/friends_add.tga b/graphics/Threshold/friends/friends_add.tga new file mode 100644 index 0000000..2f723a6 Binary files /dev/null and b/graphics/Threshold/friends/friends_add.tga differ diff --git a/graphics/Threshold/friends/friends_small.tga b/graphics/Threshold/friends/friends_small.tga new file mode 100644 index 0000000..072173c Binary files /dev/null and b/graphics/Threshold/friends/friends_small.tga differ diff --git a/graphics/Threshold/friends/icon_chat_activity.tga b/graphics/Threshold/friends/icon_chat_activity.tga new file mode 100644 index 0000000..63d1e82 Binary files /dev/null and b/graphics/Threshold/friends/icon_chat_activity.tga differ diff --git a/graphics/Threshold/friends/icon_chat_idle.tga b/graphics/Threshold/friends/icon_chat_idle.tga new file mode 100644 index 0000000..e671f9c Binary files /dev/null and b/graphics/Threshold/friends/icon_chat_idle.tga differ diff --git a/graphics/Threshold/friends/icon_emoticon.tga b/graphics/Threshold/friends/icon_emoticon.tga new file mode 100644 index 0000000..829c3d5 Binary files /dev/null and b/graphics/Threshold/friends/icon_emoticon.tga differ diff --git a/graphics/Threshold/friends/icon_groupchat_activity.tga b/graphics/Threshold/friends/icon_groupchat_activity.tga new file mode 100644 index 0000000..7eb8f79 Binary files /dev/null and b/graphics/Threshold/friends/icon_groupchat_activity.tga differ diff --git a/graphics/Threshold/friends/icon_groupchat_idle.tga b/graphics/Threshold/friends/icon_groupchat_idle.tga new file mode 100644 index 0000000..cd79d44 Binary files /dev/null and b/graphics/Threshold/friends/icon_groupchat_idle.tga differ diff --git a/graphics/Threshold/grid.tga b/graphics/Threshold/grid.tga new file mode 100644 index 0000000..a313a86 Binary files /dev/null and b/graphics/Threshold/grid.tga differ diff --git a/graphics/Threshold/grid_hover.tga b/graphics/Threshold/grid_hover.tga new file mode 100644 index 0000000..4227a24 Binary files /dev/null and b/graphics/Threshold/grid_hover.tga differ diff --git a/graphics/Threshold/grid_scale.tga b/graphics/Threshold/grid_scale.tga new file mode 100644 index 0000000..8f27d3e Binary files /dev/null and b/graphics/Threshold/grid_scale.tga differ diff --git a/graphics/Threshold/grid_scale_hover.tga b/graphics/Threshold/grid_scale_hover.tga new file mode 100644 index 0000000..d63ef05 Binary files /dev/null and b/graphics/Threshold/grid_scale_hover.tga differ diff --git a/graphics/Threshold/home.tga b/graphics/Threshold/home.tga new file mode 100644 index 0000000..120f80e Binary files /dev/null and b/graphics/Threshold/home.tga differ diff --git a/graphics/Threshold/icons/buy.tga b/graphics/Threshold/icons/buy.tga new file mode 100644 index 0000000..2f32607 Binary files /dev/null and b/graphics/Threshold/icons/buy.tga differ diff --git a/graphics/Threshold/icons/check.tga b/graphics/Threshold/icons/check.tga new file mode 100644 index 0000000..7559245 Binary files /dev/null and b/graphics/Threshold/icons/check.tga differ diff --git a/graphics/Threshold/icons/check_dis.tga b/graphics/Threshold/icons/check_dis.tga new file mode 100644 index 0000000..692f79d Binary files /dev/null and b/graphics/Threshold/icons/check_dis.tga differ diff --git a/graphics/Threshold/icons/check_dis1.tga b/graphics/Threshold/icons/check_dis1.tga new file mode 100644 index 0000000..d1d378e Binary files /dev/null and b/graphics/Threshold/icons/check_dis1.tga differ diff --git a/graphics/Threshold/icons/check_hover.tga b/graphics/Threshold/icons/check_hover.tga new file mode 100644 index 0000000..0cf499c Binary files /dev/null and b/graphics/Threshold/icons/check_hover.tga differ diff --git a/graphics/Threshold/icons/check_ind.tga b/graphics/Threshold/icons/check_ind.tga new file mode 100644 index 0000000..2d643c4 Binary files /dev/null and b/graphics/Threshold/icons/check_ind.tga differ diff --git a/graphics/Threshold/icons/check_ind_hover.tga b/graphics/Threshold/icons/check_ind_hover.tga new file mode 100644 index 0000000..b223a9b Binary files /dev/null and b/graphics/Threshold/icons/check_ind_hover.tga differ diff --git a/graphics/Threshold/icons/check_sel.tga b/graphics/Threshold/icons/check_sel.tga new file mode 100644 index 0000000..adf112b Binary files /dev/null and b/graphics/Threshold/icons/check_sel.tga differ diff --git a/graphics/Threshold/icons/check_sel1.tga b/graphics/Threshold/icons/check_sel1.tga new file mode 100644 index 0000000..b4a4da6 Binary files /dev/null and b/graphics/Threshold/icons/check_sel1.tga differ diff --git a/graphics/Threshold/icons/check_sel_dis.tga b/graphics/Threshold/icons/check_sel_dis.tga new file mode 100644 index 0000000..6c10106 Binary files /dev/null and b/graphics/Threshold/icons/check_sel_dis.tga differ diff --git a/graphics/Threshold/icons/check_sel_hover.tga b/graphics/Threshold/icons/check_sel_hover.tga new file mode 100644 index 0000000..36f415f Binary files /dev/null and b/graphics/Threshold/icons/check_sel_hover.tga differ diff --git a/graphics/Threshold/icons/check_sm.tga b/graphics/Threshold/icons/check_sm.tga new file mode 100644 index 0000000..d7e215b Binary files /dev/null and b/graphics/Threshold/icons/check_sm.tga differ diff --git a/graphics/Threshold/icons/check_sm_sel.tga b/graphics/Threshold/icons/check_sm_sel.tga new file mode 100644 index 0000000..b1d25c1 Binary files /dev/null and b/graphics/Threshold/icons/check_sm_sel.tga differ diff --git a/graphics/Threshold/icons/close.tga b/graphics/Threshold/icons/close.tga new file mode 100644 index 0000000..a368472 Binary files /dev/null and b/graphics/Threshold/icons/close.tga differ diff --git a/graphics/Threshold/icons/down.tga b/graphics/Threshold/icons/down.tga new file mode 100644 index 0000000..e5972af Binary files /dev/null and b/graphics/Threshold/icons/down.tga differ diff --git a/graphics/Threshold/icons/down_hover.tga b/graphics/Threshold/icons/down_hover.tga new file mode 100644 index 0000000..246f328 Binary files /dev/null and b/graphics/Threshold/icons/down_hover.tga differ diff --git a/graphics/Threshold/icons/fav_addTo.tga b/graphics/Threshold/icons/fav_addTo.tga new file mode 100644 index 0000000..47d7d04 Binary files /dev/null and b/graphics/Threshold/icons/fav_addTo.tga differ diff --git a/graphics/Threshold/icons/fav_addTo_ovr.tga b/graphics/Threshold/icons/fav_addTo_ovr.tga new file mode 100644 index 0000000..7670442 Binary files /dev/null and b/graphics/Threshold/icons/fav_addTo_ovr.tga differ diff --git a/graphics/Threshold/icons/fav_remove.tga b/graphics/Threshold/icons/fav_remove.tga new file mode 100644 index 0000000..8c1bd78 Binary files /dev/null and b/graphics/Threshold/icons/fav_remove.tga differ diff --git a/graphics/Threshold/icons/fav_remove_ovr.tga b/graphics/Threshold/icons/fav_remove_ovr.tga new file mode 100644 index 0000000..fa6b170 Binary files /dev/null and b/graphics/Threshold/icons/fav_remove_ovr.tga differ diff --git a/graphics/Threshold/icons/install.tga b/graphics/Threshold/icons/install.tga new file mode 100644 index 0000000..84d122f Binary files /dev/null and b/graphics/Threshold/icons/install.tga differ diff --git a/graphics/Threshold/icons/minus.tga b/graphics/Threshold/icons/minus.tga new file mode 100644 index 0000000..a06c90a Binary files /dev/null and b/graphics/Threshold/icons/minus.tga differ diff --git a/graphics/Threshold/icons/minus_hover.tga b/graphics/Threshold/icons/minus_hover.tga new file mode 100644 index 0000000..1ba67e9 Binary files /dev/null and b/graphics/Threshold/icons/minus_hover.tga differ diff --git a/graphics/Threshold/icons/music_player.tga b/graphics/Threshold/icons/music_player.tga new file mode 100644 index 0000000..4b3a93c Binary files /dev/null and b/graphics/Threshold/icons/music_player.tga differ diff --git a/graphics/Threshold/icons/pause.tga b/graphics/Threshold/icons/pause.tga new file mode 100644 index 0000000..cd2f1d1 Binary files /dev/null and b/graphics/Threshold/icons/pause.tga differ diff --git a/graphics/Threshold/icons/play.tga b/graphics/Threshold/icons/play.tga new file mode 100644 index 0000000..0b1d62f Binary files /dev/null and b/graphics/Threshold/icons/play.tga differ diff --git a/graphics/Threshold/icons/play_hover.tga b/graphics/Threshold/icons/play_hover.tga new file mode 100644 index 0000000..855a480 Binary files /dev/null and b/graphics/Threshold/icons/play_hover.tga differ diff --git a/graphics/Threshold/icons/plus.tga b/graphics/Threshold/icons/plus.tga new file mode 100644 index 0000000..9a26a2c Binary files /dev/null and b/graphics/Threshold/icons/plus.tga differ diff --git a/graphics/Threshold/icons/plus_hover.tga b/graphics/Threshold/icons/plus_hover.tga new file mode 100644 index 0000000..5c814a2 Binary files /dev/null and b/graphics/Threshold/icons/plus_hover.tga differ diff --git a/graphics/Threshold/icons/plus_sm.tga b/graphics/Threshold/icons/plus_sm.tga new file mode 100644 index 0000000..3a6fd10 Binary files /dev/null and b/graphics/Threshold/icons/plus_sm.tga differ diff --git a/graphics/Threshold/icons/queue.tga b/graphics/Threshold/icons/queue.tga new file mode 100644 index 0000000..2a06a13 Binary files /dev/null and b/graphics/Threshold/icons/queue.tga differ diff --git a/graphics/Threshold/icons/rad.tga b/graphics/Threshold/icons/rad.tga new file mode 100644 index 0000000..5549e18 Binary files /dev/null and b/graphics/Threshold/icons/rad.tga differ diff --git a/graphics/Threshold/icons/rad_hover.tga b/graphics/Threshold/icons/rad_hover.tga new file mode 100644 index 0000000..65936a3 Binary files /dev/null and b/graphics/Threshold/icons/rad_hover.tga differ diff --git a/graphics/Threshold/icons/rad_sel.tga b/graphics/Threshold/icons/rad_sel.tga new file mode 100644 index 0000000..d6f9800 Binary files /dev/null and b/graphics/Threshold/icons/rad_sel.tga differ diff --git a/graphics/Threshold/icons/right.tga b/graphics/Threshold/icons/right.tga new file mode 100644 index 0000000..431c0cd Binary files /dev/null and b/graphics/Threshold/icons/right.tga differ diff --git a/graphics/Threshold/icons/right_hover.tga b/graphics/Threshold/icons/right_hover.tga new file mode 100644 index 0000000..118e51f Binary files /dev/null and b/graphics/Threshold/icons/right_hover.tga differ diff --git a/graphics/Threshold/icons/search.tga b/graphics/Threshold/icons/search.tga new file mode 100644 index 0000000..db358ee Binary files /dev/null and b/graphics/Threshold/icons/search.tga differ diff --git a/graphics/Threshold/icons/search_hover.tga b/graphics/Threshold/icons/search_hover.tga new file mode 100644 index 0000000..a3e7662 Binary files /dev/null and b/graphics/Threshold/icons/search_hover.tga differ diff --git a/graphics/Threshold/icons/tiny_x.tga b/graphics/Threshold/icons/tiny_x.tga new file mode 100644 index 0000000..de6a8a3 Binary files /dev/null and b/graphics/Threshold/icons/tiny_x.tga differ diff --git a/graphics/Threshold/icons/tiny_x_hover.tga b/graphics/Threshold/icons/tiny_x_hover.tga new file mode 100644 index 0000000..5ee5285 Binary files /dev/null and b/graphics/Threshold/icons/tiny_x_hover.tga differ diff --git a/graphics/Threshold/icons/up.tga b/graphics/Threshold/icons/up.tga new file mode 100644 index 0000000..a542421 Binary files /dev/null and b/graphics/Threshold/icons/up.tga differ diff --git a/graphics/Threshold/icons/vr.tga b/graphics/Threshold/icons/vr.tga new file mode 100644 index 0000000..03547bb Binary files /dev/null and b/graphics/Threshold/icons/vr.tga differ diff --git a/graphics/Threshold/icons/workshop.tga b/graphics/Threshold/icons/workshop.tga new file mode 100644 index 0000000..d685c2b Binary files /dev/null and b/graphics/Threshold/icons/workshop.tga differ diff --git a/graphics/Threshold/library.tga b/graphics/Threshold/library.tga new file mode 100644 index 0000000..989d516 Binary files /dev/null and b/graphics/Threshold/library.tga differ diff --git a/graphics/Threshold/list.tga b/graphics/Threshold/list.tga new file mode 100644 index 0000000..f07f6c8 Binary files /dev/null and b/graphics/Threshold/list.tga differ diff --git a/graphics/Threshold/list_hover.tga b/graphics/Threshold/list_hover.tga new file mode 100644 index 0000000..b1b3a1d Binary files /dev/null and b/graphics/Threshold/list_hover.tga differ diff --git a/graphics/Threshold/list_scale.tga b/graphics/Threshold/list_scale.tga new file mode 100644 index 0000000..66a145b Binary files /dev/null and b/graphics/Threshold/list_scale.tga differ diff --git a/graphics/Threshold/list_scale_hover.tga b/graphics/Threshold/list_scale_hover.tga new file mode 100644 index 0000000..ae0c6b9 Binary files /dev/null and b/graphics/Threshold/list_scale_hover.tga differ diff --git a/graphics/Threshold/mail.tga b/graphics/Threshold/mail.tga new file mode 100644 index 0000000..4fab330 Binary files /dev/null and b/graphics/Threshold/mail.tga differ diff --git a/graphics/Threshold/mail_dis.tga b/graphics/Threshold/mail_dis.tga new file mode 100644 index 0000000..4328ccd Binary files /dev/null and b/graphics/Threshold/mail_dis.tga differ diff --git a/graphics/Threshold/me.tga b/graphics/Threshold/me.tga new file mode 100644 index 0000000..8b99465 Binary files /dev/null and b/graphics/Threshold/me.tga differ diff --git a/graphics/Threshold/menu.tga b/graphics/Threshold/menu.tga new file mode 100644 index 0000000..567be70 Binary files /dev/null and b/graphics/Threshold/menu.tga differ diff --git a/graphics/Threshold/menu_focus.tga b/graphics/Threshold/menu_focus.tga new file mode 100644 index 0000000..79ad6ee Binary files /dev/null and b/graphics/Threshold/menu_focus.tga differ diff --git a/graphics/Threshold/music/browse.tga b/graphics/Threshold/music/browse.tga new file mode 100644 index 0000000..d07c4e2 Binary files /dev/null and b/graphics/Threshold/music/browse.tga differ diff --git a/graphics/Threshold/music/browse_hover.tga b/graphics/Threshold/music/browse_hover.tga new file mode 100644 index 0000000..46469c4 Binary files /dev/null and b/graphics/Threshold/music/browse_hover.tga differ diff --git a/graphics/Threshold/music/mute.tga b/graphics/Threshold/music/mute.tga new file mode 100644 index 0000000..ad68c29 Binary files /dev/null and b/graphics/Threshold/music/mute.tga differ diff --git a/graphics/Threshold/music/mute_hover.tga b/graphics/Threshold/music/mute_hover.tga new file mode 100644 index 0000000..470ea74 Binary files /dev/null and b/graphics/Threshold/music/mute_hover.tga differ diff --git a/graphics/Threshold/music/next.tga b/graphics/Threshold/music/next.tga new file mode 100644 index 0000000..f108c9e Binary files /dev/null and b/graphics/Threshold/music/next.tga differ diff --git a/graphics/Threshold/music/next_hover.tga b/graphics/Threshold/music/next_hover.tga new file mode 100644 index 0000000..dd8f3fd Binary files /dev/null and b/graphics/Threshold/music/next_hover.tga differ diff --git a/graphics/Threshold/music/pause.tga b/graphics/Threshold/music/pause.tga new file mode 100644 index 0000000..cd2f1d1 Binary files /dev/null and b/graphics/Threshold/music/pause.tga differ diff --git a/graphics/Threshold/music/pause_hover.tga b/graphics/Threshold/music/pause_hover.tga new file mode 100644 index 0000000..247ad30 Binary files /dev/null and b/graphics/Threshold/music/pause_hover.tga differ diff --git a/graphics/Threshold/music/play.tga b/graphics/Threshold/music/play.tga new file mode 100644 index 0000000..0b1d62f Binary files /dev/null and b/graphics/Threshold/music/play.tga differ diff --git a/graphics/Threshold/music/play_hover.tga b/graphics/Threshold/music/play_hover.tga new file mode 100644 index 0000000..399f832 Binary files /dev/null and b/graphics/Threshold/music/play_hover.tga differ diff --git a/graphics/Threshold/music/prev.tga b/graphics/Threshold/music/prev.tga new file mode 100644 index 0000000..75c4abd Binary files /dev/null and b/graphics/Threshold/music/prev.tga differ diff --git a/graphics/Threshold/music/prev_hover.tga b/graphics/Threshold/music/prev_hover.tga new file mode 100644 index 0000000..2080bb2 Binary files /dev/null and b/graphics/Threshold/music/prev_hover.tga differ diff --git a/graphics/Threshold/music/rep.tga b/graphics/Threshold/music/rep.tga new file mode 100644 index 0000000..8a20d7e Binary files /dev/null and b/graphics/Threshold/music/rep.tga differ diff --git a/graphics/Threshold/music/rep_hover.tga b/graphics/Threshold/music/rep_hover.tga new file mode 100644 index 0000000..89842e6 Binary files /dev/null and b/graphics/Threshold/music/rep_hover.tga differ diff --git a/graphics/Threshold/music/rep_once.tga b/graphics/Threshold/music/rep_once.tga new file mode 100644 index 0000000..bcbbb92 Binary files /dev/null and b/graphics/Threshold/music/rep_once.tga differ diff --git a/graphics/Threshold/music/rep_once_hover.tga b/graphics/Threshold/music/rep_once_hover.tga new file mode 100644 index 0000000..bac8409 Binary files /dev/null and b/graphics/Threshold/music/rep_once_hover.tga differ diff --git a/graphics/Threshold/music/rep_once_sel.tga b/graphics/Threshold/music/rep_once_sel.tga new file mode 100644 index 0000000..5ec9466 Binary files /dev/null and b/graphics/Threshold/music/rep_once_sel.tga differ diff --git a/graphics/Threshold/music/rep_once_sel_hover.tga b/graphics/Threshold/music/rep_once_sel_hover.tga new file mode 100644 index 0000000..293df81 Binary files /dev/null and b/graphics/Threshold/music/rep_once_sel_hover.tga differ diff --git a/graphics/Threshold/music/rep_sel.tga b/graphics/Threshold/music/rep_sel.tga new file mode 100644 index 0000000..a3e033f Binary files /dev/null and b/graphics/Threshold/music/rep_sel.tga differ diff --git a/graphics/Threshold/music/rep_sel_hover.tga b/graphics/Threshold/music/rep_sel_hover.tga new file mode 100644 index 0000000..cf04143 Binary files /dev/null and b/graphics/Threshold/music/rep_sel_hover.tga differ diff --git a/graphics/Threshold/music/selected.tga b/graphics/Threshold/music/selected.tga new file mode 100644 index 0000000..a53c449 Binary files /dev/null and b/graphics/Threshold/music/selected.tga differ diff --git a/graphics/Threshold/music/shuf.tga b/graphics/Threshold/music/shuf.tga new file mode 100644 index 0000000..b20e9b0 Binary files /dev/null and b/graphics/Threshold/music/shuf.tga differ diff --git a/graphics/Threshold/music/shuf_hover.tga b/graphics/Threshold/music/shuf_hover.tga new file mode 100644 index 0000000..3672a71 Binary files /dev/null and b/graphics/Threshold/music/shuf_hover.tga differ diff --git a/graphics/Threshold/music/shuf_sel.tga b/graphics/Threshold/music/shuf_sel.tga new file mode 100644 index 0000000..6d9fa00 Binary files /dev/null and b/graphics/Threshold/music/shuf_sel.tga differ diff --git a/graphics/Threshold/music/shuf_sel_hover.tga b/graphics/Threshold/music/shuf_sel_hover.tga new file mode 100644 index 0000000..abd832c Binary files /dev/null and b/graphics/Threshold/music/shuf_sel_hover.tga differ diff --git a/graphics/Threshold/music/vol.tga b/graphics/Threshold/music/vol.tga new file mode 100644 index 0000000..98e345b Binary files /dev/null and b/graphics/Threshold/music/vol.tga differ diff --git a/graphics/Threshold/music/vol_hover.tga b/graphics/Threshold/music/vol_hover.tga new file mode 100644 index 0000000..c985b9d Binary files /dev/null and b/graphics/Threshold/music/vol_hover.tga differ diff --git a/graphics/Threshold/notfamilyview.tga b/graphics/Threshold/notfamilyview.tga new file mode 100644 index 0000000..16ada21 Binary files /dev/null and b/graphics/Threshold/notfamilyview.tga differ diff --git a/graphics/Threshold/overlay/fullscreen.tga b/graphics/Threshold/overlay/fullscreen.tga new file mode 100644 index 0000000..a1dba80 Binary files /dev/null and b/graphics/Threshold/overlay/fullscreen.tga differ diff --git a/graphics/Threshold/overlay/music.tga b/graphics/Threshold/overlay/music.tga new file mode 100644 index 0000000..dc04c1d Binary files /dev/null and b/graphics/Threshold/overlay/music.tga differ diff --git a/graphics/Threshold/overlay/settings.tga b/graphics/Threshold/overlay/settings.tga new file mode 100644 index 0000000..c72ef38 Binary files /dev/null and b/graphics/Threshold/overlay/settings.tga differ diff --git a/graphics/Threshold/overlay/web.tga b/graphics/Threshold/overlay/web.tga new file mode 100644 index 0000000..47344b9 Binary files /dev/null and b/graphics/Threshold/overlay/web.tga differ diff --git a/graphics/Threshold/reload.tga b/graphics/Threshold/reload.tga new file mode 100644 index 0000000..6ea3d1c Binary files /dev/null and b/graphics/Threshold/reload.tga differ diff --git a/graphics/Threshold/scroll/down.tga b/graphics/Threshold/scroll/down.tga new file mode 100644 index 0000000..9262d89 Binary files /dev/null and b/graphics/Threshold/scroll/down.tga differ diff --git a/graphics/Threshold/scroll/left.tga b/graphics/Threshold/scroll/left.tga new file mode 100644 index 0000000..5292ce6 Binary files /dev/null and b/graphics/Threshold/scroll/left.tga differ diff --git a/graphics/Threshold/scroll/right.tga b/graphics/Threshold/scroll/right.tga new file mode 100644 index 0000000..d09fbaf Binary files /dev/null and b/graphics/Threshold/scroll/right.tga differ diff --git a/graphics/Threshold/scroll/up.tga b/graphics/Threshold/scroll/up.tga new file mode 100644 index 0000000..0606277 Binary files /dev/null and b/graphics/Threshold/scroll/up.tga differ diff --git a/graphics/Threshold/send.tga b/graphics/Threshold/send.tga new file mode 100644 index 0000000..9936d29 Binary files /dev/null and b/graphics/Threshold/send.tga differ diff --git a/graphics/Threshold/send_dis.tga b/graphics/Threshold/send_dis.tga new file mode 100644 index 0000000..7077047 Binary files /dev/null and b/graphics/Threshold/send_dis.tga differ diff --git a/graphics/Threshold/stop.tga b/graphics/Threshold/stop.tga new file mode 100644 index 0000000..9d068c0 Binary files /dev/null and b/graphics/Threshold/stop.tga differ diff --git a/graphics/Threshold/store.tga b/graphics/Threshold/store.tga new file mode 100644 index 0000000..634e69a Binary files /dev/null and b/graphics/Threshold/store.tga differ diff --git a/graphics/Threshold/title.tga b/graphics/Threshold/title.tga new file mode 100644 index 0000000..a1790fe Binary files /dev/null and b/graphics/Threshold/title.tga differ diff --git a/graphics/Threshold/titlefocus.tga b/graphics/Threshold/titlefocus.tga new file mode 100644 index 0000000..d30351b Binary files /dev/null and b/graphics/Threshold/titlefocus.tga differ diff --git a/graphics/Threshold/vr.tga b/graphics/Threshold/vr.tga new file mode 100644 index 0000000..1fccf13 Binary files /dev/null and b/graphics/Threshold/vr.tga differ diff --git a/graphics/Threshold/window_controls/close.tga b/graphics/Threshold/window_controls/close.tga new file mode 100644 index 0000000..94e514a Binary files /dev/null and b/graphics/Threshold/window_controls/close.tga differ diff --git a/graphics/Threshold/window_controls/close_active.tga b/graphics/Threshold/window_controls/close_active.tga new file mode 100644 index 0000000..73c0df4 Binary files /dev/null and b/graphics/Threshold/window_controls/close_active.tga differ diff --git a/graphics/Threshold/window_controls/close_dis_sm.tga b/graphics/Threshold/window_controls/close_dis_sm.tga new file mode 100644 index 0000000..084dbc6 Binary files /dev/null and b/graphics/Threshold/window_controls/close_dis_sm.tga differ diff --git a/graphics/Threshold/window_controls/close_focus.tga b/graphics/Threshold/window_controls/close_focus.tga new file mode 100644 index 0000000..9ef4f8b Binary files /dev/null and b/graphics/Threshold/window_controls/close_focus.tga differ diff --git a/graphics/Threshold/window_controls/close_hover_sm.tga b/graphics/Threshold/window_controls/close_hover_sm.tga new file mode 100644 index 0000000..df363f3 Binary files /dev/null and b/graphics/Threshold/window_controls/close_hover_sm.tga differ diff --git a/graphics/Threshold/window_controls/close_sm.tga b/graphics/Threshold/window_controls/close_sm.tga new file mode 100644 index 0000000..644eae6 Binary files /dev/null and b/graphics/Threshold/window_controls/close_sm.tga differ diff --git a/graphics/Threshold/window_controls/fullscreen.tga b/graphics/Threshold/window_controls/fullscreen.tga new file mode 100644 index 0000000..338876b Binary files /dev/null and b/graphics/Threshold/window_controls/fullscreen.tga differ diff --git a/graphics/Threshold/window_controls/fullscreen_focus.tga b/graphics/Threshold/window_controls/fullscreen_focus.tga new file mode 100644 index 0000000..03b259d Binary files /dev/null and b/graphics/Threshold/window_controls/fullscreen_focus.tga differ diff --git a/graphics/Threshold/window_controls/max.tga b/graphics/Threshold/window_controls/max.tga new file mode 100644 index 0000000..e0fbc6b Binary files /dev/null and b/graphics/Threshold/window_controls/max.tga differ diff --git a/graphics/Threshold/window_controls/max_focus.tga b/graphics/Threshold/window_controls/max_focus.tga new file mode 100644 index 0000000..6049087 Binary files /dev/null and b/graphics/Threshold/window_controls/max_focus.tga differ diff --git a/graphics/Threshold/window_controls/max_hover_sm.tga b/graphics/Threshold/window_controls/max_hover_sm.tga new file mode 100644 index 0000000..62a8bf2 Binary files /dev/null and b/graphics/Threshold/window_controls/max_hover_sm.tga differ diff --git a/graphics/Threshold/window_controls/max_sm.tga b/graphics/Threshold/window_controls/max_sm.tga new file mode 100644 index 0000000..837bff8 Binary files /dev/null and b/graphics/Threshold/window_controls/max_sm.tga differ diff --git a/graphics/Threshold/window_controls/min.tga b/graphics/Threshold/window_controls/min.tga new file mode 100644 index 0000000..922b30b Binary files /dev/null and b/graphics/Threshold/window_controls/min.tga differ diff --git a/graphics/Threshold/window_controls/min_focus.tga b/graphics/Threshold/window_controls/min_focus.tga new file mode 100644 index 0000000..41c6d02 Binary files /dev/null and b/graphics/Threshold/window_controls/min_focus.tga differ diff --git a/graphics/Threshold/window_controls/min_hover_sm.tga b/graphics/Threshold/window_controls/min_hover_sm.tga new file mode 100644 index 0000000..967f1ae Binary files /dev/null and b/graphics/Threshold/window_controls/min_hover_sm.tga differ diff --git a/graphics/Threshold/window_controls/min_sm.tga b/graphics/Threshold/window_controls/min_sm.tga new file mode 100644 index 0000000..5fd529b Binary files /dev/null and b/graphics/Threshold/window_controls/min_sm.tga differ diff --git a/graphics/Threshold/window_controls/restore.tga b/graphics/Threshold/window_controls/restore.tga new file mode 100644 index 0000000..f31a28f Binary files /dev/null and b/graphics/Threshold/window_controls/restore.tga differ diff --git a/graphics/Threshold/window_controls/restore_focus.tga b/graphics/Threshold/window_controls/restore_focus.tga new file mode 100644 index 0000000..7ac2174 Binary files /dev/null and b/graphics/Threshold/window_controls/restore_focus.tga differ diff --git a/graphics/Threshold/window_controls/restore_hover_sm.tga b/graphics/Threshold/window_controls/restore_hover_sm.tga new file mode 100644 index 0000000..9912840 Binary files /dev/null and b/graphics/Threshold/window_controls/restore_hover_sm.tga differ diff --git a/graphics/Threshold/window_controls/restore_sm.tga b/graphics/Threshold/window_controls/restore_sm.tga new file mode 100644 index 0000000..5716bf2 Binary files /dev/null and b/graphics/Threshold/window_controls/restore_sm.tga differ diff --git a/graphics/achievementbg.tga b/graphics/achievementbg.tga new file mode 100644 index 0000000..885bbfe Binary files /dev/null and b/graphics/achievementbg.tga differ diff --git a/graphics/achievementbg_recent.tga b/graphics/achievementbg_recent.tga new file mode 100644 index 0000000..7eb7855 Binary files /dev/null and b/graphics/achievementbg_recent.tga differ diff --git a/graphics/avatarBorderGolden.tga b/graphics/avatarBorderGolden.tga new file mode 100644 index 0000000..3cc05ce Binary files /dev/null and b/graphics/avatarBorderGolden.tga differ diff --git a/graphics/avatarBorderInGame.tga b/graphics/avatarBorderInGame.tga new file mode 100644 index 0000000..10330ef Binary files /dev/null and b/graphics/avatarBorderInGame.tga differ diff --git a/graphics/avatarBorderOffline.tga b/graphics/avatarBorderOffline.tga new file mode 100644 index 0000000..63f2309 Binary files /dev/null and b/graphics/avatarBorderOffline.tga differ diff --git a/graphics/avatarBorderOnline.tga b/graphics/avatarBorderOnline.tga new file mode 100644 index 0000000..3c0c221 Binary files /dev/null and b/graphics/avatarBorderOnline.tga differ diff --git a/graphics/avatar_184blank.tga b/graphics/avatar_184blank.tga new file mode 100644 index 0000000..2485a4f Binary files /dev/null and b/graphics/avatar_184blank.tga differ diff --git a/graphics/avatar_32blank.tga b/graphics/avatar_32blank.tga new file mode 100644 index 0000000..d6aa7cb Binary files /dev/null and b/graphics/avatar_32blank.tga differ diff --git a/graphics/avatar_64blank.tga b/graphics/avatar_64blank.tga new file mode 100644 index 0000000..0923b8f Binary files /dev/null and b/graphics/avatar_64blank.tga differ diff --git a/graphics/broadcast/broadcast_live_grey.png b/graphics/broadcast/broadcast_live_grey.png new file mode 100644 index 0000000..8ce8071 Binary files /dev/null and b/graphics/broadcast/broadcast_live_grey.png differ diff --git a/graphics/broadcast/broadcast_live_red.png b/graphics/broadcast/broadcast_live_red.png new file mode 100644 index 0000000..e248c73 Binary files /dev/null and b/graphics/broadcast/broadcast_live_red.png differ diff --git a/graphics/broadcast/desktop_placeholder.jpg b/graphics/broadcast/desktop_placeholder.jpg new file mode 100644 index 0000000..39b96fd Binary files /dev/null and b/graphics/broadcast/desktop_placeholder.jpg differ diff --git a/graphics/broadcast/icon_close_default.tga b/graphics/broadcast/icon_close_default.tga new file mode 100644 index 0000000..83a50f6 Binary files /dev/null and b/graphics/broadcast/icon_close_default.tga differ diff --git a/graphics/broadcast/icon_close_hover.tga b/graphics/broadcast/icon_close_hover.tga new file mode 100644 index 0000000..dab0bd0 Binary files /dev/null and b/graphics/broadcast/icon_close_hover.tga differ diff --git a/graphics/broadcast/icon_mic_disabled.png b/graphics/broadcast/icon_mic_disabled.png new file mode 100644 index 0000000..b0ab7c3 Binary files /dev/null and b/graphics/broadcast/icon_mic_disabled.png differ diff --git a/graphics/broadcast/icon_mic_off.png b/graphics/broadcast/icon_mic_off.png new file mode 100644 index 0000000..932af20 Binary files /dev/null and b/graphics/broadcast/icon_mic_off.png differ diff --git a/graphics/broadcast/icon_mic_on.png b/graphics/broadcast/icon_mic_on.png new file mode 100644 index 0000000..f9e06a8 Binary files /dev/null and b/graphics/broadcast/icon_mic_on.png differ diff --git a/graphics/broadcast/icon_requests.png b/graphics/broadcast/icon_requests.png new file mode 100644 index 0000000..7d27034 Binary files /dev/null and b/graphics/broadcast/icon_requests.png differ diff --git a/graphics/broadcast/icon_viewers.png b/graphics/broadcast/icon_viewers.png new file mode 100644 index 0000000..58b69d6 Binary files /dev/null and b/graphics/broadcast/icon_viewers.png differ diff --git a/graphics/chk_menu_item.tga b/graphics/chk_menu_item.tga new file mode 100644 index 0000000..6a51070 Binary files /dev/null and b/graphics/chk_menu_item.tga differ diff --git a/graphics/cloud_cloudfiles.tga b/graphics/cloud_cloudfiles.tga new file mode 100644 index 0000000..f2e59fe Binary files /dev/null and b/graphics/cloud_cloudfiles.tga differ diff --git a/graphics/cloud_icon_down.tga b/graphics/cloud_icon_down.tga new file mode 100644 index 0000000..34f9aba Binary files /dev/null and b/graphics/cloud_icon_down.tga differ diff --git a/graphics/cloud_icon_up.tga b/graphics/cloud_icon_up.tga new file mode 100644 index 0000000..b6f662b Binary files /dev/null and b/graphics/cloud_icon_up.tga differ diff --git a/graphics/cloud_localfiles.tga b/graphics/cloud_localfiles.tga new file mode 100644 index 0000000..b95a157 Binary files /dev/null and b/graphics/cloud_localfiles.tga differ diff --git a/graphics/cloud_uhoh.tga b/graphics/cloud_uhoh.tga new file mode 100644 index 0000000..24dbeb2 Binary files /dev/null and b/graphics/cloud_uhoh.tga differ diff --git a/graphics/friends_icon.tga b/graphics/friends_icon.tga new file mode 100644 index 0000000..8eb81bb Binary files /dev/null and b/graphics/friends_icon.tga differ diff --git a/graphics/gift_wizard_friends.tga b/graphics/gift_wizard_friends.tga new file mode 100644 index 0000000..b79e1b6 Binary files /dev/null and b/graphics/gift_wizard_friends.tga differ diff --git a/graphics/gift_wizard_heart.tga b/graphics/gift_wizard_heart.tga new file mode 100644 index 0000000..d708097 Binary files /dev/null and b/graphics/gift_wizard_heart.tga differ diff --git a/graphics/gridview_mask.tga b/graphics/gridview_mask.tga new file mode 100644 index 0000000..6769a22 Binary files /dev/null and b/graphics/gridview_mask.tga differ diff --git a/graphics/html_lock.tga b/graphics/html_lock.tga new file mode 100644 index 0000000..9da5b93 Binary files /dev/null and b/graphics/html_lock.tga differ diff --git a/graphics/html_lock_broken.tga b/graphics/html_lock_broken.tga new file mode 100644 index 0000000..9211c3e Binary files /dev/null and b/graphics/html_lock_broken.tga differ diff --git a/graphics/icon_click_for_details.tga b/graphics/icon_click_for_details.tga new file mode 100644 index 0000000..9b2da62 Binary files /dev/null and b/graphics/icon_click_for_details.tga differ diff --git a/graphics/icon_friends.tga b/graphics/icon_friends.tga new file mode 100644 index 0000000..8eb81bb Binary files /dev/null and b/graphics/icon_friends.tga differ diff --git a/graphics/icon_info_sm.tga b/graphics/icon_info_sm.tga new file mode 100644 index 0000000..fc1e232 Binary files /dev/null and b/graphics/icon_info_sm.tga differ diff --git a/graphics/icon_meterOff.tga b/graphics/icon_meterOff.tga new file mode 100644 index 0000000..42a7540 Binary files /dev/null and b/graphics/icon_meterOff.tga differ diff --git a/graphics/icon_meterOn.tga b/graphics/icon_meterOn.tga new file mode 100644 index 0000000..dd232ae Binary files /dev/null and b/graphics/icon_meterOn.tga differ diff --git a/graphics/icon_moderatorstar.tga b/graphics/icon_moderatorstar.tga new file mode 100644 index 0000000..f55c90c Binary files /dev/null and b/graphics/icon_moderatorstar.tga differ diff --git a/graphics/icon_officerStar.tga b/graphics/icon_officerStar.tga new file mode 100644 index 0000000..2eb68f8 Binary files /dev/null and b/graphics/icon_officerStar.tga differ diff --git a/graphics/icon_security_fair.tga b/graphics/icon_security_fair.tga new file mode 100644 index 0000000..bf81589 Binary files /dev/null and b/graphics/icon_security_fair.tga differ diff --git a/graphics/icon_security_good.tga b/graphics/icon_security_good.tga new file mode 100644 index 0000000..70e0263 Binary files /dev/null and b/graphics/icon_security_good.tga differ diff --git a/graphics/icon_security_junk.tga b/graphics/icon_security_junk.tga new file mode 100644 index 0000000..6139cfc Binary files /dev/null and b/graphics/icon_security_junk.tga differ diff --git a/graphics/icon_security_key.tga b/graphics/icon_security_key.tga new file mode 100644 index 0000000..7cf2f3f Binary files /dev/null and b/graphics/icon_security_key.tga differ diff --git a/graphics/icon_security_locked.tga b/graphics/icon_security_locked.tga new file mode 100644 index 0000000..9950c03 Binary files /dev/null and b/graphics/icon_security_locked.tga differ diff --git a/graphics/icon_security_poor.tga b/graphics/icon_security_poor.tga new file mode 100644 index 0000000..9665b9e Binary files /dev/null and b/graphics/icon_security_poor.tga differ diff --git a/graphics/icon_security_steam.tga b/graphics/icon_security_steam.tga new file mode 100644 index 0000000..ab72edf Binary files /dev/null and b/graphics/icon_security_steam.tga differ diff --git a/graphics/icon_security_twofactor.tga b/graphics/icon_security_twofactor.tga new file mode 100644 index 0000000..70e0263 Binary files /dev/null and b/graphics/icon_security_twofactor.tga differ diff --git a/graphics/icon_security_unknown.tga b/graphics/icon_security_unknown.tga new file mode 100644 index 0000000..b09d712 Binary files /dev/null and b/graphics/icon_security_unknown.tga differ diff --git a/graphics/icon_security_unlocked.tga b/graphics/icon_security_unlocked.tga new file mode 100644 index 0000000..ce2457d Binary files /dev/null and b/graphics/icon_security_unlocked.tga differ diff --git a/graphics/icon_status_bigpic.png b/graphics/icon_status_bigpic.png new file mode 100644 index 0000000..2fdce37 Binary files /dev/null and b/graphics/icon_status_bigpic.png differ diff --git a/graphics/icon_status_bigpic_ingame.png b/graphics/icon_status_bigpic_ingame.png new file mode 100644 index 0000000..a958cf1 Binary files /dev/null and b/graphics/icon_status_bigpic_ingame.png differ diff --git a/graphics/icon_status_mobile.png b/graphics/icon_status_mobile.png new file mode 100644 index 0000000..e87359d Binary files /dev/null and b/graphics/icon_status_mobile.png differ diff --git a/graphics/icon_status_mobile_ingame.png b/graphics/icon_status_mobile_ingame.png new file mode 100644 index 0000000..6b040d4 Binary files /dev/null and b/graphics/icon_status_mobile_ingame.png differ diff --git a/graphics/icon_status_web.png b/graphics/icon_status_web.png new file mode 100644 index 0000000..e1373c1 Binary files /dev/null and b/graphics/icon_status_web.png differ diff --git a/graphics/icon_status_web_ingame.png b/graphics/icon_status_web_ingame.png new file mode 100644 index 0000000..4c30af5 Binary files /dev/null and b/graphics/icon_status_web_ingame.png differ diff --git a/graphics/icon_toast_gift.tga b/graphics/icon_toast_gift.tga new file mode 100644 index 0000000..277aaa3 Binary files /dev/null and b/graphics/icon_toast_gift.tga differ diff --git a/graphics/icon_toast_item.tga b/graphics/icon_toast_item.tga new file mode 100644 index 0000000..213917e Binary files /dev/null and b/graphics/icon_toast_item.tga differ diff --git a/graphics/icon_toast_newturns.tga b/graphics/icon_toast_newturns.tga new file mode 100644 index 0000000..a043f89 Binary files /dev/null and b/graphics/icon_toast_newturns.tga differ diff --git a/graphics/icon_workshop.tga b/graphics/icon_workshop.tga new file mode 100644 index 0000000..16baf2e Binary files /dev/null and b/graphics/icon_workshop.tga differ diff --git a/graphics/icon_workshop_hover.tga b/graphics/icon_workshop_hover.tga new file mode 100644 index 0000000..16baf2e Binary files /dev/null and b/graphics/icon_workshop_hover.tga differ diff --git a/graphics/inbox_async_game.tga b/graphics/inbox_async_game.tga new file mode 100644 index 0000000..a6da172 Binary files /dev/null and b/graphics/inbox_async_game.tga differ diff --git a/graphics/inbox_async_game_invite.tga b/graphics/inbox_async_game_invite.tga new file mode 100644 index 0000000..a6da172 Binary files /dev/null and b/graphics/inbox_async_game_invite.tga differ diff --git a/graphics/inbox_comment.tga b/graphics/inbox_comment.tga new file mode 100644 index 0000000..98c9295 Binary files /dev/null and b/graphics/inbox_comment.tga differ diff --git a/graphics/inbox_gift.tga b/graphics/inbox_gift.tga new file mode 100644 index 0000000..536d454 Binary files /dev/null and b/graphics/inbox_gift.tga differ diff --git a/graphics/inbox_invite.tga b/graphics/inbox_invite.tga new file mode 100644 index 0000000..a6da172 Binary files /dev/null and b/graphics/inbox_invite.tga differ diff --git a/graphics/inbox_item.tga b/graphics/inbox_item.tga new file mode 100644 index 0000000..f402f0e Binary files /dev/null and b/graphics/inbox_item.tga differ diff --git a/graphics/inbox_moderatormessage.tga b/graphics/inbox_moderatormessage.tga new file mode 100644 index 0000000..1b3ba47 Binary files /dev/null and b/graphics/inbox_moderatormessage.tga differ diff --git a/graphics/inbox_offlinemessage.tga b/graphics/inbox_offlinemessage.tga new file mode 100644 index 0000000..98c9295 Binary files /dev/null and b/graphics/inbox_offlinemessage.tga differ diff --git a/graphics/inbox_trade.tga b/graphics/inbox_trade.tga new file mode 100644 index 0000000..252127d Binary files /dev/null and b/graphics/inbox_trade.tga differ diff --git a/graphics/keybg.tga b/graphics/keybg.tga new file mode 100644 index 0000000..a4b47b6 Binary files /dev/null and b/graphics/keybg.tga differ diff --git a/graphics/logo4.tga b/graphics/logo4.tga new file mode 100644 index 0000000..b3a0635 Binary files /dev/null and b/graphics/logo4.tga differ diff --git a/graphics/logo6.tga b/graphics/logo6.tga new file mode 100644 index 0000000..a76dfac Binary files /dev/null and b/graphics/logo6.tga differ diff --git a/graphics/logo7.tga b/graphics/logo7.tga new file mode 100644 index 0000000..8c85c70 Binary files /dev/null and b/graphics/logo7.tga differ diff --git a/graphics/loop_1.tga b/graphics/loop_1.tga new file mode 100644 index 0000000..c544577 Binary files /dev/null and b/graphics/loop_1.tga differ diff --git a/graphics/loop_2.tga b/graphics/loop_2.tga new file mode 100644 index 0000000..c55c251 Binary files /dev/null and b/graphics/loop_2.tga differ diff --git a/graphics/loop_3.tga b/graphics/loop_3.tga new file mode 100644 index 0000000..8fdd098 Binary files /dev/null and b/graphics/loop_3.tga differ diff --git a/graphics/loop_4.tga b/graphics/loop_4.tga new file mode 100644 index 0000000..f5fdf83 Binary files /dev/null and b/graphics/loop_4.tga differ diff --git a/graphics/loop_5.tga b/graphics/loop_5.tga new file mode 100644 index 0000000..e1057dd Binary files /dev/null and b/graphics/loop_5.tga differ diff --git a/graphics/loop_6.tga b/graphics/loop_6.tga new file mode 100644 index 0000000..9e7adf2 Binary files /dev/null and b/graphics/loop_6.tga differ diff --git a/graphics/loop_7.tga b/graphics/loop_7.tga new file mode 100644 index 0000000..502cae7 Binary files /dev/null and b/graphics/loop_7.tga differ diff --git a/graphics/loop_8.tga b/graphics/loop_8.tga new file mode 100644 index 0000000..be1a45f Binary files /dev/null and b/graphics/loop_8.tga differ diff --git a/graphics/minithrobber01.tga b/graphics/minithrobber01.tga new file mode 100644 index 0000000..4302dda Binary files /dev/null and b/graphics/minithrobber01.tga differ diff --git a/graphics/minithrobber02.tga b/graphics/minithrobber02.tga new file mode 100644 index 0000000..866cc75 Binary files /dev/null and b/graphics/minithrobber02.tga differ diff --git a/graphics/minithrobber03.tga b/graphics/minithrobber03.tga new file mode 100644 index 0000000..4cb4ae5 Binary files /dev/null and b/graphics/minithrobber03.tga differ diff --git a/graphics/minithrobber04.tga b/graphics/minithrobber04.tga new file mode 100644 index 0000000..71f98ce Binary files /dev/null and b/graphics/minithrobber04.tga differ diff --git a/graphics/minithrobber05.tga b/graphics/minithrobber05.tga new file mode 100644 index 0000000..11895cd Binary files /dev/null and b/graphics/minithrobber05.tga differ diff --git a/graphics/minithrobber06.tga b/graphics/minithrobber06.tga new file mode 100644 index 0000000..bd427b7 Binary files /dev/null and b/graphics/minithrobber06.tga differ diff --git a/graphics/minithrobber07.tga b/graphics/minithrobber07.tga new file mode 100644 index 0000000..d98d1be Binary files /dev/null and b/graphics/minithrobber07.tga differ diff --git a/graphics/minithrobber08.tga b/graphics/minithrobber08.tga new file mode 100644 index 0000000..f7a1870 Binary files /dev/null and b/graphics/minithrobber08.tga differ diff --git a/graphics/minithrobber09.tga b/graphics/minithrobber09.tga new file mode 100644 index 0000000..a422c22 Binary files /dev/null and b/graphics/minithrobber09.tga differ diff --git a/graphics/minithrobber10.tga b/graphics/minithrobber10.tga new file mode 100644 index 0000000..c9cb1eb Binary files /dev/null and b/graphics/minithrobber10.tga differ diff --git a/graphics/minithrobber11.tga b/graphics/minithrobber11.tga new file mode 100644 index 0000000..2a3bf2a Binary files /dev/null and b/graphics/minithrobber11.tga differ diff --git a/graphics/minithrobber12.tga b/graphics/minithrobber12.tga new file mode 100644 index 0000000..5dbaf7d Binary files /dev/null and b/graphics/minithrobber12.tga differ diff --git a/graphics/minithrobberinactive.tga b/graphics/minithrobberinactive.tga new file mode 100644 index 0000000..320005d Binary files /dev/null and b/graphics/minithrobberinactive.tga differ diff --git a/graphics/rampDown_1.tga b/graphics/rampDown_1.tga new file mode 100644 index 0000000..c544577 Binary files /dev/null and b/graphics/rampDown_1.tga differ diff --git a/graphics/rampDown_2.tga b/graphics/rampDown_2.tga new file mode 100644 index 0000000..6c1c425 Binary files /dev/null and b/graphics/rampDown_2.tga differ diff --git a/graphics/rampDown_3.tga b/graphics/rampDown_3.tga new file mode 100644 index 0000000..a421508 Binary files /dev/null and b/graphics/rampDown_3.tga differ diff --git a/graphics/rampDown_4.tga b/graphics/rampDown_4.tga new file mode 100644 index 0000000..f75e85c Binary files /dev/null and b/graphics/rampDown_4.tga differ diff --git a/graphics/rampUp_1.tga b/graphics/rampUp_1.tga new file mode 100644 index 0000000..27dfc6f Binary files /dev/null and b/graphics/rampUp_1.tga differ diff --git a/graphics/rampUp_2.tga b/graphics/rampUp_2.tga new file mode 100644 index 0000000..61d0a4d Binary files /dev/null and b/graphics/rampUp_2.tga differ diff --git a/graphics/rampUp_3.tga b/graphics/rampUp_3.tga new file mode 100644 index 0000000..f75e85c Binary files /dev/null and b/graphics/rampUp_3.tga differ diff --git a/graphics/rampUp_4.tga b/graphics/rampUp_4.tga new file mode 100644 index 0000000..f75e85c Binary files /dev/null and b/graphics/rampUp_4.tga differ diff --git a/graphics/stream_disconnect_notification.tga b/graphics/stream_disconnect_notification.tga new file mode 100644 index 0000000..dad88a3 Binary files /dev/null and b/graphics/stream_disconnect_notification.tga differ diff --git a/graphics/stream_notification.tga b/graphics/stream_notification.tga new file mode 100644 index 0000000..dad88a3 Binary files /dev/null and b/graphics/stream_notification.tga differ diff --git a/graphics/streaming_intro.tga b/graphics/streaming_intro.tga new file mode 100644 index 0000000..52f3338 Binary files /dev/null and b/graphics/streaming_intro.tga differ diff --git a/graphics/streaming_shortcut_16.tga b/graphics/streaming_shortcut_16.tga new file mode 100644 index 0000000..51b6394 Binary files /dev/null and b/graphics/streaming_shortcut_16.tga differ diff --git a/graphics/streaming_shortcut_32.tga b/graphics/streaming_shortcut_32.tga new file mode 100644 index 0000000..38ca43f Binary files /dev/null and b/graphics/streaming_shortcut_32.tga differ diff --git a/public/AppDownloadNotification.res b/public/AppDownloadNotification.res new file mode 100644 index 0000000..8d1accd --- /dev/null +++ b/public/AppDownloadNotification.res @@ -0,0 +1,137 @@ +"friends/AppDownloadNotification.res" +{ + // Hid the game image until Steam can get it together and not also show the profile border + // Text offset was previously 64 + + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + layout{ + place {control="GameImage" x=16 y=16 width=0 height=0} + place {control="NotificationClickPanel" x=0 y=0 width=max height=max} + place {control="LabelSteam" x=20 y=16 width=172 height=16} + place {control="LabelInfo" x=20 y=30 width=172 height=16} + place {control="LabelGame" x=20 y=44 width=172 height=16} + } + + "AppDownloadNotification" + { + "ControlName" "CAppDownloadedNotification" + "fieldName" "AppDownloadNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "74" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="Notification" + } + + "GameImage" + { + "ControlName" "ImagePanel" + "fieldName" "GameImage" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + + "NotificationClickPanel" + { + "ControlName" "CNotificationClickPanel" + "fieldName" "NotificationClickPanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + + "LabelSteam" + { + "ControlName" "Label" + "fieldName" "LabelSteam" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_DownloadNotification_Steam" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + "textcolor" "NotificationBodyText" + } + + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "30" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_DownloadNotification_Info" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + "textcolor" "Friends.OfflineColor" + } + + "LabelGame" + { + "ControlName" "Label" + "fieldName" "LabelGame" + "xpos" "64" + "ypos" "44" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + "textcolor" "Friends.OnlineColor" + } +} diff --git a/public/ConnectionIssuesDialog.res b/public/ConnectionIssuesDialog.res new file mode 100644 index 0000000..061670a Binary files /dev/null and b/public/ConnectionIssuesDialog.res differ diff --git a/public/ErrorSteamAlreadyRunningDialog.res b/public/ErrorSteamAlreadyRunningDialog.res new file mode 100644 index 0000000..122ca2d --- /dev/null +++ b/public/ErrorSteamAlreadyRunningDialog.res @@ -0,0 +1,77 @@ +"public/ErrorSteamAlreadyRunningDialog.res" +{ + "DialogSteamAlreadyRunning" + { + "ControlName" "SimpleDialog" + "fieldName" "DialogSteamAlreadyRunning" + "xpos" "610" + "ypos" "481" + "wide" "380" + "tall" "210" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_AlreadyRunningError_Title" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "14" + "ypos" "50" + "wide" "340" + "tall" "80" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_AlreadyRunningError_Info" + "textAlignment" "west" + "wrap" "1" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "14" + "ypos" "128" + "wide" "346" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_AlreadyRunningError_SupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://support.steampowered.com/kb_article.php?ref=8787-WYIL-1543" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "266" + "ypos" "168" + "wide" "96" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "close" + "Default" "1" + } +} diff --git a/public/LimitedUserDialog.res b/public/LimitedUserDialog.res new file mode 100644 index 0000000..2f15778 --- /dev/null +++ b/public/LimitedUserDialog.res @@ -0,0 +1,116 @@ +"public/LimitedUserDialog.res" +{ + "LimitedUserDialog" + { + "ControlName" "CLimitedUserDialog" + "fieldName" "LimitedUserDialog" + "xpos" "1080" + "ypos" "631" + "wide" "400" + "tall" "308" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "288" + "ypos" "266" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "40" + "ypos" "40" + "wide" "300" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_SteamCommunity" + "textAlignment" "north-west" + "font" "HeadlineLarge" + "wrap" "1" + } + "LimitedFeature" + { + "ControlName" "Label" + "fieldName" "LimitedFeature" + "xpos" "40" + "ypos" "105" + "wide" "280" + "tall" "58" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "feature name" + "textAlignment" "north-west" + "font" "HeadlineLarge" + "wrap" "1" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "40" + "ypos" "167" + "wide" "320" + "tall" "80" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Limited_Explanation" + "textAlignment" "north-west" + "font" "UiBold" + "wrap" "1" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "40" + "ypos" "238" + "wide" "280" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Limited_ForDetails" + "textAlignment" "west" + "wrap" "0" + "URLText" "https://help.steampowered.com/wizard/HelpWithLimitedAccount" + } +} diff --git a/public/RefreshLoginDialog.res b/public/RefreshLoginDialog.res new file mode 100644 index 0000000..d9ed5a9 --- /dev/null +++ b/public/RefreshLoginDialog.res @@ -0,0 +1,209 @@ +"Steam/RefreshLoginDialog.res" +{ + "RefreshLoginDialog" + { + "ControlName" "Frame" + "fieldName" "RefreshLoginDialog" + "xpos" "396" + "ypos" "338" + "wide" "388" + "tall" "277" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "ErrorInfoLabel" + { + "ControlName" "Label" + "fieldName" "ErrorInfoLabel" + "xpos" "31" + "ypos" "42" + "wide" "328" + "tall" "51" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RefreshLogin_InfoTicketExpired" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "UserNameEdit" + { + "ControlName" "TextEntry" + "fieldName" "UserNameEdit" + "xpos" "121" + "ypos" "100" + "wide" "238" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + } + "PasswordEdit" + { + "ControlName" "TextEntry" + "fieldName" "PasswordEdit" + "xpos" "121" + "ypos" "133" + "wide" "238" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "1" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + style="TextEntryLarge" + } + "TwoFactorEdit" + { + "ControlName" "TextEntry" + "fieldName" "TwoFactorEdit" + "xpos" "121" + "ypos" "166" + "wide" "238" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "1" + "textHidden" "1" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + style="TextEntryLarge" + } + "SavePasswordCheck" + { + "ControlName" "CheckButton" + "fieldName" "SavePasswordCheck" + "xpos" "114" + "ypos" "231" + "wide" "236" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "labelText" "#Steam_Login_RememberPassword" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "Command" "RememberPassword" + "Default" "0" + } + "LoginButton" + { + "ControlName" "Button" + "fieldName" "LoginButton" + "xpos" "120" + "ypos" "200" + "wide" "80" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "labelText" "#Steam_Login_Btn" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "Command" "Login" + "Default" "1" + } + "UserNameLabel" + { + "ControlName" "Label" + "fieldName" "UserNameLabel" + "xpos" "10" + "ypos" "100" + "wide" "104" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_AccountName" + "textAlignment" "east" + "associate" "UserNameEdit" + "dulltext" "0" + "brighttext" "0" + } + "Unnamed dialog1" + { + "ControlName" "Label" + "fieldName" "Unnamed dialog1" + "xpos" "10" + "ypos" "133" + "wide" "104" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_Login_Password" + "textAlignment" "east" + "associate" "PasswordEdit" + "dulltext" "0" + "brighttext" "0" + } + "TwoFactorLabel" + { + "ControlName" "Label" + "fieldName" "TwoFactorLabel" + "xpos" "10" + "ypos" "166" + "wide" "104" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_Twofactor_Code" + "textAlignment" "east" + "associate" "TwoFactorEdit" + "dulltext" "0" + "brighttext" "0" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "206" + "ypos" "200" + "wide" "104" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "labelText" "#Steam_Login_CloseSteam" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "Command" "Close" + "Default" "0" + } +} diff --git a/public/ScreenshotErrorNotification.res b/public/ScreenshotErrorNotification.res new file mode 100644 index 0000000..a90b8ae --- /dev/null +++ b/public/ScreenshotErrorNotification.res @@ -0,0 +1,72 @@ +"public/ScreenshotErrorNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + layout{ + place {control="ErrorIcon" x=14 y=14 width=48 height=48} + place {control="LabelInfo" x=68 y=14 width=158 height=16} + } + + "ScreenshotErrorNotification" + { + "ControlName" "CScreenshotErrorNotification" + "fieldName" "ScreenshotErrorNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "74" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="Notification" + } + + "ErrorIcon" + { + "ControlName" "ImagePanel" + "fieldName" "ErrorIcon" + "image" "resource/icon_error_red" + "xpos" "14" + "ypos" "14" + "wide" "48" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaling" "image" + } + + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "68" + "ypos" "14" + "wide" "158" + "tall" "72" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_ScreenshotErrorNotification_Info" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + } +} diff --git a/public/ScreenshotNotification.res b/public/ScreenshotNotification.res new file mode 100644 index 0000000..976ec62 --- /dev/null +++ b/public/ScreenshotNotification.res @@ -0,0 +1,94 @@ +"public/ScreenshotNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + layout{ + place {control="ScreenshotImage" x=14 y=14 width=48 height=48} + place {control="LabelInfo" x=68 y=14 width=172 height=16} + place {control="LabelGame" x=68 y=32 width=172 height=16} + } + + "ScreenshotNotification" + { + "ControlName" "CScreenshotNotification" + "fieldName" "ScreenshotNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "74" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="Notification" + } + + "ScreenshotImage" + { + "ControlName" "ImagePanel" + "fieldName" "ScreenshotImage" + "xpos" "14" + "ypos" "14" + "wide" "48" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "68" + "ypos" "32" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_ScreenshotNotification_Info" + "textAlignment" "north-west" + "wrap" "0" + "font" FriendsSmall + "textcolor" "Friends.OfflineColor" + } + + "LabelGame" + { + "ControlName" "Label" + "fieldName" "LabelGame" + "xpos" "68" + "ypos" "14" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name%" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + "textcolor" "Friends.OnlineColor" + } +} diff --git a/public/SteamLoginDialog.res b/public/SteamLoginDialog.res new file mode 100644 index 0000000..9164ea4 --- /dev/null +++ b/public/SteamLoginDialog.res @@ -0,0 +1,509 @@ +"Public/SteamLoginDialog.res" +{ + + styles{ + CSteamLoginDialog + { + minimum-height=530 + maximum-height=530 + render_bg + { + 0=image(x0,y0,x1,y1,graphics/JackMyth/LoginBG) + } + } + + "loginprocess_style_head" + { + "font-size" "16" + "font-style" "italic" + } + + "loginprocess_style_body" + { + "font-size" "18" + "font-weight" "1000" + "font-style" "regular" + } + + "loginerror_style_body" + { + "font-size" "14" + textcolor=DefaultText + bgcolor=none + padding=8 + + render_bg + { + 0="fill( x0 - 4, y0 - 4, x1 + 2, y0 -2, redborder )" // top + 1="fill( x0 - 4, y1 + 2, x1 + 2, y1 + 4, redborder )" // bottom + 2="fill( x0 - 4, y0 - 4, x0 - 2, y1 + 4, redborder )" // left + 3="fill( x1 + 2, y0 - 4, x1 + 4, y1 + 4, redborder )" // right + } + } + } + + color + { + redborder="169 72 71 255" + } + + layout + { + region { name=hidden width=0 height=0 } + region { name=body width=max height=max margin-top=150 margin-right=71 margin-left=71} + + place{ control=ImagePanelLogo align=top-center y=60 width=max height=0} + place{ control=UserNameLabel,UserNameEdit dir=down spacing=0 region=body height=30} + place{ control=PasswordLabel,PasswordEdit start=UserNameEdit dir=down spacing=0 margin-top=10 region=body height=30} + place{ control=PasswordCapsLockImage start=PasswordEdit dir=right margin-left=5 margin-top=3 height=24 width=24} + place{ control=SavePasswordCheck start=PasswordEdit dir=down margin-top=10 width=max} + place{ control=CancelButton start=SavePasswordCheck margin-top=10 dir=down region=body width=150 height=32} + place{ control=LoginButton start=CancelButton margin-left=28 dir=right region=body width=150 height=32} + + place{ control=LoginErrorText margin-top=5 start=CancelButton dir=down region=body} + place{ control=Divider1 start=LoginErrorText dir=down margin-top=5 region=body width=max} + place{ control=CreateNewAccountButton start=Divider1 dir=down margin-top=10 region=body width=max height=32} + place{ control=LostPasswordButton start=CreateNewAccountButton dir=down margin-top=10 region=body width=max height=32} + + place{ control=Label2,Label4,AlreadyLoggedIn,PasswordCapsLockLabel,LoginProcessText,LoginProcessLabel,LoginProcessThrobber,LoginProcessImage region=hidden} + + } + + "SteamLoginDialog" + { + "ControlName" "CSteamLoginDialog" + "fieldName" "SteamLoginDialog" + "xpos" "590" + "ypos" "435" + "wide" "480" + "tall" "530" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_Login_Title" + } + "ImagePanelLogo" + { + "ControlName" "ImagePanel" + "fieldName" "ImagePanelLogo" + "xpos" "73" + + "ypos" "40" + "wide" "136" + "tall" "35" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/logo6" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + } + + "PasswordCapsLockLabel" + { + "ControlName" "Label" + "fieldName" "PasswordCapsLockLabel" + "xpos" "218" + "ypos" "123" + "wide" "150" + "tall" "24" + "AutoResize" "1" + "PinCorner" "1" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Login_CapsLockWarning" + "textAlignment" "east" + "wrap" "0" + "zpos" "-1" + } + + + "PasswordCapsLockImage" + { + "ControlName" "ImagePanel" + "fieldName" "PasswordCapsLockImage" + "xpos" "370" + "ypos" "125" + "wide" "19" + "tall" "19" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "resource/icon_warning" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "1" + "zpos" "-1" + } + + + "PasswordEdit" + { + "ControlName" "TextEntry" + "fieldName" "PasswordEdit" + "xpos" "116" + "ypos" "122" + "wide" "331" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "textHidden" "1" + "editable" "1" + "maxchars" "128" + "NumericInputOnly" "0" + "unicode" "0" + style="TextEntryLarge" + } + "UserNameEdit" + { + "ControlName" "TextEntry" + "fieldName" "UserNameEdit" + "xpos" "116" + "ypos" "88" + "wide" "331" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "128" + "NumericInputOnly" "0" + "unicode" "0" + } + "LoginButton" + { + "ControlName" "Button" + "fieldName" "LoginButton" + "xpos" "115" + "ypos" "184" + "wide" "161" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#Steam_Login_Btn" + "textAlignment" "west" + "wrap" "0" + "Command" "Login" + "Default" "1" + "selected" "0" + } + "SavePasswordCheck" + { + "ControlName" "CheckButton" + "fieldName" "SavePasswordCheck" + "xpos" "113" + "ypos" "152" + "wide" "285" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Steam_Login_RememberPassword" + "textAlignment" "west" + "wrap" "0" + "Command" "RememberPassword" + "Default" "0" + "selected" "0" + } + "UserNameLabel" + { + "ControlName" "Label" + "fieldName" "UserNameLabel" + "xpos" "6" + "ypos" "88" + "wide" "100" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_AccountName" + "textAlignment" "east" + "associate" "UserNameEdit" + "wrap" "0" + } + "PasswordLabel" + { + "ControlName" "Label" + "fieldName" "PasswordLabel" + "xpos" "6" + "ypos" "122" + "wide" "100" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Login_Password" + "textAlignment" "east" + "associate" "PasswordEdit" + "wrap" "0" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "286" + "ypos" "184" + "wide" "161" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#Steam_Login_Cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + "selected" "0" + } + "CreateNewAccountButton" + { + "ControlName" "Button" + "fieldName" "CreateNewAccountButton" + "xpos" "210" + "ypos" "272" + "wide" "237" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "6" + "paintbackground" "1" + "labelText" "#Steam_Login_CreateNewAccount" + "textAlignment" "west" + "wrap" "0" + "Command" "CreateNewAccount" + "Default" "0" + "selected" "0" + } + "LostPasswordButton" + { + "ControlName" "Button" + "fieldName" "LostPasswordButton" + "xpos" "210" + "ypos" "240" + "wide" "237" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "8" + "paintbackground" "1" + "labelText" "#Steam_Login_RetrievePassword" + "textAlignment" "west" + "wrap" "0" + "Command" "ForgotPassword" + "Default" "0" + "selected" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "16" + "ypos" "272" + "wide" "184" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "LabelDull" + "labelText" "#Steam_Login_NoAccount" + "textAlignment" "east" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "16" + "ypos" "240" + "wide" "184" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "LabelDull" + "labelText" "#Steam_Login_ForgotPassword" + "textAlignment" "east" + "wrap" "0" + } + "Divider1" + { + "ControlName" "Divider" + "fieldName" "Divider1" + "xpos" "26" + "ypos" "224" + "wide" "420" + "tall" "1" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "AlreadyLoggedIn" + { + "ControlName" "Label" + "fieldName" "AlreadyLoggedIn" + "xpos" "40" + "ypos" "40" + "wide" "380" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "LabelDull" + "labelText" "#Steam_AccountAlreadyLoggedInNeedPassword" + "textAlignment" "north-west" + "wrap" "1" + } + "LoginProcessImage" + { + "ControlName" "ImagePanel" + "fieldName" "LoginProcessImage" + "xpos" "24" + "ypos" "225" + "wide" "373" + "tall" "78" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/logo6" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + } + "LoginProcessThrobber" + { + "ControlName" "ThrobberImagePanel" + "fieldName" "LoginProcessThrobber" + "xpos" "24" + "ypos" "225" + "wide" "373" + "tall" "78" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "LoginProcessLabel" + { + "ControlName" "Label" + "fieldName" "LoginProcessLabel" + "xpos" "104" + "ypos" "236" + "wide" "280" + "tall" "18" + "AutoResize" "1" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + "borderset" "LabelDull" + "labelText" "#SteamGuardBanner" + "textAlignment" "west" + "wrap" "1" + "style" "loginprocess_style_head" + } + "LoginProcessText" + { + "ControlName" "Label" + "fieldName" "LoginProcessText" + "xpos" "104" + "ypos" "254" + "wide" "280" + "tall" "34" + "AutoResize" "1" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + "borderset" "LabelDull" + "labelText" "placeholder" + "textAlignment" "west" + "wrap" "1" + "style" "loginprocess_style_body" + } + "LoginErrorText" + { + "ControlName" "Label" + "fieldName" "LoginErrorText" + "xpos" "30" + "ypos" "224" + "wide" "412" + "tall" "44" + "AutoResize" "1" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + "labelText" "" + "textAlignment" "west" + "wrap" "1" + "style" "loginerror_style_body" + } +} + diff --git a/public/SubExtraFactorAuth.res b/public/SubExtraFactorAuth.res new file mode 100644 index 0000000..f5db5fd --- /dev/null +++ b/public/SubExtraFactorAuth.res @@ -0,0 +1,207 @@ +"Public/SubExtraFactorAuth.res" +{ + "BG_Security" + { + "ControlName" "ImagePanel" + "fieldName" "BG_Security" + "xpos" "0" + "ypos" "20" + "wide" "360" + "tall" "344" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/bg_security_wizard" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "1" + } + + "SubExtraFactorAuth" + { + "ControlName" "SubExtraFactorAuth" + "fieldName" "SubExtraFactorAuth" + "xpos" "5" + "ypos" "20" + "wide" "320" + "tall" "450" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + "zpos" "3" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "10" + "wide" "320" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_EnterCode" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "3" + "style" "header" + } + "AuthCode" + { + "ControlName" "TextEntry" + "fieldName" "AuthCode" + "xpos" "80" + "ypos" "50" + "wide" "190" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + "zpos" "3" + "style" "codeEntry" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "80" + "ypos" "110" + "wide" "200" + "tall" "96" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_EnterCodeDetails" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "3" + } + "IconKey" + { + "ControlName" "ImagePanel" + "fieldName" "IconKey" + "xpos" "24" + "ypos" "50" + "wide" "48" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/icon_security_key" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "2" + } + "RememberThisComputer" + { + "ControlName" "CheckButton" + "fieldName" "RememberThisComputer" + "xpos" "24" + "ypos" "260" + "wide" "300" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Steam_RememberThisComputer" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + "zpos" "3" + } +"MachineName" + { + "ControlName" "TextEntry" + "fieldName" "MachineName" + "xpos" "24" + "ypos" "284" + "wide" "300" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "textHidden" "0" + "editable" "1" + "maxchars" "64" + "NumericInputOnly" "0" + "unicode" "0" + "zpos" "3" + } +"MachineNameLabel" + { + "ControlName" "Label" + "fieldName" "MachineNameLabel" + "xpos" "160" + "ypos" "285" + "wide" "120" + "tall" "24" + "AutoResize" "1" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RecoverLocked_MachineNameLabel" + "textAlignment" "east" + "wrap" "0" + "zpos" "2" + "style" "friendlyname" + } + + styles + { + header + { + font-size=14 + } + + codeEntry + { + font-size=36 + } + friendlyname + { + font-size=14 + "font-style" "italic" + } + } + +} + \ No newline at end of file diff --git a/public/SubExtraFactorAuthFail.res b/public/SubExtraFactorAuthFail.res new file mode 100644 index 0000000..7203a7d --- /dev/null +++ b/public/SubExtraFactorAuthFail.res @@ -0,0 +1,115 @@ +"Public/SubExtraFactorAuthFail.res" +{ + "BG_Security" + { + "ControlName" "ImagePanel" + "fieldName" "BG_Security" + "xpos" "0" + "ypos" "20" + "wide" "360" + "tall" "344" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/bg_security_wizard" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "1" + } + + "SubExtraFactorAuthFail" + { + "ControlName" "SubExtraFactorAuthFail" + "fieldName" "SubExtraFactorAuthFail" + "xpos" "5" + "ypos" "20" + "wide" "320" + "tall" "450" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + "zpos" "2" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "10" + "wide" "320" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_WrongCode" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "2" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "80" + "ypos" "50" + "wide" "200" + "tall" "96" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_WrongCodeDetails" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "2" + } + + "IconLocked" + { + "ControlName" "ImagePanel" + "fieldName" "IconLocked" + "xpos" "24" + "ypos" "45" + "wide" "48" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/icon_security_locked" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "2" + } + + styles + { + header + { + font-size=14 + } + } +} + \ No newline at end of file diff --git a/public/SubExtraFactorAuthIntro.res b/public/SubExtraFactorAuthIntro.res new file mode 100644 index 0000000..f6bf3fa --- /dev/null +++ b/public/SubExtraFactorAuthIntro.res @@ -0,0 +1,179 @@ +"Public/SubExtraFactorAuthIntro.res" +{ + "BG_Security" + { + "ControlName" "ImagePanel" + "fieldName" "BG_Security" + "xpos" "0" + "ypos" "20" + "wide" "360" + "tall" "344" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/bg_security_wizard" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "1" + } + + "SubExtraFactorAuthIntro" + { + "ControlName" "SubExtraFactorAuthIntro" + "fieldName" "SubExtraFactorAuthIntro" + "xpos" "5" + "ypos" "20" + "wide" "320" + "tall" "450" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + "zpos" "2" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "10" + "wide" "320" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_Info" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "style" "header" + "zpos" "2" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "80" + "ypos" "50" + "wide" "250" + "tall" "80" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_Details" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "2" + } + "ControlUseCodeRadio" + { + "ControlName" "RadioButton" + "fieldName" "ControlUseCodeRadio" + "xpos" "24" + "ypos" "134" + "wide" "300" + "tall" "60" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "labelText" "#Steam_RecoverLocked_UseCode" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + "Default" "1" + "SubTabPosition" "1" + "zpos" "2" + } + "ControlRecoverRadio" + { + "ControlName" "RadioButton" + "fieldName" "ControlRecoverRadio" + "xpos" "24" + "ypos" "182" + "wide" "300" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "labelText" "#Steam_RecoverLocked_MustRecover" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + "Default" "0" + "SubTabPosition" "2" + "zpos" "2" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "24" + "ypos" "300" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RecoverLocked_WhyIsThisHappening" + "textAlignment" "west" + "wrap" "0" + "URLText" "https://support.steampowered.com/kb_article.php?ref=4020-ALZM-5519" + "zpos" "2" + } + "IconKey" + { + "ControlName" "ImagePanel" + "fieldName" "IconKey" + "xpos" "24" + "ypos" "50" + "wide" "48" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/icon_security_key" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "2" + } + + styles + { + header + { + font-size=14 + } + } +} + \ No newline at end of file diff --git a/public/SubExtraFactorAuthNoAccess.res b/public/SubExtraFactorAuthNoAccess.res new file mode 100644 index 0000000..42ac6a2 --- /dev/null +++ b/public/SubExtraFactorAuthNoAccess.res @@ -0,0 +1,136 @@ +"Public/SubExtraFactorAuthNoAccess.res" +{ + + + "SubExtraFactorAuthNoAccess" + { + "ControlName" "SubExtraFactorAuthNoAccess" + "fieldName" "SubExtraFactorAuthNoAccess" + "xpos" "5" + "ypos" "20" + "wide" "320" + "tall" "450" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + "zpos" "2" + } + + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "100" + "wide" "306" + "tall" "96" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_CannotAccess" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "2" + } + + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "24" + "ypos" "135" + "wide" "296" + "tall" "96" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_StartRecovery3" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "2" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "24" + "ypos" "250" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_LearnMore" + "textAlignment" "west" + "wrap" "0" + "URLText" "https://support.steampowered.com/kb_article.php?ref=9400-IPAX-9398&auth=e39b5c227cffc8ae65414aba013e5fef" + "zpos" "2" + } + + "URLLabel2" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel2" + "xpos" "24" + "ypos" "270" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_RecoverySupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "https://support.steampowered.com" + "zpos" "2" + } + + "GraphicDenied" + { + "ControlName" "ImagePanel" + "fieldName" "GraphicDenied" + "xpos" "0" + "ypos" "0" + "wide" "373" + "tall" "78" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/logo6" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "2" + } + + + styles + { + header + { + font-size=14 + } + } +} + diff --git a/public/SubExtraFactorAuthNoEmail.res b/public/SubExtraFactorAuthNoEmail.res new file mode 100644 index 0000000..87f72b7 --- /dev/null +++ b/public/SubExtraFactorAuthNoEmail.res @@ -0,0 +1,135 @@ +"Public/SubExtraFactorAuthNoEmail.res" +{ + "BG_Security" + { + "ControlName" "ImagePanel" + "fieldName" "BG_Security" + "xpos" "0" + "ypos" "20" + "wide" "360" + "tall" "344" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/bg_security_wizard" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "1" + } + + "SubExtraFactorAuthNoEmail" + { + "ControlName" "SubExtraFactorAuthNoEmail" + "fieldName" "SubExtraFactorAuthNoEmail" + "xpos" "5" + "ypos" "20" + "wide" "320" + "tall" "450" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + "zpos" "2" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "10" + "wide" "320" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_NoEmail" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "2" + "style" "header" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "80" + "ypos" "50" + "wide" "200" + "tall" "96" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_NoEmailDetails" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "2" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "24" + "ypos" "135" + "wide" "296" + "tall" "96" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_NoEmailDetails2" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "2" + } + "IconJunk" + { + "ControlName" "ImagePanel" + "fieldName" "IconJunk" + "xpos" "24" + "ypos" "45" + "wide" "48" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/icon_security_junk" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "2" + } + + styles + { + header + { + font-size=14 + } + } +} + \ No newline at end of file diff --git a/public/SubExtraFactorAuthResult.res b/public/SubExtraFactorAuthResult.res new file mode 100644 index 0000000..5e173db --- /dev/null +++ b/public/SubExtraFactorAuthResult.res @@ -0,0 +1,58 @@ +"Public/SubExtraFactorAuthResult.res" +{ + "SubExtraFactorAuthResult" + { + "ControlName" "SubExtraFactorAuthResult" + "fieldName" "SubExtraFactorAuthResult" + "xpos" "5" + "ypos" "20" + "wide" "320" + "tall" "450" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "10" + "wide" "320" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_ResultWorking" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "60" + "ypos" "60" + "wide" "260" + "tall" "96" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } +} + \ No newline at end of file diff --git a/public/SubExtraFactorAuthSuccess.res b/public/SubExtraFactorAuthSuccess.res new file mode 100644 index 0000000..9184794 --- /dev/null +++ b/public/SubExtraFactorAuthSuccess.res @@ -0,0 +1,117 @@ +"Public/SubExtraFactorAuthSuccess.res" +{ + "BG_Security" + { + "ControlName" "ImagePanel" + "fieldName" "BG_Security" + "xpos" "0" + "ypos" "20" + "wide" "360" + "tall" "344" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/bg_security_wizard" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "1" + } + + "SubExtraFactorAuthSuccess" + { + "ControlName" "SubExtraFactorAuthSuccess" + "fieldName" "SubExtraFactorAuthSuccess" + "xpos" "5" + "ypos" "20" + "wide" "320" + "tall" "450" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + "zpos" "3" + } + + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "10" + "wide" "320" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_Success" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "3" + } + + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "80" + "ypos" "50" + "wide" "200" + "tall" "180" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_SuccessDetails" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "3" + } + + "IconUnlocked" + { + "ControlName" "ImagePanel" + "fieldName" "IconUnlocked" + "xpos" "8" + "ypos" "50" + "wide" "56" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/icon_security_unlocked" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "3" + } + + styles + { + header + { + font-size=14 + } + } +} + \ No newline at end of file diff --git a/public/SubExtraFactorRecover.res b/public/SubExtraFactorRecover.res new file mode 100644 index 0000000..b8de765 --- /dev/null +++ b/public/SubExtraFactorRecover.res @@ -0,0 +1,155 @@ +"Public/SubExtraFactorRecover.res" +{ + "BG_Security" + { + "ControlName" "ImagePanel" + "fieldName" "BG_Security" + "xpos" "0" + "ypos" "20" + "wide" "360" + "tall" "344" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/bg_security_wizard" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "1" + } + + "SubExtraFactorRecover" + { + "ControlName" "SubExtraFactorRecover" + "fieldName" "SubExtraFactorRecover" + "xpos" "5" + "ypos" "20" + "wide" "320" + "tall" "450" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + "zpos" "2" + } + + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "10" + "wide" "200" + "tall" "96" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_StartRecovery" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "2" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "80" + "ypos" "50" + "wide" "260" + "tall" "96" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_StartRecovery2" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "2" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "24" + "ypos" "135" + "wide" "296" + "tall" "96" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_StartRecovery3" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + "zpos" "2" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "24" + "ypos" "260" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_RecoverLocked_RecoverySupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "https://support.steampowered.com/kb_article.php?ref=4020-ALZM-5519" + "zpos" "2" + } + + "IconSteam" + { + "ControlName" "ImagePanel" + "fieldName" "IconSteam" + "xpos" "4" + "ypos" "50" + "wide" "67" + "tall" "31" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/icon_security_steam" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "2" + } + + styles + { + header + { + font-size=14 + } + } +} + \ No newline at end of file diff --git a/public/SubPanelWelcomeCreateNewAccount.res b/public/SubPanelWelcomeCreateNewAccount.res new file mode 100644 index 0000000..7c85a02 --- /dev/null +++ b/public/SubPanelWelcomeCreateNewAccount.res @@ -0,0 +1,58 @@ +"Public/SubPanelWelcomeCreateNewAccount.res" +{ + "SubPanelWelcomeCreateNewAccount" + { + "ControlName" "WizardSubPanel" + "fieldName" "SubPanelWelcomeCreateNewAccount" + "xpos" "8" + "ypos" "48" + "wide" "416" + "tall" "342" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "AccountNotes" + { + "ControlName" "Label" + "fieldName" "AccountNotes" + "xpos" "16" + "ypos" "70" + "wide" "346" + "tall" "148" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ChosenCreateNewAccount" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "headline" + "xpos" "16" + "ypos" "30" + "wide" "360" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#SteamUI_ChosenCreateNewAccountHeadline" + "textAlignment" "west" + "font" "UiBold" + "wrap" "0" + } +} diff --git a/public/SubPanelWelcomeCreateNewAccountAccountName.res b/public/SubPanelWelcomeCreateNewAccountAccountName.res new file mode 100644 index 0000000..61214e0 --- /dev/null +++ b/public/SubPanelWelcomeCreateNewAccountAccountName.res @@ -0,0 +1,193 @@ +"Public/SubPanelWelcomeCreateNewAccountAccountName.res" +{ + "SubPanelWelcomeCreateNewAccountAccountName" + { + "ControlName" "WizardSubPanel" + "fieldName" "SubPanelWelcomeCreateNewAccountAccountName" + "xpos" "5" + "ypos" "29" + "wide" "422" + "tall" "327" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "AccountName" + { + "ControlName" "TextEntry" + "fieldName" "AccountName" + "xpos" "24" + "ypos" "108" + "wide" "264" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "64" + "NumericInputOnly" "0" + "unicode" "0" + } + "NewPasswordEntry" + { + "ControlName" "TextEntry" + "fieldName" "NewPasswordEntry" + "xpos" "24" + "ypos" "170" + "wide" "264" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "textHidden" "1" + "editable" "1" + "maxchars" "64" + "NumericInputOnly" "0" + "unicode" "0" + style="TextEntryLarge" + } + "NewPasswordEntry2" + { + "ControlName" "TextEntry" + "fieldName" "NewPasswordEntry2" + "xpos" "24" + "ypos" "232" + "wide" "264" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "textHidden" "1" + "editable" "1" + "maxchars" "64" + "NumericInputOnly" "0" + "unicode" "0" + style="TextEntryLarge" + } + "nameinfo" + { + "ControlName" "Label" + "fieldName" "nameinfo" + "xpos" "24" + "ypos" "20" + "wide" "364" + "tall" "70" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_WelcomeCreatingAccountEnterName" + "textAlignment" "north-west" + "wrap" "1" + } + "emaillabel1" + { + "ControlName" "Label" + "fieldName" "emaillabel1" + "xpos" "24" + "ypos" "84" + "wide" "264" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_WelcomeCreatingAccountAccountName" + "textAlignment" "west" + "associate" "AccountName" + "wrap" "0" + } + "Password1" + { + "ControlName" "Label" + "fieldName" "Password1" + "xpos" "24" + "ypos" "146" + "wide" "264" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_WelcomeCreatingAccountPassword" + "textAlignment" "west" + "associate" "NewPasswordEntry" + "wrap" "0" + } + "Password2" + { + "ControlName" "Label" + "fieldName" "Password2" + "xpos" "24" + "ypos" "208" + "wide" "264" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_WelcomeCreatingAccountRetypePassword" + "textAlignment" "west" + "associate" "NewPasswordEntry2" + "wrap" "0" + } + "StrengthMeterLabel" + { + "ControlName" "Label" + "fieldName" "StrengthMeterLabel" + "xpos" "24" + "ypos" "270" + "wide" "264" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_PasswordStrength" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "StrengthMeter" + { + "ControlName" "ProgressBar" + "fieldName" "StrengthMeter" + "xpos" "24" + "ypos" "294" + "wide" "264" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "Progress" "0.000000" + } + +} diff --git a/public/SubPanelWelcomeCreateNewAccountEmail.res b/public/SubPanelWelcomeCreateNewAccountEmail.res new file mode 100644 index 0000000..2d0592d --- /dev/null +++ b/public/SubPanelWelcomeCreateNewAccountEmail.res @@ -0,0 +1,136 @@ +"Public/SubPanelWelcomeCreateNewAccountEmail.res" +{ + "SubPanelWelcomeCreateNewAccountEmail" + { + "ControlName" "CSubPanelWelcomeCreateNewAccountEmail" + "fieldName" "SubPanelWelcomeCreateNewAccountEmail" + "xpos" "5" + "ypos" "29" + "wide" "422" + "tall" "327" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "EmailEntry" + { + "ControlName" "TextEntry" + "fieldName" "EmailEntry" + "xpos" "24" + "ypos" "119" + "wide" "264" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "64" + "NumericInputOnly" "0" + "unicode" "0" + } + "EmailEntry2" + { + "ControlName" "TextEntry" + "fieldName" "EmailEntry2" + "xpos" "24" + "ypos" "204" + "wide" "264" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "textHidden" "0" + "editable" "1" + "maxchars" "64" + "NumericInputOnly" "0" + "unicode" "0" + } + "nameinfo" + { + "ControlName" "Label" + "fieldName" "nameinfo" + "xpos" "24" + "ypos" "20" + "wide" "375" + "tall" "65" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_AccountNameInfo" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + "emaillabel1" + { + "ControlName" "Label" + "fieldName" "emaillabel1" + "xpos" "24" + "ypos" "95" + "wide" "263" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_CreateAccount_ContactEmail" + "textAlignment" "west" + "associate" "EmailEntry" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "Password1" + { + "ControlName" "Label" + "fieldName" "Password1" + "xpos" "24" + "ypos" "180" + "wide" "300" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_CreateAccount_ContactEmailConfirm" + "textAlignment" "west" + "associate" "EmailEntry2" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "validaccountlabel" + { + "ControlName" "Label" + "fieldName" "validaccountlabel" + "xpos" "24" + "ypos" "143" + "wide" "303" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#WelcomeToSteamEmailLabel2" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } +} + diff --git a/public/SubPanelWelcomeCreateNewAccountEmailAlreadyUsed.res b/public/SubPanelWelcomeCreateNewAccountEmailAlreadyUsed.res new file mode 100644 index 0000000..aa5451e --- /dev/null +++ b/public/SubPanelWelcomeCreateNewAccountEmailAlreadyUsed.res @@ -0,0 +1,406 @@ +"Public/SubPanelWelcomeCreateNewAccountEmailAlreadyUsed.res" +{ + "EmailAlreadyInUse" + { + "ControlName" "CEmailAddressAlreadyUsedDialog" + "fieldName" "EmailAlreadyInUse" + "xpos" "567" + "ypos" "461" + "wide" "466" + "tall" "250" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#SteamUI_CreateAccount_Title" + } + "captiongrip" + { + "ControlName" "CaptionGripPanel" + "fieldName" "captiongrip" + "xpos" "4" + "ypos" "4" + "zpos" "1" + "wide" "442" + "tall" "36" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "topGrip" + { + "ControlName" "GripPanel" + "fieldName" "topGrip" + "xpos" "8" + "ypos" "0" + "zpos" "1" + "wide" "450" + "tall" "5" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "bottomGrip" + { + "ControlName" "GripPanel" + "fieldName" "bottomGrip" + "xpos" "8" + "ypos" "245" + "zpos" "1" + "wide" "440" + "tall" "5" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "leftGrip" + { + "ControlName" "GripPanel" + "fieldName" "leftGrip" + "xpos" "0" + "ypos" "8" + "zpos" "1" + "wide" "5" + "tall" "234" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "rightGrip" + { + "ControlName" "GripPanel" + "fieldName" "rightGrip" + "xpos" "461" + "ypos" "8" + "zpos" "1" + "wide" "5" + "tall" "224" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "tlGrip" + { + "ControlName" "GripPanel" + "fieldName" "tlGrip" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "8" + "tall" "8" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "trGrip" + { + "ControlName" "GripPanel" + "fieldName" "trGrip" + "xpos" "458" + "ypos" "0" + "zpos" "1" + "wide" "8" + "tall" "8" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "blGrip" + { + "ControlName" "GripPanel" + "fieldName" "blGrip" + "xpos" "0" + "ypos" "242" + "zpos" "1" + "wide" "8" + "tall" "8" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "brGrip" + { + "ControlName" "GripPanel" + "fieldName" "brGrip" + "xpos" "448" + "ypos" "232" + "zpos" "1" + "wide" "18" + "tall" "18" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + } + "title" + { + "ControlName" "FrameTitle" + "fieldName" "title" + "xpos" "16" + "ypos" "14" + "wide" "430" + "tall" "20" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_CreateAccount_Title" + "textAlignment" "west" + "wrap" "0" + } + "minimize" + { + "ControlName" "FrameButton" + "fieldName" "minimize" + "xpos" "r52" + "ypos" "16" + "zpos" "2" + "wide" "16" + "tall" "16" + "AutoResize" "0" + "PinCorner" "1" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "0" + "textAlignment" "north-west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "maximize" + { + "ControlName" "FrameButton" + "fieldName" "maximize" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "18" + "tall" "18" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "1" + "textAlignment" "north-west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "mintosystray" + { + "ControlName" "FrameButton" + "fieldName" "mintosystray" + "xpos" "0" + "ypos" "0" + "zpos" "2" + "wide" "18" + "tall" "18" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "o" + "textAlignment" "north-west" + "wrap" "0" + "Command" "MinimizeToSysTray" + "Default" "0" + "selected" "0" + } + "close" + { + "ControlName" "FrameButton" + "fieldName" "close" + "xpos" "r32" + "ypos" "16" + "zpos" "2" + "wide" "16" + "tall" "16" + "AutoResize" "0" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "r" + "textAlignment" "north-west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "Menu" + { + "ControlName" "FrameSystemButton" + "fieldName" "menu" + "xpos" "-16" + "ypos" "16" + "wide" "16" + "tall" "16" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "248" + "ypos" "181" + "wide" "194" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Steam_CreateNewAccount_CreateAccount" + "textAlignment" "west" + "wrap" "0" + "Command" "Continue" + "Default" "0" + "selected" "0" + } + "FindButton" + { + "ControlName" "Button" + "fieldName" "FindButton" + "xpos" "24" + "ypos" "181" + "wide" "217" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_CreateNewAccount_FindOldAccount" + "textAlignment" "west" + "wrap" "0" + "Command" "Find" + "Default" "1" + "selected" "0" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "357" + "ypos" "210" + "wide" "85" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#vgui_Cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "Cancel" + "Default" "0" + "selected" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "21" + "ypos" "53" + "wide" "422" + "tall" "70" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "LabelDull" + "labelText" "#Steam_CreateNewAccount_EmailAddrAlreadyInUse" + "textAlignment" "north-west" + "wrap" "1" + } + "Label2" + { + "ControlName" "URLLabel" + "fieldName" "Label2" + "xpos" "24" + "ypos" "151" + "wide" "364" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_CreateNewAccount_AccountsFAQ" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=677" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "24" + "ypos" "117" + "wide" "386" + "tall" "37" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "LabelDull" + "labelText" "#Steam_PleaseVisitSupportPage" + "textAlignment" "west" + "wrap" "1" + } +} diff --git a/public/SubPanelWelcomeCreateNewAccountFinished.res b/public/SubPanelWelcomeCreateNewAccountFinished.res new file mode 100644 index 0000000..cfb8f91 --- /dev/null +++ b/public/SubPanelWelcomeCreateNewAccountFinished.res @@ -0,0 +1,37 @@ +"Steam/SubPanelWelcomeCreateNewAccountFinished.res" +{ + "HelpImage" + { + "ControlName" "ImagePanel" + "fieldName" "HelpImage" + "image" "public/steam_welcome_tooltray" + "xpos" "113" + "ypos" "134" + "wide" "256" + "tall" "128" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "InfoText" + { + "ControlName" "Label" + "fieldName" "InfoText" + "xpos" "48" + "ypos" "30" + "wide" "360" + "tall" "92" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#WelcomeAccountCreateComplete" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } +} diff --git a/public/SubPanelWelcomeCreateNewAccountMultiple.res b/public/SubPanelWelcomeCreateNewAccountMultiple.res new file mode 100644 index 0000000..ab1308c --- /dev/null +++ b/public/SubPanelWelcomeCreateNewAccountMultiple.res @@ -0,0 +1,88 @@ +"Public/SubPanelWelcomeCreateNewAccountMultiple.res" +{ + "SubPanelWelcomeCreateNewAccount" + { + "ControlName" "WizardSubPanel" + "fieldName" "SubPanelWelcomeCreateNewAccount" + "xpos" "10" + "ypos" "28" + "wide" "412" + "tall" "370" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "AccountNotes" + { + "ControlName" "Label" + "fieldName" "AccountNotes" + "xpos" "24" + "ypos" "108" + "wide" "350" + "tall" "148" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ChosenCreateDuplicate" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "headline" + "xpos" "79" + "ypos" "59" + "wide" "292" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ChosenCreateMultipleHeadline" + "textAlignment" "north-west" + "font" "uiheadline" + "wrap" "1" + style="Important" + } + "IconInfo" + { + "ControlName" "ImagePanel" + "fieldName" "IconInfo" + "xpos" "16" + "ypos" "38" + "wide" "56" + "tall" "56" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + "image" "resource/icon_info" + "gradientVertical" "0" + "scaleImage" "0" + } + + styles + { + + Important + { + font-family=basefont + font-size=14 + font-weight=400 + textcolor="Text" + } + } +} diff --git a/public/SubPanelWelcomeCreateNewAccountNameCollision.res b/public/SubPanelWelcomeCreateNewAccountNameCollision.res new file mode 100644 index 0000000..9e8627f --- /dev/null +++ b/public/SubPanelWelcomeCreateNewAccountNameCollision.res @@ -0,0 +1,113 @@ +"Public/SubPanelWelcomeCreateNewAccountNameCollision.res" +{ + "SuggestionsList" + { + "ControlName" "ListPanel" + "fieldName" "SuggestionsList" + "xpos" "20" + "ypos" "189" + "wide" "375" + "tall" "100" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "AccountName" + { + "ControlName" "Label" + "fieldName" "AccountName" + "xpos" "20" + "ypos" "44" + "wide" "300" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "alfred" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "19" + "wide" "220" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_CreateAccount_TheName" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "20" + "ypos" "73" + "wide" "340" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_CreateAccount_AlreadyTaken" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "20" + "ypos" "103" + "wide" "350" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_CreateAccount_DifferentNames" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "20" + "ypos" "160" + "wide" "300" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_CreateAccount_SuggestedNames" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "1" + "wrap" "0" + } +} + \ No newline at end of file diff --git a/public/SubPanelWelcomeCreateNewAccountNames.res b/public/SubPanelWelcomeCreateNewAccountNames.res new file mode 100644 index 0000000..6ebadc3 Binary files /dev/null and b/public/SubPanelWelcomeCreateNewAccountNames.res differ diff --git a/public/SubPanelWelcomeCreateNewAccountPassword.res b/public/SubPanelWelcomeCreateNewAccountPassword.res new file mode 100644 index 0000000..439f64c --- /dev/null +++ b/public/SubPanelWelcomeCreateNewAccountPassword.res @@ -0,0 +1,93 @@ +"Steam/SubPanelWelcomeCreateNewAccountPassword.res" +{ + "PasswordEntry1" + { + "ControlName" "TextEntry" + "fieldName" "PasswordEntry1" + "xpos" "48" + "ypos" "100" + "wide" "264" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "1" + "editable" "1" + "maxchars" "-1" + } + "PasswordEntry2" + { + "ControlName" "TextEntry" + "fieldName" "PasswordEntry2" + "xpos" "48" + "ypos" "160" + "wide" "264" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "textHidden" "1" + "editable" "1" + "maxchars" "-1" + } + "PasswordInfo" + { + "ControlName" "Label" + "fieldName" "PasswordInfo" + "xpos" "48" + "ypos" "20" + "wide" "400" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#WelcomeToSteamPasswordInfo" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + } + "PasswordLabel" + { + "ControlName" "Label" + "fieldName" "PasswordLabel" + "xpos" "48" + "ypos" "76" + "wide" "234" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#WelcomeToSteamPassword" + "textAlignment" "west" + "associate" "PasswordEntry1" + "dulltext" "0" + "brighttext" "0" + } + "RetypePasswordLabel" + { + "ControlName" "Label" + "fieldName" "RetypePasswordLabel" + "xpos" "48" + "ypos" "136" + "wide" "238" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#WelcomeToSteamRetypePassword" + "textAlignment" "west" + "associate" "PasswordEntry2" + "dulltext" "0" + "brighttext" "0" + } +} diff --git a/public/SubPanelWelcomeCreateNewAccountPrintDetails.res b/public/SubPanelWelcomeCreateNewAccountPrintDetails.res new file mode 100644 index 0000000..64d0eeb Binary files /dev/null and b/public/SubPanelWelcomeCreateNewAccountPrintDetails.res differ diff --git a/public/SubPanelWelcomeCreateNewAccountSecretQuestion.res b/public/SubPanelWelcomeCreateNewAccountSecretQuestion.res new file mode 100644 index 0000000..7a82f36 Binary files /dev/null and b/public/SubPanelWelcomeCreateNewAccountSecretQuestion.res differ diff --git a/public/SubPanelWelcomeCreatingAccount.res b/public/SubPanelWelcomeCreatingAccount.res new file mode 100644 index 0000000..8542778 --- /dev/null +++ b/public/SubPanelWelcomeCreatingAccount.res @@ -0,0 +1,20 @@ +"Steam/SubPanelWelcomeCreatingAc" +{ + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "50" + "ypos" "48" + "wide" "322" + "tall" "90" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#WelcomeAccountCreateProgressInfo2" + "textAlignment" "north-west" + "dulltext" "0" + } +} diff --git a/public/SubPanelWelcomeIntro.res b/public/SubPanelWelcomeIntro.res new file mode 100644 index 0000000..8a9cb48 --- /dev/null +++ b/public/SubPanelWelcomeIntro.res @@ -0,0 +1,117 @@ +"Public/SubPanelWelcomeIntro.res" +{ + "SubPanelWelcomeIntro" + { + "ControlName" "CSubPanelWelcomeIntro" + "fieldName" "SubPanelWelcomeIntro" + "xpos" "8" + "ypos" "48" + "wide" "416" + "tall" "377" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "infolabel" + { + "ControlName" "Label" + "fieldName" "infolabel" + "xpos" "58" + "ypos" "146" + "wide" "328" + "tall" "100" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#WelcomeToSteamInfo" + "textAlignment" "north-west" + "wrap" "0" + } + "CreateAccountButton" + { + "ControlName" "Button" + "fieldName" "CreateAccountButton" + "xpos" "70" + "ypos" "256" + "wide" "275" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#WelcomeToSteamCreateAccount" + "textAlignment" "west" + "wrap" "0" + "Command" "CreateNewAccount" + "Default" "0" + "selected" "0" + } + "LoginButton" + { + "ControlName" "Button" + "fieldName" "LoginButton" + "xpos" "70" + "ypos" "294" + "wide" "275" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#WelcomeToSteamLogin" + "textAlignment" "west" + "wrap" "0" + "Command" "Login" + "Default" "0" + "selected" "0" + } + "ValveLogo" + { + "ControlName" "ImagePanel" + "fieldName" "ValveLogo" + "xpos" "67" + "ypos" "353" + "wide" "98" + "tall" "30" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "resource/valve_logo_welcome" + "gradientVertical" "0" + "scaleImage" "0" + } + "BigLogo" + { + "ControlName" "ImagePanel" + "fieldName" "BigLogo" + "xpos" "11" + "ypos" "26" + "wide" "395" + "tall" "104" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "resource\steam_logo_big" + "gradientVertical" "0" + "scaleImage" "0" + } +} diff --git a/public/SubPanelWelcomeRetailIntro.res b/public/SubPanelWelcomeRetailIntro.res new file mode 100644 index 0000000..73837b1 --- /dev/null +++ b/public/SubPanelWelcomeRetailIntro.res @@ -0,0 +1,99 @@ +"Public/SubPanelWelcomeRetailIntro.res" +{ + "SubPanelWelcomeIntro" + { + "ControlName" "CSubPanelWelcomeIntro_Retail" + "fieldName" "SubPanelWelcomeIntro" + "xpos" "8" + "ypos" "28" + "wide" "416" + "tall" "362" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "infolabel" + { + "ControlName" "Label" + "fieldName" "infolabel" + "xpos" "16" + "ypos" "182" + "wide" "375" + "tall" "55" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RetailInfo" + "textAlignment" "north-west" + "wrap" "1" + } + "GameLogo" + { + "ControlName" "ImagePanel" + "fieldName" "GameLogo" + "xpos" "10" + "ypos" "4" + "wide" "392" + "tall" "165" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "public/splash" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "1" + } + "CreateRadio" + { + "ControlName" "RadioButton" + "fieldName" "CreateRadio" + "xpos" "13" + "ypos" "241" + "wide" "364" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_RetailChooseCreateNewAccount" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "1" + } + "LoginRadio" + { + "ControlName" "RadioButton" + "fieldName" "LoginRadio" + "xpos" "13" + "ypos" "265" + "wide" "364" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_RetailChooseLoginToExistingAccount" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "2" + } +} diff --git a/public/SupportQueryProgress.res b/public/SupportQueryProgress.res new file mode 100644 index 0000000..319b526 --- /dev/null +++ b/public/SupportQueryProgress.res @@ -0,0 +1,68 @@ +"Steam/SupportQueryProgress" +{ + "SupportQueryProgress" + { + "ControlName" "Frame" + "fieldName" "SupportQueryProgress" + "wide" "300" + "tall" "150" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "ProgressBar1" + { + "ControlName" "ProgressBar" + "fieldName" "ProgressBar1" + "xpos" "20" + "ypos" "79" + "wide" "260" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "progress" "0.0" + "variable" "progress" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "124" + "ypos" "115" + "wide" "64" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "Cancel" + "Command" "cancel" + "textAlignment" "west" + "default" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "28" + "ypos" "38" + "wide" "280" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "textAlignment" "west" + "dulltext" "1" + "wrap" "1" + } +} diff --git a/public/UseOfflineMode.res b/public/UseOfflineMode.res new file mode 100644 index 0000000..65ec818 --- /dev/null +++ b/public/UseOfflineMode.res @@ -0,0 +1,157 @@ +"Public/UseOfflineMode.res" +{ + "OfflineModDialog" + { + "ControlName" "CUseOfflineModeDialog" + "fieldName" "OfflineModDialog" + "xpos" "620" + "ypos" "432" + "wide" "360" + "tall" "308" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#SteamUI_OfflineMode_ErrorTitle" + } + "RetryButton" + { + "ControlName" "Button" + "fieldName" "RetryButton" + "xpos" "24" + "ypos" "224" + "wide" "150" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_OfflineMode_Retry" + "textAlignment" "west" + "wrap" "0" + "Command" "Retry" + "Default" "0" + } + "OfflineModeButton" + { + "ControlName" "Button" + "fieldName" "OfflineModeButton" + "xpos" "180" + "ypos" "224" + "wide" "150" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_OfflineMode_StartInOffline" + "textAlignment" "west" + "wrap" "0" + "Command" "Offline" + "Default" "0" + } + "QuitButton" + { + "ControlName" "Button" + "fieldName" "QuitButton" + "xpos" "266" + "ypos" "260" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_OfflineMode_Quit" + "textAlignment" "west" + "wrap" "0" + "Command" "Quit" + "Default" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "42" + "wide" "312" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#SteamUI_OfflineMode_CouldNotConnect" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "1" + } + "LabelAppearOffline" + { + "ControlName" "Label" + "fieldName" "LabelAppearOffline" + "xpos" "24" + "ypos" "76" + "wide" "312" + "tall" "84" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "" + "textAlignment" "north-west" + "wrap" "1" + } + "LabelChoose" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "24" + "ypos" "140" + "wide" "312" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#SteamUI_OfflineMode_Choose" + "textAlignment" "north-west" + "wrap" "1" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "24" + "ypos" "188" + "wide" "306" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_NetworkTroubleshootingTips" + "textAlignment" "west" + "wrap" "0" + "URLtext" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=11" + } +} diff --git a/public/UseOfflineModeChosen.res b/public/UseOfflineModeChosen.res new file mode 100644 index 0000000..7512294 --- /dev/null +++ b/public/UseOfflineModeChosen.res @@ -0,0 +1,100 @@ +"Public/UseOfflineModeChosen.res" +{ + "OfflineModDialog" + { + "ControlName" "CUseOfflineModeDialog" + "fieldName" "OfflineModDialog" + "xpos" "620" + "ypos" "399" + "wide" "360" + "tall" "168" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#SteamUI_OfflineMode_Title" + } + "RetryButton" + { + "ControlName" "Button" + "fieldName" "RetryButton" + "xpos" "24" + "ypos" "110" + "wide" "150" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_OfflineMode_GoOnlineButton" + "textAlignment" "west" + "wrap" "0" + "Command" "Retry" + "Default" "0" + } + "OfflineModeButton" + { + "ControlName" "Button" + "fieldName" "OfflineModeButton" + "xpos" "180" + "ypos" "110" + "wide" "150" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_OfflineMode_StartInOffline" + "textAlignment" "west" + "wrap" "0" + "Command" "Offline" + "Default" "0" + } + "QuitButton" + { + "ControlName" "Button" + "fieldName" "QuitButton" + "xpos" "266" + "ypos" "260" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_OfflineMode_Quit" + "textAlignment" "west" + "wrap" "0" + "Command" "Quit" + "Default" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "42" + "wide" "320" + "tall" "66" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#SteamUI_OfflineMode_ChosenOffline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "1" + } +} diff --git a/public/VACBanDialog.res b/public/VACBanDialog.res new file mode 100644 index 0000000..7e42981 --- /dev/null +++ b/public/VACBanDialog.res @@ -0,0 +1,134 @@ +"public/VACBanDialog.res" +{ + "VACBanDialog" + { + "ControlName" "CVACBanDialog" + "fieldName" "VACBanDialog" + "xpos" "600" + "ypos" "446" + "wide" "400" + "tall" "308" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + "title" "#VAC_BanNotification" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "288" + "ypos" "266" + "wide" "84" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#vgui_close" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "1" + } + "BannedGamesList" + { + "ControlName" "RichText" + "fieldName" "BannedGamesList" + "xpos" "10" + "ypos" "163" + "wide" "380" + "tall" "71" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "maxchars" "-1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "10" + "ypos" "66" + "wide" "280" + "tall" "58" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#VAC_YourAccountBanned" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "font" "Default" + "wrap" "1" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "10" + "ypos" "38" + "wide" "270" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#VAC_AccountBanned" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "1" + "font" "UiHeadline" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "10" + "ypos" "138" + "wide" "280" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#VAC_GamesAffected" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "10" + "ypos" "238" + "wide" "280" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#VAC_ForDetails" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "URLText" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=370" + } +} + \ No newline at end of file diff --git a/public/WelcomeAccountCreateProgress.res b/public/WelcomeAccountCreateProgress.res new file mode 100644 index 0000000..02eead0 --- /dev/null +++ b/public/WelcomeAccountCreateProgress.res @@ -0,0 +1,50 @@ +"Steam/WelcomeAccountCreateProgr" +{ + "AccountCreateProgressDialog" + { + "ControlName" "Frame" + "fieldName" "AccountCreateProgressDialog" + "wide" "300" + "tall" "94" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "FakeButton" + { + "ControlName" "Button" + "fieldName" "FakeButton" + "xpos" "-100" + "ypos" "-100" + "wide" "64" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "labelText" "Cancel" + "textAlignment" "west" + "default" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "28" + "ypos" "38" + "wide" "240" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "" + "textAlignment" "west" + "dulltext" "1" + "wrap" "1" + } +} diff --git a/public/ppasubpanel.res b/public/ppasubpanel.res new file mode 100644 index 0000000..b62aebe --- /dev/null +++ b/public/ppasubpanel.res @@ -0,0 +1,87 @@ +"public/ppasubpanel.res" +{ + "PPASubPanel" + { + "ControlName" "CSSASubPanel" + "fieldName" "PPASubPanel" + "xpos" "8" + "ypos" "28" + "wide" "462" + "tall" "500" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "SSA" + { + "ControlName" "SSAHTML" + "fieldName" "SSA" + "xpos" "16" + "ypos" "16" + "wide" "431" + "tall" "400" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "AgreeCheck" + { + "ControlName" "Label" + "fieldName" "AgreeCheck" + "xpos" "16" + "ypos" "440" + "wide" "385" + "tall" "48" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#SteamUI_SSA_Agree" + "textAlignment" "west" + "wrap" "1" + style="important" + } + "Print" + { + "ControlName" "URLLabel" + "fieldName" "PrintLink" + "xpos" "16" + "ypos" "475" + "wide" "180" + "tall" "48" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ClickToPrint" + "textAlignment" "West" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + "URLText" "" + } + + styles + { + + Important + { + font-family=basefont + font-size=14 + font-weight=400 + textcolor="Text" + } + } +} \ No newline at end of file diff --git a/public/psnaccountsetupdialog.res b/public/psnaccountsetupdialog.res new file mode 100644 index 0000000..2c6f410 --- /dev/null +++ b/public/psnaccountsetupdialog.res @@ -0,0 +1,77 @@ +"public/psnaccountsetupdialog.res" +{ + "PSNAccountSetupDialog" + { + "ControlName" "CPSNAccountSetupDialog" + "fieldName" "PSNAccountSetupDialog" + "xpos" "610" + "ypos" "519" + "wide" "1010" + "tall" "700" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_PSNAccountSetup_Title" + } + + "HTMLPage" + { + "ControlName" "HTML" + "fieldName" "HTMLPage" + "xpos" "8" + "ypos" "48" + "wide" "994" + "tall" "587" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + + "BgRect" + { + "ControlName" "ImagePanel" + "fieldName" "BgRect" + "xpos" "12" + "ypos" "52" + "zpos" "-1" + "wide" "624" + "tall" "536" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "PropertySheetBorder" + "gradientVertical" "0" + "scaleImage" "0" + } + + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "910" + "ypos" "654" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } +} diff --git a/public/ssadialog.res b/public/ssadialog.res new file mode 100644 index 0000000..2984d03 --- /dev/null +++ b/public/ssadialog.res @@ -0,0 +1,132 @@ +"public/ssadialog.res" +{ + "SSADialog" + { + "ControlName" "CSSADialog" + "fieldName" "SSADialog" + "xpos" "8" + "ypos" "28" + "wide" "482" + "tall" "515" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + + "SSA" + { + "ControlName" "SSAHTML" + "fieldName" "SSA" + "xpos" "16" + "ypos" "30" + "wide" "451" + "tall" "365" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + + "AgreeLabel" + { + "ControlName" "Label" + "fieldName" "AgreeLabel" + "xpos" "16" + "ypos" "405" + "wide" "385" + "tall" "48" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#SteamUI_SSA_Agree" + "textAlignment" "west" + "wrap" "1" + "style" "important" + } + + "Print" + { + "ControlName" "URLLabel" + "fieldName" "PrintLink" + "xpos" "16" + "ypos" "440" + "wide" "180" + "tall" "48" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ClickToPrint" + "textAlignment" "West" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + "URLText" "" + } + + "AgreeButtom" + { + "ControlName" "Button" + "fieldName" "AgreeButton" + "xpos" "265" + "ypos" "480" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "labelText" "#Steam_Legal_SSANext" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "Command" "agree" + "Default" "0" + } + + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "365" + "ypos" "480" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "labelText" "#Steam_Legal_SSADisagree" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "Command" "close" + "Default" "0" + } + + styles + { + + Important + { + font-family=basefont + font-size=14 + font-weight=400 + textcolor="Text" + } + } +} diff --git a/public/ssasubpanel.res b/public/ssasubpanel.res new file mode 100644 index 0000000..6efc877 --- /dev/null +++ b/public/ssasubpanel.res @@ -0,0 +1,87 @@ +"public/ssasubpanel.res" +{ + "SSASubPanel" + { + "ControlName" "CSSASubPanel" + "fieldName" "SSASubPanel" + "xpos" "8" + "ypos" "28" + "wide" "462" + "tall" "500" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "SSA" + { + "ControlName" "SSAHTML" + "fieldName" "SSA" + "xpos" "16" + "ypos" "16" + "wide" "431" + "tall" "400" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "AgreeCheck" + { + "ControlName" "Label" + "fieldName" "AgreeCheck" + "xpos" "16" + "ypos" "440" + "wide" "385" + "tall" "48" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#SteamUI_SSA_Agree" + "textAlignment" "west" + "wrap" "1" + style="important" + } + "Print" + { + "ControlName" "URLLabel" + "fieldName" "PrintLink" + "xpos" "16" + "ypos" "475" + "wide" "180" + "tall" "48" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ClickToPrint" + "textAlignment" "West" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + "URLText" "" + } + + styles + { + + Important + { + font-family=basefont + font-size=14 + font-weight=400 + textcolor="Text" + } + } +} diff --git a/public/steam_offline.ico b/public/steam_offline.ico new file mode 100644 index 0000000..d69e2b0 Binary files /dev/null and b/public/steam_offline.ico differ diff --git a/public/steam_offline.tga b/public/steam_offline.tga new file mode 100644 index 0000000..f90bd88 Binary files /dev/null and b/public/steam_offline.tga differ diff --git a/public/steam_offline_posix.tga b/public/steam_offline_posix.tga new file mode 100644 index 0000000..f90bd88 Binary files /dev/null and b/public/steam_offline_posix.tga differ diff --git a/public/steam_tray.ico b/public/steam_tray.ico new file mode 100644 index 0000000..d69e2b0 Binary files /dev/null and b/public/steam_tray.ico differ diff --git a/public/steam_tray.tga b/public/steam_tray.tga new file mode 100644 index 0000000..f90bd88 Binary files /dev/null and b/public/steam_tray.tga differ diff --git a/public/steam_tray_48.tga b/public/steam_tray_48.tga new file mode 100644 index 0000000..f90bd88 Binary files /dev/null and b/public/steam_tray_48.tga differ diff --git a/public/steam_tray_posix.tga b/public/steam_tray_posix.tga new file mode 100644 index 0000000..f90bd88 Binary files /dev/null and b/public/steam_tray_posix.tga differ diff --git a/public/steam_updating.ico b/public/steam_updating.ico new file mode 100644 index 0000000..d69e2b0 Binary files /dev/null and b/public/steam_updating.ico differ diff --git a/public/steam_updating.tga b/public/steam_updating.tga new file mode 100644 index 0000000..f90bd88 Binary files /dev/null and b/public/steam_updating.tga differ diff --git a/public/steam_updating_posix.tga b/public/steam_updating_posix.tga new file mode 100644 index 0000000..f90bd88 Binary files /dev/null and b/public/steam_updating_posix.tga differ diff --git a/public/subpanelchoosedefaultcachedir.res b/public/subpanelchoosedefaultcachedir.res new file mode 100644 index 0000000..0fbf3d1 Binary files /dev/null and b/public/subpanelchoosedefaultcachedir.res differ diff --git a/resource/0_star.png b/resource/0_star.png new file mode 100644 index 0000000..d11642f Binary files /dev/null and b/resource/0_star.png differ diff --git a/resource/1_star.png b/resource/1_star.png new file mode 100644 index 0000000..2d7f3a0 Binary files /dev/null and b/resource/1_star.png differ diff --git a/resource/2_star.png b/resource/2_star.png new file mode 100644 index 0000000..e46843b Binary files /dev/null and b/resource/2_star.png differ diff --git a/resource/3_star.png b/resource/3_star.png new file mode 100644 index 0000000..af58576 Binary files /dev/null and b/resource/3_star.png differ diff --git a/resource/4_star.png b/resource/4_star.png new file mode 100644 index 0000000..855d645 Binary files /dev/null and b/resource/4_star.png differ diff --git a/resource/5_star.png b/resource/5_star.png new file mode 100644 index 0000000..f63e576 Binary files /dev/null and b/resource/5_star.png differ diff --git a/resource/CreateTokenDialog.res b/resource/CreateTokenDialog.res new file mode 100644 index 0000000..52c4fe7 --- /dev/null +++ b/resource/CreateTokenDialog.res @@ -0,0 +1,137 @@ +"Resource/CreateTokenDialog.res" +{ + "CreateTokenDialog" + { + "ControlName" "Frame" + "fieldName" "CreateTokenDialog" + "xpos" "198" + "ypos" "194" + "wide" "502" + "tall" "334" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "SkipButton" + { + "ControlName" "Button" + "fieldName" "SkipButton" + "xpos" "174" + "ypos" "298" + "wide" "88" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "3" + "labelText" "&Skip Token" + "textAlignment" "center" + "command" "SkipToken" + "default" "0" + } + "TokenName" + { + "ControlName" "TextEntry" + "fieldName" "TokenName" + "xpos" "16" + "ypos" "80" + "wide" "460" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + } + "TokenValue" + { + "ControlName" "TextEntry" + "fieldName" "TokenValue" + "xpos" "18" + "ypos" "132" + "wide" "460" + "tall" "120" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + } + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "380" + "ypos" "298" + "wide" "88" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "labelText" "&Cancel" + "textAlignment" "center" + "command" "Close" + "default" "0" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "278" + "ypos" "298" + "wide" "88" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "labelText" "&OK" + "textAlignment" "center" + "command" "OK" + "default" "1" + } + "TokenNameLabel" + { + "ControlName" "Label" + "fieldName" "TokenNameLabel" + "xpos" "16" + "ypos" "60" + "wide" "460" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "Token Name" + "textAlignment" "west" + } + "TokenValueLabel" + { + "ControlName" "Label" + "fieldName" "TokenValueLabel" + "xpos" "18" + "ypos" "112" + "wide" "460" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "Token Value" + "textAlignment" "west" + } +} diff --git a/resource/EasyNotification.res b/resource/EasyNotification.res new file mode 100644 index 0000000..c2cf9b7 --- /dev/null +++ b/resource/EasyNotification.res @@ -0,0 +1,39 @@ +"resource/EasyNotification.res" +{ + "EasyNotification" + { + "ControlName" "EasyNotification" + "fieldName" "EasyNotification" + "xpos" "0" + "ypos" "0" + "wide" "300" + "tall" "100" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "" + style="notification" + } + "LabelBody" + { + "ControlName" "Label" + "fieldName" "LabelBody" + "xpos" "15" + "ypos" "30" + "wide" "275" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "" + "textAlignment" "west" + "wrap" "1" + } +} diff --git a/resource/EditTokenDialog.res b/resource/EditTokenDialog.res new file mode 100644 index 0000000..33565fe Binary files /dev/null and b/resource/EditTokenDialog.res differ diff --git a/resource/FileCopyDialog.res b/resource/FileCopyDialog.res new file mode 100644 index 0000000..8abae16 --- /dev/null +++ b/resource/FileCopyDialog.res @@ -0,0 +1,91 @@ +"resource/FileCopyDialog.res" +{ + "FileCopyDialog" + { + "ControlName" "FileCopyDialog" + "fieldName" "FileCopyDialog" + "xpos" "735" + "ypos" "495" + "wide" "450" + "tall" "150" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#vgui_FileCopyDialog_Title" + } + "ProgressBar" + { + "ControlName" "ProgressBar" + "fieldName" "ProgressBar" + "xpos" "10" + "ypos" "71" + "wide" "430" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "progress" "0.736379" + } + "StatusLabel" + { + "ControlName" "Label" + "fieldName" "StatusLabel" + "xpos" "9" + "ypos" "44" + "wide" "430" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "Copying 'u:\temp\time again.avi'" + "textAlignment" "west" + "wrap" "0" + } + "EstimateLabel" + { + "ControlName" "Label" + "fieldName" "EstimateLabel" + "xpos" "13" + "ypos" "98" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" " remaining" + "textAlignment" "west" + "wrap" "0" + } + "Cancel" + { + "ControlName" "Button" + "fieldName" "Cancel" + "xpos" "204" + "ypos" "121" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_Cancel" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } +} diff --git a/resource/FileCopyOverwritePrompt.res b/resource/FileCopyOverwritePrompt.res new file mode 100644 index 0000000..bb1f6a1 --- /dev/null +++ b/resource/FileCopyOverwritePrompt.res @@ -0,0 +1,114 @@ +"resource/FileCopyOverwritePrompt.res" +{ + "FileOverwritePrompt" + { + "ControlName" "FileOverwritePrompt" + "fieldName" "FileOverwritePrompt" + "xpos" "760" + "ypos" "505" + "wide" "400" + "tall" "130" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#vgui_FileCopy_Ovewwrite_Title" + } + "yesall" + { + "ControlName" "Button" + "fieldName" "yesall" + "xpos" "60" + "ypos" "80" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_YesAll" + "textAlignment" "west" + "wrap" "0" + "Default" "1" + } + "yes" + { + "ControlName" "Button" + "fieldName" "yes" + "xpos" "130" + "ypos" "80" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_Yes" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "no" + { + "ControlName" "Button" + "fieldName" "no" + "xpos" "200" + "ypos" "80" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_No" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "noall" + { + "ControlName" "Button" + "fieldName" "noall" + "xpos" "270" + "ypos" "80" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_NoAll" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "prompt" + { + "ControlName" "Label" + "fieldName" "prompt" + "xpos" "10" + "ypos" "43" + "wide" "382" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_FileCopy_Ovewwrite_Prompt" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/resource/FileOpenDialog.res b/resource/FileOpenDialog.res new file mode 100644 index 0000000..c7cb37f --- /dev/null +++ b/resource/FileOpenDialog.res @@ -0,0 +1,228 @@ +"resource/FileOpenDialog.res" +{ + "FileOpenDialog" + { + "ControlName" "FileOpenDialog" + "fieldName" "FileOpenDialog" + "xpos" "594" + "ypos" "350" + "wide" "731" + "tall" "440" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + } + "FullPathEdit" + { + "ControlName" "ComboBox" + "fieldName" "FullPathEdit" + "xpos" "120" + "ypos" "45" + "wide" "539" + "tall" "24" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "FileList" + { + "ControlName" "CFileOpenListPanel" + "fieldName" "FileList" + "xpos" "10" + "ypos" "77" + "wide" "710" + "tall" "278" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "FileNameEdit" + { + "ControlName" "FileCompletionEdit" + "fieldName" "FileNameEdit" + "xpos" "120" + "ypos" "361" + "wide" "500" + "tall" "24" + "AutoResize" "1" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "FileTypeCombo" + { + "ControlName" "ComboBox" + "fieldName" "FileTypeCombo" + "xpos" "120" + "ypos" "391" + "wide" "500" + "tall" "24" + "AutoResize" "1" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "OpenButton" + { + "ControlName" "Button" + "fieldName" "OpenButton" + "xpos" "628" + "ypos" "361" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#FileOpenDialog_Open" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "628" + "ypos" "391" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#FileOpenDialog_Cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "CloseModal" + "Default" "0" + } + "FolderUpButton" + { + "ControlName" "Button" + "fieldName" "FolderUpButton" + "xpos" "665" + "ypos" "45" + "tooltiptext" "#FileOpenDialog_ToolTip_Up" + "wide" "24" + "tall" "24" + "AutoResize" "0" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "center" + "wrap" "0" + "Default" "0" + } + "NewFolderButton" + { + "ControlName" "Button" + "fieldName" "NewFolderButton" + "xpos" "695" + "ypos" "45" + "tooltiptext" "#FileOpenDialog_ToolTip_NewFolder" + "wide" "24" + "tall" "24" + "AutoResize" "0" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "center" + "wrap" "0" + "Default" "0" + } + "LookInLabel" + { + "ControlName" "Label" + "fieldName" "LookInLabel" + "xpos" "10" + "ypos" "45" + "wide" "55" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#FileOpenDialog_Look_in" + "textAlignment" "west" + "associate" "FullPathEdit" + "wrap" "0" + } + "FileNameLabel" + { + "ControlName" "Label" + "fieldName" "FileNameLabel" + "xpos" "10" + "ypos" "361" + "wide" "120" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#FileOpenDialog_File_Name" + "textAlignment" "west" + "associate" "FileNameEdit" + "wrap" "0" + } + "FileTypeLabel" + { + "ControlName" "Label" + "fieldName" "FileTypeLabel" + "xpos" "10" + "ypos" "391" + "wide" "120" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#FileOpenDialog_File_Type" + "textAlignment" "west" + "associate" "FileTypeCombo" + "wrap" "0" + } +} diff --git a/resource/LocalizationDialog.res b/resource/LocalizationDialog.res new file mode 100644 index 0000000..6ca41ce Binary files /dev/null and b/resource/LocalizationDialog.res differ diff --git a/resource/RemoteClientConnectionNotification.res b/resource/RemoteClientConnectionNotification.res new file mode 100644 index 0000000..ddb41e6 --- /dev/null +++ b/resource/RemoteClientConnectionNotification.res @@ -0,0 +1,110 @@ +"resource/RemoteClientConnectionNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + "RemoteClientConnectionNotification" + { + "ControlName" "CRemoteClientConnectionNotification" + "fieldName" "RemoteClientConnectionNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "74" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "style" "Notification" + } + + "MachineImageConnected" + { + "ControlName" "ImagePanel" + "fieldName" "MachineImageConnected" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "238" + "tall" "72" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + "image" "graphics/stream_notification" + } + + "MachineImageDisconnected" + { + "ControlName" "ImagePanel" + "fieldName" "MachineImageConnected" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "238" + "tall" "72" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + "image" "graphics/stream_disconnect_notification" + } + + "LabelStreaming" + { + "ControlName" "Label" + "fieldName" "LabelStreaming" + "style" "NotifyRemoteClientTitle" + "xpos" "64" + "ypos" "26" + "zpos" "2" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Notification_RemoteClientTitle" + "textAlignment" "north-west" + "wrap" "1" + } + + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "style" "NotifyRemoteClientInfo" + "xpos" "64" + "ypos" "44" + "zpos" "2" + "wide" "172" + "tall" "28" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Notification_RemoteClientConnected" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/resource/SMPStatsDialog.res b/resource/SMPStatsDialog.res new file mode 100644 index 0000000..56a65cc --- /dev/null +++ b/resource/SMPStatsDialog.res @@ -0,0 +1,191 @@ +"resource/SMPStatsDialog.res" +{ + "smp stats frame" + { + "ControlName" "Frame" + "fieldName" "smp stats frame" + "xpos" "842" + "ypos" "223" + "wide" "320" + "tall" "535" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#SMPStats_DialogTitle" + + "question text" + { + "ControlName" "TextEntry" + "fieldName" "question text" + "xpos" "8" + "ypos" "48" + "wide" "304" + "tall" "160" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + "text" "#SmpStats_PrivacyNotice" + "multiline" "1" + } + "uid label" + { + "ControlName" "Label" + "fieldName" "uid label" + "xpos" "8" + "ypos" "216" + "wide" "60" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SMPStats_UserId" + "textAlignment" "west" + "wrap" "0" + } + "uid text" + { + "ControlName" "TextEntry" + "fieldName" "uid text" + "xpos" "70" + "ypos" "216" + "wide" "242" + "tall" "20" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "file label" + { + "ControlName" "Label" + "fieldName" "file label" + "xpos" "9" + "ypos" "243" + "wide" "60" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SMPStats_Filename" + "textAlignment" "west" + "wrap" "0" + } + "file text" + { + "ControlName" "TextEntry" + "fieldName" "file text" + "xpos" "70" + "ypos" "243" + "wide" "242" + "tall" "20" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "data panel" + { + "ControlName" "ListPanel" + "fieldName" "data panel" + "xpos" "8" + "ypos" "272" + "wide" "303" + "tall" "190" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "dontask check" + { + "ControlName" "CheckButton" + "fieldName" "dontask check" + "xpos" "8" + "ypos" "472" + "wide" "242" + "tall" "20" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SMPStats_DontAskAgain" + "selected" "1" + } + "accept button" + { + "ControlName" "Button" + "fieldName" "accept button" + "xpos" "32" + "ypos" "497" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_Accept" + "textAlignment" "west" + "wrap" "0" + "Command" "accept" + "Default" "1" + } + "decline button" + { + "ControlName" "Button" + "fieldName" "decline button" + "xpos" "222" + "ypos" "497" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_Decline" + "textAlignment" "west" + "wrap" "0" + "Command" "decline" + "Default" "0" + } + } +} diff --git a/resource/SharedLibraryNotification.res b/resource/SharedLibraryNotification.res new file mode 100644 index 0000000..becee17 --- /dev/null +++ b/resource/SharedLibraryNotification.res @@ -0,0 +1,76 @@ +"resource/SharedLibraryNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + "SharedLibraryNotification" + { + "ControlName" "SharedLibraryNotification" + "fieldName" "SharedLibraryNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "75" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "16" + "ypos" "16" + "wide" "42" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "xpos" "64" + "ypos" "16" + "wide" "172" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_InGameNotification_Info" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + } + + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } +} diff --git a/resource/StreamingClientConnectionNotification.res b/resource/StreamingClientConnectionNotification.res new file mode 100644 index 0000000..2d9779e --- /dev/null +++ b/resource/StreamingClientConnectionNotification.res @@ -0,0 +1,110 @@ +"resource/StreamingClientConnectionNotification.res" +{ + styles + { + Label + { + font-size=14 [$LINUX] + font-size=16 + } + } + + "StreamingClientConnectionNotification" + { + "ControlName" "CStreamingClientConnectionNotification" + "fieldName" "StreamingClientConnectionNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "74" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "style" "Notification" + } + + "MachineImageConnected" + { + "ControlName" "ImagePanel" + "fieldName" "MachineImageConnected" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "238" + "tall" "72" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + "image" "graphics/stream_notification" + } + + "MachineImageDisconnected" + { + "ControlName" "ImagePanel" + "fieldName" "MachineImageConnected" + "xpos" "1" + "ypos" "1" + "zpos" "1" + "wide" "238" + "tall" "72" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + "image" "graphics/stream_disconnect_notification" + } + + "LabelStreaming" + { + "ControlName" "Label" + "fieldName" "LabelStreaming" + "style" "NotifyStreamingClientTitle" + "xpos" "64" + "ypos" "26" + "zpos" "2" + "wide" "172" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Notification_StreamingTitle" + "textAlignment" "north-west" + "wrap" "1" + } + + "LabelInfo" + { + "ControlName" "Label" + "fieldName" "LabelInfo" + "style" "NotifyStreamingClientInfo" + "xpos" "64" + "ypos" "44" + "zpos" "2" + "wide" "172" + "tall" "28" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Notification_StreamingStarted" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/resource/battery_border.tga b/resource/battery_border.tga new file mode 100644 index 0000000..833c557 Binary files /dev/null and b/resource/battery_border.tga differ diff --git a/resource/battery_bright.tga b/resource/battery_bright.tga new file mode 100644 index 0000000..e4a63c9 Binary files /dev/null and b/resource/battery_bright.tga differ diff --git a/resource/battery_dim.tga b/resource/battery_dim.tga new file mode 100644 index 0000000..8f70779 Binary files /dev/null and b/resource/battery_dim.tga differ diff --git a/resource/dlc_generic_header.tga b/resource/dlc_generic_header.tga new file mode 100644 index 0000000..e8c85a9 Binary files /dev/null and b/resource/dlc_generic_header.tga differ diff --git a/resource/dlc_installed.png b/resource/dlc_installed.png new file mode 100644 index 0000000..83d982c Binary files /dev/null and b/resource/dlc_installed.png differ diff --git a/resource/dlc_overlay.png b/resource/dlc_overlay.png new file mode 100644 index 0000000..c4e833d Binary files /dev/null and b/resource/dlc_overlay.png differ diff --git a/resource/fonts/marlett.ttf b/resource/fonts/marlett.ttf new file mode 100644 index 0000000..2231efb Binary files /dev/null and b/resource/fonts/marlett.ttf differ diff --git a/resource/icon_blank.tga b/resource/icon_blank.tga new file mode 100644 index 0000000..6954993 Binary files /dev/null and b/resource/icon_blank.tga differ diff --git a/resource/icon_clear_field.tga b/resource/icon_clear_field.tga new file mode 100644 index 0000000..3070456 Binary files /dev/null and b/resource/icon_clear_field.tga differ diff --git a/resource/icon_error_red.tga b/resource/icon_error_red.tga new file mode 100644 index 0000000..4e27429 Binary files /dev/null and b/resource/icon_error_red.tga differ diff --git a/resource/icon_file.tga b/resource/icon_file.tga new file mode 100644 index 0000000..1c80c5c Binary files /dev/null and b/resource/icon_file.tga differ diff --git a/resource/icon_folder.tga b/resource/icon_folder.tga new file mode 100644 index 0000000..782b108 Binary files /dev/null and b/resource/icon_folder.tga differ diff --git a/resource/icon_folder_selected.tga b/resource/icon_folder_selected.tga new file mode 100644 index 0000000..782b108 Binary files /dev/null and b/resource/icon_folder_selected.tga differ diff --git a/resource/icon_folderup.tga b/resource/icon_folderup.tga new file mode 100644 index 0000000..e117e2f Binary files /dev/null and b/resource/icon_folderup.tga differ diff --git a/resource/icon_gift.tga b/resource/icon_gift.tga new file mode 100644 index 0000000..4c417be Binary files /dev/null and b/resource/icon_gift.tga differ diff --git a/resource/icon_info.tga b/resource/icon_info.tga new file mode 100644 index 0000000..3312947 Binary files /dev/null and b/resource/icon_info.tga differ diff --git a/resource/icon_newfolder.tga b/resource/icon_newfolder.tga new file mode 100644 index 0000000..d25020b Binary files /dev/null and b/resource/icon_newfolder.tga differ diff --git a/resource/icon_password.tga b/resource/icon_password.tga new file mode 100644 index 0000000..ca8f8ae Binary files /dev/null and b/resource/icon_password.tga differ diff --git a/resource/icon_trade_request.tga b/resource/icon_trade_request.tga new file mode 100644 index 0000000..09f409e Binary files /dev/null and b/resource/icon_trade_request.tga differ diff --git a/resource/icon_warning.tga b/resource/icon_warning.tga new file mode 100644 index 0000000..15eeacf Binary files /dev/null and b/resource/icon_warning.tga differ diff --git a/resource/icon_warning_yellow.tga b/resource/icon_warning_yellow.tga new file mode 100644 index 0000000..457075b Binary files /dev/null and b/resource/icon_warning_yellow.tga differ diff --git a/resource/invite.tga b/resource/invite.tga new file mode 100644 index 0000000..73f8e85 Binary files /dev/null and b/resource/invite.tga differ diff --git a/resource/layout/app_validation_dialog.layout b/resource/layout/app_validation_dialog.layout new file mode 100644 index 0000000..5584fc6 --- /dev/null +++ b/resource/layout/app_validation_dialog.layout @@ -0,0 +1,29 @@ +"resource/layout/app_validation_dialog.layout" +{ + controls + { + app_validation_dialog { wide=360 tall=216 } + + Label1 { controlname=label labelText="#Steam_ValidatingSteamCaches" } + ProgressBar1 { controlname=ProgressBar variable=progress } + Button1 { controlname=Button labelText="#vgui_Cancel" Command="Close" selected=0 } + + } + + colors + { + } + + styles + { + + } + + + layout + { + place { controls=Label1 x=20 y=80 width=320 height=24 } + place { controls=ProgressBar1 x=20 y=110 width=320 height=24 } + place { controls=Button1 x=254 y=176 width=88 height=24 } + } +} diff --git a/resource/layout/appdownloadpanel.layout b/resource/layout/appdownloadpanel.layout new file mode 100644 index 0000000..1f04a4a --- /dev/null +++ b/resource/layout/appdownloadpanel.layout @@ -0,0 +1,288 @@ +"resource/layout/appdownloadpanel.layout" +{ + controls + { + // this just sets the height + appdownloadpanel { tall="110" style=panelStyle } + + // image + spacer { controlname="Panel" } + gameimage { controlname="ImagePanel" zpos="1" style="gameImagePanel" } // set the initial size on on the gameimage; it's loaded async, so it may not know the image size immediately + workshopbanner { controlname="ImagePanel" zpos="2" image="resource/workshop_minibanner" } + + // left-mid column + namelabel { controlname="Label" labelText="#steam_downloads_gamename" style="ModuleHeading" } + dashlabel { controlname="Label" labelText="" } + launchbutton { controlname="Button" style="DetailsLaunchButton" labelText="#Steam_LaunchGame" zpos="1" } + downloadprogressbar { controlname="ProgressBar" style="SlimProgressBar" barinset=0 continuous=1 group="ShowWhileDownloading" style="SlimProgressBar" } + settingslink { controlname="URLlabel" style="settingslink" } + + // right-mid column + downloadtotallabel { controlname="Label" labelText="#steam_downloads_gamesize_update" style="label2" } + downloadtotalfield { controlname="Label" labelText="%download_totals%" style="label" style="label" } + starttimelabel { controlname="Label" labelText="#steam_downloads_initiated" style=Label2 group="ShowWhileDownloading"} + starttimefield { controlname="Label" labelText="%time_started%" style=Label group="ShowWhileDownloading"} + timeremaininglabel { controlname="Label" labelText="#steam_downloads_timeremaining" style="label2" group="ShowWhileDownloading" } + timeremainingfield { controlname="Label" labelText="%time_remaining%" style="label" group="ShowWhileDownloading" } + timecompletedlabel { controlname="Label" labelText="#steam_downloads_timecompleted" style="label2" group="ShowWhenComplete" } + timecompletedfield { controlname="Label" labelText="%time_completed%" style="label" group="ShowWhenComplete" } + pausereasonlabel { controlname="Label" labelText="#steam_downloads_pausedreason" style="label2" group="ShowWhenPaused" } + pausereasonfield { controlname="Label" labelText="" style="label3" group="ShowWhenPaused" } + + + // right column + updatetypelabel { controlname="Label" labelText="#steam_downloads_suspended" style=ModuleHeading2 tooltiptext="" } + removefromqueuebutton { controlname="Button" style="SmRemoveButton" tooltiptext="#steam_downloads_remove" } + topofqueuebutton { controlname="Button" style="topOfQueueButton" tooltiptext="#steam_downloads_topofqueue" group="HideOnCompletion" } + newslink { controlname="URLlabel" style="links" labelText="#steam_downloads_updatenews" } + + + + } + + colors + { + } + + styles + { + panelStyle + { + render_bg + { + 1="fill( x0, y0+10, x1-10, y1, Root.RightCol)" + //1="fill( x0, y0+10, x1-10, y1, JackMyth.HalfTranslucent)" + } + + } + + panelStyleHighlight + { + render_bg + { + //0="fill(x0, y0+10, x1-10, y1+10, Root.TabBar)" + 0="fill( x0, y0+10, x1-10, y1, Root.RightCol)" + } + render + { + //Got some real nutty artifacting, just cover that up... + //1="fill(x0, y0, x1, y0+10, Root.Back)" + } + } + + links + { + font-style=normal + font-family=basefont + font-size=15 + } + + links:hover + { + textcolor=DefaultText.Hover + } + + links:disabled + { + textcolor=DefaultText.Disabled + } + + settingslink + { + font-style=normal + textcolor=DefaultText + font-family=basefont + font-size=15 + } + + settingslink:hover + { + textcolor=DefaultText.Hover + } + + settingslink:disabled + { + textcolor=DefaultText.Disabled + } + + rightcolumnlink:hover + { + textcolor=DefaultText.Hover + } + + + label2 + { + bgcolor=none + padding-top="0" + //font-style="uppercase" + textcolor=Root.SubLabel.Text + font-size=13 [$LINUX] + font-size=15 + } + + label3 + { + bgcolor=none + textcolor=DefaultText + padding-top="0" + //font-style="uppercase" + } + + ModuleHeading + { + font-family=semilight + bgcolor="none" + font-size=16 [$LINUX] + font-size=24 + padding-top "0" + font-weight "400" + } + + ModuleHeading2 + { + font-family=basefont + bgcolor="none" + font-size=14 [$LINUX] + font-size=18 + padding-top "0" + } + + panelBgColorActive + { + //bgcolor="clientbg" + } + + gameImagePanel + { + inset="0 0 0 0" + render_bg + { + } + render + { + + } + } + + gameImagePanelHighlight + { + inset="0 0 0 0" + bgcolor=none + render_bg + { + + } + padding "4" + } + + DetailsLaunchButton + { + inset="20 0 0 1" + font-family=basefont + font-weight=400 + textcolor=Accent.Text + //font-style=uppercase + bgcolor=Accent + + render + { + 1="image( x0 + 9, y0 + 7, x1, y1, graphics/Threshold/icons/play )" + } + render_bg {} + } + + DetailsLaunchButton:Hover + { + bgcolor=Accent.Hover + } + + DetailsLaunchButton:Selected + { + bgcolor=Accent.Hover + } + + + DetailsLaunchButton:Active + { + bgcolor=Accent.Hover + } + + DetailsLaunchButton:Disabled + { + bgcolor=Button.Disabled + textcolor=DefaultText + } + + topOfQueueButton + { + inset="4 0 0 0" + padding-left=0 + padding-right=0 + font-family=basefont + font-weight=400 + textcolor=DefaultText + //font-style=uppercase + image=graphics/Threshold/icons/queue + } + + SmRemoveButton + { + inset="5 0 0 0" + padding-left=0 + padding-right=0 + font-family=basefont + font-weight=400 + textcolor=DefaultText + //font-style=uppercase + image=graphics/Threshold/icons/close + } + + SlimProgressBar + { + render_bg + { + 0="fill( x0, y0, x1, y1, Progress.Back )" + } + render + { + } + } + } + + + layout + { + + + region { name="column1" x=0 width=200 } + region { name="column2" x=215 width=max} + region { name="column3" x=430 width=max margin-right=100} + region { name="column4" x=0 width=max overflow=allow-horizontal margin-right=10 } //Wierd x setting to account for smallest window size + region { name="bottom" region=column4 align=bottom height=47 margin-bottom=15 width=max } + + // left column + place { control="spacer" } + place { control="gameimage" margin-left=15 margin-top=30 width=184 height=69 } + place { control="workshopbanner" margin-left=15 margin-top=30 width=184 height=69 } + place { control="downloadprogressbar" start=gameimage dir=down width=184 height=5 } + + // left-mid column + place { control="namelabel" region=column2 margin-top=24 margin-left=0 } + place { control="launchbutton" region=column2 margin-top=53 height=32} + place { control="newslink" region=column2 align=bottom margin-bottom=15 } + place { control="settingslink" region=column2 start=newslink dir=right margin-left=15 margin-right=100} + + // right-mid column + place { control="downloadtotallabel,downloadtotalfield" region="column3" x=0 align=top margin-top=48 spacing=6 } + place { control="starttimelabel,starttimefield" region="column3" x=0 align=top margin-top=68 spacing=6 } + place { control="timecompletedlabel,timecompletedfield" region="column3" x=0 align=top margin-top=68 spacing=6 } + place { control="pausereasonlabel,pausereasonfield" region="column3" x=0 align=top margin-top=68 spacing=6 } + place { control="timeremaininglabel,timeremainingfield" region="column3" x=0 align=top margin-top=88 spacing=6 } + + // right column + place { control="updatetypelabel" region="column4" spacing=10 margin-top=40 align=right margin-right=15 } + place { control="topofqueuebutton,removefromqueuebutton" region="bottom" height=32 width=32 dir=right spacing=10 align=right margin-right=15 } + + } +} diff --git a/resource/layout/authorizelocaldevice.layout b/resource/layout/authorizelocaldevice.layout new file mode 100644 index 0000000..38eac27 --- /dev/null +++ b/resource/layout/authorizelocaldevice.layout @@ -0,0 +1,39 @@ +"resource/layout/authorizelocaldevice.layout" +{ + controls + { + DescriptionLabel { controlname=label labeltext=#Steam_DeviceAuth_AuthorizeDevice_Description wrap=1 } + DescriptionEntry { controlname=textentry } + + BorrowersLabel { controlname=label labeltext=#Steam_DeviceAuth_AuthorizeDevice_Borrowers wrap=1 } + BorrowersList { controlname=listpanel } + + SendButton { controlname=button labeltext=#Steam_DeviceAuth_AuthorizeDevice_Send command=AuthorizeLocalDevice } + CancelButton { controlname=button labeltext=#Steam_DeviceAuth_RequestDialog_Cancel command=Close } + + + + } + + styles + { + BigLable + { + textcolor=DefaultText + font-size=16 [$LINUX] + font-size=24 + } + } + + layout + { + place { control="DescriptionLabel" y=32 x=16 height=48 width=350 } + place { control="DescriptionEntry" y=65 x=16 height=24 width=350 } + + place { control="BorrowersLabel" y=104 x=16 height=48 width=350 } + place { control="BorrowersList" y=128 x=16 height=144 width=350 } + + place { control="SendButton" y=280 x=16 height=24 width=164} + place { control="CancelButton" y=280 x=200 height=24 width=164 } + } +} \ No newline at end of file diff --git a/resource/layout/backupwizard.layout b/resource/layout/backupwizard.layout new file mode 100644 index 0000000..69e2831 --- /dev/null +++ b/resource/layout/backupwizard.layout @@ -0,0 +1,11 @@ +¡°backupwizard.layout¡± +{ + styles + { + minimum-height=455 + render_bg + { + 0="image_scale(x0,y0,x1,y1,graphics\JackMyth\BackupWizard)" + } + } +} \ No newline at end of file diff --git a/resource/layout/broadcast_chatbanner.layout b/resource/layout/broadcast_chatbanner.layout new file mode 100644 index 0000000..480b1cc --- /dev/null +++ b/resource/layout/broadcast_chatbanner.layout @@ -0,0 +1,35 @@ +"resource/layout/broadcast_chatbanner.layout" +{ + controls + { + ChatLine0 { controlname=RichText style=ChatTextLine } + ChatLine1 { controlname=RichText style=ChatTextLine } + ChatLine2 { controlname=RichText style=ChatTextLine } + ChatLine3 { controlname=RichText style=ChatTextLine } + ChatLine4 { controlname=RichText style=ChatTextLine } + ChatLine5 { controlname=RichText style=ChatTextLine } + } + + colors + { + ChatTextLineBG = "0 0 0 80" + } + + styles + { + ChatTextLine + { + render + { + // nothing + } + + render_bg + { + 0="fill( x0, y0, x1, y1, ChatTextLineBG )" + } + } + } + + // layout is done in code +} \ No newline at end of file diff --git a/resource/layout/broadcast_firsttime.layout b/resource/layout/broadcast_firsttime.layout new file mode 100644 index 0000000..014229d --- /dev/null +++ b/resource/layout/broadcast_firsttime.layout @@ -0,0 +1,75 @@ +"friends/broadcast_firsttime.layout" +{ + colors + { + headercolor="122 155 230 255" + permissionheadercolor="205 205 205 255" + } + + controls + { + "Header" { controlname="Label" labeltext="#Broadcast_FirstTime_Header" style="IntroHeading" wrap="1" } + "ViewerRequest" { controlname="Label" labeltext="#Broadcast_FirstTime_ViewerRequest" group="intro" style="ViewerRequest" wrap="1" } + "PermissionHeader" { controlname="Label" labeltext="#Broadcast_FirstTime_Permissionheader" group="intro" style="PermissionHeader" } + "PermissionDisabled"{ controlname="RadioButton" labeltext="#Steam_Settings_Broadcast_Disabled" group="intro" style="PermissionOption" } + "PermissionAccept" { controlname="RadioButton" labeltext="#Steam_Settings_Broadcast_FriendsApprove" group="intro" style="PermissionOption" } + "PermissionFriends" { controlname="RadioButton" labeltext="#Steam_Settings_Broadcast_FriendsAllowed" group="intro" style="PermissionOption" } + "PermissionPublic" { controlname="RadioButton" labeltext="#Steam_Settings_Broadcast_FriendsPublic" group="intro" style="PermissionOption" } + "DesktopOnlyLabel" { controlname="Label" labeltext="#Broadcast_FirstTime_DesktopOnly" group="intro" wrap="1"} + "FAQLink" { controlname="URLLabel" labeltext="#Broadcast_FirstTime_FAQ" URLText="https://support.steampowered.com/kb_article.php?ref=6730-TOAK-6497"} + + "NextButton" { controlname="Button" labeltext="#Broadcast_FirstTime_OK" } + } + + styles + { + IntroHeading + { + font-family=basefont + bgcolor="none" + font-size=14 [$LINUX] + font-size=18 + textcolor=Accent + padding-top="0" + font-weight="500" + } + + PermissionHeader + { + font-size=14 [$LINUX] + font-size=16 + textcolor=DefaultText + } + + PermissionOption + { + textcolor=DefaultText.Hover + } + + ViewerRequest + { + textcolor=DefaultText + font-size=14 [$LINUX] + font-size=16 + } + + Label + { + font-size=12 [$LINUX] + font-size=14 + } + } + + layout + { + place { control="NextButton" align=bottom-right dir=right width=92 height=25 margin-right=20 margin-bottom=14 } + + place { control="Header" margin-left=20 margin-right=20 margin-top=40 margin-bottom=0 width=max } + place { start="Header" control="ViewerAvatar" width=50 height=50 dir=down margin-left=-4 margin-right=20 margin-top=6 } + place { start="ViewerAvatar" control="ViewerRequest" dir=right width=max margin-right=20 margin-top=10 } + place { start="ViewerAvatar" control="PermissionHeader" dir=down width=max margin-top=20 spacing=-4 } + place { start="PermissionHeader" control="PermissionDisabled,PermissionAccept,PermissionFriends,PermissionPublic" dir=down width=max margin-top=2 spacing=-6 } + place { start="PermissionPublic" control="DesktopOnlyLabel" width=max dir=down margin-top=20 margin-right=20 } + place { control="FAQLink" align=bottom margin-left=20 margin-bottom=18 } + } +} diff --git a/resource/layout/broadcast_livebanner.layout b/resource/layout/broadcast_livebanner.layout new file mode 100644 index 0000000..4521da6 --- /dev/null +++ b/resource/layout/broadcast_livebanner.layout @@ -0,0 +1,74 @@ +"resource/layout/broadcast_livebanner.layout" +{ + controls + { + BroadcastLiveBanner { wide=148 } + + LiveImage { controlname=ImagePanel image=graphics/broadcast/broadcast_live_grey tall=22 wide=67 } + MicrophoneImage { controlname=ImagePanel image=graphics/broadcast/icon_mic_disabled tall=22 wide=20 } + ViewersText { controlname=Label labeltext="%numviewers%" style="ViewersTextStyle" tall=22 } + ViewersImage { controlname=ImagePanel image=graphics/broadcast/icon_viewers tall=22 wide=20 } + RequestsText { controlname=Label labeltext="%numrequests%" style="ViewersTextStyle" tall=22 } + RequestsImage { controlname=ImagePanel image=graphics/broadcast/icon_requests.png tall=22 wide=20 } + DebugText { controlname=Label labeltext="#Overlay_Broadcast_Live_Debug" tall=16 } + DebugLine { controlname=Panel tall=24 wide=24 style="DebugLineStyleGreen" } + } + + colors + { + transparent_bg = "0 0 0 80" + black_bg = "0 0 0 255" + debug_green = "0 128 0 255" + debug_yellow = "128 128 0 255" + debug_red = "128 0 0 255" + } + + styles + { + ViewersTextStyle + { + font-size=15 [$LINUX] + font-size=20 + } + + LiveBannerStyleIngame + { + render_bg + { + // background fill + 0="fill( x0, y0, x1, y1, transparent_bg )" + } + } + + LiveBannerStyleDesktop + { + render_bg + { + // background fill + 0="fill( x0, y0, x1, y1, black_bg )" + } + } + + DebugLineStyleGreen + { + render_bg { 0="fill( x0, y0, x1, y1, debug_green )" } + } + + DebugLineStyleYellow + { + render_bg { 0="fill( x0, y0, x1, y1, debug_yellow )" } + } + + DebugLineStyleRed + { + render_bg { 0="fill( x0, y0, x1, y1, debug_red )" } + } + } + + layout + { + place { control="MicrophoneImage,LiveImage,RequestsImage,RequestsText,ViewersImage,ViewersText" align=right spacing=2 margin-right=4 } + place { control="DebugText" align=right spacing=4 margin-right=4 y=22 } + place { control="DebugLine" x=0 y=22 } + } +} diff --git a/resource/layout/broadcastview.layout b/resource/layout/broadcastview.layout new file mode 100644 index 0000000..2231920 --- /dev/null +++ b/resource/layout/broadcastview.layout @@ -0,0 +1,29 @@ +"resource/layout/broadcastview.layout" +{ + controls + { + closebutton { ControlName="Button" style="CloseButtonStyle" command="CloseBroadcastView" } + } + + styles + { + CloseButtonStyle + { + image="graphics/Threshold/icons/close" + inset="-6 0 0 0" + padding-left=0 + padding-right=0 + } + + CloseButtonStyle:Hover + { + image="graphics/Threshold/icons/close" + } + } + + layout + { + place { control=clickpanel width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 } + place { control=closebutton width=17 height=17 margin-top=2 margin-left=0 margin-right=4 margin-bottom=0 align=right } + } +} diff --git a/resource/layout/chattitlepanel.layout b/resource/layout/chattitlepanel.layout new file mode 100644 index 0000000..563b965 --- /dev/null +++ b/resource/layout/chattitlepanel.layout @@ -0,0 +1,47 @@ +"resource/layout/chattitlepanel.layout" +{ + controls + { + "AvatarImage" { ControlName="ImagePanel" } + "NameLabel" { ControlName="Label" } + "StatusLabel" { ControlName="Label" style="statuslabel" } + "LockImage" { ControlName="ImagePanel" } + "MenuButton" { ControlName= "CChatTitlePanelAffordance" style="menuButtonStyle"} + } + + styles + { + menuButtonStyle + { + //minimum-width=14 + padding-top=5 + padding-bottom=5 + padding-right=5 + padding-left=5 + } + + menuButtonStyle:hover + { + + render_bg { + //background + //0="fill( x0, y0, x1, y1, Button.Hover )" + } + } + + statuslabel + { + font-size=12 [$LINUX] + font-size=14 + } + + } + + layout + { + place { control="AvatarImage" x=2 y=7 align=left dir=right spacing=8 } + place { control="NameLabel,MenuButton" x=70 y=9 align=left dir=right spacing=0 } + place { control="LockImage" x=51 y=9 width=16} + place { control="StatusLabel" align=left x=50 y=28 } + } +} diff --git a/resource/layout/choosepurchaseorauthorization.layout b/resource/layout/choosepurchaseorauthorization.layout new file mode 100644 index 0000000..e93306a --- /dev/null +++ b/resource/layout/choosepurchaseorauthorization.layout @@ -0,0 +1,30 @@ +"resource/layout/requestdeviceauthorization.layout" +{ + controls + { + DialogTitle { controlname=label labeltext=#Steam_DeviceAuth_ChooseDialog_Title style=BigLable } + DialogText { controlname=label labeltext=#Steam_DeviceAuth_ChooseDialog_Text wrap=1 } + AuthorizationButton { controlname=button labeltext=#Steam_DeviceAuth_ChooseDialog_Request command=RequestAuthorization } + PurchaseGameButton { controlname=button labeltext=#Steam_DeviceAuth_ChooseDialog_Purchase command=PurchaseGame } + CancelButton { controlname=button labeltext=#Steam_DeviceAuth_ChooseDialog_Cancel command=Close } + } + + styles + { + BigLable + { + textcolor=DefaultText + font-size=16 [$LINUX] + font-size=24 + } + } + + layout + { + place { control="DialogTitle" y=24 x=16 height=24 width=360 } + place { control="DialogText" y=52 x=16 height=200 width=360 } + place { control="PurchaseGameButton" y=148 x=194 height=24 width=168 } + place { control="AuthorizationButton" y=148 x=16 height=24 width=168 } + place { control="CancelButton" y=180 x=194 height=24 width=168 } + } +} \ No newline at end of file diff --git a/resource/layout/cloud_conflict_dialog.layout b/resource/layout/cloud_conflict_dialog.layout new file mode 100644 index 0000000..073ca67 --- /dev/null +++ b/resource/layout/cloud_conflict_dialog.layout @@ -0,0 +1,135 @@ + +"resource/layout/cloud_conflict_dialog.layout" +{ + controls + { + CloudSyncConflictDialog + { + controlname=CSyncConflictDialog + } + TextIntro + { + controlname=label + labeltext="#Steam_CloudConflict_Text" + style=intro + wrap=1 + } + TextCloudFiles + { + controlname=label + labeltext="#Steam_CloudConflict_CloudFiles" + style=bold + } + TextCloudFilesTime + { + controlname=label + labeltext="#Steam_CloudConflict_CloudFiles_Time" + wrap=1 + style=text + } + TextLocalFiles + { + controlname=label + labeltext="#Steam_CloudConflict_LocalFiles" + style=bold + } + TextLocalFilesTime + { + controlname=label + labeltext="#Steam_CloudConflict_LocalFiles_Time" + wrap=1 + style=text + } + AcceptLocalButton + { + controlname=button + labeltext="#Steam_CloudConflict_Accept_Local" + } + AcceptRemoteButton + { + controlname=button + labeltext="#Steam_CloudConflict_Accept_Remote" + } + CancelButton + { + controlname=button + labeltext="#Steam_CloudConflict_Cancel" + } + TextCancelNote + { + controlname=label + labeltext="#Steam_CloudConflict_Note" + wrap=1 + } + WarningIcon { controlname=imagepanel image=graphics/cloud_uhoh } + CloudFilesIcon { controlname=imagepanel image=graphics/cloud_cloudfiles } + LocalFilesIcon { controlname=imagepanel image=graphics/cloud_localfiles } + UploadIcon { controlname=imagepanel image=graphics/cloud_icon_up style=arrows } + DownloadIcon { controlname=imagepanel image=graphics/cloud_icon_down style=arrows } + TopDivider { controlname=divider } + BottomDivider { controlname=divider } + } + + styles + { + intro + { + textcolor=DefaultText + font-size=14 [$LINUX] + font-size=16 + font-family=basefont + font-weight=700 + } + bold + { + textcolor=DefaultText + font-size=14 [$LINUX] + font-size=16 + font-family=basefont + font-weight=700 + //font-style=uppercase + } + text + { + textcolor=DefaultText.Hover + font-size=12 [$LINUX] + font-size=14 + } + arrows + { + inset="0 2 0 -2" + } + } + + layout + { + region { name=box margin-left=20 margin-right=20 margin-top=20 margin-bottom=20 } + + region { region=box name=intro margin-top=30 } + region { region=box name=cloud margin-top=130 } + region { region=box name=local margin-top=220 } + region { region=box name=cancel margin-top=310 } + + + place { region=intro control=WarningIcon x=20 y=0 } + place { region=intro controls=TextIntro x=165 y=10 width=310 height=80 } + place { region=intro controls=TopDivider y=80 width=max } + + place { region=cloud control=CloudFilesIcon x=0 y=0 } + place { region=cloud control=TextCloudFiles x=75 y=10 } + place { region=cloud control=TextCloudFilesTime x=75 y=35 width=max } + place { region=cloud controls=DownloadIcon x=200 y=8 } + place { region=cloud controls=AcceptRemoteButton x=225 y=8 width=max } + + place { region=local control=LocalFilesIcon x=0 y=0 } + place { region=local control=TextLocalFiles x=75 y=10 } + place { region=local control=TextLocalFilesTime x=75 y=35 width=max } + place { region=local controls=UploadIcon x=200 y=8 } + place { region=local controls=AcceptLocalButton x=225 y=8 width=max} + place { region=local controls=BottomDivider y=80 width=max } + + place { region=cancel control=CancelButton x=220 y=15 width=max } + place { region=cancel control=TextCancelNote x=220 y=40 width=max } + } + +} diff --git a/resource/layout/debugstats.layout b/resource/layout/debugstats.layout new file mode 100644 index 0000000..90cc55e --- /dev/null +++ b/resource/layout/debugstats.layout @@ -0,0 +1,27 @@ +"resource/layout/debugstats.layout" +{ + controls + { + // the container + KVStatsTree { controlname="KeyValuesTree" } + DebugStatsChart { controlname="ChartPanel" } + AddDebugStatAbs { controlname="Button" } + AddDebugStatRate { controlname="Button" } + RemoveDebugStat { controlname="Button" } + + } + + styles + { + } + + layout + { + place { control="KVStatsTree" x=0 y=24 width=240 height=max margin-bottom=32 } + place { control="DebugStatsChart" x=240 y=24 width=max height=max margin=1 } + place { control="AddDebugStatAbs" align=bottom margin-left=4 margin-bottom=4 } + place { control="AddDebugStatRate" align=bottom margin-left=72 margin-bottom=4 } + place { control="RemoveDebugStat" align=bottom margin-left=180 margin-bottom=4 } + + } +} diff --git a/resource/layout/deletecustomimagedialog.layout b/resource/layout/deletecustomimagedialog.layout new file mode 100644 index 0000000..36f6f38 --- /dev/null +++ b/resource/layout/deletecustomimagedialog.layout @@ -0,0 +1,32 @@ +"resource/layout/deletecustomimagedialog.layout" +{ + controls + { + DeleteCustomImageDialog { controlname="Frame" title="#SteamUI_DeleteCustomImage_Title" style="DeleteCustomImageDialog" } + + ConfirmText { controlname="Label" labeltext="#SteamUI_DeleteCustomImage_Confirm" wrap=1 } + + Continue { controlname="Button" tabposition=1 labeltext="#SteamUI_DeleteCustomImage_Continue" } + Cancel { controlname="Button" tabposition=2 labeltext="#SteamUI_DeleteCustomImage_Cancel" } + } + + styles + { + DeleteCustomImageDialog + { + minimum-width = 300 + minimum-height = 186 + } + + } + + layout + { + region { name="bottom" width=max align=bottom height=40 margin=10 } + + place { control="ConfirmText" width=max y=40 margin=15 } + place { control="Continue,Cancel" region="bottom" align=right spacing=5 } + + } + +} diff --git a/resource/layout/downloadspage.layout b/resource/layout/downloadspage.layout new file mode 100644 index 0000000..94f5c8b --- /dev/null +++ b/resource/layout/downloadspage.layout @@ -0,0 +1,89 @@ +"resource/layout/downloadspage.layout" +{ + controls + { + // the container + "DownloadsPage" + { + "ControlName" "CDownloadsPage" + Style=DownloadsPageStyle + } + + "downloadsummarypanel" + { + "ControlName" "DownloadSummaryPanel" + } + + "panel_list" + { + "ControlName" "SectionedListPanel" + Style=ListPanelStyle + } + + } + + styles + { + SectionedListPanelCollapser + { + inset = "0 0 0 0" + minimum-height=26 + bgcolor=none + render_bg + { + //0="fill( x0, y0, x1+2, y1, List.Header)" + 0="fill( x0, y0, x1+2, y1, JackMyth.HalfOpacity)" + } + render{} + } + SectionHeaderStyle + { + inset = "0 4 0 0" + minimum-height=26 + render_bg + { + //0="fill( x0, y0, x1-10, y1, Root.TabBar)" + 0="fill( x0, y0, x1-10, y1, JackMyth.HalfOpacity)" + } + render{} + } + SectionHeaderStyleLabel + { + inset = "0 0 0 0" + } + DownloadsPageStyle + { + + bgcolor=none + render_bg + { + //0="fill( x0+275, y0, x1, y0+48, Root.Header)" + //0="fill( x0+275, y0, x1, y0+48, JackMyth.Translucent)" + 0="fill( x0+275, y0, x1, y1, JackMyth.LittleTranslucent180)" + //1="fill( x0+275, y0+48, x1, y1, JackMyth.LittleTranslucent180)" + //1="fill( x0+275, y0+48, x1, y1, graphics/JackMyth/DownloadBG)" + } + } + ListPanelStyle + { + inset = "0 0 0 0" + bgcolor=none + font-family=basefont + font-size=12 [$LINUX] + font-size=14 + font-weight=400 + textcolor="Text" + selectedtextcolor=DefaultText + selectedbgcolor=DefaultText + shadowtextcolor=DefaultText // the color of disabled line items + } + } + + layout + { + region { name=status x=0 y=0 margin=0} + region { name=main x=275 y=0 margin-top=48} + place { control="downloadsummarypanel" region=status width=275 height=max} + place { control="panel_list" region=main x=10 width=max height=max margin=0 spacing=10 } + } +} diff --git a/resource/layout/downloadsummarypanel.layout b/resource/layout/downloadsummarypanel.layout new file mode 100644 index 0000000..21f458e --- /dev/null +++ b/resource/layout/downloadsummarypanel.layout @@ -0,0 +1,283 @@ +"resource/layout/downloadsummarypanel.layout" +{ + controls + { + "downloadsummarypanel" + { + style=CDownloadSummaryPanel + tall="130" + } + + "header" + { + "ControlName" "Label" + "labelText" "#steam_downloads_networkusage" + style=bigtext + } + + "download_rate" + { + "ControlName" "Label" + "labelText" "#steam_downloads_downloadrate" + style=bigtextlabel + } + + "download_rate_value" + { + "ControlName" "Label" + "labelText" "%CurrentDLRate%" + style=bigtext + } + + "peak_download_rate" + { + "ControlName" "Label" + "labelText" "#steam_downloads_peakdownloadrate" + style="bigtextlabel" + } + + "peak_download_rate_value" + { + "ControlName" "Label" + "labelText" "%PeakDLRate%" + style="bigtext" + } + + "total_downloaded" + { + "ControlName" "Label" + "labelText" "#steam_downloads_totaldownloaded" + style="bigtextlabel" + } + "total_downloaded_value" + { + "ControlName" "Label" + "labelText" "%TotalDownloaded%" + style="bigtext" + } + + "disk_status_value" + { + "ControlName" "Label" + "labelText" "%DiskUsage%" + style="bigtext" + } + + "disk_status_label" + { + "ControlName" "Label" + "labelText" "#steam_downloads_diskusage" + style="bigtextlabel" + } + + "pauseresumeallbutton" + { + "ControlName" "Button" + style=PauseButton + } + + "throttling_label" + { + "ControlName" "Label" + "labelText" "#steam_downloads_throttling" + style="throttleLabel" + group = "ShowWhenThrottled" + } + + "throttling_value" + { + "ControlName" "URLLabel" + "URLText" "steam://settings/downloads" + "labelText" "%throttle_value%" + style="throttleValue" + group = "ShowWhenThrottled" + } + + "blackout_label" + { + "ControlName" "Label" + "labelText" "#steam_downloads_autoupdate_window_label" + style="throttleLabel" + group = "ShowWhenAutoUpdateWindow" + } + + "blackout_value" + { + "ControlName" "URLLabel" + "URLText" "steam://settings/downloads" + "labelText" "#steam_downloads_autoupdate_window_value" + style="throttleValue" + group = "ShowWhenAutoUpdateWindow" + } + + net_graphpanel { controlname="GraphPanel" style="NetGraphPanel" group="HideOnCompletion" zpos="-2" } + disc_graphpanel { controlname="GraphPanel" style="DiscGraphPanel" group="HideOnCompletion" zpos="-1" } + + "disk_legend_label" { ControlName="Label" labelText="#steam_downloads_legenddisk" style="throttleLabel" } + "net_legend_label" { ControlName="Label" labelText="#steam_downloads_legendnet" style="throttleLabel" } + "disk_legend_panel" { ControlName="Panel" style="diskLegendPanel" } + "net_legend_panel" { ControlName="Panel" style="netLegendPanel" } + } + + styles + { + CDownloadSummaryPanel + { + inset="0 0 0 0" + render_bg + { + //0="fill(x0, y0, x1, y0+48, Search.Back)" + //1="fill(x0, y0+48, x1, y1, Root.Header)" + 0="image_scale( x0, y0, x1, y1, graphics/JackMyth/FadeLR)" + //1="fill(x0, y0+48, x1, y1, JackMyth.LittleTranslucent)" + } + } + + throttleLabel + { + font-size=12 [$LINUX] + font-size=15 + textcolor Root.Label.Text + padding-top "0" + //font-style="uppercase" + } + + throttleValue + { + font-size=12 [$LINUX] + font-size=15 + textcolor Root.Label.Text + padding-top "0" + font-style="normal" + } + + throttleValue:Hover + { + textcolor=Root.SubLabel.Text + } + + container + { + bgcolor="none" + } + + Label + //bigtext Seems to not work, overload with Label + { + font-family=basefont + font-size=14 [$LINUX] + font-size=18 + textcolor=Root.Label.Text + } + + bigtextlabel + { + font-family=basefont + font-size=14 [$LINUX] + font-size=18 + textcolor=Root.SubLabel.Text + } + + bigtextHeader + { + font-family=basefont + font-size=14 [$LINUX] + font-size=18 + } + + bigTextNumbers + { + font-family=basefont + font-size=14 [$LINUX] + font-size=18 + } + + PauseButton + { + inset="0 0 0 0" + font-family=basefont + font-weight=400 + //font-style=uppercase + } + + ResumeButton + { + inset="0 0 0 0" + font-family=basefont + font-weight=400 + //font-style=uppercase + } + + NetGraphPanel + { + bgcolor "none" + textcolor Accent + } + + DiscGraphPanel + { + bgcolor "none" + textcolor="AccentInv" + } + + DiskLegendPanel + { + render_bg + { + // background fill + 0="fill( x0, y0, x1,y1, AccentInv )" + } + } + + NetLegendPanel + { + render_bg + { + // background fill + 0="fill( x0, y0, x1,y1, Accent )" + } + } + } + + layout + { + + //set aside some room for the header section + region {name=hidden width=0 height=0} + region {name=head height=48 width=max} + + region {name=graph align=bottom width=1262 height=170 } + region {name=legend align=bottom margin-left=15 height=80 width=max} + + region { name=left_column x=15 y=58 width=max height=max margin-bottom=170} + + // graph + place { control="net_graphpanel" region=graph y=0 width="max" height="max" } + place { control="disc_graphpanel" region=graph y=0 width="max" height="max" } + + // graph legend + place { control="net_legend_panel" region=legend y=4 x=0 width=9 height=9 } + place { control="net_legend_label" region=legend y=0 x=12 } + + place { control="disk_legend_panel" region=legend y=18 x=0 width=9 height=9 } + place { control="disk_legend_label" region=legend y=14 x=12 } + + // throttling info + place { region=legend controls="blackout_label" start=disk_legend_panel dir=down margin-top=15 } + place { region=legend controls="blackout_value" start=blackout_label dir=right margin-left=4 } + place { region=legend control="throttling_label" start=blackout_label dir=down margin-top=4 } + place { region=legend control="throttling_value" start=throttling_label dir=right margin-left=4 } + + // put NETWORK USAGE in the top left + place { control="header" x=15 region=head height=48} + + // top right + place { control="pauseresumeallbutton" region=head align=right margin-right=10 margin-top=8 height=32} + + // three rows of network usage underneath the header + place { region=left_column control="download_rate_value,download_rate" spacing=6 dir=right} + place { region=left_column control="peak_download_rate_value, peak_download_rate" spacing=6 y=22 dir=right} + place { region=left_column control="total_downloaded_value, total_downloaded" spacing=6 y=44 dir=right} + place { region=left_column control="disk_status_value, disk_status_label" spacing=6 y=66 dir=right} + } +} diff --git a/resource/layout/editfriendsgroups.layout b/resource/layout/editfriendsgroups.layout new file mode 100644 index 0000000..79afdb7 --- /dev/null +++ b/resource/layout/editfriendsgroups.layout @@ -0,0 +1,32 @@ +"resource/layout/editfriendsgroups.layout" +{ + controls + { + Description {controlname=Label labelText="#friends_group_edit_categories" wrap=1 } + TextEntry { controlname=TextEntry tabposition=1 maxchars=32 unicode=1 } + AddTagButton { controlname=Button style="button" tabposition=2 default=1 } + } + + styles + { + CEditFriendsGroupsPage + { + render_bg + { + 0="fill( x0, y0 + 6, x1, y1, Page.Back )" + } + } + } + + layout + { + region { name="main" x=16 y=4 width=max height=max margin-bottom=0 } + + place { control="Description" width=428 height=72 x=18 y=20 } + + place { control=TagChecks region=main y=78 width=446 height=140 margin-left=0 margin-right=15 } + + place { control="TextEntry" width=240 y=100 } + place { control="TextEntry,AddTagButton" y=228 region=main height=24 spacing=10 margin=2 width=max margin-right=16 } + } +} diff --git a/resource/layout/edittagspage.layout b/resource/layout/edittagspage.layout new file mode 100644 index 0000000..a3b1bf9 --- /dev/null +++ b/resource/layout/edittagspage.layout @@ -0,0 +1,24 @@ +"resource/layout/edittagspage.layout" +{ + controls + { + Description {controlname=Label labelText="#steam_client_edit_categories" wrap=1 } + TextEntry { controlname=TextEntry tabposition=1 maxchars=32 unicode=1 } + AddTagButton { controlname=Button style="button" tabposition=2 default=1 } + HideButton { controlname=CheckButton labelText="#steam_edittags_hide" tabposition=3 } + } + + layout + { + region { name="main" x=16 y=4 width=max height=max margin-bottom=0 } + + place { control="Description" width=428 height=72 x=18 y=2 } + + place { control=TagChecks region=main y=78 width=446 height=140 margin-left=0 margin-right=15 } + + place { control="TextEntry" width=240 y=100 } + place { control="TextEntry,AddTagButton" y=228 region=main height=24 spacing=10 margin=2 width=max margin-right=16 } + + place { control="HideButton" region=main y=300 } + } +} diff --git a/resource/layout/emailreminderbar.layout b/resource/layout/emailreminderbar.layout new file mode 100644 index 0000000..e9f82ec --- /dev/null +++ b/resource/layout/emailreminderbar.layout @@ -0,0 +1,124 @@ +"resource/layout/emailreminderbar.layout" +{ + controls + { + "emailreminderbar_nobutton" + { + "ControlName" "URLLabel" + "labelText" "#steam_emailaddress_query_no" + command="ChangeEmail" + style=bright + } + "emailreminderbar_yesbutton" + { + "ControlName" "URLLabel" + "labelText" "#steam_emailaddress_query_yes" + command="SendVerificationEmail" + style=bright + } + "emailreminderbaremail_email" + { + "ControlName" "Label" + "labelText" "%emailaddress%" + style=bright + } + "emailreminderbarlabel" + { + "ControlName" "Label" + "labelText" "#steam_emailaddress_query" + style=soft + } + "emailreminderbar_info" + { + "ControlName" "Label" + "labelText" "#steam_emailaddress_query_info" + style=soft + } + "emailreminderbar_infolink" + { + "ControlName" "URLLabel" + "labelText" "#steam_emailaddress_query_info_link" + "urltext" "#steam_emailaddress_query_info_url" + style=soft + } + "emailreminderbar_close" + { + "ControlName" "Button" + "labelText" "" + "Command" "Close" + + style=CloseStyle + } + } + + styles + { + CEmailReminderBar + { + + render {} + render_bg { + 0="image_scale( x0+3, y0, x1-3, y1+1, graphics/emailreminder_center )" + 1="image( x0, y0, x0+3, y1, graphics/emailreminder_left )" + 2="image( x1-4, y0, x1, y1, graphics/emailreminder_right )" + + 3="fill( x1-2, y1+1, x1-1, y1+2, outline_gray )" + 4="fill( x0, y1+1, x0+1, y1+2, outline_gray )" + 4="fill( x0+1, y1+1, x0+2, y1+2, outline_dark )" + } + } + + soft + { + + font-size=13 [$LINUX] + font-size=15 + + textcolor="209 242 133 255" + } + + bright + { + + font-size=13 [$LINUX] + font-size=15 + + textcolor="255 255 255 255" + } + + CloseStyle + { + render {} + render_bg {} + image="graphics/emailreminder_close" + + } + + CloseStyle:hover + { + render {} + render_bg {} + image="graphics/emailreminder_close_hover" + + } + } + + colors + { + emailreminder_bar_green1 "92 126 16 255" + emailreminder_bar_green2 "73 100 13 255" + outline_gray "77 75 72 255" + outline_dark "23 22 20 255" + + + } + + layout + { + place { control="emailreminderbarlabel,emailreminderbaremail_email,emailreminderbar_yesbutton,emailreminderbar_nobutton" x=79 y=10 spacing=8 } + place { control="emailreminderbar_info,emailreminderbar_infolink" x=79 y=28 spacing=8 } + + place { control="emailreminderbar_close" align=right margin-right=4 margin-top=2 } + } + +} diff --git a/resource/layout/friendpanel.layout b/resource/layout/friendpanel.layout new file mode 100644 index 0000000..bb25994 --- /dev/null +++ b/resource/layout/friendpanel.layout @@ -0,0 +1,266 @@ +"resource/layout/friendpanel.layout" +{ + controls + { + AvatarImage + { + } + + AvatarOverlayImage + { + zpos=2 + } + + // clan officer image + ClanStatusImage + { + } + + // speaker icons for voice chat, still procedurally controlled + MultiUserChatStatusImage + { + } + + NameLabel + { + style="namestyle" + } + + // the (1) next to the name when multiple friends have the same name + FriendsNameInstanceLabel + { + style="NameInstanceStyle" + } + + MobileStatusImage + { + style="MobileStatusStyle" + tooltiptext="#Friends_MobileStatus_Tooltip" + } + + BigPictureStatusImage + { + style="BigPictureStatusStyle" + tooltiptext="#Friends_BigPictureStatus_Tooltip" + } + + WebStatusImage + { + style="WebStatusStyle" + tooltiptext="#Friends_WebStatus_Tooltip" + } + + MobileStatusImageInGame + { + style="MobileStatusStyleInGame" + tooltiptext="#Friends_MobileStatus_Tooltip" + } + + BigPictureStatusImageInGame + { + style="BigPictureStatusStyleInGame" + tooltiptext="#Friends_BigPictureStatus_Tooltip" + } + + WebStatusImageInGame + { + style="WebStatusStyleInGame" + tooltiptext="#Friends_WebStatus_Tooltip" + } + + VRStatusImage + { + style="VRStatusStyle" + tooltiptext="#Friends_VRStatusStatus_Tooltip" + } + + VRStatusImageInGame + { + style="VRStatusStyleInGame" + tooltiptext="#Friends_VRStatusStatus_Tooltip" + } + + + StatusLabel + { + style="statusStyle" + } + + GameLabel + { + style="statusStyle" + } + + // the little drop-down arrow + MenuButton + { + style="menuButtonStyle" + } + + // used at the top of the friends list for the current user + ControlPanelLink + { + style="controlPanelLinkStyle" + } + + // used in the invite-to-game dialog for when in a game + InviteToGameButton + { + } + + AcceptLink { style="inviteLinkStyle" } + IgnoreLink { style="inviteLinkStyle" } + BlockLink { style="inviteLinkStyle" } + } + + colors + { + focus4="50 64 84 255" + } + styles + { + CFriendPanel:selected //avatar view + { + render_bg { + + + } + } + + SelfPanel:hover + { + render_bg + { + } + } + + namestyle + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + } + + nameInstanceStyle + { + font-family=basefont + textcolor=DefaultText + font-size=12 [$LINUX] + font-size=14 + } + + menuButtonStyle + { + minimum-width=14 + padding-top=5 + padding-bottom=5 + padding-right=5 + padding-left=5 + } + + downarrow:hover + { + image="graphics/Threshold/icons/down_hover" + } + + controlPanelLinkStyle + { + font-family=basefont + font-size=12 [$LINUX] + font-size=14 + } + statusStyle + { + font-family=basefont + font-size=11 [$LINUX] + font-size=13 + } + + statusStyle:hover + { + textcolor=DefaultText.Hover + } + + inviteLinkStyle + { + font-style="" + textcolor=DefaultText + } + + inviteLinkStyle:hover + { + textcolor=DefaultText.Hover + font-style=underline + } + + WebStatusStyle + { + image="graphics/icon_status_web" + padding-left=4 + } + + BigPictureStatusStyle + { + image="graphics/icon_status_bigpic" + padding-left=4 + } + + MobileStatusStyle + { + image="graphics/icon_status_mobile" + padding-left=4 + } + + WebStatusStyleInGame + { + image="graphics/icon_status_web_ingame" + padding-left=4 + } + + BigPictureStatusStyleInGame + { + image="graphics/icon_status_bigpic_ingame" + padding-left=2 + } + + MobileStatusStyleInGame + { + image="graphics/icon_status_mobile_ingame" + padding-left=4 + } + + VRStatusStyle + { + image="graphics/icon_vr_online" + padding-left=4 + } + + VRStatusStyleInGame + { + image="graphics/icon_status_vr_ingame" + padding-left=4 + } + +} + + + layout + { + place { control="AvatarOverlayImage" x=2 y=5 width=40 height=40 } + place { control="AvatarImage" x=6 y=9 width=32 height=32 } + + place { control="Clanstatusimage" x=20 width=15 } + place { control="ClanStatusImage,NameLabel,FriendsNameInstanceLabel,BigPictureStatusImage,VRStatusImage,MobileStatusImage,WebStatusImage,BigPictureStatusImageInGame,VRStatusImageInGame,MobileStatusImageInGame,WebStatusImageInGame,MenuButton" x=50 y=8 } + place { control="StatusLabel,GameLabel" x=50 y=23 spacing=10} + + // this control is shown in the invite-to-game dialog in the overlay + place { control="InviteToGameButton" align=right y=4 padding-right=6 margin-right=20 } + + // these controls are shown for friendship requests + place { control="AcceptLink,IgnoreLink,BlockLink" x=50 y=23 spacing=8 } + place { control="ControlPanelLink" x=50 y=23 } + place { control="SuggestedImage,SuggestedLabel" x=50 y=23 spacing=4 } + place { control="SuggestedInvite,SuggestedIgnore" x=50 y=23 spacing=8 } + } + +} diff --git a/resource/layout/friendpanel_compact.layout b/resource/layout/friendpanel_compact.layout new file mode 100644 index 0000000..12c96c9 --- /dev/null +++ b/resource/layout/friendpanel_compact.layout @@ -0,0 +1,67 @@ +"resource/layout/friendpanel_compact.layout" +{ + // custom layout + + controls + { + MenuButton + {style=menuButtonStyle } + AvatarOverlayImage { zpos=2 } + + AcceptLink { style="inviteLinkStyle" } + IgnoreLink { style="inviteLinkStyle" } + BlockLink { style="inviteLinkStyle" } + } + styles + { + CFriendPanel:selected //only used in non-avatar view for friends + { + render_bg { + //0="fill(x0, y0, x1, y1, Menu.Hover)" + //0="gradient_horizontal( x0 - 1, y0+ 1, x1, y0+2, focus3, none )" + //1="gradient_horizontal( x0 - 2, y0+2, x1, y1-2, focus3, none )" + //1="gradient_horizontal( x0 - 1, y1-2, x1, y1-1, focus3, none )" + } + } + + SelfPanel:hover + { + render_bg + { + } + } + + menuButtonStyle + { + minimum-width=14 + padding-top=3 + padding-bottom=3 + padding-right=2 + padding-left=1 + } + + downarrow:hover + { + image="graphics/Threshold/icons/down_hover" + } + + inviteLinkStyle + { + font-style="" + textcolor=DefaultText + padding-left=2 + } + + inviteLinkStyle:hover + { + textcolor=DefaultText.Hover + font-style=underline + } + } + + layout + { + place { control="ClanStatusImage,NameLabel,FriendsNameInstanceLabel,CompactSeparatorLabel,StatusLabel,GameLabel,AcceptLink,IgnoreLink,BlockLink,SuggestedImage,SuggestedLabel,SuggestedInvite,SuggestedIgnore,MenuButton" x=1 y=1 spacing=4 } + } + +} diff --git a/resource/layout/friendpanel_rightaligned.layout b/resource/layout/friendpanel_rightaligned.layout new file mode 100644 index 0000000..74c0229 --- /dev/null +++ b/resource/layout/friendpanel_rightaligned.layout @@ -0,0 +1,47 @@ +"resource/layout/friendpanel_compact.layout" +{ + + controls + { + MenuButton + { + style=menuButtonStyle + } + AvatarOverlayImage + { + zpos=2 + } + } + styles + { + menuButtonStyle + { + inset="-7 2 0 0" + padding=3 + } + CFriendPanel:hover + { + render_bg {} + } + + } + + // custom layout + layout + { + place { control="AvatarOverlayImage" margin-right=8 y=6 width=40 height=40 align=right } + place { control="AvatarImage" margin-right=12 y=10 width=32 height=32 align=right } + place { control="MenuButton,NameLabel,FriendsNameInstanceLabel,ClanStatusImage" margin-right=60 y=6 align=right } + + place { control="StatusLabel" margin-right=60 y=19 align=right } + place { control="GameLabel" margin-right=60 y=31 align=right } + + place { control="ControlPanelLink" margin-right=60 y=31 align=right } + } + + + + + + +} diff --git a/resource/layout/gameargsprompt.layout b/resource/layout/gameargsprompt.layout new file mode 100644 index 0000000..1bcbb72 --- /dev/null +++ b/resource/layout/gameargsprompt.layout @@ -0,0 +1,38 @@ +"resource/layout/gameargsprompt.layout" +{ + controls + { + GameArgs { controlname="Frame" title="#Steam_AllowGameLaunch_Title" style="GameArgsPromptDialog" wide=420 tall=220 } + + WarningText { controlname="Label" labeltext="#Steam_AllowGameLaunch_Info" wrap=1 } + ArgumentsText { controlname="Label" labeltext="#Steam_AllowGameLaunch_Info_args" wrap=1 style="ArgumentsText" } + ConfirmText { controlname="Label" labeltext="#Steam_AllowGameLaunch_Info_Prompt" wrap=1 } + + Cancel { controlname="Button" tabposition=1 labeltext="#QueryBox_Cancel" command="Cancel" } + OK { controlname="Button" tabposition=2 labeltext="#MessageBox_OK" command="OK" } + } + + styles + { + GameArgsPromptDialog + { + minimum-width = 420 + minimum-height = 220 + } + + ArgumentsText + { + textcolor = "128 128 0 255" + } + + } + + layout + { + region { name="bottom" width=max align=bottom height=75 margin=10 margin-right=30 } + + place { control="WarningText,ArgumentsText" width=max spacing=15 align=left y=40 margin=15 dir=down margin-bottom=75 } + place { control="ConfirmText" region="bottom" align=left width=max spacing=1 margin=5 margin-top=0 margin-bottom=20 } + place { control="OK,Cancel" region="bottom" align=right spacing=10 margin-top=30 } + } +} diff --git a/resource/layout/gameproperties.layout b/resource/layout/gameproperties.layout new file mode 100644 index 0000000..75f4a7b --- /dev/null +++ b/resource/layout/gameproperties.layout @@ -0,0 +1,5 @@ +"resource/layout/gameproperties.layout" { + layout { + place { control=sheet y=28 width=max height=max margin-bottom=58} + } +} \ No newline at end of file diff --git a/resource/layout/gameproperties_general.layout b/resource/layout/gameproperties_general.layout new file mode 100644 index 0000000..90cb737 --- /dev/null +++ b/resource/layout/gameproperties_general.layout @@ -0,0 +1,127 @@ +"resource/layout/gameproperties_general.layout" +{ + controls + { + "GamePropertiesGeneral" + { + "ControlName" "CSubGamePropertiesGeneralPage" + } + "HomepageLabel" + { + "ControlName" "URLLabel" + "labelText" "#Steam_DeveloperUnknownThirdParty" + "URLText" "http://www.half-life2.com" + } + "DeveloperLabel" + { + "ControlName" "URLLabel" + "labelText" "#Steam_DeveloperUnknownThirdParty" + "URLText" "http://www.half-life2.com" + } + "ManualLabel" + { + "ControlName" "URLLabel" + "labelText" "#Steam_Game_DefaultManual" + "URLText" "http://www.half-life2.com/manual/HL2_quickrefcard.pdf" + } + "HomepageLabelName" + { + "ControlName" "Label" + "labelText" "#Steam_Game_Homepage" + "textAlignment" "west" + } + "DeveloperLabelName" + { + "ControlName" "Label" + "labelText" "#Steam_Game_Developer" + } + "ManualLabelName" + { + "ControlName" "Label" + "labelText" "#Steam_Game_Manual" + } + + "EnableOverlayCheck" + { + "ControlName" "CheckButton" + "labelText" "#Overlay_SettingsEnable" + "Default" "0" + } + + "EnableDesktopGameTheater" + { + "ControlName" "CheckButton" + "labelText" "#Overlay_SettingsDesktopGameTheaterCheck" + "Default" "0" + } + + "LaunchOptionsButton" + { + "ControlName" "Button" + "labelText" "#Steam_Game_SetLaunchOptions" + "Command" "SetLaunchOptions" + } + "CreateDesktopShortcutButton" + { + "ControlName" "Button" + "labelText" "#Steam_Game_CreateDesktopShortcut" + "Command" "CreateDesktopShortcut" + } + "NoManualLabel" + { + "ControlName" "Label" + "fieldName" "NoManualLabel" + "style" "LabelDull" + "labelText" "#Steam_Game_NoManual" + } + "Divider1" + { + "ControlName" "Divider" + } + "ExternalSignupButton" + { + "ControlName" "Button" + "labelText" "#Steam_ExternalSignupPropertiesButton" + "Command" "ExternalSignup" + } + "ExternalSignupLabel" + { + "ControlName" "Label" + "labelText" "#Steam_ExternalSignupPropertiesLabel" + } + + "FamilySharingUnsupportedLabel" + { + "ControlName" "Label" + "labelText" "#Steam_Game_Family_Sharing_Unsupported" + } + } + + + colors + { + } + + styles + { + } + + layout + { + region { name=main margin=20 } + place { control=HomepageLabelName,DeveloperLabelName,ManualLabelName spacing=10 dir=down region=main } + place { controls=HomepageLabel,DeveloperLabel spacing=10 dir=down x=100 region=main } + place { control=ManualLabel start=DeveloperLabel spacing=10 margin-top=10 dir=down region=main } + place { control=NoManualLabel start=DeveloperLabel spacing=10 margin-top=10 dir=down region=main } + + place {controls=ExternalSignupLabel,ExternalSignupButton x=260 margin-top=34 dir=down margin-left=20 width=260 height=24 spacing=0 region=main } + + place {control=Divider1 start=ManualLabelName dir=down margin-top=20 region=main width=max } + + place {controls=EnableOverlayCheck,EnableDesktopGameTheater start=Divider1 dir=down margin-top=20 spacing=0 width=max region=main } + place {controls=LaunchOptionsButton,CreateDesktopShortcutButton start=EnableDesktopGameTheater dir=down margin-top=15 spacing=10 width=240 height=24 region=main } + + place {controls=FamilySharingUnsupportedLabel margin-top=472 margin-left=20 } + + } +} diff --git a/resource/layout/gameproperties_updates.layout b/resource/layout/gameproperties_updates.layout new file mode 100644 index 0000000..20ce5a6 --- /dev/null +++ b/resource/layout/gameproperties_updates.layout @@ -0,0 +1,143 @@ +"resource/layout/gameproperties_updates.layout" +{ + controls + { + + UpdateCombo + { + "ControlName" "ComboBox" + } + + UpdateNewsURL + { + "ControlName" "URLLabel" + "fieldName" "UpdateNewsURL" + "labelText" "#Steam_Game_UpdateNewsURL" + "textAlignment" "north-west" + "wrap" "0" + "URLText" "http://www.steampowered.com/platform/update_history/Day of Defeat Source.html" + } + + UpdateInfoText + { + "ControlName" "Label" + "fieldName" "UpdateInfoText" + "wide" "328" + "tall" "42" + "labelText" "#Steam_GameProperties_NeverUpdateInfo" + "textAlignment" "north-west" + "wrap" "1" + } + + AutoUpdatesLabel + { + "ControlName" "Label" + "labelText" "#Steam_Automatic_Updates" + "textAlignment" "west" + //"associate" "UpdateCombo" + "wrap" "0" + "style" "Highlight" + } + + BackgroundDownloadsLabel { controlname=label labeltext="#Steam_GameProperties_BackgroundDownloadsWhilePlaying" style="Highlight" } + BackgroundDownloadsInfo { controlname=label labeltext="#Steam_GameProperties_BackgroundDownloadsWhilePlayingInfo" wrap=1 } + BackgroundDownloadsCombo { controlname=combobox } + + Divider1 + { + "ControlName" "Divider" + } + + Divider2 + { + "ControlName" "Divider" + } + + CloudLabel + { + "ControlName" "Label" + "labelText" "#Steam_CloudLabel" + "textAlignment" "west" + "style" "Highlight" + } + + CloudInfoLabel + { + "ControlName" "Label" + "labelText" "#Steam_CloudInfo" + "textAlignment" "north-west" + "wrap" "1" + } + + EnableCloudCheck + { + "ControlName" "CheckButton" + "labelText" "#Steam_EnableCloudForApp" + "textAlignment" "west" + } + + CloudUsageLabel + { + "ControlName" "Label" + "wide" "418" + "tall" "28" + "labelText" "#Steam_CloudUsage" + "textAlignment" "west" + "wrap" "1" + "style" "CloudUsageLabelStyle" + } + + CloudEnableLinkLabel + { + "ControlName" "URLLabel" + "labelText" "#Steam_CloudEnableLink" + "URLText" "steam://settings/downloads" + "tall" "28" + } + + CloudEnableLinkLabelExtraText + { + "controlname" "Label" + "Labeltext" "#Steam_CloudEnableLinkContinued" + "tall" "28" + } + } + + styles + { + Highlight + { + textcolor=DefaultText + } + + CloudUsageLabelStyle:disabled + { + textcolor=DefaultText.Disabled + } + } + + layout + { + region { name=main margin=20 } + + place { controls="AutoUpdatesLabel" region=main } + place { controls="UpdateCombo" region=main start=AutoUpdatesLabel dir=down width=420 height=24 margin-top=12 } + place { controls="UpdateInfoText" region=main start=UpdateCombo dir=down width=max height=42 margin-top=6 } + place { controls="UpdateNewsURL" region=main start=UpdateInfoText dir=down width=418 height=28 margin-top=6 } + + place { controls="Divider1" region=main start=UpdateNewsURL dir=down width=max margin-top=26 } + + place { controls="BackgroundDownloadsLabel" region=main start=Divider1 dir=down width=334 margin-top=8 } + place { controls="BackgroundDownloadsInfo" region=main start=BackgroundDownloadsLabel dir=down width=max margin-top=12 } + place { controls="BackgroundDownloadsCombo" region=main start=BackgroundDownloadsInfo dir=down width=420 height=24 margin-top=8 } + + place { controls="Divider2" region=main start=BackgroundDownloadsCombo dir=down width=max margin-top=26 } + + place { controls="CloudLabel" region=main start=Divider2 dir=down width=max margin-top=8 } + place { controls="CloudInfoLabel" region=main start=CloudLabel dir=down width=max height=42 margin-top=12 } + place { controls="EnableCloudCheck" region=main start=CloudInfoLabel dir=down width=max height=28 margin-top=0 } + place { controls="CloudUsageLabel" region=main start=EnableCloudCheck dir=down width=420 height=28 margin-top=0 margin-left=28 } + place { controls="CloudEnableLinkLabel" region=main start=CloudUsageLabel height=28 dir=down spacing=4 wrap=1 margin-top=0 margin-left=-28 } + place { controls="CloudEnableLinkLabelExtraText" region=main start=CloudEnableLinkLabel height=28 dir=right margin-left=4 wrap=1 margin-top=0 } + } +} \ No newline at end of file diff --git a/resource/layout/gamespage_details_achievements.layout b/resource/layout/gamespage_details_achievements.layout new file mode 100644 index 0000000..e8340b9 --- /dev/null +++ b/resource/layout/gamespage_details_achievements.layout @@ -0,0 +1,56 @@ +"resource/layout/gamespage_details_achievements.layout" +{ + controls + { + achievementsdetails { controlname="CGamesPage_Details_Achievements" style="achievementsdetails" } + + headerlabel { controlname="Label" style="gamedetails-headerlabel" labeltext="#Steam_Achievements" } + + mostrecent_area { controlname="CAchievementsMostRecentPanel" } + everythinglabel { controlname="Label" style="everythinglabel" labeltext="#Steam_EverythingAchieved" } + locked_area { controlname="CAchievementsLockedPanel" } + + viewall { controlname="Button" labeltext="#Steam_ViewAllAchievements" command="ViewAllAchievements" } + } + + colors + { + + + // Extra spacing beyond the flowing elements to account for header and button at the bottom + GameDetailsAchievements.ExtraVerticalSpacing "100" + + // This is additional extra vertical spacing when the "You've unlocked everything" label is set + // You should test with a game with everything unlocked if you change vertical spacing as this may + // need adjustment. + GameDetailsAchievements.EverythingExtraSpacing "6" + RichText.InsetX "0" + RichText.InsetY "3" + } + + styles + { + achievementsdetails + { + bgcolor=Root.RightCol + } + + everythinglabel + { + textcolor="DefaultText" + //font-size=13 [$LINUX] + //font-size=25 + } + + } + + layout + { + region { name=body margin=10 margin-left=15 margin-right=15 width=max height=max } + + place { region=body control=headerlabel width=max } + place { region=body control=mostrecent_area,everythinglabel,locked_area start=headerlabel margin-top=10 dir=down width=max } + + place { region=body control=viewall start=locked_area margin-top=10 dir=down} + } +} diff --git a/resource/layout/gamespage_details_achievements_locked.layout b/resource/layout/gamespage_details_achievements_locked.layout new file mode 100644 index 0000000..70b4e1a --- /dev/null +++ b/resource/layout/gamespage_details_achievements_locked.layout @@ -0,0 +1,100 @@ +"resource/layout/gamespage_details_achievements_locked.layout" +{ + controls + { + locked_area { controlname="CAchievementsLockedPanel" style="lockedarea" } + + imageexplanation { controlname="Label" style="infolabel" labeltext="#Steam_AchievementsLocked" } + achievementlabelmore { controlname="Label" style="achievementlabelmore" labeltext="#Steam_MoreAchievements" textAlignment="center" tooltiptext="#Steam_ViewAllAchievements"} + } + + colors + { + // Note, the below values are used for dynamic layout in code, and must match the values from place + // commands below for layout to work correctly. + + // ImageAreaSpacing must be the spacing between achievement images + GameDetailsAchievements.ImageAreaSpacing "7" + + // ImageWidth must be the width of an achievement image in the display + GameDetailsAchievements.ImageWidth "45" + + // Size of the border around locked achievement images + GameDetailsAchievements.LockedImageBorder "3" + + Tooltip.Anchor=Parent + } + + styles + { + lockedarea + { + minimum-height="76" + } + + infolabel + { + + font-size=13 [$LINUX] + font-size=15 + } + + achievementlabelmore + { + inset="-3 0 0 0" + font-size=13 [$LINUX] + font-size=15 + textcolor=Button.Text + font-family=basefont + render_bg + { + // background fill + 0="fill( x0, y0 - 2, x1 - 1, y1 + 1, Button.Back )" + } + } + + achievementlabelmore:hover + { + inset="-3 0 0 0" + font-size=13 [$LINUX] + font-size=15 + textcolor=Button.Hover.Text + font-family=basefont + render_bg + { + // background fill + 0="fill( x0, y0 - 2, x1 - 1, y1 + 1, Button.Back )" + 1="fill( x0, y0 - 2, x0 + 2, y1 + 1, Button.Hover )" + 2="fill( x1 - 3, y0 - 2, x1 - 1, y1 + 1, Button.Hover )" + 3="fill( x0, y0, x1 - 1, y0 + 2, Button.Hover )" + 4="fill( x0, y1 - 2, x1 - 1, y1, Button.Hover )" + } + } + + achievementimagebg + { + bgcolor=none + inset="1 0 0 0" + image="graphics/achievementbg" + } + + } + + layout + { + region { name=body margin=0 width=max height=max } + region { name=images region=body x=0 y=23 margin=2 width=max height=48 } + + place { region=body control=imageexplanation y=0 } + + place + { + region=images + control=*achievementimage,achievementlabelmore + dir=right + width=45 + height=45 + spacing=7 + } + } +} diff --git a/resource/layout/gamespage_details_achievements_most_recent.layout b/resource/layout/gamespage_details_achievements_most_recent.layout new file mode 100644 index 0000000..80c831c --- /dev/null +++ b/resource/layout/gamespage_details_achievements_most_recent.layout @@ -0,0 +1,96 @@ +"resource/layout/gamespage_details_achievements_most_recent.layout" +{ + controls + { + mostrecent_area { controlname="CAchievementsMostRecentPanel" style="mostrecent" } + + mostrecent_label { controlname="Label" style="mostrecent_label" labeltext="#steam_achievement_mostrecent" } + mostrecent_background { controlname="Label" style=achievementimagebg zpos="0" labeltext="" mouseinputenabled=0 } + mostrecent_image { controlname="ImagePanel" zpos=-1 style="mostrecent_image" } + mostrecent_name { controlname="Label" style="mostrecent_name" labeltext="" } + mostrecent_unlockedsofar { controlname="Label" style="mostrecent_unlockedsofar" labeltext="#steam_achievement_unlockedsofar" } + + progressbackground { controlname="ImagePanel" style="progressbackground" } + progressbarimage { controlname="ImagePanel" style="progressbarimage" } + + } + colors + { + // ProgressBarMarings must be the combined left+right margin of the actual bar from it's container + GameDetailsAchievements.ProgressBarMargins "0" + + Tooltip.Anchor=Parent + } + styles + { + mostrecent + { + minimum-height="110" + } + + achievementimagebg + { + bgcolor=none + inset="0 0 0 0" + image="graphics/achievementbg_recent" + + } + + mostrecent_label + { + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + } + + mostrecent_name + { + font-size=16 [$LINUX] + font-size=24 + font-family=semilight + } + + mostrecent_unlockedsofar + { + font-size=13 [$LINUX] + font-size=15 + font-family=semibold + textcolor=Root.SubLabel.Text + } + + progressbackground + { + bgcolor=none + render_bg + { + // lines around + 1="fill( x0, y0, x1, y1, Progress.Back )" + + } + } + + progressbarimage + { + bgcolor=Accent + render + { + 0="fill( x0, y0, x1+1, y1, Accent )" //Progressbar is 1px off + } + } + } + + layout + { + region { name=body margin=0 width=max height=max } + + place { region=body control=mostrecent_label x=82 y=9 width=max } + place { region=body control=mostrecent_name x=82 y=27 width=max } + place { region=body control=mostrecent_unlockedsofar x=82 y=54 width=max } + + place { region=body control=mostrecent_background x=2 y=2 width=80 height=80 } + place { region=body control=mostrecent_image x=5 y=10 width=64 height=64 } + + place { region=body control=progressbackground y=92 width=max height=10} + place { region=body control=progressbarimage y=92 height=10} + } +} diff --git a/resource/layout/gamespage_details_cloud.layout b/resource/layout/gamespage_details_cloud.layout new file mode 100644 index 0000000..62c2f12 --- /dev/null +++ b/resource/layout/gamespage_details_cloud.layout @@ -0,0 +1,73 @@ +"resource/layout/gamespage_details_cloud.layout" +{ + controls + { + clouddetails { controlname="CGamesPage_Details_Cloud" style="clouddetails" } + pagination { controlname="CPaginationPanel" style="pagination" } + + headerlabel { controlname="Label" style="gamedetails-headerlabel" labeltext="#steam_cloud" } + + infolabelplural { controlname="Label" style="infolabel" } + infolabelsingular { controlname="Label" style="infolabel" } + } + + colors + { + GameDetailsCloud.ExtraVerticalSpacing "75" + GameDetailsCloud.FileSpacing "4" + GameDetailsCloud.ButtonSpacing "10" + RichText.InsetX "0" + RichText.InsetY "3" + } + + styles + { + clouddetails + { + bgcolor=Root.RightCol + } + + everythinglabel + { + font-size=13 [$LINUX] + font-size=15 + } + + infolabel + { + font-size=13 [$LINUX] + font-size=15 + } + } + + layout + { + region { name=body margin=10 margin-left=15 width=max height=max } + + place { region=body control=headerlabel width=max } + + place + { + region=body + width=max + y=24 + control=infolabelplural,infolabelsingular + dir=down + spacing=0 + margin=0 + } + + place + { + region=body + width=max + y=50 + control=*cloudfile + dir=down + spacing=4 + margin=0 + } + + place { region=body control=pagination width=max align=bottom margin-bottom=5 } + } +} diff --git a/resource/layout/gamespage_details_cloud_file.layout b/resource/layout/gamespage_details_cloud_file.layout new file mode 100644 index 0000000..3f56ed1 --- /dev/null +++ b/resource/layout/gamespage_details_cloud_file.layout @@ -0,0 +1,62 @@ +"resource/layout/gamespage_details_cloud_file.layout" +{ + controls + { + cloudfile { controlname="CCloudFilePanel" } + fileimage { controlname="ImagePanel" image=resource/icon_file zpos=1 style="fileimagestyle" } + filename { controlname="Label" style="filestyle" } + syncdate { controlname="Label" labeltext="" style="filestyle" } + syncstate { controlname="Label" labeltext="" style="filestyle" } + } + colors + { + // The extra space needed vertical beyond the autocomputed size of the blurb contents + // this is used in code to make the vertical size of the panel fit the title/author/morelink + // and should be updated if you change vertical padding/margins/layout. + GameDetailsCloudFile.ExtraVerticalSpacing "0" + } + styles + { + filestyle + { + padding=4 + font-size=13 [$LINUX] + font-size=15 + } + + CCloudFilePanel:hover + { + render_bg { + 0="gradient_horizontal( x0, y0 , x1-1, y1, focus3, none )" //top + 1="gradient_horizontal( x0, y0 , x1, y1-1, focus3, none )" //fill + 2="gradient_horizontal( x0, y1-1 , x1-1, y1, focus3, none )" //btm + 3="fill( x0 - 1, y0 + 7, x0, y1 - 3, focus3 )" //left + } + } + + CCloudFilePanel:selected + { + render_bg { + 0="gradient_horizontal( x0, y0 , x1-1, y1, focus3, none )" //top + 1="gradient_horizontal( x0, y0 , x1, y1-1, focus3, none )" //fill + 2="gradient_horizontal( x0, y1-1 , x1-1, y1, focus3, none )" //btm + 3="fill( x0 - 1, y0 + 7, x0, y1 - 3, focus3 )" //left + } + } + + CCloudFilePanel + { + bgcolor=GrayBG2 + } + } + + layout + { + region { name=column1 margin=0 x=0 y=0 width=max } + region { name=column2 margin=0 x=0 y=0 width=190 align=right } + region { name=column3 margin=0 x=0 y=0 width=100 align=right } + place { region=column1 control=fileimage,filename x=0 y=0 width=max height=28 } + place { region=column2 control=syncdate x=0 y=0 width=max height=28 align=right } + place { region=column3 control=syncstate x=0 y=0 width=max height=28 align=right } + } +} diff --git a/resource/layout/gamespage_details_community_file.layout b/resource/layout/gamespage_details_community_file.layout new file mode 100644 index 0000000..a6d6aff --- /dev/null +++ b/resource/layout/gamespage_details_community_file.layout @@ -0,0 +1,75 @@ +"resource/layout/gamespage_details_community_file.layout" +{ + controls + { + communityfile { controlname="CCommunityFilePanel" } + communityfile_image_border { controlname="Panel" style="communityfile_image_border" } + communityfile_image { controlname="ImagePanel" image=resource/icon_community_preview zpos=-1 style="communityfile_image" } + communityfile_name { controlname="Label" style="communityfile_name" labeltext="" } + communityfile_rating_image_background{ controlname="Panel" zpos=1 style="communityfile_rating_image_background" } + communityfile_rating_image{ controlname="ImagePanel" zpos=2 image=resource/1_star style="communityfile_rating_image" } + friendimage{ controlname="ImagePanel" zpos=2} + } + + colors + { + // The extra space needed vertical beyond the autocomputed size of the blurb contents + // this is used in code to make the vertical size of the panel fit the title/author/morelink + // and should be updated if you change vertical padding/margins/layout. + GameDetailsCommunityFile.ExtraVerticalSpacing "140" + GameDetailsCommunityFile.ExtraHorizontalSpacing "200" + GameDetailsCommunityFile.MaxTooltipWidth "300" + GameDetailsCommunityFile.MaxTooltipHeight "90" + } + + styles + { + communityfile_name + { + font-size=13 [$LINUX] + font-size=15 + } + + communityfile_image_border + { + render_bg + { + + // lines around + 1="fill( x0, y0, x1, y0 + 3, DialogBG )" // top + 2="fill( x0, y1 - 3, x1, y1, DialogBG )" // bottom + 3="fill( x0, y0, x0 + 3, y1, DialogBG )" // left + 4="fill( x1 - 3, y0, x1, y1, DialogBG )" // right + + } + } + + communityfile_rating_image_background + { + render_bg + { + // transparent background + 0="fill( x0, y0, x1, y1, DarkImageOverlay )" + } + } + } + + layout + { + place { region=body control=communityfile_name x=0 y=120 width=186 } + place { region=body control=communityfile_image_border x=0 y=0 width=192 height=112 } + place { region=body control=communityfile_image x=1 y=1 width=190 height=110 } + place { region=body control=communityfile_rating_image_background x=3 y=87 width=186 height=22 } + place { region=body control=communityfile_rating_image x=8 y=92 width=81 height=13 } + place + { + region=body + control=friendimage + width=42 + height=40 + spacing=10 + x=156 + y=77 + } + } +} diff --git a/resource/layout/gamespage_details_communityfiles.layout b/resource/layout/gamespage_details_communityfiles.layout new file mode 100644 index 0000000..cbdbdf8 --- /dev/null +++ b/resource/layout/gamespage_details_communityfiles.layout @@ -0,0 +1,50 @@ +"resource/layout/gamespage_details_communityfiles.layout" +{ + controls + { + communityfilesdetails { controlname="CGamesPage_Details_CommunityFiles" style="communityfilesdetails" } + workshopdetails { controlname="CWorkshopDetailsPanel" } + viewall { controlname="Button" labeltext="#steam_community_files_view_all" command="ViewWorkshop" } + } + + colors + { + GameDetailsCommunityFiles.ExtraVerticalSpacing "60" + GameDetailsCommunityFiles.PanelSpacing "25" + RichText.InsetX "0" + RichText.InsetY "3" + } + + styles + { + communityfilesdetails + { + bgcolor=Root.RightCol + } + + infolabel + { + font-size=13 [$LINUX] + font-size=15 + } + } + + layout + { + region { name=body margin=10 margin-left=15 width=max height=max } + + place + { + region=body + width=max + y=10 + control=workshopdetails,*communityfile + dir=right + spacing=8 + margin=0 + } + + place { region=body control=viewall align=bottom margin-bottom=5 } + + } +} diff --git a/resource/layout/gamespage_details_dlc.layout b/resource/layout/gamespage_details_dlc.layout new file mode 100644 index 0000000..ecef6ce --- /dev/null +++ b/resource/layout/gamespage_details_dlc.layout @@ -0,0 +1,65 @@ +"resource/layout/gamespage_details_dlc.layout" +{ + controls + { + dlcdetails { controlname="CGamesPage_Details_DLC" style="dlcdetails" } + headerlabel { controlname="Label" style="gamedetails-headerlabel" labeltext="#Steam_DLC_Details" } + latestimage { controlname="ImagePanel" style="mostrecentimage" scaling="fit" } + overlayimage { controlname"ImagePanel" style="overlayimage" scaling="fit" zpos=2 image="resource/dlc_overlay" } + latesttimelabel { controlname="Label" style="mostrecenttime" labeltext="#Steam_DLC_LatestItemAdded" } + dlclist { controlname="ListPanel" style="dlclist" } + moredlc { controlname="Button" labeltext="#Steam_FindDLCInStore" command="FindDLCInStore" } + } + + colors + { + + RichText.InsetX "0" + RichText.InsetY "3" + GameDetailsDLC.ExtraVerticalSpacing "220" + } + + styles + { + dlcdetails + { + bgcolor=Root.RightCol + } + + bodycontent + { + font-size=13 [$LINUX] + font-size=15 + render_bg {} + } + + "DLC_Uninstalled" + { + //textcolor=DefaultText.Disabled + textcolor=DefaultText + selectedtextcolor=DefaultText + } + + "DLC_Installed" + { + textcolor=DefaultText + selectedtextcolor=DefaultText + } + + "mostrecenttime" + { + } + } + + layout + { + region { name=body margin=10 margin-left=15 margin-right=15 width=max height=max} + place { region=body control=headerlabel width=max } + place { region=body control=latestimage start=headerlabel dir=down width=257 height=120 margin-top=10} + place { region=body control=overlayimage start=headerlabel dir=down width=257 height=120 margin-top=10} + place { region=body control=dlclist start=latestimage dir=right width=max height=120 margin-left=10} + place { region=body control=latesttimelabel start=dlclist dir=down height=32 margin-top=10} + place { region=body control=moredlc start=latestimage dir=down height=32 margin-top=10} + } + +} diff --git a/resource/layout/gamespage_details_friends.layout b/resource/layout/gamespage_details_friends.layout new file mode 100644 index 0000000..b9d0981 --- /dev/null +++ b/resource/layout/gamespage_details_friends.layout @@ -0,0 +1,54 @@ +"resource/layout/gamespage_details_friends.layout" +{ + controls + { + friendsdetails { controlname="CGamesPage_Details_Friends" style="friendsdetails" } + + headerlabel { controlname="Label" style="gamedetails-headerlabel" labeltext="#Steam_Friends" } + listplayingnow { controlname="CGamesPage_Details_Friends_List" } + listplayever { controlname="CGamesPage_Details_Friends_List" } + + viewall { controlname="Button" style="viewallbutton" labeltext="#Steam_ViewAllFriends" command="OpenFriendsDialog" } + } + + colors + { + GameDetailsFriends.ExtraVerticalSpacing=100 + } + + styles + { + friendsdetails + { + bgcolor=Root.RightCol + } + + infolabel + { + font-size=13 [$LINUX] + font-size=15 + } + + } + + layout + { + region { name=body margin=10 margin-left=15 width=max height=max } + place { region=body control=headerlabel width=max } + + place + { + region=body + start=headerlabel + dir=down + margin-top=10 + width=max + height=72 + control=listplayingnow,listplayever + dir=down + spacing=0 + margin=0 + } + place { region=body control=viewall start=listplayever dir=down margin-top=10 } + } +} diff --git a/resource/layout/gamespage_details_friends_list.layout b/resource/layout/gamespage_details_friends_list.layout new file mode 100644 index 0000000..5e986c4 --- /dev/null +++ b/resource/layout/gamespage_details_friends_list.layout @@ -0,0 +1,82 @@ +"resource/layout/gamespage_details_friends_list.layout" +{ + controls + { + infolabelplural { controlname="Label" style="infolabel" } + infolabelsingular { controlname="Label" style="infolabel" } + friendlabelmore { controlname="Label" style="friendlabelmore" labeltext="#Steam_MoreFriends" textAlignment="center" tooltiptext="#Steam_ViewAllFriends" } + } + + colors + { + // Note the margin/spacing/width values here must match what is used in placement below + // for the image region. The margin value should be computed by adding the margin of all containing + // regions for the images. All these values also must be positive integers. + GameDetailsFriends.ImageAreaMargin "14" + GameDetailsFriends.ImageAreaSpacing "10" + GameDetailsFriends.ImageWidth "42" + + Tooltip.Anchor=Parent + } + + styles + { + friendlabelmore + { + inset="-3 0 0 0" + font-size=13 [$LINUX] + font-size=15 + textcolor=Button.Text + font-family=basefont + render_bg + { + // background fill + 0="fill( x0 + 1, y0 + 2, x1 - 4, y1 - 1, Button.Back)" + } + } + + friendlabelmore:hover + { + textcolor=Button.Hover.Text + render_bg + { + // background fill + 0="fill( x0 + 1, y0 + 2, x1 - 4, y1 - 1, Button.Back )" + 1="fill( x0 + 1, y0 + 2, x0 + 3, y1 - 1, Button.Hover )" + 2="fill( x1 - 6, y0 + 2, x1 - 4, y1 - 1, Button.Hover )" + 3="fill( x0 + 1, y0 + 2, x1 - 4, y0 + 4, Button.Hover )" + 4="fill( x0 + 1, y1 - 3, x1 - 4, y1 - 1, Button.Hover )" + + } + } + + + infolabel + { + font-size=13 [$LINUX] + font-size=15 + } + } + + layout + { + region { name=body margin=0 width=max height=max } + region { name=images region=body x=0 y=20 margin=2 width=max } + + + place + { + region=images + control=*friendimage,friendlabelmore + dir=right + width=42 + height=40 + spacing=10 + + } + + // Only one of the next two will be visible at once + place { region=body control=infolabelplural y=0 width=max } + place { region=body control=infolabelsingular y=0 width=max } + } +} diff --git a/resource/layout/gamespage_details_gametitleheader.layout b/resource/layout/gamespage_details_gametitleheader.layout new file mode 100644 index 0000000..0fa7fc6 --- /dev/null +++ b/resource/layout/gamespage_details_gametitleheader.layout @@ -0,0 +1,44 @@ +"resource/layout/gamespage_details_gametitleheader.layout" +{ + controls + { + gametitlelabel { controlname="Label" style="headertextlarge" labeltext="" } + iconimage { controlname="ImagePanel" style="gameicon" } + } + + colors + { + GameDetailsTitleHeader.HorizontalSpacing=10 + } + + styles + { + CDetailsGameTitleHeaderPanel + { + bgcolor=Root.BackTransparent + } + + headertextlarge + { + font-size=32 [$LINUX] + font-size=46 + font-family=light + font-weight=400 + bgcolor=none + } + } + + layout + { + region { name="header" y=0 x=0 width=max height=max } + place { + control=iconimage,gametitlelabel + region=header + dir=right + align=left-center + margin-left=10 + margin-right=10 + spacing=10 + } + } +} diff --git a/resource/layout/gamespage_details_news.layout b/resource/layout/gamespage_details_news.layout new file mode 100644 index 0000000..7f64275 --- /dev/null +++ b/resource/layout/gamespage_details_news.layout @@ -0,0 +1,36 @@ +"resource/layout/gamespage_details_news.layout" +{ + controls + { + newsdetails { controlname="CGamesPage_Details_News" style="newsdetails" } + headerlabel { controlname="Label" style="gamedetails-headerlabel" labeltext="#Steam_RecentNews" } + viewall { controlname="Button" labeltext="#Steam_ViewAllNews" command="ViewAllNews" } + } + + colors + { + + + // This is needed to determine how much space is needed veritically for the header and button + // in addition to the autocomputed height for the *newsitem panels, adjust it if you change vertical + // spacing of this controls layout. + GameDetailsNewsContainer.ExtraVerticalSpacing "100" + } + + styles + { + newsdetails + { + bgcolor=Root.RightCol + //bgcolor= JackMyth.HalfTranslucent + } + } + + layout + { + region { name=body margin=10 margin-left=15 margin-right=15 width=max height=max } + place { region=body control=headerlabel width=max } + place { region=body control=*newsitem start=headerlabel margin-top=10 dir=down width=max } + place { region=body control=viewall align=bottom margin-top=10 margin-bottom=0} + } +} diff --git a/resource/layout/gamespage_details_news_item.layout b/resource/layout/gamespage_details_news_item.layout new file mode 100644 index 0000000..515fd01 --- /dev/null +++ b/resource/layout/gamespage_details_news_item.layout @@ -0,0 +1,102 @@ +"resource/layout/gamespage_details_news_item.layout" +{ + controls + { + newsitem_title { controlname="Label" style="title_label" } + newsitem_dateandauthor { controlname="Label" style="date_and_author" } + newsitem_body { controlname="RichText" style="newsitem_body" } + newsitem_more { controlname="URLLabel" style="more_link" labeltext="#steam_newscontinued" } + } + colors + { + // The extra space needed vertical beyond the autocomputed size of the blurb contents + // this is used in code to make the vertical size of the panel fit the title/author/morelink + // and should be updated if you change vertical padding/margins/layout. + GameDetailsNewsItem.ExtraVerticalSpacing "76" + + // Override base style rich text x inset inside this control + RichText.InsetX "0" + RichText.InsetY "3" + } + styles + { + title_label + { + font-size=15 [$LINUX] + font-size=20 + font-weight=400 + } + + date_and_author + { + font-size=13 [$LINUX] + font-size=15 + font-family=semibold + textcolor=Root.SubLabel.Text + } + + newsitem_body + { + textcolor=Root.Label.Text + selectedtextcolor=Root.Label.Text + render_bg {} + font-size=13 [$LINUX] + font-size=15 + font-family=basefont + } + + "newsitem_body url" + { + font-size=13 [$LINUX] + font-size=15 + font-style="underline" + textcolor=URL.Text + selectedtextcolor=URL.Text + } + + "newsitem_body url:hover" + { + textcolor=URL.Hover.Text + selectedtextcolor=URL.Hover.Text + } + + "newsitem_body bold" + { + font-weight=400 + font-family=bold + textcolor=Root.Label.Text + selectedtextcolor=Root.Label.Text + } + "newsitem_body emphasis" + { + textcolor=Root.Label.Text + selectedtextcolor=Root.Label.Text + font-style="italic" + } + + more_link + { + font-size=13 [$LINUX] + font-size=15 + font-style="underline" + font-family=semibold + textcolor=Root.SubLabel.Text + selectedtextcolor=Root.SubLabel.Text + } + + more_link:hover + { + font-style="underline" + textcolor=Root.Label.Text + } + } + + layout + { + region { name=body margin=0 width=max } + place { region=body control=newsitem_title x=0 y=0 width=max height=24 } + place { region=body y=17 control=newsitem_dateandauthor width=max height=24 } + place { region=body y=36 control=newsitem_body width=max } + place { region=body control=newsitem_more align=bottom margin-bottom=20 } + } +} diff --git a/resource/layout/gamespage_details_nonsteam.layout b/resource/layout/gamespage_details_nonsteam.layout new file mode 100644 index 0000000..e1c08bb --- /dev/null +++ b/resource/layout/gamespage_details_nonsteam.layout @@ -0,0 +1,46 @@ +"resource/layout/gamespage_details_nonsteam.layout" +{ + controls + { + nonsteamdetails { controlname="CGamesPage_Details_NonSteam" style="nonsteamdetails" } + headerlabel { controlname="Label" style="gamedetails-headerlabel" labeltext="#Steam_NonSteam" } + bodycontent { controlname="RichText" style="bodycontent" } + } + + colors + { + BackgroundStart="20 20 20 170" + RichText.InsetX "0" + RichText.InsetY "3" + GameDetailsNonSteam.ExtraVerticalSpacing "55" + } + + styles + { + nonsteamdetails + { + bgcolor=Root.RightCol + } + + bodycontent + { + textcolor=Root.Label.Text + selectedtextcolor=Root.Label.Text + font-size=13 [$LINUX] + font-size=15 + render_bg {} + } + + "RichText url" + { + font-size=13 [$LINUX] + font-size=15 + } + } + + layout + { + region { name=body margin=10 margin-left=15 width=max height=max } + place { region=body control=headerlabel,bodycontent dir=down spacing=8 width=max } + } +} diff --git a/resource/layout/gamespage_details_rental.layout b/resource/layout/gamespage_details_rental.layout new file mode 100644 index 0000000..e51cc63 --- /dev/null +++ b/resource/layout/gamespage_details_rental.layout @@ -0,0 +1,48 @@ +"resource/layout/gamespage_details_rental.layout" +{ + controls + { + rentaldetails { controlname="CGamesPage_Details_Rental" style="nonsteamdetails" } + headerlabel { controlname="Label" style="gamedetails-headerlabel" labeltext="#Steam_Rental_Title" } + bodybasic { controlname="RichText" style="bodycontent" } + } + + colors + { + RichText.InsetX "0" + RichText.InsetY "3" + GameDetailsWelcome.ExtraVerticalSpacing "52" + GameDetailsWelcome.WelcomeTextSpacing "0" + } + + styles + { + nonsteamdetails + { + bgcolor=Root.RightCol + } + + bodycontent + { + textcolor=Root.Label.Text + selectedtextcolor=Root.Label.Text + font-size=13 [$LINUX] + font-size=15 + render_bg {} + } + + "RichText url" + { + font-size=13 [$LINUX] + font-size=15 + } + } + + layout + { + region { name=body margin=10 margin-left=15 width=max height=max } + place { region=body control=headerlabel width=max } + place { region=body y=26 control=bodybasic dir=down width=max spacing=2 } + } + +} diff --git a/resource/layout/gamespage_details_screenshots.layout b/resource/layout/gamespage_details_screenshots.layout new file mode 100644 index 0000000..aa7ddb1 --- /dev/null +++ b/resource/layout/gamespage_details_screenshots.layout @@ -0,0 +1,40 @@ +"resource/layout/gamespage_details_screenshots.layout" +{ + controls + { + screenshotsdetails { controlname="CGamesPage_Details_Screenshots" style="screenshotsdetails" } + + headerlabel { controlname="Label" style="gamedetails-headerlabel" labeltext="#Steam_Screenshots" } + + screenshotsarea { controlname="CScreenshotsPanel" } + + viewall { controlname="Button" labeltext="#Steam_ViewAllScreenshots" command="ViewAllScreenshots" } + } + + colors + { + // Extra spacing beyond the flowing elements to account for header and button at the bottom + GameDetailsScreenshots.ExtraVerticalSpacing "100" + + RichText.InsetX "0" + RichText.InsetY "3" + } + + styles + { + screenshotsdetails + { + bgcolor=Root.RightCol + } + } + + layout + { + region { name=body margin=10 margin-left=15 width=max height=max } + + place { region=body control=headerlabel width=max } + place { region=body control=screenshotsarea start=headerlabel margin-top=10 dir=down width=max } + + place { region=body control=viewall start=screenshotsarea margin-top=10 dir=down } + } +} diff --git a/resource/layout/gamespage_details_screenshots_list.layout b/resource/layout/gamespage_details_screenshots_list.layout new file mode 100644 index 0000000..19c7a7b --- /dev/null +++ b/resource/layout/gamespage_details_screenshots_list.layout @@ -0,0 +1,74 @@ +"resource/layout/gamespage_details_screenshots_list.layout" +{ + controls + { + screenshotsarea { controlname="CScreenshotsPanel" style="screenshotsarea" } + + screenshotslabelmore { controlname="Label" style="screenshotslabelmore" labeltext="#Steam_MoreScreenshots" textAlignment="center" tooltiptext="#Steam_ViewAllScreenshots"} + } + + colors + { + // Note, the below values are used for dynamic layout in code, and must match the values from place + // commands below for layout to work correctly. + + // ImageAreaSpacing must be the spacing between achievement images + GameDetailsScreenshots.ImageAreaSpacing "12" + + // Dimensions for the more label + GameDetailsScreenshots.MoreLabelSize "46" + + // Height to scale all screenshots to, they may be variable width + GameDetailsScreenshots.ImageHeight "108" + + Tooltip.Anchor=Parent + } + + styles + { + infolabel + { + + font-size=13 [$LINUX] + font-size=15 + textcolor=DefaultText + } + + screenshotslabelmore + { + inset="-3 0 0 0" + font-size=13 [$LINUX] + font-size=15 + textcolor=Button.Text + font-family=basefont + render_bg + { + // background fill + 0="fill( x0, y0, x1, y1, Button.Back )" + } + } + + screenshotslabelmore:hover + { + inset="-3 0 0 0" + font-size=13 [$LINUX] + font-size=15 + textcolor=Button.Hover.Text + font-family=basefont + render_bg + { + // background fill + 0="fill( x0, y0, x1, y1, Button.Back )" + 1="fill( x0, y0, x1, y0 + 2, Button.Hover )" + 2="fill( x0, y1 - 2, x1, y1, Button.Hover )" + 3="fill( x0, y0, x0 + 2, y1, Button.Hover )" + 4="fill( x1 - 2, y0, x1, y1, Button.Hover )" + } + } + } + + layout + { + region { name=body margin=0 width=max height=max } + } +} diff --git a/resource/layout/gamespage_details_subheader.layout b/resource/layout/gamespage_details_subheader.layout new file mode 100644 index 0000000..d375110 --- /dev/null +++ b/resource/layout/gamespage_details_subheader.layout @@ -0,0 +1,209 @@ +"resource/layout/gamespage_details_subheader.layout" +{ + controls + { + subheaderlabels { controlname="CDetailsSubHeaderLabelsPanel" } + launchbutton { controlname="Button" labeltext="#Steam_LaunchGame" style="detailsLaunchButton" tabposition=1 command="RunGameAction" } + clientlist { controlname="ClientListButton" labeltext="" style="ClientListButton" tabposition=2 zpos=100 } + } + + colors + { + GameDetailsSubHeader.HorizontalSpacing=10 + GameDetailsSubHeader.VerticalMargin=10 + } + + styles + { + CDetailsGameSubHeaderPanel + { + bgcolor=Root.BackTransparent + } + + + ClientListButton + { + inset="-4 4 0 0" + // minimum-width=20 + // minimum-height set by code to match actual height of Launch button + // Do not set either minimum-width or -height here or it will override the code and the layout will break + bgcolor=Accent + render_bg {} + render {} + } + + ClientListButton:hover + { + bgcolor=Accent.Hover + } + + ClientListButton:active + { + bgcolor=Accent.Hover + } + + ClientListButton:selected + { + bgcolor=Accent.Hover + } + + + DetailsButton + { + inset="-3 0 0 0" + font-family=basefont + font-weight=400 + textcolor=Accent.Text + //font-style=uppercase + bgcolor=Accent + + render_bg {} + } + + DetailsButton:hover + { + bgcolor=Accent.Hover + } + + DetailsButton:active + { + bgcolor=Accent.Hover + } + + DetailsLaunchButton + { + inset="20 0 0 1" + font-family=basefont + font-weight=400 + textcolor=Accent.Text + //font-style=uppercase + bgcolor=Accent + + render + { + 1="image( x0 + 9, y0 + 7, x1, y1, graphics/Threshold/icons/play )" + } + render_bg {} + } + + DetailsLaunchButton:Hover + { + bgcolor=Accent.Hover + } + + DetailsLaunchButton:Selected + { + bgcolor=Accent.Hover + } + + + DetailsLaunchButton:Active + { + bgcolor=Accent.Hover + } + + DetailsInstallButton + { + + inset="20 0 0 1" + font-family=basefont + font-weight=400 + textcolor=Accent.Text + //font-style=uppercase + bgcolor=Accent + render + { + 1="image( x0 + 8, y0 + 7, x1, y1, graphics/Threshold/icons/install)" + } + render_bg {} + } + + DetailsInstallButton:Hover + { + bgcolor=Accent.Hover + } + + DetailsInstallButton:Selected + { + bgcolor=Accent.Hover + } + + + DetailsInstallButton:Active + { + bgcolor=Accent.Hover + } + + + DetailsBuyButton + { + inset="20 0 0 1" + font-family=basefont + font-weight=400 + textcolor=Accent.Text + //font-style=uppercase + bgcolor=Accent + + render + { + 1="image( x0 + 6, y0 + 7, x1, y1, graphics/Threshold/icons/buy )" + } + render_bg {} + } + + DetailsBuyButton:hover + { + bgcolor=Accent.Hover + } + + DetailsBuyButton:active + { + bgcolor=Accent.Hover + } + + + DetailsBuyButton:Selected + { + bgcolor=Accent.Hover + } + } + + layout + { + // Y offset here should match the vertical padding value above in the colors section + region { name="header" y=0 x=0 width=max height=max } + + place { + control=launchbutton + region=header + dir=right + align=middle + margin-left=10 + margin-right=0 + margin-top=10 + margin-bottom=10 + spacing=0 + } + place { + start=launchbutton + control=clientlist + region=header + dir=right + align=middle + margin-left=0 + margin-right=0 + spacing=0 + } + place { + start=clientlist + control=subheaderlabels + region=header + dir=right + align=middle + margin-top=-3 + margin-left=10 + margin-right=0 + spacing=10 + } + } +} diff --git a/resource/layout/gamespage_details_subheader_labels.layout b/resource/layout/gamespage_details_subheader_labels.layout new file mode 100644 index 0000000..0fc91a6 --- /dev/null +++ b/resource/layout/gamespage_details_subheader_labels.layout @@ -0,0 +1,54 @@ +"resource/layout/gamespage_details_subheader_labels.layout" +{ + controls + { + totalplaytimeheader { controlname="Label" style="headertext" labeltext="#steam_details_totalplaytimeheader" zpos="2" } + totalplaytimevalue { controlname="Label" style="valuetext" labeltext="" zpos="2" } + + gameplayedheader { controlname="Label" style="headertext" labeltext="#steam_details_lastplayedheader" zpos="2" } + gameplayedvalue { controlname="Label" style="valuetext" labeltext="" zpos="2" } + + shareheader { controlname="Label" style="headertext" labeltext="#steam_details_sharedbyheader" zpos="2" } + sharevalue { controlname="Label" style="valuetext" labeltext="" zpos="2" } + + streamheader { controlname="Label" style="headertext" labeltext="#steam_details_streamfromheader" zpos="2" } + streamvalue { controlname="Label" style="valuetext" labeltext="" zpos="2" } + } + + styles + { + headertext + { + font-size=13 [$LINUX] + font-size=15 + textcolor=Accent + } + + headertext-red + { + font-size=13 [$LINUX] + font-size=15 + textcolor=Accent + } + + headertext-green + { + font-size=13 [$LINUX] + font-size=15 + textcolor=Accent + } + + headertext-blue + { + font-size=13 [$LINUX] + font-size=15 + textcolor=Accent + } + + valuetext + { + font-size=13 [$LINUX] + font-size=15 + } + } +} diff --git a/resource/layout/gamespage_details_subheaderright.layout b/resource/layout/gamespage_details_subheaderright.layout new file mode 100644 index 0000000..f0b9b34 --- /dev/null +++ b/resource/layout/gamespage_details_subheaderright.layout @@ -0,0 +1,88 @@ +"resource/layout/gamespage_details_subheaderright.layout" +{ + controls + { + subheaderlabels { controlname="CDetailsSubHeaderLabelsRightPanel" } + + gamehubbutton { controlname="Button" labeltext="#steam_gamehub" style="DetailsButton" } + } + + colors + { + GameDetailsSubHeader.HorizontalSpacing=10 + GameDetailsSubHeader.VerticalMargin=0 + gamehubbgtop="67 90 122 255" + gamehubbgbottom="54 74 99 255" + gamehubborder="74 100 133 255" + } + + styles + { + CDetailsGameSubHeaderRightPanel + { + bgcolor=DarkDialogBGTransparent + } + + DetailsButton + { + inset="-3 0 0 0" + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor="Text" + bgcolor=none + + render_bg + { + // background fill + 0="gradient( x0 + 1, y0 + 1, x1 - 1, y1 - 1, gamehubbgtop, gamehubbgbottom )" + + 1="fill( x0 + 2, y0, x1 - 2, y0 + 1, gamehubborder )" // top + 2="fill( x0 + 2, y1 - 1, x1 - 2, y1, gamehubborder )" // bottom + 3="fill( x0, y0 + 2, x0 + 1, y1 - 2, gamehubborder )" // left + 4="fill( x1 - 1, y0 + 2, x1, y1 - 2, gamehubborder )" // right + + 5="fill( x0 + 1, y0 + 1, x0 + 2, y0 + 2, gamehubborder )" + 6="fill( x1 - 2, y0 + 1, x1 - 1, y0 + 2, gamehubborder )" + 7="fill( x0 + 1, y1 - 2, x0 + 2, y1 - 1, gamehubborder )" + 8="fill( x1 - 2, y1 - 2, x1 - 1, y1 - 1, gamehubborder )" + 9="fill( x0, y0 + 1, x0 + 1, y0 + 2, gamehubborder )" + 10="fill( x1 - 1, y0 + 1, x1, y0 + 2, gamehubborder )" + 11="fill( x0, y1 - 2, x0 + 1, y1 - 1, gamehubborder )" + 12="fill( x1 - 1, y1 - 2, x1, y1 - 1, gamehubborder )" + 13="fill( x0 + 1, y0, x0 + 2, y0 + 1, gamehubborder )" + 14="fill( x1 - 2, y0, x1 - 1, y0 + 1, gamehubborder )" + 15="fill( x0 + 1, y1 - 1, x0 + 2, y1, gamehubborder )" + 16="fill( x1 - 2, y1 - 1, x1 - 1, y1, gamehubborder )" + } + } + + DetailsButton:hover + { + textcolor="white" + } + + DetailsButton:active + { + textcolor="white" + inset="-2 1 0 0" + } + } + + layout + { + // Y offset here should match the vertical padding value above in the colors section + region { name="header" y=0 x=0 width=max height=max } + + place { + control=subheaderlabels,gamehubbutton + region=header + dir=right + align=left-center + margin-left=10 + margin-right=10 + spacing=10 + } + } +} diff --git a/resource/layout/gamespage_details_subheaderright_labels.layout b/resource/layout/gamespage_details_subheaderright_labels.layout new file mode 100644 index 0000000..ff98051 --- /dev/null +++ b/resource/layout/gamespage_details_subheaderright_labels.layout @@ -0,0 +1,51 @@ +"resource/layout/gamespage_details_subheaderright_labels.layout" +{ + controls + { + contributioncount { controlname="Label" style="headertext" labeltext="" zpos="2" } + contributionlabel { controlname="Label" style="headertext2" labeltext="#steam_details_contributioncount" zpos="2" } + } + + colors + { + contributiontext="166 188 206 255" + } + + + styles + { + headertext + { + padding-left=0 + padding-bottom=1 + padding-top=0 + font-size=14 [$LINUX] + font-size=16 + textcolor=Text + font-style=uppercase; + } + + headertext2 + { + padding-left=0 + padding-bottom=1 + padding-top=0 + font-size=14 [$LINUX] + font-size=16 + textcolor=contributiontext + font-style=uppercase; + } + } + + layout + { + region { name="subheaderlabels" y=0 x=0 width=max height=max } + + place { + control=contributioncount,contributionlabel + region=subheaderlabels + dir=down + align=right + } + } +} diff --git a/resource/layout/gamespage_details_turnnotifications.layout b/resource/layout/gamespage_details_turnnotifications.layout new file mode 100644 index 0000000..dd63a64 --- /dev/null +++ b/resource/layout/gamespage_details_turnnotifications.layout @@ -0,0 +1,49 @@ +"resource/layout/gamespage_details_screenshots.layout" +{ + controls + { + turnnotifications { controlname="CGamesPage_Details_TurnNotifications" style="turnnotifications" } + headerlabel { controlname="Label" style="gamedetails-headerlabel" labeltext="#Steam_TurnNotifications_Sessions" } + } + + colors + { + // Extra spacing beyond the flowing elements to account for header and button at the bottom + GameDetailsTurnNotifications.ExtraVerticalSpacing "80" + GameDetailsTurnNotifications.ItemSpacing "36" + GameDetailsTurnNotifications.ButtonSpacing "10" + + RichText.InsetX "0" + RichText.InsetY "3" + + } + + styles + { + turnnotifications + { + bgcolor=Root.RightCol + } + } + + layout + { + region { name=body margin=10 margin-left=15 width=max height=max } + + place { region=body control=headerlabel width=max } + + place + { + region=body + width=max + y=24 + control=*turnnotification + dir=down + spacing=4 + margin=0 + } + + place { region=body control=pagination width=max align=bottom margin-bottom=5 } + + } +} diff --git a/resource/layout/gamespage_details_turnnotifications_item.layout b/resource/layout/gamespage_details_turnnotifications_item.layout new file mode 100644 index 0000000..2bf8364 --- /dev/null +++ b/resource/layout/gamespage_details_turnnotifications_item.layout @@ -0,0 +1,40 @@ +"resource/layout/gamespage_details_cloud_file.layout" +{ + controls + { + title { controlname="Label" style="titlestyle" } + message { controlname="Label" style="messagestyle" } + launchsession { controlname="Button" labelText="#Steam_TurnNotifications_LaunchSession" } + } + + styles + { + titlestyle + { + font-size=15 [$LINUX] + font-size=20 + } + + messagestyle + { + font-size=13 [$LINUX] + font-size=15 + } + + turnnotification_odd + { + } + + turnnotification_even + { + bgcolor="10 36 56 175" + } + } + + layout + { + region { name=column1 margin=0 x=0 y=0 width=max } + place { region=column1 control=title,message dir=down x=0 y=3 spacing=4 width=max height=14 } + place { region=column1 control=launchsession x=0 y=13 align=right height=14 margin-right=7 } + } +} diff --git a/resource/layout/gamespage_details_welcome.layout b/resource/layout/gamespage_details_welcome.layout new file mode 100644 index 0000000..d857b19 --- /dev/null +++ b/resource/layout/gamespage_details_welcome.layout @@ -0,0 +1,51 @@ +"resource/layout/gamespage_details_welcome.layout" +{ + controls + { + welcomedetails { controlname="CGamesPage_Details_Welcome" style="nonsteamdetails" } + headerlabel { controlname="Label" style="gamedetails-headerlabel" labeltext="#Steam_Welcome" } + bodybasic { controlname="RichText" style="bodycontent" } + bodynofriends { controlname="RichText" style="bodycontent" } + bodyhelp { controlname="RichText" style="bodycontent" } + } + + colors + { + + RichText.InsetX "0" + RichText.InsetY "3" + GameDetailsWelcome.ExtraVerticalSpacing "52" + GameDetailsWelcome.WelcomeTextSpacing "0" + } + + styles + { + nonsteamdetails + { + bgcolor=Root.RightCol + } + + bodycontent + { + textcolor=Root.Label.Text + selectedtextcolor=Root.Label.Text + font-size=13 [$LINUX] + font-size=15 + render_bg {} + } + + "RichText url" + { + font-size=13 [$LINUX] + font-size=15 + } + } + + layout + { + region { name=body margin=10 margin-left=15 width=max height=max } + place { region=body control=headerlabel width=max } + place { region=body y=26 control=bodybasic,bodynofriends,bodyhelp dir=down width=max spacing=2 } + } + +} diff --git a/resource/layout/gamespage_details_workshop_details.layout b/resource/layout/gamespage_details_workshop_details.layout new file mode 100644 index 0000000..8bd9da5 --- /dev/null +++ b/resource/layout/gamespage_details_workshop_details.layout @@ -0,0 +1,36 @@ +"resource/layout/gamespage_details_workshop_details.layout" +{ + controls + { + workshopdetails { controlname="CWorkshopDetailsPanel" } + workshop_banner { controlname="ImagePanel" image=resource/workshop_banner zpos=-1 style="workshop_banner" } + workshop_description { controlname="RichText" style="workshop_description" text="#steam_community_files_info" } + } + + colors + { + WorkshopDetailsPanel.ExtraVerticalSpacing "140" + WorkshopDetailsPanel.ExtraHorizontalSpacing "203" + RichText.InsetX "2" + RichText.InsetY "2" + } + + styles + { + workshop_description + { + textcolor=Root.Label.Text + selectedtextcolor=Root.Label.Text + render_bg {} + font-size=13 [$LINUX] + font-size=15 + font-family=basefont + } + } + + layout + { + place { region=body control=workshop_description x=0 y=60 width=200 height=80 } + place { region=body control=workshop_banner x=1 y=0 width=200 height=52 align=left } + } +} diff --git a/resource/layout/gamespage_grid.layout b/resource/layout/gamespage_grid.layout new file mode 100644 index 0000000..85fad82 --- /dev/null +++ b/resource/layout/gamespage_grid.layout @@ -0,0 +1,91 @@ +"resource/layout/gamespage_grid.layout" +{ + controls + { + "grid" + { + "alignment" "justify" // left, right, justify + "interiorspacing" 18 // minimum interitem spacing, used for both x and y + "wheelpct" 50 // mouse wheel -> scroll this percent of an item's dy + "tabposition" 1 + } + + "emptylisttext" { control="RichText" style="emptylisttext" } + } + + // random/generic settings go in "colors" + colors + { + // values defining the aspect ratio of the images in the grid view + GridView.OriginalImageWidth "460" + GridView.OriginalImageHeight "215" + + // value defining the extra vertical distance to leave below + // the picture for drop shadow room, in px. This value should + // match the margin values in the layout statements in the gamespage_grid_*.layout files. + GridView.DropShadowLeading "10" + } + + styles + { + WrapPanel + { + inset="0 0 0 0" + bgcolor="none" + render + { + } + render_bg { + + // background gradient + 2="fill( x0 - 10, y0, x1, y1, Root.Back )" + + + + + } + } + + emptylisttext + { + textcolor=DefaultText + font-size=13 [$LINUX] + font-size=15 + render_bg {} + } + + + // GameItem_whatever suffix is computed on the fly. (not case sensitive.) possible values: + // shortcut + // mod + // decrypting + // syncing + // installed + // updating + // uninstalled + // notinstalled (yes there are two) + GameItem_installed + { + alpha 255 + } + GameItem_unInstalled + { + alpha 255 + } + GameItem_Updating + { + alpha 255 + } + } + + layout + { + place + { + control = grid x=10 y=2 width=max height=max + } + + place { control=emptylisttext x=0 y=0 margin=10 margin-top=9 width=max height=max } + } +} + diff --git a/resource/layout/gamespage_grid_chrome.layout b/resource/layout/gamespage_grid_chrome.layout new file mode 100644 index 0000000..2d3a268 --- /dev/null +++ b/resource/layout/gamespage_grid_chrome.layout @@ -0,0 +1,160 @@ +"resource/layout/gamespage_grid_chrome.layout" +{ + controls + { + "chromeborder" + { + ControlName Panel + style ChromeBorderItem + mouseinputenabled 0 + } + + + "launch" + { + zpos="1" + // this control's text and command will be clobbered by code based on the installation state + ControlName URLLabel + labelText "#steam_launch" + style CUILaunchButton + command launch + } + + + "divider" + { + zpos="1" + // + ControlName Label + labelText "|" + style GridNavDivider + + } + + "details" + { + zpos="1" + ControlName URLLabel + labelText "#steam_details" + style CUIDetailsButton + command details + } + } + + styles + { + ChromeBorderItem + { + + render + { + // bgfill + + 0="fill( x0 , y0, x1, y1, Root.BackTransparent )" + + + } + } + + + GridNavDivider + { + textcolor=DefaultText + bgcolor="none" + font-family=basefont + inset="1 1 0 0 " + font-size=15 [$LINUX] + font-size=20 + } + + CUILaunchButton + { + font-family=basefont + font-size=15 [$LINUX] + font-size=20 + font-weight=400 + textcolor=DefaultText + font-style=none + bgcolor=none + padding-left=23 + padding-top=1 + render + { + 1="image( x0+4, y0+4, x1, y1, graphics/Threshold/icons/play )" + } + } + + CUILaunchButton:Hover + { + font-family=basefont + font-size=15 [$LINUX] + font-size=20 + font-weight=400 + textcolor=DefaultText.Hover + font-style=none + padding-top=1 + bgcolor=none + + render + { + 1="image( x0+4, y0+4, x1, y1, graphics/Threshold/icons/play_hover )" + } + } + + CUIDetailsButton + { + font-family=basefont + font-size=15 [$LINUX] + font-size=20 + font-weight=400 + textcolor=DefaultText + font-style=none + bgcolor=none + padding-left=22 + padding-top=1 + + render + { + 1="image( x0, y0+4, x1, y1, graphics/Threshold/icons/search_hover )" + } + } + + CUIDetailsButton:Hover + { + font-family=basefont + font-size=15 [$LINUX] + font-size=20 + font-weight=400 + textcolor=DefaultText.Hover + font-style=none + bgcolor=none + padding-top=1 + render + { + 1="image( x0, y0+4, x1, y1, graphics/Threshold/icons/search )" + } + } + + + "GameItem_Updating CUINavButton:hover" + { + textcolor=DefaultText + } + } + + + layout + { + region { name="actions" align=bottom width=max height=50 x=0 y=200 margin-bottom=0} + + place + { + control=chromeborder region=actions x=0 y=0 width=max height=max + } + + place + { + control="launch,divider,details" region="actions" align=top-center spacing=8 margin-bottom=18 margin-left=0 margin-top=8 + } + } +} \ No newline at end of file diff --git a/resource/layout/gamespage_grid_loaded.layout b/resource/layout/gamespage_grid_loaded.layout new file mode 100644 index 0000000..2012a19 --- /dev/null +++ b/resource/layout/gamespage_grid_loaded.layout @@ -0,0 +1,23 @@ +"resource/layout/gamespage_grid_loaded.layout" +{ + controls + { + "image" + { + "ControlName" "ImagePanel" + "style" "GamesGridImage" + "scaling" fit + } + } + + layout + { + place + { + control = image + width = max + height = max + } + } +} + diff --git a/resource/layout/gamespage_grid_loadfailed.layout b/resource/layout/gamespage_grid_loadfailed.layout new file mode 100644 index 0000000..ee6667f --- /dev/null +++ b/resource/layout/gamespage_grid_loadfailed.layout @@ -0,0 +1,97 @@ +"resource/layout/gamespage_grid_loadfailed.layout" +{ + controls + { + "background" + { + ControlName "ImagePanel" + style "GGPlaceholderBG" + scaling "fit" + zpos "1" + // image resource of this control will be set programmatically + } + + "noappimage_border" + { + ControlName "ImagePanel" + style "GamesGridIconBorder" + zpos "2" + } + + "noappimage" + { + ControlName "ImagePanel" + style "GamesGridIcon" + zpos "3" + } + + "appname" + { + ControlName "Label" + style "GamesGridPlaceholder" + textalignment "center" + zpos "4" + // labeltext of this control will be set programmatically + } + + } + + styles + { + GamesGridPlaceholder + { + font-size=14 [$LINUX] + font-size=18 + font-family=basefont + textcolor=DefaultText + } + + GamesGridIconBorder + { + bgcolor="none" + inset="0 0 0 0" + render + { + + } + } + + GGPlaceholderBG + { + bgcolor=none + } + + "GameItem_installed GamesGridPlaceholder" + { + textcolor=DefaultText + } + } + + layout + { + region + { + name=icon_region width=max height=max + } + + place + { + control = "background" width=max height=max + } + place + { + control = "appname" margin=12 width=max align=center margin-top=14 + } + place + { + control = "noappimage_border" region="icon_region" x=0 y=0 width=34 height=34 margin-top=48 align=top-center + } + place + { + control = "noappimage" region="icon_region" x=0 y=0 width=32 height=32 margin-top=49 align=top-center + } + + } +} + + diff --git a/resource/layout/gamespage_grid_loading.layout b/resource/layout/gamespage_grid_loading.layout new file mode 100644 index 0000000..949eaf4 --- /dev/null +++ b/resource/layout/gamespage_grid_loading.layout @@ -0,0 +1,97 @@ +"resource/layout/gamespage_grid_loading.layout" +{ + controls + { + "background" + { + "ControlName" "ImagePanel" + "style" "GGPlaceholderBG" + "scaling" "fit" + zpos="1" + // image resource of this control will be set programmatically + } + + "noappimage_border" + { + "ControlName" "ImagePanel" + "style" "GamesGridIconBorder" + zpos="2" + } + + "noappimage" + { + "ControlName" "ImagePanel" + "style" "GamesGridIcon" + zpos="3" + } + + "appname" + { + "ControlName" "Label" + "style" "GamesGridPlaceholder" + textalignment="center" + zpos="4" + // labeltext of this control will be set programmatically + } + + } + + styles + { + GamesGridPlaceholder + { + font-size=14 [$LINUX] + font-size=18 + font-family=basefont + textcolor=DefaultText + } + + GamesGridIconBorder + { + bgcolor="none" + inset="0 0 0 0" + render + { + + } + } + + GGPlaceholderBG + { + bgcolor=none + } + + "GameItem_installed GamesGridPlaceholder" + { + textcolor=DefaultText + } + } + + layout + { + region + { + name=icon_region width=max height=max + } + + place + { + control = "background" width=max height=max + } + place + { + control = "appname" margin=12 width=max align=center margin-top=14 + } + place + { + control = "noappimage_border" region="icon_region" x=0 y=0 width=34 height=34 margin-top=48 align=top-center + } + place + { + control = "noappimage" region="icon_region" x=0 y=0 width=32 height=32 margin-top=49 align=top-center + } + + } +} + + diff --git a/resource/layout/gamespage_mini.layout b/resource/layout/gamespage_mini.layout new file mode 100644 index 0000000..d28ee45 --- /dev/null +++ b/resource/layout/gamespage_mini.layout @@ -0,0 +1,227 @@ +"resource/layout/gamespage_mini.layout" +{ + controls + { + GamesList { controlname=Panel style="DetailsBorderPanel" tabposition=1 } + CGamesPage_Mini { title="#Steam_Root_Title" } + library_filters { ControlName=MenuButton labelText="#steam_library_filter_allgames" style="NavLabel2" showDownArrow=0 group=filters } + library_search { ControlName=TextEntry maxchars=12 hintText="#steam_library_search" style="LibrarySearch" group=library tabposition=2 } + label_search_icon { ControlName=Label style="LibrarySearchIcon" group=filters } + + + "subnavgroup_library" + { + "ControlName" "imagepanel" + style="grouper" + group="library" + zpos="-4" + } + + } + + styles + { + downarrow + { + image=none + } + + downarrow:hover + { + image=none + } + + "CGamesPage_Mini ListPanelColumnSelectButton" // the games list column chooser + { + bgcolor=none + inset="0 0 0 0" + render + { + // background fill + 2="image( x0 + 5, y0 + 3, x1, y1, graphics/Threshold/icons/plus_hover )" + } + render_bg{} + + } + + "CGamesPage_Mini ListPanelColumnSelectButton:hover" // the games list column chooser + { + bgcolor=none + inset="0 0 0 0" + render + { + // background fill + 2="image( x0 + 5, y0 + 3, x1, y1, graphics/Threshold/icons/plus )" + } + render_bg{} + + } + + "CGamesPage_Mini ListPanel" + { + padding-left=15 + } + + "CGamesPage_Mini ListPanelInterior" + { + inset="0 0 0 0" + bgcolor=none + render + { + } + render_bg {} + } + + "CGamesPage_Mini ListPanelInterior:scrollbar" + { + inset="0 0 0 0" + bgcolor=none + render_bg { + + } + } + + ListPanelSectionHeader + { + render_bg + { + //0="fill( x0 - 1, y0, x1, y1, List.Header)" + 0="fill( x0 - 1, y0, x1, y1, JackMyth.HalfOpacity)" + } + } + + grouper + { + bgcolor=none + render_bg + { + } + + } + + CGamesPage_Mini + { + //bgcolor="DefaultBackground" + render_bg{ + 0="fill( x0, y0, x1, y0+96, Root.TabBar)" + 1="fill( x0, y0+96, x1, y1, Root.Back)" + } + } + + + + LibrarySearch + { + padding-left=0 + font-family=basefont + font-size=15 [$LINUX] + font-size=20 + font-weight=400 + textcolor=Search.Active.Text + shadowtextcolor=DefaultCursor + render{} + render_bg + { + //0="fill(x0,y0,x1,y1,Search.Back)" + 0="fill(x0,y0,x1,y1,JackMyth.HalfTranslucent)" + } + } + + LibrarySearch:empty + { + font-style=none + textcolor=Search.Text + } + + LibrarySearch:hover + { + textcolor=Search.Active.Text + } + + LibrarySearch:empty:hover + { + font-style=none + textcolor=Search.Hover.Text + + } + LibrarySearchIcon + { + //bgcolor=Search.Back + 0="fill(x0,y0,x1,y1,JackMyth.HalfTranslucent)" + inset="4 2 0 0" + image="graphics/Threshold/icons/search" + padding-left=10 + padding-right=0 + render_bg{ + 0="fill(x0,y0,x1,y1,Search.Back)" + } + } + + NavLabel2 + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=Root.Label.Text + padding-right=5 + padding-left=5 + render{} + render_bg{} + } + + NavLabel2:hover + { + textcolor=Root.Label.Text + render{} + render_bg{ + 0="fill(x0,y0,x1,y1,Menu.Button.Hover)" + } + } + + NavLabel2:selected + { + textcolor=Root.Label.Text + render{} + } + + ListPanelColumnheader + { + render {} + bgcolor=none + render_bg {} + } + + "CGamesPage_Mini CGameFilterMenuButton" + { + inset="3 0 0 0" + padding-left="-3" + } + + DetailsBorderPanel + { + inset="-1 0 0 0" + bgcolor=none + render_bg + { + + } + } + + } + + layout + { + place { control="frame_captiongrip" margin=2 width=max height=38 } + place { control="MenuBar" margin-left=0 height=32 width=50} + + place { control="subnavgroup_library" align=top-center y=38 height=26 width=max margin-right=9 margin-left=9 } + + place { control="gameslist" align=left margin-left=0 margin-right=0 margin-top=96 margin-bottom=0 width=max height=max } + + place { control="library_search" width=max} + place { control="label_search_icon,library_search" align=left y=32 height=40 spacing=0 x=0} + + place { control="library_filters" align=left margin-top=72 height=24 } + } +} diff --git a/resource/layout/htmlfindbar.layout b/resource/layout/htmlfindbar.layout new file mode 100644 index 0000000..b477cbf --- /dev/null +++ b/resource/layout/htmlfindbar.layout @@ -0,0 +1,56 @@ +"resource/layout/htmlfindbar.layout" +{ + controls + { + FindEntry { controlname=TextEntry default=1 unicode=1 tabposition=1 style="FindEntry" } + FindCount { controlname=Label labeltext="#vgui_HTMLSearchMatch" } + Close { controlname=Button command="Close" style="CloseButtonSm" } + Next { controlname=Button command="next" style="NextButtonSm" } + Previous { controlname=Button command="previous" style="PrevButtonSm" } + SearchThisPage { controlname=Label labeltext="#vgui_HTMLSearchThisPage" style="" } + } + + styles + { + + FindEntry:focus + { + textcolor=TextBox.Hover.Text + render_bg + { + 0="fill(x0, y0, x1, y1, TextBox.Back)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, TextBox.Outline.Active )" // top + 2="fill( x0, y1 - 1, x1, y1, TextBox.Outline.Active )" // bottom + 3="fill( x0, y0, x0 + 1, y1, TextBox.Outline.Active )" // left + 4="fill( x1 - 1, y0, x1, y1, TextBox.Outline.Active )" // right + } + } + CloseButtonSm + { + inset="1 0 0 0" + minimum-width=32 + image="graphics/Threshold/icons/close" + } + NextButtonSm + { + inset="0 0 0 0" + minimum-width=32 + image="graphics/Threshold/icons/down" + } + PrevButtonSm + { + inset="0 0 0 0" + minimum-width=32 + image="graphics/Threshold/icons/up" + } + } + + layout + { + place { control="FindEntry" width=max align=left y=10 margin-left=8 margin-right=126 } + place { control="FindCount,Next,Previous,Close" height=32 align=right margin-right=8 margin-top=10 spacing=8 } + place { control="SearchThisPage" width=0 height=0} + + } +} diff --git a/resource/layout/htmlimebar.layout b/resource/layout/htmlimebar.layout new file mode 100644 index 0000000..529967a --- /dev/null +++ b/resource/layout/htmlimebar.layout @@ -0,0 +1,36 @@ +"resource/layout/htmlimebar.layout" +{ + controls + { + IMEEntry { controlname=TextEntry default=1 unicode=1 tabposition=1 style="IMEEntry" } + Close { controlname=Button command="Close" style="CloseButtonSm" } + } + + styles + { + IMEEntry + { + // vary font size for legibility in CJK languages + font-size=18 + } + CloseButtonSm + { + bgcolor=none + inset="0 0 0 0" + render_bg={} + image="graphics/win32_win_close" + } + CloseButtonSm:hover + { + render_bg {} + image="graphics/win32_win_close_hover" + } + } + + layout + { + place { control="IMEEntry" width=320 height=max align=left y=0 margin-right=3 margin-left=3 margin-top=2 margin-bottom=2} + place { control="Close" align=right height=24 width=22 margin-right=5 margin-top=6 } + + } +} diff --git a/resource/layout/htmlpopup.layout b/resource/layout/htmlpopup.layout new file mode 100644 index 0000000..6393315 --- /dev/null +++ b/resource/layout/htmlpopup.layout @@ -0,0 +1,141 @@ +"resource/layout/htmlpopup.layout" +{ + controls + { + HTMLPopup { controlname="HTMLPopup" frametitle="" } + htmlpopupchild { controlname="HTML" zpos=1 } + URLBar { controlname="TextEntry" style="TextEntryURL" enabled=false } + EVCert { controlname="Label" style="LabelEVCert" visible=false } + StatusText { controlname="Label" } + + URLStatusImage { controlname="ImagePanel" style="URLStatusImage" } + StopButton { controlname="Button" command="WebStop" labeltext="" style="StopButton" } + ReloadButton { controlname="Button" command="WebReload" labeltext="" style="ReloadButton" } + ForwardButton { controlname="Button" command="WebForward" labeltext="" style="ForwardButtonSm" } + BackButton { controlname="Button" command="WebBack" style="BackButtonSm" } + PageLoadThrobber { controlname="ImagePanel" image="graphics/rampDown_4" } + } + + styles + { + BackButtonSm + { + bgcolor=none + inset="0 0 0 0" + render_bg={} + image="graphics/Threshold/back" + } + BackButtonSm:hover + { + bgcolor=Menu.Button.Hover + image="graphics/Threshold/back" + render_bg={ + 0="fill(x0,y0,x1,y1,Menu.Button.Hover)" + } + } + BackButtonSm:active + { + bgcolor=Accent + image="graphics/Threshold/back" + render_bg={ + 0="fill(x0,y0,x1,y1,Accent)" + } + } + BackButtonSm:disabled + { + bgcolor=none + render_bg={} + image="graphics/Threshold/back_dis" + } + ForwardButtonSm + { + bgcolor=none + inset="0 0 0 0" + render_bg={} + image="graphics/Threshold/forward" + } + + ForwardButtonSm:hover + { + bgcolor=Menu.Button.Hover + image="graphics/Threshold/forward" + render_bg={ + 0="fill(x0,y0,x1,y1,Menu.Button.Hover)" + } + } + ForwardButtonSm:active + { + bgcolor=Accent + image="graphics/Threshold/forward" + render_bg={ + 0="fill(x0,y0,x1,y1,Menu.Button.Accent)" + } + } + ForwardButtonSm:disabled + { + bgcolor=none + render_bg={} + image="graphics/Threshold/forward_dis" + } + + + LabelEVCert + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + textcolor="DefaultBackground" + font-weight=400 + bgcolor="html.secureurl" + inset-left=4 + inset-right=4 + inset-top=-1 + } + + URLStatusImage + { + bgcolor=none + inset="0 0 0 0" + } + + TextEntryURL + { + font-size=13 [$LINUX] + font-size=15 + inset="5 0 0 0" + render_bg { } + render { } + } + + TextEntryURL:Hover + { + render_bg { } + render { } + + } + + URLBarSecure + { + textcolor="html.secureurl" + } + + URLBarBrokenSecure + { + textcolor="html.insecureurl" + } + } + + layout + { + region { name=hidden width=0 height=0} + place { control="htmlpopupchild" width=max height=max margin-top=72 margin-left=0 margin-right=0 margin-bottom=26 } + place { control="StatusText" align=bottom height=24 margin-left=9 margin-bottom=1 } + place { control="PageLoadThrobber" align=right y=32 margin-right=10 width=20 height=40 } + + place { control="BackButton,ForwardButton,ReloadButton,StopButton,URLStatusImage" y=32 x=0 width=40 spacing=0 height=40} + place { control="URLBar" start=URLStatusImage dir=right height=40 width=max margin-right=40} + place { control="EVCert" region=hidden} //I dont think we need 3 seperate elements confirming a secure transaction, but maybe im crazy + } + +} + diff --git a/resource/layout/ingamefpsbanner.layout b/resource/layout/ingamefpsbanner.layout new file mode 100644 index 0000000..78da449 --- /dev/null +++ b/resource/layout/ingamefpsbanner.layout @@ -0,0 +1,45 @@ +"resource/layout/ingamefpsbanner.layout" +{ + controls + { + TextLabel { controlname=Label labeltext="99" } + } + + styles + { + CounterTextSmall + { + font-size=10 [$LINUX] + font-size=12 + } + + CounterTextMedium + { + font-size=12 [$LINUX] + font-size=14 + } + + CounterTextLarge + { + font-size=14 [$LINUX] + font-size=16 + } + + HighContrast + { + bgcolor="0 0 0 60" + textcolor="0 255 0 255" + } + + LowContrast + { + bgcolor="0 0 0 0" + textcolor="128 128 128 255" + } + } + + layout + { + place { control="TextLabel" margin=4 align=center } + } +} \ No newline at end of file diff --git a/resource/layout/installaudiocapturedriver.layout b/resource/layout/installaudiocapturedriver.layout new file mode 100644 index 0000000..64037fc --- /dev/null +++ b/resource/layout/installaudiocapturedriver.layout @@ -0,0 +1,55 @@ +"resource/layout/installaudiocapturedriver.layout" +{ + controls + { + InstallAudioCaptureDriver { controlname="Frame" title=" " style="InstallAudioCaptureDriver" } + + ConfirmTextHeader { controlname="Label" labeltext="#Steam_InstallAudioCaptureDriver_Title" wrap=1 style=ConfirmTextHeader } + ConfirmText { controlname="Label" labeltext="#Steam_InstallAudioCaptureDriver_Text" wrap=1 style=ConfirmText } + + Install { controlname="Button" tabposition=2 labeltext="#Steam_Install" } + Cancel { controlname="Button" tabposition=1 labeltext="#vgui_Cancel" } + } + + styles + { + InstallAudioCaptureDriver + { + minimum-width = 706 + minimum-height = 370 + inset="0 0 0 0" + + render_bg + { + // background gradient + //0="gradient( x0+1, y0, x1-1, y1-45, dialogbg, almostblack )" + 5="image( x0 + 3, y0 + 3, x1, y1, graphics/driver_dialog )" + } + } + + ConfirmTextHeader + { + textcolor="110 192 236 255" + font-family=light + font-size=27 [$LINUX] + font-size=34 + } + + ConfirmText + { + textcolor="110 192 236 255" + font-family=semilight + font-size=16 [$LINUX] + font-size=24 + } + } + + layout + { + region { name="bottom" width=max align=bottom height=45 margin=10 } + + place { control="ConfirmTextHeader" width=656 y=116 margin-left=30 } + place { control="ConfirmText" width=656 y=140 margin=20 margin-left=30 } + place { control="Cancel,Install" region="bottom" align=right spacing=20 width=100 height=25 } + } +} diff --git a/resource/layout/installgamepadinputdriver.layout b/resource/layout/installgamepadinputdriver.layout new file mode 100644 index 0000000..2c1627d --- /dev/null +++ b/resource/layout/installgamepadinputdriver.layout @@ -0,0 +1,53 @@ +"resource/layout/installgamepadinputdriver.layout" +{ + controls + { + InstallGamepadInputDriver { controlname="Frame" title=" " style="InstallGamepadInputDriver" } + + ConfirmTextHeader { controlname="Label" labeltext="#Steam_InstallGamepadInputDriver_Title" wrap=1 style=ConfirmTextHeader } + ConfirmText { controlname="Label" labeltext="#Steam_InstallGamepadInputDriver_Text" wrap=1 style=ConfirmText } + + Install { controlname="Button" tabposition=2 labeltext="#Steam_Install" } + Cancel { controlname="Button" tabposition=1 labeltext="#vgui_Cancel" } + } + + styles + { + InstallGamepadInputDriver + { + minimum-width = 706 + minimum-height = 370 + inset="0 0 0 0" + + render_bg + { + // background gradient + //0="gradient( x0+1, y0, x1-1, y1-45, dialogbg, almostblack )" + 5="image( x0 + 3, y0 + 3, x1, y1, graphics/driver_dialog )" + } + } + + ConfirmTextHeader + { + textcolor="110 192 236 255" + font-size=24 [$LINUX] + font-size=30 + } + + ConfirmText + { + textcolor="110 192 236 255" + font-size=16 [$LINUX] + font-size=24 + } + } + + layout + { + region { name="bottom" width=max align=bottom height=45 margin=10 } + + place { control="ConfirmTextHeader" width=656 y=116 margin-left=30 } + place { control="ConfirmText" width=656 y=140 margin=20 margin-left=30 } + place { control="Cancel,Install" region="bottom" align=right spacing=20 width=100 height=25 } + } +} diff --git a/resource/layout/joingamedialog.layout b/resource/layout/joingamedialog.layout new file mode 100644 index 0000000..54a6991 --- /dev/null +++ b/resource/layout/joingamedialog.layout @@ -0,0 +1,51 @@ +"resource/layout/joingamedialogexpanded.layout" +{ + controls + { + Progress { controlname=progressbar } + PlayButton { controlname=button labeltext=#SteamUI_JoinDialog_PlayGame_Btn } + InfoLabel { controlname=label labeltext=#SteamUI_JoinDialog_ReadyToPlay wrap=1 } + NewsButton { controlname=button labeltext=#Steam_UpdateNewsButton command=UpdateNews } + OverrideThrottleCheckBox { controlname=checkbutton labeltext=#SteamUI_JoinDialog_OverrideThrottle command=ToggleThrottle } + AutoLaunchCheckBox { controlname=checkbutton labeltext=#SteamUI_JoinDialog_LaunchGameReady } + ReadyToPlayInfoLabel { controlname=label labeltext=#SteamUI_JoinDialog_ReadyToPlayTime } + ReadyToPlayTimeLabel { controlname=label labeltext=#SteamUI_JoinDialog_TimeLeftMinutes } + ThrobberThrobberThrobber { controlname=throbberimagepanel } + SkipUpdateLabel { controlname=label textalignment=east labeltext=#SteamUI_JoinDialog_SkipUpdateInfo visible=false } + + // only shown if the user hasn't seen the SSA change yet + Divider { controlname=divider visible=false } + SSAUpdateLabel { controlname=label labeltext=#SteamUI_SSAUpdatedInfo wrap=1 visible=false } + SSAUpdateURL { controlname=urllabel labeltext=#Steam_SSAUpdated_Link urltext=http://www.steampowered.com/index.php?area=subscriber_agreement visible=false } + } + + colors + { + } + + styles + { + highlight + { + textcolor=DefaultText + } + } + + layout + { + region { name=box margin-top=32 margin-bottom=10 margin-left=15 margin-right=15 width=max height=max } + region { name=ssa margin-top=215 margin-left=20 margin-right=20 width=max height=max } + + place { controls="InfoLabel" region=box margin-top=10 dir=down width=max } + place { controls="ThrobberThrobberThrobber" region=box start=InfoLabel margin-bottom=10 dir=down } + place { controls="ReadyToPlayInfoLabel" region=box start=InfoLabel margin-top=10 width=max dir=down } + place { controls="ReadyToPlayTimeLabel" region=box start=ReadyToPlayInfoLabel dir=down } + place { controls="Progress" region=box start=ReadyToPlayTimeLabel margin-top=10 width=max dir=down } + place { controls="OverrideThrottleCheckBox" region=box start=Progress margin-top=10 width=max dir=down } + place { controls="AutoLaunchCheckBox" region=box start=OverrideThrottleCheckBox width=max dir=down } + place { controls="PlayButton" region=box start=AutoLaunchCheckBox margin-top=10 dir=down align=right } + place { controls="NewsButton, SkipUpdateLabel" spacing=10 margin-right=10 region=box start=PlayButton end-right=PlayButton dir=right align=right } + + place { controls="Divider,SSAUpdateLabel,SSAUpdateURL" region=ssa margin-top=10 spacing=5 width=max dir=down } + } +} diff --git a/resource/layout/layoutdebugdialog.layout b/resource/layout/layoutdebugdialog.layout new file mode 100644 index 0000000..239df3e --- /dev/null +++ b/resource/layout/layoutdebugdialog.layout @@ -0,0 +1,59 @@ +"resource/layout/layoutdebugdialog.layout" +{ + controls + { + wiki_link { controlname="URLLabel" labeltext="VGUI editor wiki page" urltext="https://intranet.valvesoftware.com/wiki/index.php/VGUI_Editing" } + } + + styles + { + //0="image( x0, y0, x1, y1, graphics/Threshold/beta )" + Frame + { + minimum-height=633 + minimum-width=800 + render_bg + { + 0="image_scale(x0,y0,x1,y1,graphics/JackMyth/LittleVirgin)" + } + } + Panel + { + render_bg + { + 0="fill(x0,y0,x1,y1,JackMyth.HalfTranslucent)" + } + } + ListPanelInterior + { + render_bg + { + 0="image_scale(x0-7,y0-125,x1+7,y1+17,graphics/JackMyth/LittleVirgin)" + } + } + ListPanel + { + render_bg + { + 0="fill(x0,y0,x1,y1,JackMyth.Translucent)" + } + } + PageTab + { + render_bg + { + 0="fill(x0,y0,x1,y1,JackMyth.HalfTranslucent)" + } + } + } + + layout + { + place { control="containerlabel,fileurl" y=30 x=6 dir="right" align="top" spacing=10 margin=4 } + place { control="selectionlabel" y=48 x=6 dir="right" align="top" spacing=10 margin=4 } + + place { control="tabs" y=70 width="max" height="max" } + place { control="wiki_link" width=0 height=0} + } + +} diff --git a/resource/layout/layoutdebugdialog_details.layout b/resource/layout/layoutdebugdialog_details.layout new file mode 100644 index 0000000..90b1e64 --- /dev/null +++ b/resource/layout/layoutdebugdialog_details.layout @@ -0,0 +1,21 @@ +"resource/layout/layoutdebugdialog_details.layout" +{ + controls + { + style_label { controlname="Label" labelText="Style keys" } + style_list { controlname="Label" labelText="no selected control" } + + parent_label { controlname="Label" labelText="Parents" } + parent_list { controlname="Label" labelText="no selected control" } + } + + layout + { + place { control="style_label" x=6 y=8 width=170 } + place { control="parent_label" x=176 y=8 width=170 } + + place { control="parent_list" x=180 y=30 width=160 } + place { control="style_list" x=10 y=30 width=160 } + } + +} diff --git a/resource/layout/musiclibrarypanel.layout b/resource/layout/musiclibrarypanel.layout new file mode 100644 index 0000000..768513f --- /dev/null +++ b/resource/layout/musiclibrarypanel.layout @@ -0,0 +1,240 @@ +"resource/layout/musiclibrarypanel.layout" +{ + controls + { + MusicPage_Details_Content { controlname="CMusicPage_Details_Content" } + + library_search { ControlName=TextEntry maxchars=16 hintText="#steam_library_search" style="LibrarySearch" group=library tabposition=2 } + label_search_icon { ControlName=Label style="LibrarySearchIcon" group=library zpos="4" } + library_music_menu { ControlName=MenuButton labelText="#Music_Nav_Menu_Artists" style="NavLabel2" showDownArrow=0 align=left group=music } + library_music_add_button { ControlName=Button labelText="" tooltiptext="#Music_Playlist_Details_Menu_Add" style="MusicAddButton" group=music_add_button visible=true } + library_music_player_icon { ControlName=Button labelText="" tooltiptext="#music_tooltip_view_player" style="MusicPlayerIcon" align=right group=music } + + frame_title + { + ControlName=Label + + style="ClientTitle" + "textAlignment" "west" + "textAlignment" "center" [$OSX] + } + + "subnavgroup_library" + { + "ControlName" "imagepanel" + style="grouper" + + zpos="-2" + } + } + + colors + { + + dialogbgtrans="38 38 38 100" + } + + styles + { + CMusicLibraryPanel + { + minimum-width = 296 + minimum-height = 300 + render_bg{ + 0="fill( x0, y0, x1, y0+72, Root.Header)" + } + } + + ClientTitle + { + font-family=basefont + inset="5 1 0 0" + padding-left="0" + padding-right="64" + font-size=12 [$LINUX] + font-size=14 + font-weight=400 + textcolor=Frame.Text + bgcolor="none" + render_bg + { + 0="fill( x0, y0, x1, y1, TitleBar.Focus)" + } + } + + + ClientTitle:framefocus + { + textcolor=Frame.Focus.Text + render_bg + { + 0="fill( x0, y0, x1, y1, TitleBar)" + } + } + + LibrarySearch + { + padding-left=-4 + font-family=basefont + font-size=15 [$LINUX] + font-size=20 + textcolor=Search.Active.Text + shadowtextcolor=DefaultCursor + bgcolor=Search.Back + render_bg{ + } + render{} + + } + + LibrarySearch:empty + { + font-style=normal + textcolor=Search.Text + + } + + LibrarySearch:hover + { + textcolor=Search.Active.Text + } + + LibrarySearch:empty:hover + { + font-style=normal + textcolor=Search.Hover.Text + + } + + LibrarySearch:disabled + { + font-style=DefaultText.Disabled + textcolor="None" + + } + + LibrarySearchIcon + { + bgcolor=Search.Back + inset="15 2 0 0" + image="graphics/Threshold/icons/search" + padding-left=0 + padding-right=0 + padding-top=0 + render_bg{ + } + + } + + LibrarySearchIcon:disabled + { + image="none" + } + + MusicAddButton + { + inset="5 0 0 0" + font-size=13 [$LINUX] + font-size=15 + font-family=basefont + textcolor="labelfocus" + font-style=uppercase + image="graphics/Threshold/icons/plus" + render_bg + { + } + } + + MusicAddButton:hover + { + textcolor="white" + image="graphics/Threshold/icons/plus_hover" + render_bg + { + + } + } + + MusicPlayerIcon + { + bgcolor="none" + inset="-14 0 0 0" //Not sure why this offset is so much larger... + render_bg={} + image="graphics/Threshold/icons/music_player" + } + + MusicPlayerIcon:hover + { + bgcolor=Menu.Button.Hover + render_bg={} + image="graphics/Threshold/icons/music_player" + } + + MusicPlayerIcon:selected + { + bgcolor=Menu.Button.Active + render_bg={} + image="graphics/Threshold/icons/music_player" + } + + NavLabel2 + { + font-size=15 [$LINUX] + font-size=20 + font-weight=400 + textcolor=Root.Label.Text + inset="0 0 6 0" + render{ + 0="image(x1-7,y0+18,x1,y1,graphics/Threshold/icons/down)" + } + } + + NavLabel2:hover + { + textcolor=Root.Label.Hover.Text + inset="0 0 6 0" + render{ + 0="image(x1-7,y0+18,x1,y1,graphics/Threshold/icons/down_hover)" + } + } + + NavLabel2:selected + { + textcolor=Root.Label.Text + inset="0 0 6 0" + render{ + 0="image(x1-7,y0+18,x1,y1,graphics/Threshold/icons/down)" + } + } + + grouper + { + bgcolor=none + render_bg + { + // background fill + 0="fill( x0 + 2, y0 + 1, x1 - 10, y1 - 1, dialogbgtrans )" + } + + } + } + + + layout + { + region { name=searchrow x=0 y=32 height=40} + region { name=details y=72 width=max } + region { name=hidden width=0 height=0} + + place { control="subnavgroup_library" region=hidden } + place { control=library_music_add_button region=hidden } + + place { control=label_search_icon align=left height=40 region=searchrow width=35 } + place { control=library_search start=label_search_icon height=40 width=240 dir=right region=searchrow } + + place { control=library_music_menu region=searchrow x=275 height=40 } + place { control="library_music_player_icon" region=searchrow align=right y=0 height=40 width=40} + place { control="MusicPage_Details_Content" region=details x=0 y=0 width=max height=max} + } + +} diff --git a/resource/layout/musicpage_details_album.layout b/resource/layout/musicpage_details_album.layout new file mode 100644 index 0000000..7609b32 --- /dev/null +++ b/resource/layout/musicpage_details_album.layout @@ -0,0 +1,196 @@ +"resource/layout/musicpage_details_album.layout" +{ + controls + { + AlbumTitleLabel { controlname="Label" style="AlbumTitleStyle" } + ArtistLabel { controlname="Label" style="ArtistStyle" } + TracksInfoLabel { controlname="Label" style="TracksInfoStyle" } + CoverImage { controlname="ImagePanel" style="CoverStyle" scaling=fit} + + PlayTracksButton { + controlname="Button" + labeltext="#Music_Album_Details_PlayTracks" + style="ActionButtonStyle" + command="AlbumPlayTracksAction" + } + + + AddTracksToQueueButton + { + controlname="Button" + labelText="#Music_Album_Details_AddTracksToQueue" + style="AdditionalActionButtonStyle" + command="AlbumAddTracksToQueueAction" + } + + AddTracksToPlaylistButton + { + controlname="Button" + labelText="#Music_Album_Details_AddTracksToPlaylist" + style="AdditionalActionButtonStyle" + command="AlbumAddTracksToPlaylistAction" + } + + ShowAlbumButton { + controlname="Button" + labeltext="#Music_Album_Details_ShowAlbum" + style="AdditionalActionButtonStyle" + command="AlbumShowAction" + } + + PlayAlbumButton { + controlname="Button" + labeltext="#Music_Album_Details_Play" + style="ActionButtonStyle" + command="AlbumPlayAction" + } + + AddAlbumToQueueButton + { + controlname="Button" + labelText="#Music_Album_Details_AddToQueue" + style="AdditionalActionButtonStyle" + command="AlbumAddToQueueAction" + } + + AddAlbumToPlaylistButton + { + controlname="Button" + labelText="#Music_Album_Details_AddToPlaylist" + style="AdditionalActionButtonStyle" + command="AlbumAddToPlaylistAction" + } + + ShowAlbumInSystemButton + { + controlname="Button" + labelText="#Music_Album_Details_ShowAlbumInSystem" + style="AdditionalActionButtonStyle" + command="AlbumShowAlbumInSystemAction" + } + + + } + + styles + { + CMusicPage_Details_Album + { + bgcolor=none + render + { + + } + render_bg + { + 0="fill( x0, y0, x1, y1+18, Root.RightCol )" + } + } + + AlbumTitleStyle + { + font-size=46 + textcolor=DefaultText + font-family=light + padding-bottom=2 + } + + ArtistStyle + { + font-size=24 + textcolor=DefaultText + font-family=semilight + bgcolor=none + } + + TracksInfoStyle + { + font-size=18 + textcolor=DefaultText.Hover + font-family=basefont + font-weight=400 + bgcolor=none + } + + TrackStyle + { + padding-bottom=10 + padding-top=0 + textcolor=DefaultText + font-family=basefont + font-weight=400 + bgcolor=none + render_bg{ + } + } + + TrackStyle:hover + { + textcolor=DefaultText.Hover + } + + CoverStyle + { + + } + + AdditionalActionButtonStyle + { + font-family=basefont + textcolor=DefaultText + render_bg {} + } + + AdditionalActionButtonStyle:hover + { + textcolor=DefaultText.Hover + } + + + ActionButtonStyle + { + inset="18 0 0 0" + font-family=basefont + textcolor=DefaultText + render_bg {} + + render + { + 1="image( x0 + 8, y0 + 7, x1, y1, graphics/Threshold/music/play )" + } + } + ActionButtonStyle:hover + { + textcolor=DefaultText.Hover + render + { + 1="image( x0 + 8, y0 + 7, x1, y1, graphics/Threshold/music/play_hover )" + } + } + + ActionButtonStyle:active + { + textcolor=DefaultText + render + { + 1="image( x0 + 8, y0 + 7, x1, y1, graphics/Threshold/music/play )" + } + } + } + + layout + { + region { name=bodyregion margin=18 margin-bottom=0 overflow=allow-vertical} + //region { name=headerregion x=10 y=20 width=max height=max overflow=scroll-vertical } + //region { name=leftcolumn x=20 width=200 overflow=scroll-vertical } + //region { name=trackcolumn width=max overflow=scroll-vertical } + + place { control="CoverImage" align=top width=200 height=200 region=bodyregion x=0 y=0} + + place { control="AlbumTitleLabel" region=bodyregion start=CoverImage dir=right x=20 y=0 } + place { control="ArtistLabel,TracksInfoLabel" region=bodyregion start=AlbumTitleLabel dir=down} + place { control="PlayTracksButton" region=bodyregion y=5 start=TracksInfoLabel dir=down} + place { control="AddTracksToQueueButton,AddTracksToPlaylistButton,PlayAlbumButton,AddAlbumToQueueButton,AddAlbumToPlaylistButton,ShowAlbumButton,ShowAlbumInSystemButton" margin-left=5 region=bodyregion dir=right start=PlayTracksButton spacing=5 } + place { control=*MusicPageDetailsTrack dir=down y=220 x=0 width=max region=bodyregion} + } +} diff --git a/resource/layout/musicpage_details_content.layout b/resource/layout/musicpage_details_content.layout new file mode 100644 index 0000000..d5a9afa --- /dev/null +++ b/resource/layout/musicpage_details_content.layout @@ -0,0 +1,125 @@ +"resource/layout/musicpage_detail_content.layout" +{ + controls + { + AlbumList { tabposition=1 } + ArtistList { tabposition=1 } + PlaylistList { tabposition=1 } + DetailsBorder { controlname=EditablePanel style="DetailsBorderPanel" zpos="-5" } + EmptyDatabaseText { controlname="RichText" text="#Music_NoLibrary" style="EmptyDatabaseText" } + CrawlingText { controlname="RichText" style="CrawlingText" } + + // Background image, plus overlays + BackgroundImageA { controlname="ImagePanel" style="HeaderImage" zpos="-4" visible=1 scaling="none" horizontal-align=left vertical-align=top } + BackgroundImageB { controlname="ImagePanel" style="HeaderImage" zpos="-4" visible=1 scaling="none" horizontal-align=left vertical-align=top } + BackgroundImageMask { controlname="ImagePanel" style="HeaderImage" zpos="-3" visible=1 scaling="none" horizontal-align=left vertical-align=top } + + } + + styles + { + DetailsBorderPanel + { + font-family=basefont + font-weight=400 + render_bg{ + 0="fill(x0, y0, x1, y1, Root.Back)" + } + } + + "ListPanel RichText" //empty + { + textcolor=DefaultText + } + + AlbumOrArtistListStyle + { + } + + EmptyDatabaseText + { + textcolor=DefaultText + selectedtextcolor=DefaultText + render_bg{} + } + + CrawlingText + { + textcolor=DefaultText + selectedtextcolor=DefaultText + render_bg{} + } + + CMusicPage_Details_Content + { + inset="0 0 0 1" + render + { + } + } + + + // Some overrides for our listpanel + "MusicPage_Details_Content ListPanel" + { + padding-left=15 + bgcolor=Root.Back + render_bg{} + + } + "MusicPage_Details_Content ListPanelInterior" + { + textcolor="DefaultText" + inset="1 1 0 0" + bgcolor=Root.Back + render_bg{} + + } + + "MusicPage_Details_Content ListPanelInterior:scrollbar" + { + inset="1 1 -2 0" + bgcolor=Root.Back + render_bg{} + } + + "AlbumOrArtistListStyle ListPanelColumnSelectButton" + { + inset="-3 3 0 0" + render { + 5="image( x0 + 3, y0 + 3, x1, y1, graphics/Threshold/icons/plus )" + } + } + + DetailsBorderPanel + { + } + + BackgroundImage { bgcolor="0 0 0 0" } + } + + layout + { + region {name=hidden width=0 height=0} + region { name="background" x=0 y=0 width=1024 height=1024 } + region { name="list" y=0 x=0 width=275 height=max margin-bottom=0 } + region { name="details" y=0 x=275 width=max height=max overflow=scroll-vertical dir=down } + + place { control=EmptyDatabaseText x=0 y=0 width=max height=max margin=10 region=list} + place { control=CrawlingText x=0 y=0 width=max height=max margin=10 region=list} + + place { control=DetailsBorder y=0 x=0 width=max height=max } + + place { control=AlbumList region=list width=275 height=max margin=0} + place { control=ArtistList region=list width=275 height=max margin=0} + place { control=PlaylistList region=list width=275 height=max margin=0} + + place { control=*MusicPageDetailsAlbum region=details width=max dir=down spacing=33 margin=15} + place { control=*MusicPageDetailsPlaylist region=details width=max dir=down spacing=33 margin=15} + + place { control=BackgroundImageA region=hidden width=1024 height=1024 x=0 y=0 } //because we really need another picture of the album art + place { control=BackgroundImageB region=hidden width=1024 height=1024 x=0 y=0 } + place { control=BackgroundImageMask region=hidden width=1024 height=1024 x=0 y=0} + } + +} diff --git a/resource/layout/musicpage_details_playlist.layout b/resource/layout/musicpage_details_playlist.layout new file mode 100644 index 0000000..b8acec0 --- /dev/null +++ b/resource/layout/musicpage_details_playlist.layout @@ -0,0 +1,139 @@ +"resource/layout/musicpage_details_playlist.layout" +{ + controls + { + PlaylistTitleLabel { controlname="Label" style="PlaylistTitleStyle" } + TracksInfoLabel { controlname="Label" style="TracksInfoLabelStyle" } + CoverImage { controlname="ImagePanel" style="CoverStyle" scaling=fit} + + PlayPlaylistButton { + controlname="Button" + labeltext="#Music_Playlist_Details_Play" + style="ActionButtonStyle" + command="PlaylistPlayAction" + } + + AddPlaylistToQueueButton + { + controlname="Button" + labelText="#Music_Playlist_Details_AddToQueue" + style="AdditionalActionButtonStyle" + command="PlaylistAddToQueueAction" + } + + AddRandomTracksToPlaylistButton + { + controlname="Button" + labelText="#Music_Playlist_Details_AddRandomTrack" + style="AdditionalActionButtonStyle" + command="PlaylistAddRandomTracksAction" + } + + } + + styles + { + CMusicPage_Details_Playlist + { + bgcolor=none + render_bg + { + 0="fill( x0, y0, x1, y1+18, Root.RightCol )" + } + + } + + PlaylistTitleStyle + { + font-size=46 + textcolor=DefaultText + font-family=light + } + + TracksInfoLabelStyle + { + font-size=18 + textcolor=DefaultText.Hover + font-family=basefont + font-weight=400 + bgcolor=none + } + + TrackStyle + { + padding-bottom=10 + padding-top=0 + textcolor=DefaultText + font-family=basefont + font-weight=400 + bgcolor=none + render_bg{ + } + } + + TrackStyle:hover + { + textcolor=DefaultText.Hover + } + + CoverStyle + { + + } + + AdditionalActionButtonStyle + { + font-family=basefont + textcolor=DefaultText + render_bg {} + } + + AdditionalActionButtonStyle:hover + { + textcolor=DefaultText.Hover + } + + + ActionButtonStyle + { + inset="18 0 0 0" + font-family=basefont + textcolor=DefaultText + render_bg {} + + render + { + 1="image( x0 + 8, y0 + 7, x1, y1, graphics/Threshold/music/play )" + } + } + ActionButtonStyle:hover + { + textcolor=DefaultText.Hover + render + { + 1="image( x0 + 8, y0 + 7, x1, y1, graphics/Threshold/music/play_hover )" + } + } + + ActionButtonStyle:active + { + textcolor=DefaultText + render + { + 1="image( x0 + 8, y0 + 7, x1, y1, graphics/Threshold/music/play )" + } + } +} + layout + { + region { name=bodyregion x=10 y=10 width=max height=max overflow=scroll-vertical } + + place { control="CoverImage" align=top width=200 height=200 region=bodyregion x=0 y=0} //Dont think this is used + + place { control="PlaylistTitleLabel" region=bodyregion start=CoverImage dir=right x=20 y=0 } + place { control="TracksInfoLabel" region=bodyregion start=PlaylistTitleLabel y=5 dir=down} + place { control="PlayPlaylistButton" region=bodyregion y=5 start=TracksInfoLabel dir=down} + place { control="AddPlaylistToQueueButton,AddRandomTracksToPlaylistButton" margin-left=5 region=bodyregion dir=right spacing=5 start=PlayPlaylistButton} + place { control=*MusicPageDetailsPlaylistTrack dir=down y=120 x=0 width=max region=bodyregion} + } +} diff --git a/resource/layout/musicpage_details_playlistitem.layout b/resource/layout/musicpage_details_playlistitem.layout new file mode 100644 index 0000000..07eba1e --- /dev/null +++ b/resource/layout/musicpage_details_playlistitem.layout @@ -0,0 +1,42 @@ +"resource/layout/musicpage_details_playlistitem.layout" +{ + controls + { + PositionLabel { controlname=Label style="PositionLabelStyle" labeltext="" textalignment="east" } + TrackLabel { controlname=Label style="TrackLabelStyle" labeltext="" } + } + + styles + { + + PositionLabelStyle + { + padding-bottom=0 + textcolor=Sublabel.Text + bgcolor=none + } + + TrackLabelStyle + { + padding-bottom=0 + padding-top=0 + textcolor=DefaultText + bgcolor=none + } + + TrackLabelStyle:hover + { + textcolor=DefaultText.Hover + } + } + + + layout + { + region { name=panelregion width=max } + + place { control="PositionLabel" width=40 region="panelregion" } + place { control="TrackLabel" x=50 region="panelregion" width=max } + } + +} diff --git a/resource/layout/musicpage_details_trackitem.layout b/resource/layout/musicpage_details_trackitem.layout new file mode 100644 index 0000000..19922ba --- /dev/null +++ b/resource/layout/musicpage_details_trackitem.layout @@ -0,0 +1,42 @@ +"resource/layout/musicpage_details_trackitem.layout" +{ + controls + { + PositionLabel { controlname=Label style="PositionLabelStyle" labeltext="" textalignment="east" } + TrackLabel { controlname=Label style="TrackLabelStyle" labeltext="" } + } + + styles + { + + PositionLabelStyle + { + padding-bottom=0 + textcolor=Sublabel.Text + bgcolor=none + } + + TrackLabelStyle + { + padding-bottom=0 + padding-top=0 + textcolor=DefaultText + bgcolor=none + } + + TrackLabelStyle:hover + { + textcolor=DefaultText.Hover + } + } + + + layout + { + region { name=panelregion width=max } + + place { control="PositionLabel" width=40 region="panelregion" } + place { control="TrackLabel" x=50 region="panelregion" width=max } + } + +} diff --git a/resource/layout/musicplayerpanel.layout b/resource/layout/musicplayerpanel.layout new file mode 100644 index 0000000..60a497d --- /dev/null +++ b/resource/layout/musicplayerpanel.layout @@ -0,0 +1,128 @@ +"resource/layout/musicplayerpanel.layout" +{ + controls + { + CurrentAlbumImage { controlname=ImagePanel style="CurrentAlbumImageStyle" scaling=fit} + + CurrentStatusLabel { controlname=Label style="StatusStyleDim" labeltext="NOW PLAYING" } + CurrentTrackLabel { controlname=Label style="StatusStyle" labeltext="" } + CurrentArtistLabel { controlname=Label style="statusStyle" labeltext="" } + + RepeatButton { controlname=ToggleButton labeltext="" tooltiptext="#music_tooltip_repeat" command="ToggleRepeat" style="RepeatButtonStyle" } + ShuffleButton { controlname=Button labeltext="" tooltiptext="#music_tooltip_shuffle" command="ToggleShuffle" style="ShuffleButtonStyle" } + PreviousButton { controlname=Button labeltext="" tooltiptext="#music_tooltip_previous" command="PreviousTrack" style="PreviousButtonStyle" } + NextButton { controlname=Button labeltext="" tooltiptext="#music_tooltip_next" command="NextTrack" style="NextButtonStyle" } + PlayPauseButton { controlname=Button labeltext="" tooltiptext="#music_tooltip_playpause" command="TogglePlayPause" style="PlayButtonStyle" } + VolumeButton { controlname=Button labeltext="" tooltiptext="#music_tooltip_volume" command="Volume" style="VolumeButtonStyle" } + BrowseButton { controlname=Button labeltext="" tooltiptext="#music_tooltip_browse" command="BrowseMusic" style="BrowseButtonStyle" } + + TrackList { controlname=ListPanel style="MusicListPanelInterior" } + NoTracksLabel { controlname=Label style="NoTracksLabelStyle" labeltext="" zpos="-1" } + InfoLabel { controlname=Label style="InfoLabelStyle" labeltext="1 OF 10" zpos="-1" textalignment=center } + + SeekBar { ControlName="Slider" style="SeekBarStyle" showticks="0" showbar="1"} + + frame_title + { + ControlName=Label + + style="ClientTitle" + "textAlignment" "west" + "textAlignment" "center" [$OSX] + } + } + + colors + { + } + + styles + { + CMusicPlayerPanel + { + bgcolor=none + + minimum-width = 440 + minimum-height = 108 + + render_bg + { + 0="fill( x0, y0, x1, y1, DefaultBackground )" + 0="fill( x0, y1-76, x1, y1, Accent.Hover )" + } + } + + MusicListPanelInterior + { + inset="0 -3 0 0" + padding-left=15 + font-size=15 + textcolor=DefaultText + bgcolor="none" + render_bg {} + } + + CurrentAlbumImageStyle { } + RepeatButtonStyle { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/rep inset="3 0 0 0" padding="0" } + RepeatButtonStyle:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/rep_hover } + RepeatButtonStyle:selected { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/rep_sel inset="-4 0 0 0" } + RepeatButtonStyle:selected:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/rep_sel_hover inset="-4 0 0 0"} + RepeatOnceButtonStyle { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/rep_once inset="3 0 0 0" padding="0" } + RepeatOnceButtonStyle:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/rep_once_hover } + RepeatOnceButtonStyle:selected { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/rep_once_sel inset="-4 0 0 0"} + RepeatOnceButtonStyle:selected:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/rep_once_sel_hover inset="-4 0 0 0"} + ShuffleButtonStyle { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/shuf inset="3 0 0 0"} + ShuffleButtonStyle:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/shuf_hover } + ShuffleButtonStyle:selected { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/shuf_sel inset="0 0 0 0"} + ShuffleButtonStyle:selected:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/shuf_sel_hover inset="0 0 0 0"} + PreviousButtonStyle { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/prev inset="3 0 0 0"} + PreviousButtonStyle:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/prev_hover } + NextButtonStyle { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/next inset="3 0 0 0"} + NextButtonStyle:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/next_hover } + PlayButtonStyle { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/play inset="3 0 0 0"} + PlayButtonStyle:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/play_hover } + PauseButtonStyle { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/pause inset="3 0 0 0"} + PauseButtonStyle:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/pause_hover } + VolumeButtonStyle { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/vol inset="3 0 0 0"} + VolumeButtonStyle:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/vol_hover } + VolumeButtonActiveStyle { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/vol inset="3 0 0 0"} + VolumeButtonActiveStyle:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/vol_hover } + MuteVolumeButtonStyle { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/mute inset="3 0 0 0"} + MuteVolumeButtonStyle:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/mute_hover } + MuteVolumeButtonActiveStyle { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/mute inset="3 0 0 0"} + MuteVolumeButtonActiveStyle:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/mute_hover} + + BrowseButtonStyle { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/browse inset="3 0 0 0"} + BrowseButtonStyle:hover { bgcolor=none render_bg={} render={} image=graphics/Threshold/music/browse_hover } + + StatusStyle { render_bg={} font-family=basefont textcolor="DefaultText" font-size=15 } + StatusStyleDim { render_bg={} font-family=basefont textcolor="DefaultText.Hover" font-size=15} + InfoLabelStyle { render_bg={} font-family=basefont font-size=15 textcolor="DefaultText.Disabled" } + TrackListStyle { } + NoTracksLabelStyle { bgcolor=none render_bg={} } + SeekBarStyle { bgcolor=none font-family=basefont font-size=16 textcolor="DefaultText"} + + } + + + layout + { + region { name=hidden y=0 x=0 width=0 height=0} + place { control="CurrentStatusLabel" region=hidden x=64 y=4 width=max } //why valve. why does this exist + place { control="InfoLabel" region=hidden align=bottom x=10 y=94 width=max margin-right=10 margin-bottom=8 } + + region { name=currenttrack x=10 width=max align=bottom height=76 margin-right=290 } + place { control="CurrentAlbumImage" region=currenttrack x=0 y=10 width=56 height=56 } + place { control="CurrentTrackLabel" region=currenttrack x=64 y=20 width=max} + place { control="CurrentArtistLabel" region=currenttrack x=64 y=36 width=max } + + region { name=transport width=280 height=76 align=bottom-right} + place { control="PreviousButton,PlayPauseButton,NextButton,VolumeButton,ShuffleButton,RepeatButton,BrowseButton" region=transport x=0 y=0 spacing=0 margin=0 height=40 width=40} + place { control=SeekBar region=transport x=10 y=44 height=20 width=260 } + + place { control="TrackList" y=32 width=max height=max margin-bottom=76 } + place { control="NoTracksLabel" y=42 margin-bottom=76 align="top-center" } + + } + +} diff --git a/resource/layout/musicplayervolumepanel.layout b/resource/layout/musicplayervolumepanel.layout new file mode 100644 index 0000000..b43b79e --- /dev/null +++ b/resource/layout/musicplayervolumepanel.layout @@ -0,0 +1,31 @@ +"resource/layout/musicplayervolumepanel.layout" +{ + controls + { + VolumeSlider { controlname=Slider style="VolumeSlider" zpos="4" } + } + + colors + { + } + + styles + { + CMusicPlayerVolumePanel + { + minimum-width = 100 + minimum-height = 18 + bgcolor=DefaultBackground + } + + + VolumeSlider { bgcolor=none font-family=basefont font-size=16 } + } + + + layout + { + place { control="VolumeSlider" x=0 y=0 height=18 width=100 } + } + +} diff --git a/resource/layout/overlay_achievement_item.layout b/resource/layout/overlay_achievement_item.layout new file mode 100644 index 0000000..d9f398c --- /dev/null +++ b/resource/layout/overlay_achievement_item.layout @@ -0,0 +1,31 @@ +"resource/layout/overlay_achievement_item.layout" +{ + controls + { + icon { controlname="ImagePanel" scaleimage=1 } + caption { controlname=label labeltext="#Overlay_Achievement_Recent" } + name { controlname=label style=name } + } + colors + { + } + styles + { + name + { + font-size=17 [$LINUX] + font-size=26 + textcolor=DefaultText + } + + } + + layout + { + region { name=body width=max } + + place { region=body control=icon y=0 x=0 width=64 height=64 } + place { region=body control=caption y=32 x=74 } + place { region=body control=name y=6 x=74 } + } +} diff --git a/resource/layout/overlay_achievementsdetails.layout b/resource/layout/overlay_achievementsdetails.layout new file mode 100644 index 0000000..dde4c17 --- /dev/null +++ b/resource/layout/overlay_achievementsdetails.layout @@ -0,0 +1,77 @@ +"resource/layout/overlay_achievementsdetails.layout" +{ + controls + { + AchievementsDetailPanel + { + controlname="COverlay_Details_Acheivements" + style=detailsbox + } + TitleText { controlname="label" labeltext="#Overlay_Achievement_Title" style=detailsboxtitle } + + ViewAchievementsButton + { + controlname=button + labeltext="#Overlay_Friends_ViewAchievements" + } + + progressbackground { controlname="ImagePanel" style="progressbackground" } + progressbarimage { controlname="ImagePanel" style="progressbarimage" } + + + ProgressTextEarned { controlname=label style=highlight labeltext="#Overlay_Achievement_Progress" } + + } + + colors + { + + } + + styles + { + + highlight + { + inset="0 2 0 0" + textcolor=DefaultText.Hover + } + progressbackground + { + bgcolor=none + render_bg + { + // lines around + 1="fill( x0, y0, x1, y1, Progress.Back )" + + } + } + + progressbarimage + { + bgcolor=Accent + render + { + 0="fill( x0, y0, x1+1, y1, Accent )" //Progressbar is 1px off + } + } + + + } + + layout + { + region { name=box margin-top=10 margin-bottom=10 margin-left=20 margin-right=20 width=max height=max } + + place { control="TitleText,ProgressTextEarned" region=box dir=right spacing=20 height=28} + + place { control=*achievement region=box y=40 x=0 width=200 height=max margin-bottom=50 } + + + place { control=progressbackground region=box align=bottom width=max height=10 margin-bottom=40} + place { control=progressbarimage region=box align=bottom height=10 margin-bottom=40} + + place { controls=ViewAchievementsButton region=box align=bottom } + + } +} diff --git a/resource/layout/overlay_broadcastchat.layout b/resource/layout/overlay_broadcastchat.layout new file mode 100644 index 0000000..66b4cc0 --- /dev/null +++ b/resource/layout/overlay_broadcastchat.layout @@ -0,0 +1,176 @@ +"resource/layout/overlay_broadcastpanel.layout" +{ + controls + { + "BroadcastChatDialog" + { + "ControlName" "COverlayBroadcastChatDialog" + "title" "#Overlay_Broadcast_Chat_Title" + } + "TextEntry" + { + "ControlName" "TextEntry" + "tabPosition" "1" + "editable" "1" + "maxchars" "2048" + "unicode" "1" + style="textentryfocus_chat" + } + "ChatHistory" + { + "ControlName" "RichText" + "maxchars" "-1" + "ScrollBar" "1" + style="ChatListPanel" + } + "SendButton" + { + "ControlName" "Button" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Friends_Chat_Send" + "textAlignment" "west" + "Default" "1" + style="button" + command="PostMessage" + } + "EmoticonButton" + { + "ControlName" "CEmoticonButton" + } + } + + styles + { + + label + { + } + + controlbutton + { + minimum-width=120 + } + + Textentryfocus_chat + { + render + { + // lines around + } + } + + CEmoticonButton + { + inset="5 0 0 0" + image="graphics/icon_emoticon_hover" + render_bg + { + 0="fill(x0, y0, x1, y1, black)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, DefaultBackground )" // top + } + } + + CEmoticonButton:hover + { + render_bg + { + 0="fill(x0, y0, x1, y1, Menu.Button.Hover)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, DefaultBackground )" // top + } + } + + CEmoticonButton:selected + { + render_bg + { + 0="fill(x0, y0, x1, y1, Menu.Button.Active)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, DefaultBackground )" // top + } + } + + EmoticonMenuItemStyle + { + inset="-5 0 0 0" + padding=0 + font-size=24 + bgcolor=none + } + + EmoticonMenuItemStyle:hover + { + textcolor=white + bgcolor=none + } + + EmoticonMenuItemStyle:selected + { + textcolor=white + bgcolor=none + } + + GridMenu + { + font-size=16 + } + + TextEntry + { + textcolor=TextBox.Hover.Text //TextBox.Text is the empty text color, we want hover + selectedtextcolor=TextBox.Hover.Text + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor // this is the cursor color + render_bg + { + 0="fill(x0, y0, x1, y1, black)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, DefaultBackground )" // top + } + } + + TextEntry:hover + { + textcolor=TextBox.Hover.Text + selectedtextcolor=TextBox.Hover.Text + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor + render_bg + { + 0="fill(x0, y0, x1, y1, black)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, DefaultBackground )" // top + } + } + + TextEntry:focus + { + textcolor=TextBox.Hover.Text + selectedtextcolor=TextBox.Hover.Text + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor + render_bg + { + 0="fill(x0, y0, x1, y1, black)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, DefaultBackground )" // top + } + } + } + + layout + { + region { name="hidden" width=0 height=0} + place { control="SendButton" region=hidden height=30 width=40 align=right} //if only you could have individual styling + + region { name=chat width=max height=max margin-bottom=42} + place { control="ChatHistory" region=chat width=max height=max margin-bottom=42 margin-top=55 } + place { control="EmoticonButton" region=chat height=42 align=bottom-right} + place { control="TextEntry" align=bottom region=chat end-right="EmoticonButton" height=42 width=max } + + region { name=bottomrow align=bottom height=42} + place { control="StatusLabel" region=bottomrow width=max margin-left=10 height=40 } + } +} diff --git a/resource/layout/overlay_broadcastpanel.layout b/resource/layout/overlay_broadcastpanel.layout new file mode 100644 index 0000000..924b0e1 --- /dev/null +++ b/resource/layout/overlay_broadcastpanel.layout @@ -0,0 +1,37 @@ +"resource/layout/overlay_broadcastpanel.layout" +{ + controls + { + TitleText { controlname="label" labeltext="#Overlay_Broadcast_Panel_Title" style=detailsboxtitle } + InstructionText { controlname="label" labeltext="#Overlay_Broadcast_Panel_Text" style=highlight } + + ShowBroadcast { controlname="Button" labeltext="#Overlay_Broadcast_ShowBroadcast" command="ShowBroadcast" } + ShowChat { controlname="Button" labeltext="#Overlay_Broadcast_ShowChat" command="ShowChat" } + StopBroadcast { controlname="Button" labeltext="#Overlay_Broadcast_Stop" command="StopBroadcast" } + ShowSettings { controlname="Button" labeltext="#Overlay_Broadcast_ShowSettings" command="ShowSettings" } + } + + styles + { + detailsbox //This one is on the right, so it needs a background + { + render_bg + { + 0="fill(x0, y0, x1, y1, Overlay.Sidebar)" + } + } + + highlight + { + textcolor=DefaultText.Hover + } + } + + layout + { + region { name=box margin-top=20 margin-bottom=20 margin-left=20 margin-right=20 width=max height=max } + place { control="TitleText, InstructionText" region=box dir=right spacing=20 height=28} + + place { control="ShowBroadcast,ShowChat,ShowSettings,StopBroadcast" region=box spacing=10 align=bottom } + } +} diff --git a/resource/layout/overlay_communitydiscussionspanel.layout b/resource/layout/overlay_communitydiscussionspanel.layout new file mode 100644 index 0000000..54f647e --- /dev/null +++ b/resource/layout/overlay_communitydiscussionspanel.layout @@ -0,0 +1,66 @@ +"resource/layout/overlay_communitydiscussionspanel.layout" +{ + controls + { + CommunityDiscussionsDetailPanel + { + controlname="COverlay_Details_CommunityDiscussions_Panel" + style=detailsbox + } + TitleText { controlname="label" labeltext="#Overlay_CommunityDiscussions_Panel_Title" style=detailsboxtitle } + NumDiscussionsText { controlname="label" labeltext="#Overlay_CommunityDiscussions_Panel_NumDiscussions" style=highlight } + + ViewCommunityDiscussions { controlname="Button" labeltext="#Overlay_View_CommunityDiscussions" command="viewcommunitydiscussions" } + } + + colors + { + + } + + styles + { + + Button + { + textcolor=none + render_bg{} + render{} + bgcolor=none + } + + Button:hover + { + textcolor=none + render_bg{ + 0="fill(x0,y0,x1,y1, Overlay.Item.Hover)" + } + } + + DarkRegion + { + bgcolor="40 40 40 255" + } + + PreviewImage + { + } + + + highlight + { + inset="0 2 0 0" + textcolor=DefaultText.Hover + } + } + + layout + { + region { name=hidden width=0 height=0 } + region { name=box margin-top=10 margin-bottom=10 margin-left=20 margin-right=20 width=max height=max } + + place { control="TitleText, NumDiscussionsText" region=box dir=right spacing=20 height=max} + + place { control="ViewCommunityDiscussions" height=max width=max } + } +} diff --git a/resource/layout/overlay_communityhubpanel.layout b/resource/layout/overlay_communityhubpanel.layout new file mode 100644 index 0000000..f147f03 --- /dev/null +++ b/resource/layout/overlay_communityhubpanel.layout @@ -0,0 +1,66 @@ +"resource/layout/overlay_communityhubpanel.layout" +{ + controls + { + CommunityHubDetailPanel + { + controlname="COverlay_Details_CommunityHub_Panel" + style=detailsbox + } + TitleText { controlname="label" labeltext="#Overlay_CommunityHub_Panel_Title" style=detailsboxtitle } + NumContributionsText { controlname="label" labeltext="#Overlay_CommunityHub_Panel_NumContributions" style=highlight } + + ViewCommunityHub { controlname="Button" labeltext="#Overlay_View_CommunityHub" command="viewcommunityhub" } + } + + colors + { + + } + + styles + { + + Button + { + textcolor=none + render_bg{} + render{} + bgcolor=none + } + + Button:hover + { + textcolor=none + render_bg{ + 0="fill(x0,y0,x1,y1, Overlay.Item.Hover)" + } + } + + DarkRegion + { + bgcolor="40 40 40 255" + } + + PreviewImage + { + } + + + highlight + { + inset="0 2 0 0" + textcolor=DefaultText.Hover + } + } + + layout + { + region { name=hidden width=0 height=0 } + region { name=box margin-top=10 margin-bottom=10 margin-left=20 margin-right=20 width=max height=max } + + place { control="TitleText, NumContributionsText" region=box dir=right spacing=20 height=max} + + place { control="ViewCommunityHub" height=max width=max} + } +} diff --git a/resource/layout/overlay_friendchangeconfirmationdialog.layout b/resource/layout/overlay_friendchangeconfirmationdialog.layout new file mode 100644 index 0000000..884356f --- /dev/null +++ b/resource/layout/overlay_friendchangeconfirmationdialog.layout @@ -0,0 +1,20 @@ +"resource/layout/overlay_friendchangeconfirmationdialog.layout" +{ + controls + { + ConfirmButton { controlname="Button" labeltext="#Overlay_FriendChangeConfirmation_Confirm" } + CancelButton { controlname="Button" labeltext="#Overlay_FriendChangeConfirmation_Cancel" } + + ReasonLabel { controlname="Label" labeltext="" wrap=1 } + } + + layout + { + region { name="main" width=500 height=250 margin-top=40 margin-left=15 margin-right=15 } + region { name="buttons" align="bottom" width="max" height=34 margin-right=10 margin-top=5 } + + place { control=ConfirmButton,CancelButton region=buttons dir=left align=right spacing=10 } + + place { control=ReasonLabel region=main dir=down spacing=15 width=max } + } +} diff --git a/resource/layout/overlay_friendsdetails.layout b/resource/layout/overlay_friendsdetails.layout new file mode 100644 index 0000000..8b0403f --- /dev/null +++ b/resource/layout/overlay_friendsdetails.layout @@ -0,0 +1,70 @@ +"resource/layout/overlay_friendsdetails.layout" +{ + controls + { + FriendsDetailPanel + { + controlname="COverlay_Details_Friends" + style=detailsbox + } + + AllFriendsButton + { + controlname=button + labeltext="#Overlay_Friends_ViewAll" + } + + ViewPlayersButton + { + controlname=button + labeltext="#Overlay_Friends_ViewPlayers" + } + + TitleText { controlname="label" labeltext="#Overlay_Taskbar_Friends" style=detailsboxtitle } + + TextThisManyFriends { controlname=label style=highlight labeltext="#Overlay_Friends_ThisManyOnline" } + + grid + { + alignment=justify + interiorspacing=2 + style=FriendsGrid + } + } + + colors + { + + } + + styles + { + + FriendsGrid + { + // Nerf the outline, etc that the main UI WrapPanel defines. + render_bg + { + } + } + + highlight + { + inset="0 2 0 0" + textcolor=DefaultText.Hover + } + } + + layout + { + region { name=hidden width=0 height=0} + region { name=box margin-top=10 margin-bottom=10 margin-left=20 margin-right=20 width=max height=max } + region { name=friendspanels margin-top=50 margin-bottom=40 margin-left=0 margin-right=0} + + place { control="TitleText,TextThisManyFriends" region=box dir=right spacing=20 height=28} + + place { controls=grid region=friendspanels width=max height=max} + + place { controls=AllFriendsButton,ViewPlayersButton region=box spacing=10 align=bottom } + } +} \ No newline at end of file diff --git a/resource/layout/overlay_guide_item.layout b/resource/layout/overlay_guide_item.layout new file mode 100644 index 0000000..4cfe6fd --- /dev/null +++ b/resource/layout/overlay_guide_item.layout @@ -0,0 +1,44 @@ +"resource/layout/overlay_guide_item.layout" +{ + controls + { + icon { controlname="ImagePanel" scaleimage=1 } + name { controlname=label style=name } + + Background { controlname="ImagePanel" style=Background visible=1 } + IconBackground { controlname="ImagePanel" style=IconBackground visible=1 } + } + colors + { + } + styles + { + name + { + textcolor=DefaultText + font-style="none" + } + name:hover + { + font-style="none" + } + Background + { + bgcolor=List.Back + } + IconBackground + { + bgcolor="0 0 0 255" + } + } + + layout + { + region { name=body width=max height=max } + + place { control="Background" region=body x=0 y=0 width=max height=max } + place { region=body control=IconBackground y=0 x=0 width=40 height=40 } + place { region=body control=icon y=0 x=0 width=40 height=40 } + place { region=body control=name y=0 x=48 height=max width=max } + } +} diff --git a/resource/layout/overlay_guidespanel.layout b/resource/layout/overlay_guidespanel.layout new file mode 100644 index 0000000..53a3902 --- /dev/null +++ b/resource/layout/overlay_guidespanel.layout @@ -0,0 +1,47 @@ +"resource/layout/overlay_guidespanel.layout" +{ + controls + { + GuidesDetailPanel + { + controlname="COverlay_Details_Guides_Panel" + style=detailsbox + } + TitleText { controlname="label" labeltext="#Overlay_Guides_Panel_Title" style=detailsboxtitle } + NumGuidesText { controlname="label" labeltext="#Overlay_Guides_Panel_NumGuides" style=highlight } + + ViewGuides { controlname="Button" labeltext="#Overlay_View_Guides" command="viewguides" } + } + + colors + { + + } + + styles + { + + PreviewImage + { + } + + + highlight + { + inset="0 2 0 0" + textcolor=DefaultText.Hover + } + } + + layout + { + region { name=box margin-top=10 margin-bottom=10 margin-left=20 margin-right=20 width=max height=max } + region { name=guides region=box y=40 margin-bottom=35} + + place { control="TitleText, NumGuidesText" region=box dir=right spacing=20 height=28} + + place { control=*guideitem region=guides x=0 width=max height=40 dir=down spacing=4 } + + place { control="ViewGuides" region=box align=bottom} + } +} diff --git a/resource/layout/overlay_microtxn_authdialog.layout b/resource/layout/overlay_microtxn_authdialog.layout new file mode 100644 index 0000000..b8dd300 --- /dev/null +++ b/resource/layout/overlay_microtxn_authdialog.layout @@ -0,0 +1,82 @@ +"resource/layout/overlay_microtxn_authdialog.layout" +{ + controls + { + ItemList { controlname="ListPanel" style="ItemListStyle" } + AuthorizeButton { controlname="Button" Style="AuthBtnStyle" labeltext="#Overlay_MicroTxnAuth_Authorize" } + CancelButton { controlname="Button" Style="AuthBtnStyle" labeltext="#Overlay_MicroTxnAuth_Cancel" } + + ReasonLabel { controlname="Label" labeltext="#Overlay_MicroTxnAuth_Description" wrap=1 } + TotalLabel { controlname="Label" labeltext="#Overlay_MicroTxnAuth_Total" } + TotalAmtLabel { controlname="Label" style="TotalAmtStyle" labeltext="%total%" } + ConvertedTotalLabel { controlname="Label" labeltext="#Overlay_MicroTxnAuth_ConvertedTotalLabel" } + ConvertedTotalAmtLabel { controlname="Label" style="TotalAmtStyle" labeltext="#Overlay_MicroTxnAuth_ConvertedTotalValue" } + BalanceLabel { controlname="Label" style="BalanceStyle" labeltext="#Overlay_MicroTxnAuth_Balance" } + BalanceDescLabel { controlname="Label" labeltext="#Overlay_MicroTxnAuth_BalanceLabel" } + RefundText { controlname="RichText" style="RefundTextStyle" scrollbar=0 } + Separator { controlname="Panel" style="SeparatorStyle" } + } + + colors + { + BalanceGreen="85 127 30 255" + } + + styles + { + ItemListStyle { minimum-height="150" } + BalanceStyle + { + render_bg + { + // background fill + 0="fill( x0 - 6, y0, x1 + 6, y1, BalanceGreen)" + + } + textcolor=DefaultText + } + TotalAmtStyle { minimum-width="70" } + AuthBtnStyle { minimum-width="100" } + RefundTextStyle + { + textcolor=DefaultText.Hover + selectedtextcolor=DefaultText.Hover + scrollbar="0" + font-size=14 + render_bg {} + } + + RefundTextLinkStyle + { + textcolor=DefaultText.Hover + font-style=underline + } + + SeparatorStyle + { + render_bg + { + 0="fill( x0, y0, x1, y1, Menu.Div )" + } + } + } + + + layout + { + region { name="main" width="max" height=250 margin-top=40 margin-left=10 margin-right=10 } + region { name="total" region="main" align="bottom" height=24 width="max" margin-right=25 } + region { name="buttons" align="bottom" width="max" height=34 margin-right=10 } + + place { control=BalanceDescLabel,BalanceLabel dir=left x=200 y=0 margin-right=35 margin-top=6 align=right spacing=10 } + + place { control=AuthorizeButton,CancelButton region=buttons dir=left align=right spacing=10 } + + place { control=ReasonLabel,ItemList region=main dir=down spacing=15 width=max } + place { control=TotalLabel,TotalAmtLabel region=total dir=left align=right spacing=15 margin-top=0 } + place { control=ConvertedTotalLabel,ConvertedTotalAmtLabel region=total dir=left align=right spacing=15 margin-top=12 } + + place { control=RefundText start=Separator dir=down spacing=0 margin-left=-8 width=max height=50 } + place { control=Separator start=total dir=down spacing=0 margin-left=10 width=max margin-right=10 height=1 } + } +} diff --git a/resource/layout/overlay_news_item.layout b/resource/layout/overlay_news_item.layout new file mode 100644 index 0000000..31cfdf6 --- /dev/null +++ b/resource/layout/overlay_news_item.layout @@ -0,0 +1,41 @@ +"resource/layout/overlay_news_item.layout" +{ + controls + { + newsitem_title { controlname="URLLabel" style="title_label" } + newsitem_dateandauthor { controlname="Label" style="date_and_author" } + } + colors + { + } + styles + { + title_label + { + font-size="17" + textcolor=DefaultText + //font-weight=700 + font-style="normal" + font-family=basefont + + } + + title_label:hover + { + font-style="underline" + textcolor=DefaultText.Hover + } + + date_and_author + { + font-size=14 + textcolor=DefaultText.Hover + } + } + + layout + { + region { name=body width=max } + place { region=body controls=newsitem_title,newsitem_dateandauthor dir=down spacing=2 width=max } + } +} diff --git a/resource/layout/overlay_newsdetails.layout b/resource/layout/overlay_newsdetails.layout new file mode 100644 index 0000000..8c5a2a2 --- /dev/null +++ b/resource/layout/overlay_newsdetails.layout @@ -0,0 +1,47 @@ +"resource/layout/overlay_newsdetails.layout" +{ + controls + { + NewsDetailPanel + { + controlname="COverlay_Details_News" + style=detailsbox + } + TitleText { controlname="label" labeltext="#Overlay_Taskbar_News" style=detailsboxtitle } + + ViewNewsButton + { + controlname=button + labeltext="#Overlay_Friends_ViewNews" + } + + } + + colors + { + + } + + styles + { + headline + { + textcolor=DefaultText.Hover + + } + } + + layout + { + region { name=box margin-top=10 margin-bottom=10 margin-left=20 margin-right=20 width=max height=max } + + region { region=box name=news margin-top=40 margin-bottom=35 width=max height=max } + + place { control="TitleText" region=box } + + place { region=news controls=*newsitem dir=down height=45 width=max } + + place { controls=ViewNewsButton region=box spacing=10 align=bottom margin-bottom=4 } + + } +} diff --git a/resource/layout/overlay_playtimedetails.layout b/resource/layout/overlay_playtimedetails.layout new file mode 100644 index 0000000..7a380d0 --- /dev/null +++ b/resource/layout/overlay_playtimedetails.layout @@ -0,0 +1,49 @@ +"resource/layout/overlay_playtimedetails.layout" +{ + controls + { + PlaytimeDetailsPanel + { + controlname="COverlay_Details_Playtime" + style=detailsbox + } + TitleText { controlname="label" labeltext="#Overlay_Playtime_Stats" style=detailsboxtitle } + + IntroText { controlname=label labeltext="#Overlay_Playtime_Intro" style=Intro } + SessionText { controlname=label style=TimeStrings labeltext="#Overlay_Playtime_Session" } + TwoWeeksText { controlname=label style=TimeStrings } + ForeverText { controlname=label style=TimeStrings } + } + + colors + { + + } + + styles + { + Intro + { + textcolor=text + } + timeStrings + { + font-size="17" + textcolor="label" + font-style="Uppercase" + font-family=basefont + font-weight=700 + } + } + + layout + { + region { name=box margin-top=10 margin-bottom=10 margin-left=10 margin-right=10 width=max height=max } + + place { control="TitleText" region=box } + + place { control=IntroText region=box y=40 } + + place { controls=SessionText,TwoWeeksText,ForeverText region=box y=70 dir=down spacing=5 } + } +} diff --git a/resource/layout/overlay_screenshotspanel.layout b/resource/layout/overlay_screenshotspanel.layout new file mode 100644 index 0000000..b58358c --- /dev/null +++ b/resource/layout/overlay_screenshotspanel.layout @@ -0,0 +1,47 @@ +"resource/layout/overlay_screenshotspanel.layout" +{ + controls + { + TitleText { controlname="label" labeltext="#Overlay_Screenshots_Panel_Title" style=detailsboxtitle } + InstructionText { controlname="label" labeltext="#Overlay_Screenshots_Press_Hotkey" style=highlight } + + ViewScreenshots { controlname="Button" labeltext="#Overlay_View_Screenshots" command="viewscreenshots" } + SetShortcut { controlname="Button" labeltext="#Overlay_Set_Shortcut" command="setshortcut" } + } + + styles + { + + Button + { + textcolor=none + render_bg{} + render{} + bgcolor=none + } + + Button:hover + { + textcolor=none + render_bg{ + 0="fill(x0,y0,x1,y1, Overlay.Item.Hover)" + } + } + + highlight + { + inset="0 2 0 0" + textcolor=DefaultText.Hover + } + } + + layout + { + region { name=hidden width=0 height=0 } + region { name=box margin-top=10 margin-bottom=10 margin-left=20 margin-right=20 width=max height=max } + + place { control="TitleText,InstructionText" region=box dir=right spacing=20 region=box height=max} + place { control="ViewScreenshots" height=max width=max} + place { control="SetShortcut" region=hidden } + } +} diff --git a/resource/layout/overlaydashboard.layout b/resource/layout/overlaydashboard.layout new file mode 100644 index 0000000..abd4323 --- /dev/null +++ b/resource/layout/overlaydashboard.layout @@ -0,0 +1,149 @@ +"resource/layout/overlaydashboard.layout" +{ + controls + { + BaseDashboardPanel + { + controlname="EditablePanel" + style="overlaymain" + } + TaskbarPanel + { + controlname="EditablePanel" + } + TopFadePanel + { + controlname="EditablePanel" + style=topfade + zpos=-1 + mouseinputenabled=0 + } + BottomFadePanel + { + controlname="EditablePanel" + style=bottomfade + zpos=-1 + } + + GameName + { + controlname="Label" + labeltext="%gamename%" + style=topbar + textalignment=east + } + PowerMeterDim + { + controlname= "ImagePanel" + image= "resource/battery_dim" + } + PowerMeterBright + { + controlname= "ImagePanel" + image= "resource/battery_bright" + } + + CloseButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_Close" style="OverlayURLLabel"} + HotkeyLabel { controlname="Label" labeltext="%hotkey%" style="hotkey" } + HotkeyExplain { controlname="Label" labeltext="#Overlay_Hotkey_Explain" margin-left=4 style="LabelOverlay"} + } + + colors + { + + + + } + + styles + { + hotkey + { + font-size=14 + font-style=uppercase + textcolor=DefaultText + } + topfade //Main Background element + { + render_bg + { + 0="fill(x0,y0,x1-80,y0+80,Overlay.Header)" + 1="fill(x0,y0+80,x1-80,y1-80,Overlay.Back)" + 2="fill(x0,y1-80,x1-80,y1,Overlay.Footer)" + + 3="fill(x1-80,y0,x1,y1,Overlay.Sidebar)" + } + render + { + 0="image(x1-80,y0,x1,y1,graphics/Threshold/overlay/fullscreen)" + 1="image(x1-80,y1-240,x1,y1,graphics/Threshold/overlay/web)" + 2="image(x1-80,y1-160,x1,y1,graphics/Threshold/overlay/music)" + 3="image(x1-80,y1-80,x1,y1,graphics/Threshold/overlay/settings)" + } + } + bottomfade //Right column background element + { + render_bg + { + 0="fill(x0,y0,x1,y1,Overlay.Sidebar)" + } + } + overlaymain + { + bgcolor = "0 0 0 0" + //Doesnt support render_bg because sad panda + } + + topbar + { + font-size=48 + font-family=light + textcolor=DefaultText + } + detailsboxtitle + { + textcolor=Accent + } + + OverlayURLLabel + { + textcolor=none + } + + OverlayURLLabel:Hover + { + textcolor=none + render_bg{ + 0="fill(x0,y0,x1,y1,Overlay.Sidebar.Hover)" + } + } + + LabelOverlay + { + font-size=14 + textcolor=DefaultText + } + } + + layout + { + region { name=hidden width=0 height=0} + + region { name="main" width=530 height=max align=left} + region { name="sidebar" width=80 height=max align=left x=450} + region { name="right" width=125 height=40 align=right } + + place { control="TopFadePanel" region=main width=max height=max } + place { control="BottomFadePanel" region=right width=max height=max } + + place { control="CloseButton" region=sidebar align=top width=80 height=80 } + place { control="HotkeyLabel,HotkeyExplain" region=hidden } + + place { control="gamename" region=main align=left margin-left=20 margin-right=100 height=80 } + + place { control="PowerMeterDim" region=right align=right y=40 margin-right=20 } + + place { control="TaskbarPanel" region=sidebar height=max width=max margin-top=80} + } + +} \ No newline at end of file diff --git a/resource/layout/overlaydashboard_lores.layout b/resource/layout/overlaydashboard_lores.layout new file mode 100644 index 0000000..25698a0 --- /dev/null +++ b/resource/layout/overlaydashboard_lores.layout @@ -0,0 +1,104 @@ +"resource/layout/overlaydashboard_lores.layout" +{ + controls + { + BaseDashboardPanel + { + controlname="EditablePanel" + style="overlaymain" + } + TaskbarPanel + { + controlname="EditablePanel" + } + TopFadePanel + { + controlname="EditablePanel" + style=topfade + zpos=-1 + } + BottomFadePanel + { + controlname="EditablePanel" + style=bottomfade + zpos=-1 + } + + GameName + { + controlname="Label" + labeltext="%gamename%" + style=topbar + textalignment=east + } + PowerMeterDim + { + controlname= "ImagePanel" + image= "resource/battery_dim" + } + PowerMeterBright + { + controlname= "ImagePanel" + image= "resource/battery_bright" + } + + CloseButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_Close" } + HotkeyLabel { controlname="Label" labeltext="%hotkey%" style=hotkey } + HotkeyExplain { controlname="Label" labeltext="#Overlay_Hotkey_Explain" margin-left=4 } + } + + styles + { + hotkey + { + //font-size=18 + //font-style=uppercase + textcolor=DefaultText + } + topfade + { + render + { + 1="image(x0,y1-240,x1,y1,graphics/Threshold/overlay/web)" + 2="image(x0,y1-160,x1,y1,graphics/Threshold/overlay/music)" + 3="image(x0,y1-80,x1,y1,graphics/Threshold/overlay/settings)" + } + } + bottomfade + { + render_bg + { + //0="gradient( x0, y0, x1, y1, none, backgroundstartopaque )" + } + } + overlaymain + { + bgcolor = Overlay.Sidebar + } + + topbar + { + font-size=48 + textcolor=DefaultText + } + } + + layout + { + region { name=hidden width=0 height=0} + region { name=right width=80 height=max align=right} //Taskbar + + place { control="BottomFadePanel" region=hidden width=max height=130 } + + place { control="gamename" align=left margin-left=20 margin-right=100 height=80 } + + place { control="PowerMeterDim" align=bottom margin-bottom=20 margin-right=20} + + place { control="TopFadePanel" region=right width=max height=max } + place { control="TaskbarPanel" region=right height=max width=max } + + place { control="CloseButton" region=hidden} + place { control="HotkeyLabel,HotkeyExplain" region=hidden} + } + +} \ No newline at end of file diff --git a/resource/layout/overlaydesktop.layout b/resource/layout/overlaydesktop.layout new file mode 100644 index 0000000..ec0668a --- /dev/null +++ b/resource/layout/overlaydesktop.layout @@ -0,0 +1,94 @@ +"resource/layout/overlaydesktop.layout" +{ + controls + { + BaseDesktopPanel + { + controlname="EditablePanel" + } + + GameGroupsButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_GameGroups" style=sidemenu } + ChatRoomButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_ChatRoom" style=sidemenu } + DLCButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_DLC" style=sidemenu } + GuideButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_Guide" style=sidemenu } + LegacyCDKeyButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_legacycdkey" style=sidemenu } + WebSiteButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_WebSite" style=sidemenu } + RecommendButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_Recommend" style=sidemenu } + WorkshopButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_Workshop" style=sidemenu } + + FriendsDetailPanel { controlname="COverlay_Details_Friends" style="detailsbox" } + AchievementsDetailPanel { controlname="COverlay_Details_Achievements" style="detailsbox" } + NewsDetailPanel { controlname="COverlay_Details_News" style="detailsbox" } + ScreenshotsDetailPanel { controlname="COverlay_Details_Screenshots_Panel" style="detailsbox" } + GuidesDetailPanel { controlname="COverlay_Details_Guides_Panel" style="detailsbox" } + CommunityHubDetailPanel { controlname="COverlay_Details_CommunityHub_Panel" style="detailsbox" } + CommunityDiscussionsDetailPanel { controlname="COverlay_Details_CommunityDiscussions_Panel" style="detailsbox" } + BroadcastDetailPanel { controlname="COverlay_Details_Broadcast_Panel" style="detailsbox" } + + Clock { controlname="Label" labeltext="10:43" style=topbar } + ClockSuffix { controlname="Label" labeltext="am" style=clocksuffix } + SessionText { controlname=label style=TimeStrings labeltext="#Overlay_Playtime_Session" } + TwoWeeksText { controlname=label style=TimeStrings } + ForeverText { controlname=label style=TimeStrings } + } + + styles + { + sidemenu + { + font-size=15 + textcolor=DefaultText + } + + sidemenu:hover + { + font-size=15 + textcolor=DefaultText.Hover + } + + topbar + { + font-size=24 + textcolor=DefaultText + } + + clocksuffix + { + font-size=24 + textcolor=DefaultText + font-weight=400 + font-style=uppercase; + } + + timeStrings + { + font-size="17" + textcolor=DefaultText.Hover + font-family=basefont + } + } + + layout + { + region { name=hidden width=0 height=0} + + region { name="main" width=450 height=max align=left y=80 margin-bottom=80 overflow=scroll-vertical} + region { name="sidebar" width=80 height=max align=left margin-left=500 margin-top=80} + region { name="footer" width=450 height=80 align=bottom } + region { name="right" width=450 height=max align=right } + + region { name="gameOps" region=footer width=200 height=max align=right overflow=scroll-vertical} + place { control="LegacyCDKeyButton,GameGroupsButton,ChatRoomButton,DLCButton,GuideButton,WebSiteButton,RecommendButton,WorkshopButton" align=right region=gameOps dir=down margin-right=20 margin-top=10} + + place { control="BroadcastDetailPanel" region=right width=330 height=240 align=bottom } + + place { control="FriendsDetailPanel" region=main dir=down width=max height=200} + place { control="NewsDetailPanel,AchievementsDetailPanel,GuidesDetailPanel" start=FriendsDetailPanel region=main dir=down width=max height=180 } + place { control="ScreenshotsDetailPanel,CommunityHubDetailPanel,CommunityDiscussionsDetailPanel" region=main start=GuidesDetailPanel dir=down width=max height=50 } + + place { control="Clock,ClockSuffix" region=right margin-right=20 margin-top=10 align=right} + place { control="SessionText,TwoWeeksText,ForeverText" region=footer align=left dir=down margin-left=20 margin-top=10} + + } + +} diff --git a/resource/layout/overlaydesktop_lores.layout b/resource/layout/overlaydesktop_lores.layout new file mode 100644 index 0000000..a7a467f --- /dev/null +++ b/resource/layout/overlaydesktop_lores.layout @@ -0,0 +1,85 @@ +"resource/layout/overlaydesktop_lores.layout" +{ + controls + { + BaseDesktopPanel + { + controlname="EditablePanel" + } + + GameHubButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_GameHub" style=sidemenu } + GameGroupsButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_GameGroups" style=sidemenu } + ChatRoomButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_ChatRoom" style=sidemenu } + DLCButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_DLC" style=sidemenu } + GuideButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_Guide" style=sidemenu } + GuidesButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_SteamGuides" style=sidemenu } + LegacyCDKeyButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_legacycdkey" style=sidemenu } + WebSiteButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_WebSite" style=sidemenu } + ForumsButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_Forums" style=sidemenu } + RecommendButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_Recommend" style=sidemenu } + WorkshopButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_Workshop" style=sidemenu } + + FriendsButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_Friends" style=sidemenu } + PlayersButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_Players" style=sidemenu } + AchievementsButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_Achievements" style=sidemenu } + ScreenshotsButton { controlname="URLLabel" labeltext="#Overlay_Taskbar_Screenshots" style=sidemenu } + + Clock { controlname="Label" labeltext="10:43" style=topbar } + ClockSuffix { controlname="Label" labeltext="am" style=clocksuffix } + SessionText { controlname=label style=TimeStrings labeltext="#Overlay_Playtime_Session" } + TwoWeeksText { controlname=label style=TimeStrings } + ForeverText { controlname=label style=TimeStrings } + } + + styles + { + sidemenu + { + font-size=15 + textcolor=DefaultText + } + + sidemenu:hover + { + font-size=15 + textcolor=DefaultText.Hover + } + + topbar + { + font-size=24 + textcolor=DefaultText + } + + clocksuffix + { + font-size=24 + textcolor=DefaultText + font-weight=400 + font-style=uppercase; + } + + timeStrings + { + font-size="17" + textcolor=DefaultText.Hover + font-family=basefont + } + } + + layout + { + region { name=hidden width=0 height=0} + region { name="main" width=max height=max} //Not used, but has to exist to remove scrollbar + region { name="gameOps" width=max height=max} //Ditto + + region { name=broadcast width=330 height=240 align=right margin-right=80} + region { name=right height=150} + + place { controls="BroadcastDetailPanel" region=broadcast width=330 height=240 align=bottom } + place { controls="GameHubButton,ChatRoomButton,DLCButton,GuideButton,GuidesButton,LegacyCDKeyButton,WebSiteButton,ForumsButton,RecommendButton,WorkshopButton,FriendsButton,PlayersButton,AchievementsButton,ScreenshotsButton,GameGroupsButton" y=80 align=left margin-left=20 dir=down spacing=10 } + + place { control="Clock,ClockSuffix" margin-right=20 margin-top=10 align=right} + place { control="SessionText,TwoWeeksText,ForeverText,CloseButton" dir=down region=right align=right y=45 margin-right=20} + } +} diff --git a/resource/layout/overlaytaskbar.layout b/resource/layout/overlaytaskbar.layout new file mode 100644 index 0000000..8cc2d2b --- /dev/null +++ b/resource/layout/overlaytaskbar.layout @@ -0,0 +1,105 @@ +"resource/layout/overlaytaskbar.layout" +{ + controls + { + TaskbarPanel + { + controlname="EditablePanel" + } + SettingsButton + { + controlname="URLLabel" + labeltext="#Overlay_Taskbar_Settings" + style=taskbar + } + WebBrowserButton + { + controlname="URLLabel" + labeltext="#Overlay_Taskbar_WebBrowser" + style=taskbar + } + MusicPlayerButton + { + controlname="URLLabel" + labeltext="#Overlay_Taskbar_Music" + style=taskbar + } + + SteamLogo + { + controlname="ImagePanel" zpos=1 image="resource/steam_logo_big" + scaleimage=1 + } + + view_friends + { + ControlName=URLLabel + labelText="#Steam_ViewFriends" + command="OpenFriendsDialog" + + style="view_friends" + textAlignment=east + } + online_friends + { + ControlName=Label + labelText="#Steam_OnlineFriends" + style="online_friends" + textAlignment=east + } + } + + styles + { + + taskbar + { + textcolor=none + } + + taskbar:hover + { + textcolor=none + render_bg{ + 0="fill(x0,y0,x1,y1,Overlay.Sidebar.Hover)" + } + } + + view_friends + { + textcolor="Text" + bgcolor="none" + font-family=basefont + font-size=14 + font-weight=400 + font-style=regular,uppercase + } + view_friends:Hover + { + textcolor="textHover" + } + + online_friends + { + textcolor="label2" + bgcolor="none" + font-family=basefont + font-size=14 + font-style=regular + } + } + + layout + { + region { name=hidden width=0 height=0} + + place { control="TaskbarPanel" width=max height=max } + place { control="SteamLogo" region=hidden x=0 y=10 width=200 height=120 } + place { controls="WebBrowserButton,MusicPlayerButton,SettingsButton,ScreenshotsButton" width=80 height=80 dir=down spacing=0 align=bottom } + + + place { control="FriendPanel" height=48 width=48 align=right margin-right=6 margin-top=4 region=hidden} + place { control="view_friends" height=12 y=12 align=right dir=right margin-right=60 region=hidden} + place { control="online_friends" height=12 y=26 align=right dir=right margin-right=60 region=hidden} + } +} diff --git a/resource/layout/overlaywebbrowser.layout b/resource/layout/overlaywebbrowser.layout new file mode 100644 index 0000000..91f5a26 --- /dev/null +++ b/resource/layout/overlaywebbrowser.layout @@ -0,0 +1,151 @@ +"steam/cached/overlaywebbrowser.layout" +{ + controls + { + WebBrowser { controlname="COverlayWebBrowser" frametitle="#Overlay_WebBrowserTitle" } + HTMLField { controlname="HTML" zpos=1 } + URLStatusImage { controlname="ImagePanel" style="URLStatusImage" } + EVCert { controlname="Label" style="LabelEVCert" visible=false } + URLBar { controlname="TextEntry" style="TextEntryURL" } + StatusText { controlname="Label" } + + HomeButton { controlname="Button" command="WebHome" labeltext="" style="HomeButton" } + StopButton { controlname="Button" command="WebStop" labeltext="" style="StopButton" } + ReloadButton { controlname="Button" command="WebReload" labeltext="" style="ReloadButton" } + ForwardButton { controlname="Button" command="WebForward" labeltext="" style="ForwardButtonSm" } + BackButton { controlname="Button" command="WebBack" style="BackButtonSm" } + + PageLoadThrobber { controlname="ImagePanel" image="graphics/rampDown_4" } + } + + styles + { + COverlayWebBrowser{ + render_bg{ + 0="fill(x0,y0,x1,y1,DefaultBackground)" + } + } + + BackButtonSm + { + bgcolor=none + inset="5 0 0 0" + render_bg={} + image="graphics/Threshold/back" + } + BackButtonSm:hover + { + bgcolor=Menu.Button.Hover + image="graphics/Threshold/back" + render_bg={ + 0="fill(x0,y0,x1,y1,Menu.Button.Hover)" + } + } + BackButtonSm:active + { + bgcolor=Accent + image="graphics/Threshold/back" + render_bg={ + 0="fill(x0,y0,x1,y1,Accent)" + } + } + BackButtonSm:disabled + { + bgcolor=none + render_bg={} + image="graphics/Threshold/back_dis" + } + ForwardButtonSm + { + bgcolor=none + inset="5 0 0 0" + render_bg={} + image="graphics/Threshold/forward" + } + + ForwardButtonSm:hover + { + bgcolor=Menu.Button.Hover + image="graphics/Threshold/forward" + render_bg={ + 0="fill(x0,y0,x1,y1,Menu.Button.Hover)" + } + } + ForwardButtonSm:active + { + bgcolor=Accent + image="graphics/Threshold/forward" + render_bg={ + 0="fill(x0,y0,x1,y1,Menu.Button.Accent)" + } + } + ForwardButtonSm:disabled + { + bgcolor=none + render_bg={} + image="graphics/Threshold/forward_dis" + } + + + TextEntryURL + { + font-size=16 + inset="5 0 0 0" + render_bg { } + render { } + } + + TextEntryURL:Hover + { + render_bg { } + render { } + + } + + + LabelEVCert + { + font-family=basefont + font-size=14 + textcolor="darkclientbg" + bgcolor="html.secureurl" + inset-left=4 + inset-right=4 + inset-top=-1 + } + + URLStatusImage + { + bgcolor=none + inset="0 0 0 0" + render{ + } + } + + URLBarSecure + { + textcolor="html.secureurl" + } + + URLBarBrokenSecure + { + textcolor="html.insecureurl" + } + } + + layout + { + region { name=hidden width=0 height=0} + + place { control="HTMLField" width=max height=max margin-top=40 margin-left=0 margin-right=0 margin-bottom=26 } + place { control="StatusText" align=bottom height=24 margin-left=9 margin-bottom=1 } + place { control="PageLoadThrobber" align=right margin-right=10 width=20 height=40 } + + place { control="BackButton,ForwardButton,ReloadButton,StopButton,HomeButton,URLStatusImage" width=40 spacing=0 height=40} + place { control="URLBar" start=URLStatusImage dir=right height=40 width=max margin-right=40} + place { control="EVCert" region=hidden} //I dont think we need 3 seperate elements confirming a secure transaction, but maybe im crazy + + } + +} + diff --git a/resource/layout/pagedragframe.layout b/resource/layout/pagedragframe.layout new file mode 100644 index 0000000..c3eb9c4 --- /dev/null +++ b/resource/layout/pagedragframe.layout @@ -0,0 +1,25 @@ +"resource/layout/pagedragframe.layout" +{ + controls + { + DragPropertySheet { controlname="PropertySheet" } + } + + styles + { + PageDragFrame + { + + } + + PageDragPanel + { + + } + } + + layout + { + place { control="DragPropertySheet" x=8 y=8 width=max height=max margin-right=8 margin-bottom=8 } + } +} diff --git a/resource/layout/pagination_panel.layout b/resource/layout/pagination_panel.layout new file mode 100644 index 0000000..af473b2 --- /dev/null +++ b/resource/layout/pagination_panel.layout @@ -0,0 +1,98 @@ +"resource/layout/pagination_panel.layout" +{ + controls + { + pagination { controlname="CPaginationPanel" style="pagination" } + pagedescription { controlname="Label" labeltext="#steam_paginationtext" style="pagedescriptionstyle" } + FirstLink { controlname="Button" labeltext="1" style="PageButton" } + PreviousLink { controlname="Button" labeltext="<" style="JumpButton" } + page1 { controlname="Button" visible=0 style="PageButton" } + page2 { controlname="Button" visible=0 style="PageButton" } + page3 { controlname="Button" visible=0 style="PageButton" } + page4 { controlname="Button" visible=0 style="PageButton" } + page5 { controlname="Button" visible=0 style="PageButton" } + page6 { controlname="Button" visible=0 style="PageButton" } + page7 { controlname="Button" visible=0 style="PageButton" } + page8 { controlname="Button" visible=0 style="PageButton" } + page9 { controlname="Button" visible=0 style="PageButton" } + page10 { controlname="Button" visible=0 style="PageButton" } + page11 { controlname="Button" visible=0 style="PageButton" } + page12 { controlname="Button" visible=0 style="PageButton" } + page13 { controlname="Button" visible=0 style="PageButton" } + page14 { controlname="Button" visible=0 style="PageButton" } + page15 { controlname="Button" visible=0 style="PageButton" } + page16 { controlname="Button" visible=0 style="PageButton" } + page17 { controlname="Button" visible=0 style="PageButton" } + page18 { controlname="Button" visible=0 style="PageButton" } + page19 { controlname="Button" visible=0 style="PageButton" } + page20 { controlname="Button" visible=0 style="PageButton" } + NextLink { controlname="Button" labeltext=">" style="JumpButton" } + LastLink { controlname="Button" labeltext="Last" style="PageButton" } + LeftSpacer { controlname="Label" labeltext="..." style="spacerstyle" } + RightSpacer { controlname="Label" labeltext="..." style="spacerstyle" } + } + + colors + { + PaginationPanel.ExtraVerticalSpacing "25" + } + + styles + { + paginationLinkDisabledStyle + { + textcolor=TextDisabled + font-style=underline + } + + pagedescriptionstyle + { + padding-left=3 + font-size=15 + } + + PageButton + { + render_bg {} + minimum-width=30 + } + + PageButton:hover + { + render_bg {} + textcolor=White + font-style=underline,uppercase + } + + JumpButton + { + padding-left=10 + padding-right=10 + } + + paginationLinkStyle + { + font-style="" + textcolor=Text2 + } + + paginationLinkStyle:hover + { + textcolor=White + font-style=underline + } + + spacerstyle + { + padding-right=10 + textcolor=Text2 + } + } + + layout + { + region { name=body margin=0 width=max height=max } + place { region=body y=2 control=pagedescription } + place { region=body align=right control=PreviousLink,FirstLink,LeftSpacer,page1,page2,page3,page4,page5,page6,page7,page8,page9,page10,page11,page12,page13,page14,page15,page16,page17,page18,page19,page20,RightSpacer,LastLink,NextLink } + } +} diff --git a/resource/layout/parentallockdialog.layout b/resource/layout/parentallockdialog.layout new file mode 100644 index 0000000..0e0e768 --- /dev/null +++ b/resource/layout/parentallockdialog.layout @@ -0,0 +1,55 @@ +"resource/layout/parentallockdialog.layout" +{ + controls + { + ParentalLockDialog { controlname="Frame" title="#steam_parental_locktitle" style="ParentalLockDialog" } + + Instructions { controlname="Label" style="Hey" labeltext="#steam_parental_lockinstructions" wrap=1 } + + KeyImage { controlname="Label" style="Key" zpos=-4 } + + OK { controlname="Button" tabposition=1 command="DoParentalLock" labeltext="#PropertyDialog_OK" default=1 } + Cancel { controlname="Button" tabposition=2 command="Close" labeltext="#PropertyDialog_Cancel" } + } + + styles + { + ParentalLockDialog + { + minimum-width = 400 + minimum-height = 250 + } + + Hey + { + //font-size=18 + } + + Key + { + bgcolor=none + render_bg={} + image="graphics/keybg" + inset="20 20 0 0" + } + } + + layout + { + region { name="top" width=max height=260 margin=10 margin-top=40} + region { name="middle" width=max height=150 y=100 margin=10 } + region { name="bottom" width=max align=bottom height=42 align="bottom" } + + place { control="KeyImage" region="top" align=left x=85 y=0 width=max height=max margin-top=-30 margin-right=0} + + place { control="Instructions" region="top" x=20 y=10 width=max} + + // bottom: OK/cancel + place { control="OK,Cancel" region="bottom" align=right + width=92 height=25 align=right + margin-right=10 margin-top=0 + margin-bottom=10 spacing=10 } + } + +} + diff --git a/resource/layout/parentalunlockdialog.layout b/resource/layout/parentalunlockdialog.layout new file mode 100644 index 0000000..32087ca --- /dev/null +++ b/resource/layout/parentalunlockdialog.layout @@ -0,0 +1,76 @@ +"resource/layout/parentalunlockdialog.layout" +{ + controls + { + ParentalUnlockDialog { controlname="Frame" title="#steam_parental_unlocktitle" style="ParentalUnlockDialog" } + + Instructions { controlname="Label" style="Hey" labeltext="#steam_parental_unlockinstructions" wrap=1 } + + Instructions2 { controlname="Label" style="Hey2" labeltext="#steam_parental_unlockinstructions2" wrap=1 } + + Password { controlname="TextEntry" style="Password" command="DoParentalUnlock" tabposition=1 } + + KeyImage { controlname="Label" style="Key" zpos=-4 } + + Recovery { controlname="URLLabel" labeltext="#steam_parental_norecoveryemail" command="ShowRecoveryDialog" } + + OK { controlname="Button" tabposition=2 command="DoParentalUnlock" labeltext="#PropertyDialog_OK" default=1 } + Cancel { controlname="Button" tabposition=3 command="Close" labeltext="#PropertyDialog_Cancel" } + } + + styles + { + ParentalUnlockDialog + { + minimum-width = 400 + minimum-height = 250 + } + + Password + { + minimum-height=50 + font-size=40 + } + + Hey + { + textcolor=DefaultText + } + + Hey2 + { + textcolor=DefaultText.Hover + } + + Key + { + bgcolor=none + render_bg={} + image="graphics/keybg" + inset="20 20 0 0" + } + + } + + layout + { + region { name="top" width=max height=260 margin=10 margin-top=40 } + region { name="bottom" width=max align=bottom height=42 align="bottom" } + + place { control="KeyImage" region="top" align=left x=160 y=0 width=max height=max margin-top=-30 margin-right=0} + + place { control="Instructions, Instructions2" region="top" x=20 y=10 spacing=8 width=max dir=down } + + place { control="Password" margin-top="75" region="top" margin-left=155 width=70 } + + place { control="Recovery" region="bottom" margin-left=10 margin-top=8 } + + // bottom: OK/cancel + place { control="OK,Cancel" region="bottom" + width=92 height=32 align=right + margin-right=10 margin-top=0 + margin-bottom=10 spacing=10 } + } + +} + diff --git a/resource/layout/phonereminderbar.layout b/resource/layout/phonereminderbar.layout new file mode 100644 index 0000000..184fd91 --- /dev/null +++ b/resource/layout/phonereminderbar.layout @@ -0,0 +1,101 @@ +"resource/layout/phonereminderbar.layout" +{ + controls + { + "phonereminderbarlabel" + { + "ControlName" "Label" + "labelText" "#steam_phoneaddress_query" + style=bright + } + "phonereminderbar_info" + { + "ControlName" "Label" + "labelText" "#steam_phoneaddress_query_info" + style=soft + wrap=1 + } + "phonereminderbar_yesbutton" + { + "ControlName" "Button" + "labelText" "#steam_phoneaddress_query_yes" + command="AddPhone" + style="ButtonStyle" + } + "phonereminderbar_nobutton" + { + "ControlName" "Button" + "labelText" "#steam_phoneaddress_query_no" + command="Close" + style="ButtonStyle" + } + } + + styles + { + CPhoneReminderBar + { + + render {} + render_bg { + 0="image_scale( x0+3, y0, x1-3, y1+1, graphics/emailreminder_center )" + 1="image( x0, y0, x0+3, y1, graphics/emailreminder_left )" + 2="image( x1-4, y0, x1, y1, graphics/emailreminder_right )" + + 3="fill( x1-2, y1+1, x1-1, y1+2, outline_gray )" + 4="fill( x0, y1+1, x0+1, y1+2, outline_gray )" + 5="fill( x0+1, y1+1, x0+2, y1+2, outline_dark )" + } + } + + soft + { + font-size=15 + textcolor="209 242 133 255" + minimum-width=500 + } + + bright + { + + font-size=18 + textcolor="255 255 255 255" + } + + ButtonStyle + { + font-size=16 + padding=2 + bgcolor=button_green_bg + render_bg {} + render { + 1="fill( x0, y0, x1, y0 + 1, button_green_border )" // top + 2="fill( x0, y1 - 1, x1, y1, button_green_border )" // bottom + 3="fill( x0 + 1, y0, x0 + 1, y1, button_green_border )" // left + 4="fill( x1 - 1, y0, x1, y1, button_green_border )" // right + } + } + + ButtonStyle:hover + { + textcolor=white + } + } + + colors + { + phonereminder_bar_green1 "92 126 16 255" + phonereminder_bar_green2 "73 100 13 255" + outline_gray "77 75 72 255" + outline_dark "23 22 20 255" + button_text_green "209 242 133 255" + button_green_bg "64 90 08 255" + button_green_border "91 120 18 255" + } + + layout + { + place { control="phonereminderbarlabel" x=20 y=16 spacing=8 } + place { control="phonereminderbar_yesbutton,phonereminderbar_nobutton,phonereminderbar_info" x=20 y=42 spacing=18 margin-bottom=6 margin-right=20 } + } +} diff --git a/resource/layout/remotecontrolauthorization.layout b/resource/layout/remotecontrolauthorization.layout new file mode 100644 index 0000000..bcc0b1a --- /dev/null +++ b/resource/layout/remotecontrolauthorization.layout @@ -0,0 +1,49 @@ +"resource/layout/remotecontrolauthorization.layout" +{ + controls + { + "AuthorizeDeviceText" + { + ControlName="Label" + fieldName="AuthorizeDeviceText" + wrap=1 + labelText="#SteamUI_RemoteControl_AuthorizeDevice_Text" + } + + "AuthorizeUnnamedDeviceText" + { + ControlName="Label" + fieldName="AuthorizeUnnamedDeviceText" + wrap=1 + labelText="#SteamUI_RemoteControl_AuthorizeUnnamedDevice_Text" + } + + AuthorizeButton { ControlName="Button" fieldName="AuthorizeButton" command="Authorize" labelText="#vgui_yes" } + DenyButton { ControlName="Button" fieldName="DenyButton" command="Deny" labelText="#vgui_no" } + } + + style + { + } + + layout + { + region { name="buttons" width=max height=36 align="bottom" } + + place + { + control="AuthorizeDeviceText,AuthorizeUnnamedDeviceText" + dir=down + align=top + width=max + margin-left=20 + margin-right=20 + margin-top=40 + spacing=10 + } + place { control="DenyButton,AuthorizeButton" region="buttons" + width=92 height=25 align=right + margin-right=10 margin-top=0 + margin-bottom=2 spacing=10 } + } +} \ No newline at end of file diff --git a/resource/layout/remotedeviceauthorization.layout b/resource/layout/remotedeviceauthorization.layout new file mode 100644 index 0000000..36176ea --- /dev/null +++ b/resource/layout/remotedeviceauthorization.layout @@ -0,0 +1,64 @@ +"resource/layout/remotedeviceauthorization.layout" +{ + controls + { + RemoteDeviceAuthorization { controlname="Frame" title="#SteamUI_RemoteDeviceAuthorization_Title" style="RemoteDeviceAuthorization" } + + "AuthorizeDeviceText" + { + ControlName="Label" + style="Instructions" + wrap=1 + labelText="#SteamUI_RemoteDeviceAuthorization_Text" + } + + AuthCode { controlname="TextEntry" style="AuthCode" command="Authorize" tabposition=1 } + + OK { controlname="Button" tabposition=2 command="Authorize" labeltext="#PropertyDialog_OK" default=1 enabled=false } + Cancel { controlname="Button" tabposition=3 command="Close" labeltext="#PropertyDialog_Cancel" } + } + + styles + { + RemoteDeviceAuthorization + { + minimum-width = 380 + minimum-height = 180 + } + + AuthCode + { + minimum-height=50 + font-size=40 + bgcolor="none" + } + + Instructions + { + font-size=15 + } + } + + layout + { + region { name="buttons" width=max height=36 align="bottom" } + + place + { + control="AuthorizeDeviceText,AuthCode" + dir=down + align=top + width=max + margin-left=20 + margin-right=20 + margin-top=40 + spacing=10 + } + + // bottom: OK/cancel + place { control="OK,Cancel" region="buttons" + width=92 height=25 align=right + margin-right=10 margin-top=0 + margin-bottom=2 spacing=10 } + } +} \ No newline at end of file diff --git a/resource/layout/requestdeviceauthorization.layout b/resource/layout/requestdeviceauthorization.layout new file mode 100644 index 0000000..fdb68b2 --- /dev/null +++ b/resource/layout/requestdeviceauthorization.layout @@ -0,0 +1,36 @@ +"resource/layout/choosepurchaseorauthorization.layout" +{ + controls + { + DialogTitle { controlname=label labeltext=#Steam_DeviceAuth_RequestDialog_Title style=BigLable } + DialogText { controlname=label labeltext=#Steam_DeviceAuth_RequestDialog_Text wrap=1 } + ToLabel { controlname=label labeltext=#Steam_DeviceAuth_RequestDialog_To } + FromLabel { controlname=label labeltext=#Steam_DeviceAuth_RequestDialog_From } + DescriptionLabel { controlname=label labeltext=#Steam_DeviceAuth_RequestDialog_Description } + DescriptionEntry { controlname=textentry } + SendButton { controlname=button labeltext=#Steam_DeviceAuth_RequestDialog_Send command=SendRequest } + CancelButton { controlname=button labeltext=#Steam_DeviceAuth_RequestDialog_Cancel command=Close } + } + + styles + { + BigLable + { + textcolor=DefaultText + font-size=18 + } + } + + layout + { + place { control="DialogTitle" y=32 x=16 height=24 width=360 } + place { control="ToLabel" y=64 x=16 height=24 width=360 } + place { control="FromLabel" y=136 x=16 height=24 width=360 } + place { control="DialogText" y=90 x=16 height=96 width=350 } + place { control="DescriptionLabel" y=180 x=16 height=24 width=360 } + place { control="DescriptionEntry" y=200 x=16 height=24 width=350 } + place { control="SendButton" y=280 x=16 height=24 width=164} + place { control="CancelButton" y=280 x=200 height=24 width=164 } + + } +} \ No newline at end of file diff --git a/resource/layout/screenshotdeletedialog.layout b/resource/layout/screenshotdeletedialog.layout new file mode 100644 index 0000000..1159428 --- /dev/null +++ b/resource/layout/screenshotdeletedialog.layout @@ -0,0 +1,31 @@ +"resource/layout/screenshotdeletedialog.layout" +{ + controls + { + ScreenshotDeleteDialog { controlname="Frame" title="#steam_screenshotdelete_title" style="ScreenshotDeleteDialog" } + Warning { controlname="ImagePanel" image="resource/icon_warning" } + WarningText { controlname="Label" labeltext="#steam_are_you_sure_delete_screenshot" wrap=1 } + DeleteFromCloudBox { controlname="CheckButton" labelText="#steam_also_delete_from_cloud" } + Delete { controlname="Button" command="DeleteScreenshot" labeltext="#steam_delete" } + Cancel { controlname="Button" command="Cancel" labeltext="#vgui_cancel" } + } + + styles + { + ScreenshotDeleteDialog + { + minimum-width=325 + minimum-height=200 + } + + } + + layout + { + place { control="Warning" x=20 y=65} + place { control="WarningText" start="Warning" dir=right x=5 y=15 width=max margin-right=15 } + place { control="DeleteFromCloudBox" start="WarningText" dir=down } + place { control="Delete,Cancel" y=170 align=right margin-right=15 spacing=5 } + } + +} diff --git a/resource/layout/screenshotmanager.layout b/resource/layout/screenshotmanager.layout new file mode 100644 index 0000000..c910222 --- /dev/null +++ b/resource/layout/screenshotmanager.layout @@ -0,0 +1,296 @@ +"resource/layout/screenshotmanager.layout" +{ + controls + { + ScreenshotManager { title="#steam_screenshotsupload_title" style="CScreenshotManager" } + + DarkRegionDetails { controlname="ImagePanel" style=DarkRegionDetails zpos="-1" } + SSDetails { controlname="ImagePanel" style=SSDetails } + SSDate { controlname="Label" labelText="%selected_ss_date%" } + SSSize { controlname="Label" labelText="#Overlay_Screenshots_Size_Cloud" } + SSSizeOriginal { controlname="Label" labelText="#Overlay_Screenshots_Size_Original" } + + grid { alignment="left" interiorspacing=5 wwheelpct=50 style="WrapPanel" } + view_screenshots { controlname="Button" labeltext="#Overlay_View_All_Screenshots" command="viewscreenshots" } + view_local_library_button { controlname="Button" labeltext="#Overlay_View_Local" command="viewlocallibrary" visible=0 } + selectorlabel { controlname="Label" labeltext="#Overlay_Screenshots_Show" } + + spoiler_checkbox { controlname="CheckButton" labeltext="#Overlay_Tag_As_Potential_Spoiler" visible=0 } + publish_button { controlname="Button" labeltext="#Overlay_Publish" command="askpublishscreenshot" visible=0 } + publish_caption { controlname="CScreenshotCaptionEntry" unicode=1 } + delete_button { controlname="Button" labeltext="#Overlay_Delete" command="askdeletescreenshot" visible=1 } + publish_charsleft { controlname="Label" labeltext="#Overlay_Chars_Left" style="publishcharsleft" visible=0 } + + details_button { controlname="Button" labeltext="#Overlay_Details" command="viewselectedscreenshot" visible=0 } + details_caption { controlname="Label" style=publishcaption wrap=1 visible=0 } + + no_screenshots { controlname="ImagePanel" image="resource/screenshots_none_selected" } + + game_selector { controlname="ComboBox" style="gameselector" editable=0 } + + file_not_loaded_label { controlname="Label" labeltext="#steam_screenshot_not_loaded" visible=0 } + + multiselect_button { controlname="Button" labeltext="#steam_screenshots_select_all" command="multiselect" visible=1 } + + multi_img { controlname="ImagePanel" image="resource/multiple_screenshots" visible=0 } + multi_img_count { controlname="Label" labeltext="%selected_screenshot_count%" style=largeselectioncount visible=0 } + multi_img_selected { controlname="Label" labeltext="#steam_screenshots_selected" visible=0 } + multi_img_upload_size { controlname="Label" labeltext="#steam_selected_screenshot_size" visible=0 } + multi_img_upload_size_info { controlname="Label" labeltext="#steam_selected_screenshot_size_info" visible=0 } + multi_img_storage_remaining { controlname="Label" labeltext="#steam_remaining_storage" visible=0 } + multi_img_storage_remaining_info { controlname="Label" labeltext="#steam_remaining_storage_info" visible=0 } + multi_img_delete { controlname="Button" labeltext="#Overlay_Delete" command="askdeletescreenshot" visible=0 } + multi_img_upload { controlname="Button" labeltext="#Overlay_Publish" command="askpublishscreenshot" visible=0 } + + instr_no_selection_title { controlname="Label" labeltext="#steam_screenshots_no_selection_title" style="NoSelectionTitle" wrap=1 } + instr_no_selection { controlname="Label" labeltext="#steam_screenshots_no_selection_instructions" style="NoSelectionInstructions" wrap=1 } + + null_placer { controlname="Panel" visible=1 } // Used to bottom-right align things. YOU FOOLS + } + + colors + { + BorderThumbnailUnpublished="0 0 0 255" + BorderThumbnailHover="200 200 200 255" + BorderThumbnailUploaded="0 0 0 255" + BorderThumbnailPublished="0 0 0 255" + BorderThumbnailSelected="139 185 224 255" + } + + styles + { + CScreenshotManager + { + minimum-width=730 + minimum-height=450 + render_bg + { + 0="fill(x0, y0+32, x1, y0+80, Root.Header)" + 1="fill(x0, y0+80, x1, y1-48, Root.Back)" + 2="fill(x0, y1-48, x1, y1, DefaultBackground)" + 3="fill(x0, y0+32, x0+335, y1, Root.LeftCol)" + } + } + + ThumbnailUnpublished + { + bgcolor="0 0 0 255" + render { + // lines around + 1="fill( x0, y0, x0 + 2, y1, BorderThumbnailUnpublished )" //left + 2="fill( x1 - 2, y0, x1, y1, BorderThumbnailUnpublished )" //right + 3="fill( x0, y0, x1, y0 + 2, BorderThumbnailUnpublished )" //top + 4="fill( x0, y1 - 2, x1, y1, BorderThumbnailUnpublished )" //btm + } + } + + ThumbnailUnpublished:hover + { + bgcolor="0 0 0 255" + render { + // lines around + 1="fill( x0, y0, x0 + 2, y1, BorderThumbnailHover )" //left + 2="fill( x1 - 2, y0, x1, y1, BorderThumbnailHover )" //right + 3="fill( x0, y0, x1, y0 + 2, BorderThumbnailHover )" //top + 4="fill( x0, y1 - 2, x1, y1, BorderThumbnailHover )" //btm + } + } + + ThumbnailPublished //Not used? + { + bgcolor="0 0 0 255" + render { + // lines around + 1="fill( x0, y0, x0 + 2, y1, BorderThumbnailPublished )" //left + 2="fill( x1 - 2, y0, x1, y1, BorderThumbnailPublished )" //right + 3="fill( x0, y0, x1, y0 + 2, BorderThumbnailPublished )" //top + 4="fill( x0, y1 - 2, x1, y1, BorderThumbnailPublished )" //btm + } + } + + ThumbnailSelected + { + bgcolor="0 0 0 255" + render { + // lines around + 1="fill( x0, y0, x0 + 2, y1, Accent )" //left + 2="fill( x1 - 2, y0, x1, y1, Accent )" //right + 3="fill( x0, y0, x1, y0 + 2, Accent )" //top + 4="fill( x0, y1 - 2, x1, y1, Accent )" //btm + } + } + + ThumbnailSelected:hover + { + bgcolor="0 0 0 255" + render { + // lines around + 1="fill( x0, y0, x0 + 2, y1, Accent.Hover )" //left + 2="fill( x1 - 2, y0, x1, y1, Accent.Hover )" //right + 3="fill( x0, y0, x1, y0 + 2, Accent.Hover )" //top + 4="fill( x0, y1 - 2, x1, y1, Accent.Hover )" //btm + } + } + + ThumbnailUploaded //Not used? + { + bgcolor="0 0 0 255" + render { + // lines around + 1="fill( x0, y0, x0 + 2, y1, BorderThumbnailUploaded )" //left + 2="fill( x1 - 2, y0, x1, y1, BorderThumbnailUploaded )" //right + 3="fill( x0, y0, x1, y0 + 2, BorderThumbnailUploaded )" //top + 4="fill( x0, y1 - 2, x1, y1, BorderThumbnailUploaded )" //btm + } + } + + DarkRegionDetails + { + bgcolor=Root.LeftCol + } + + SSDetails + { + minimum-width=320 + minimum-height=240 + bgcolor="0 0 0 255" + render + { + 0="fill(x0,y1-32,x1,y1,Root.BackTransparent)" + } + } + + publishcaption + { + inset="0 0 0 0" + textcolor=DefaultText + font-size=20 + font-style="italic" + } + + + publishcaptionprompt + { + textcolor=DefaultText + } + + publishcharsleft + { + } + + publishcharsleft_toomanychars + { + textcolor="255 0 0 255" + } + + WrapPanel + { + inset="0 0 0 0" + bgcolor="none" + + render_bg { + + } + } + + gameselector + { + } + + ScreenshotLoadingThrobber + { + minimum-width=100 + minimum-height=75 + bgcolor=black + } + + LargeSelectionCount + { + font-size=60 + font-family=basefont + } + + NoSelectionTitle + { + font-size=24 + font-family=semilight + textcolor=Accent + } + + NoSelectionInstructions + { + font-size=15 + font-family=basefont + } + + TextEntry:empty //SIGH ... + { + render_bg { + 0="fill(x0, y0, x1, y1, TextBox.Back)" + } + } + + TextEntry:empty:focus //Active + { + textcolor=TextBox.Active.Text + shadowtextcolor=TextBox.Active.Cursor + render_bg + { + 0="fill(x0, y0, x1, y1, TextBox.Active)" + // lines around + 1="fill( x0, y0, x1, y0 + 1, TextBox.Outline.Active )" // top + 2="fill( x0, y1 - 1, x1, y1, TextBox.Outline.Active )" // bottom + 3="fill( x0, y0, x0 + 1, y1, TextBox.Outline.Active )" // left + 4="fill( x1 - 1, y0, x1, y1, TextBox.Outline.Active )" // right + } + } + + } + + + layout + { + region { name=hidden width=0 height=0 } + + region { name="details" width=335 margin-top=32 height=max } + region { name=detailsinfo region=details height=32 width=max y=218} + region { name=detailscomment region=details height=max margin-top=245 margin-bottom=35} + region { name=detailsbottom region=details height=45 width=max align=bottom} + + region { name="list" align=right margin-left=335 margin-top=32 width=max } + region { name="listtop" region=list height=48 margin-left=10} + region { name="listbottom" region=list height=45 align=bottom} + + place { control="selectorlabel" region="hidden" x=0 y=8 } + place { control="game_selector" region="listtop" x=10 y=9 width=max dir=right margin-right=20} + + place { control="grid" region="list" margin-top=48 margin-left=20 margin-bottom=48 width=max height=max } + place { control="no_screenshots" region="hidden" y=50 align="top-center" } + + place { control="DarkRegionDetails" region="details" x=0 y=0 width=max height=max z="-1" } + place { control="SSDetails" region="details" y=0 width=max height=250 align="top-center" } + place { control="SSDate" region="detailsinfo" margin-left=10 height=max align=left } + place { control="SSSize,SSSizeOriginal" region="detailsinfo" margin-right=15 align=right height=max dir=right } + + place { control="publish_caption" region="detailscomment" margin-top=15 height=40 margin-right=10 margin-left=10 width=max } + place { control="publish_charsleft" region="detailscomment" align=right start=publish_caption dir=down margin-top=10 height=20 margin-right=10} + place { control="spoiler_checkbox" region="detailscomment" start=publish_caption dir=down margin-top=5} + place { control="details_caption" region="detailscomment" margin-top=15 height=40 margin-right=10 margin-left=10 width=max } + + place { control="null_placer" region="hidden" width=1 align=bottom margin-bottom=2 } + place { control="delete_button,details_button,publish_button" region="detailsbottom" align=right margin-top=5 margin-right=7 spacing=5 } + + place { control="multiselect_button,view_local_library_button,view_screenshots" region=listbottom align="right" margin-top=5 margin-right=10 spacing=5 } + + place { control="multi_img" region="hidden" y=80 align="top-center" } + place { control="multi_img_count" region="hidden" y=92 align="top-center" } + place { control="multi_img_selected" region=details y=80 align="top-center" } + place { control="multi_img_upload_size,multi_img_upload_size_info" region=details y=105 align="top-center" spacing=5 } + place { control="multi_img_storage_remaining,multi_img_storage_remaining_info" region=details y=120 align="top-center" spacing=5 } + place { control="multi_img_delete,multi_img_upload" region=details y=160 align="top-center" spacing=8 } + + place { control="file_not_loaded_label" region="details" y=140 align="top-center" } + place { control="instr_no_selection_title,instr_no_selection" region="details" y=20 width=max margin-left=20 margin-right=10 dir=down spacing=15 } + + } +} diff --git a/resource/layout/screenshotspage.layout b/resource/layout/screenshotspage.layout new file mode 100644 index 0000000..f2777e4 --- /dev/null +++ b/resource/layout/screenshotspage.layout @@ -0,0 +1,56 @@ +"resource/layout/screenshotspage.layout" +{ + controls + { + GamesList + { + tabposition=1 + } + + // the container + "ScreenshotsPage" + { + "ControlName" "CScreenshotsPage" + Style=DownloadsPageStyle + } + + "panel_list" + { + "ControlName" "SectionedListPanel" + Style=ListPanelStyle + } + + + + // FullScreenshotPanel { controlname="FullScreenshotPanel" } + } + + styles + { + DownloadsPageStyle + { + bgcolor=dialogbg + render + { + //gradient to obscure content at bottom of scrolling region + 2="gradient( x0+1, y1 - 16, x1-1, y1-2, none, almostblack )" + } + render_bg + { + // background gradient + 0="gradient( x0+1, y0, x1-1, y1-2, dialogbg, almostblack )" + } + } + } + + layout + { + region { name="list" y=2 x=1 width=275 height=max margin-bottom=0 } + region { name="main" y=1 x=275 width=max height=max margin-left=1 margin-top=1 margin-bottom=1 margin-right=-1} + + place { control=GamesList region=list width=275 height=max margin=0 } + place { control=FullScreenshotPanel region=main align=left width=max height=max } + place { control=ScreenshotListPanel region=main align=left width=max height=max } + } +} + diff --git a/resource/layout/screenshotspage_full.layout b/resource/layout/screenshotspage_full.layout new file mode 100644 index 0000000..f762691 --- /dev/null +++ b/resource/layout/screenshotspage_full.layout @@ -0,0 +1,78 @@ +"resource/layout/screenshotspage_full.layout" +{ + controls + { + GameNameLabel { controlname="Label" labeltext="#Steam_Screenshots_GameName" style="titlelabel" } + ImageIndexLabel { controlname="Label" labeltext="#Steam_Screenshots_ImageIndex" style="titlelabel" } + + NavNextLabel { controlname="Button" labeltext="#Steam_Screenshots_ImageNext" command="NextScreenshot" } + NavPrevLabel { controlname="Button" labeltext="#Steam_Screenshots_ImagePrev" command="PrevScreenshot" } + + ImageDetailsLabel { controlname="Label" labeltext="#Steam_Screenshots_ImageDetails" textalignment="center"} + + ScreenShotImage { controlname="ImagePanel" } + + UploadImageButton { controlname="Button" labeltext="#Steam_Screenshots_UploadImage" command="UploadImage" } + DeleteImageButton { controlname="Button" labeltext="#Steam_Screenshots_DeleteImage" command="DeleteImage" } + CancelUploadButton { controlname="Button" labeltext="#Steam_Screenshots_CancelUpload" command="CancelUpload" } + ViewOnlineButton { controlname="Button" labeltext="#Steam_Screenshots_ViewOnline" command="ViewOnline" } + + CaptionTextEntry { controlname="TextEntry" } + CaptionLabel { controlname="Label" labeltext="#Steam_Screenshots_Caption" style="captionlabel"} + + SpoilerCheckButton { controlname="CheckButton" labeltext="#Steam_Screenshots_IsSpoiler" } + VisibilityComboBox { controlname="ComboBox" } + VisibilityLabel { controlname="Label" labeltext="#Steam_Screenshots_VisibleTo" } + UploadQuotaLabel { controlname="Label" labeltext="#Steam_Screenshots_UploadQuota" } + + UploadProgressBar { controlname="ProgressBar" style="SlimProgressBar" barinset=0 continuous=1 } + UploadProgressLabel { controlname="Label" labeltext="#Steam_Screenshots_UploadProgress" } + } + + styles + { + titlelabel + { + font-size=24 + textcolor=Label + } + + captionlabel + { + font-size=24 + textcolor=blue + } + } + + layout + { + region { name="bottom" width=max height=88 align=bottom margin-right=8 margin-left=8 } + + place { control=GameNameLabel,ImageIndexLabel margin-left=8 } + place { control=NavPrevLabel y=32 align=left margin-left=8 } + place { control=NavNextLabel y=32 align=right margin-right=8 } + place { control=ImageDetailsLabel y=40 align=center width=max margin-left=96 margin-right=96 } + + place { control=ScreenShotImage y=64 width=max height=max margin-bottom=96 margin-left=8 margin-right=8 } + + // upload UI + place { control=CaptionTextEntry region=bottom width=max margin-right=172 } + place { control=CaptionLabel region=bottom width=max margin-right=172 } + place { control=CancelUploadButton,DeleteImageButton,UploadImageButton,ViewOnlineButton region=bottom spacing=8 align=right } + + + + place { control=VisibilityLabel region=bottom y=36 align=right margin-right=292 } + + place { control=UploadQuotaLabel region=bottom y=36 align=left } + place { control=VisibilityLabel region=bottom start=UploadQuotaLabel x=24 } + place { control=VisibilityComboBox region=bottom start=VisibilityLabel x=8 y=-4 width=128 } + place { control=SpoilerCheckButton region=bottom start=VisibilityComboBox x=24 y=-4} + + place { control="UploadProgressLabel" region=bottom y=24 width=max margin-left=0 margin-right=360 } + place { control="UploadProgressBar" region=bottom y=42 width=max margin-left=0 margin-right=360 height=4 } + + + + } +} diff --git a/resource/layout/screenshotspage_list.layout b/resource/layout/screenshotspage_list.layout new file mode 100644 index 0000000..7d15a33 --- /dev/null +++ b/resource/layout/screenshotspage_list.layout @@ -0,0 +1,27 @@ +"resource/layout/screenshotspage_list.layout" +{ + + controls + { + GameNameLabel { controlname="Label" labeltext="#Steam_Screenshots_GameName" style="titlelabel" } + ShowOnDiskButton { controlname="URLLabel" labeltext="#Steam_Screenshots_ShowOnDisk" command="ShowOnDisk" } + ShowOnlineButton { controlname="URLLabel" labeltext="#Steam_Screenshots_ShowOnline" command="ShowOnline"} + } + + styles + { + titlelabel + { + font-size=24 + textcolor=Label + } + } + + layout + { + region { name="body" width=max overflow=scroll-vertical } + place { control=GameNameLabel region=body margin-left=8 spacing=16 } + place { control=ShowOnDiskButton,ShowOnlineButton region=body start=GameNameLabel x=4 y=8 spacing=8 } + place { region=body y=32 control=*SectionPanel margin-left=8 dir=down width=max margin-left=8} + } +} diff --git a/resource/layout/screenshotspage_section.layout b/resource/layout/screenshotspage_section.layout new file mode 100644 index 0000000..9b7b653 --- /dev/null +++ b/resource/layout/screenshotspage_section.layout @@ -0,0 +1,17 @@ +"resource/layout/screenshotspage_section.layout" +{ + controls + { + SectionLabel { controlname="Label" } + SectionDivider { controlname="Divider" } + } + + layout + { + region { name="body" width=max overflow=grow-vertical } + + place { region=body y=12 control=SectionLabel } + place { region=body control=SectionDivider start=SectionLabel y=4 x=4 width=max } + place { region=body y=24 control=*Screenshot dir=right-wrap spacing=8 } + } +} diff --git a/resource/layout/screenshotsuploaddialog.layout b/resource/layout/screenshotsuploaddialog.layout new file mode 100644 index 0000000..9d91e5d --- /dev/null +++ b/resource/layout/screenshotsuploaddialog.layout @@ -0,0 +1,77 @@ +"resource/layout/screenshotsuploaddialog.layout" +{ + controls + { + ScreenshotsUploadDialog { title="#steam_screenshotsupload_title" } + + upload_question { controlname="Label" labeltext="#steam_upload_a_screenshot" } + upload_size { controlname="Label" labeltext="#steam_upload_size" } + storage_remaining { controlname="Label" labeltext="#steam_remaining_storage" } + upload_size_info { controlname="Label" labeltext="#steam_upload_size_info" } + storage_remaining_info { controlname="Label" labeltext="#steam_remaining_storage_info" } + visiblity_label { controlname="Label" labeltext="#steam_visibility" } + visibility_options { controlname="ComboBox" style=visibility_options editable=0 } + upload_button { controlname="Button" labeltext="#steam_upload" command="upload" } + cancel_button { controlname="Button" labeltext="#vgui_cancel" command="cancel" } + + upload_progress { controlname="ProgressBar" style="SlimProgressBar" visible=0 barinset=0 continuous=1 } + error_info { controlname="Label" labeltext="#steam_screenshots_error_info" visible="0" wrap="1" } + upload_info { controlname="Label" labeltext="#steam_screenshot_upload_info" visible="0" wrap="1" } + + shared_to_facebook_ok_label { controlname="Label" labeltext="#Overlay_ToBeSharedToFacebook" visible="1" wrap="1" } + shared_to_facebook_no_multi_label { controlname="Label" labeltext="#Overlay_WontBeSharedToFacebook" visible="1" wrap="1" } + shared_to_facebook_no_private_label { controlname="Label" labeltext="#Overlay_PrivateScreenshot" visible="1" wrap="1" } + + share_to_facebook_check_button { controlname="CheckButton" labeltext="#Overlay_Share" visible="1" command="changesharetofacebook" } + } + + + styles + { + CScreenshotUploadDialog + { + minimum-width=325 + minimum-height=240 + } + + visibility_options + { + minimum-width=100 + } + SlimProgressBar + { + render_bg + { + 0="fill( x0, y0, x1, y1, black )" + } + render + { + } + } + + SlimProgressBarError + { + textcolor="Highlight3" + } + } + + layout + { + place { control="upload_question" x=25 y=45 } + place { control="upload_info" x=25 y=40 width=max } + place { control="error_info" x=25 y=40 width=max } + place { control="upload_progress" y=85 width=max margin-left=25 margin-right=25 height=2 } + + place { control="upload_size" x=25 y=65 } + place { control="storage_remaining" x=25 y=80 } + place { control="upload_size_info" x=145 y=65 } + place { control="storage_remaining_info" x=145 y=80 } + place { control="visiblity_label" x=25 y=110 } + place { control="visibility_options" start="visiblity_label" y=-5 x=5 dir=right } + place { control="share_to_facebook_check_button" x=25 y=140 } + place { control="facebook_logo" start="share_to_facebook_check_button" x=-4 y=8 } + place { control="shared_to_facebook_ok_label,shared_to_facebook_no_multi_label,shared_to_facebook_no_private_label" x=25 y=170 margin-left=4 width=275 } + place { control="cancel_button,upload_button" y=210 align=right margin-right=15 spacing=5 dir=right } + } + +} diff --git a/resource/layout/setcustomimagedialog.layout b/resource/layout/setcustomimagedialog.layout new file mode 100644 index 0000000..82297fe --- /dev/null +++ b/resource/layout/setcustomimagedialog.layout @@ -0,0 +1,50 @@ +"resource/layout/setcustomimagedialog.layout" +{ + controls + { + SetCustomImageDialog { controlname="Frame" title="#SteamUI_SetCustomImage_Title" style="SetCustomImageDialog" } + + ChooseAnImage { controlname="Label" labeltext="#SteamUI_SetCustomImage_ChooseImage" wrap=1 } + ImagePrescription { controlname="Label" labeltext="#SteamUI_SetCustomImage_ImagePrescription" wrap=1 } + + ThisFile { controlname="Label" labeltext="#SteamUI_SetCustomImage_ThisFile" wrap=1 } + Filename { controlname="TextEntry" tabposition=1 unicode=1 } + Browse { controlname="Button" tabposition=2 command="Browse" labeltext="#SteamUI_SetCustomImage_Browse" } + TryAgain { controlname="Label" labeltext="#SteamUI_SetCustomImage_TryAgain" visible=false } + + OK { controlname="Button" tabposition=3 command="DoSetCustomImage" labeltext="#SteamUI_SetCustomImage_SetImage" } + Cancel { controlname="Button" tabposition=4 command="Cancel" labeltext="#SteamUI_SetCustomImage_Cancel" } + } + + styles + { + SetCustomImageDialog + { + minimum-width = 400 + minimum-height = 250 + } + + } + + layout + { + region { name="top" width=max height=150 margin=10 margin-top=40} + region { name="middle" width=max height=150 y=100 margin=10 } + region { name="bottom" width=max align=bottom height=40 margin=10 } + + // top: prompts + place { control="ChooseAnImage" region="top" width=max } + place { control="ImagePrescription" start="ChooseAnImage" margin-top=15 dir=down region="top" width=max } + + // middle: controls to select the image + place { region="middle" control="ThisFile" width=max margin-right=15 margin-top=15 } + place { region="middle" control="Filename" start="ThisFile" dir=down width=max margin-right=15 margin-top=7 } + place { region="middle" control="Browse" start="Filename" dir=down margin-right=15 margin-top=7 } + place { region="middle" control="TryAgain" start="Browse" dir=right margin-left=15 } + + // bottom: OK/cancel + place { control="OK,Cancel" region="bottom" align=right spacing=5 } + } + +} + diff --git a/resource/layout/settingsdialog.layout b/resource/layout/settingsdialog.layout new file mode 100644 index 0000000..236cd53 --- /dev/null +++ b/resource/layout/settingsdialog.layout @@ -0,0 +1,66 @@ +"resource/layout/settingsdialog.layout" +{ + controls + { + SettingsDialog { controlname="CDialogSettings" } + okbutton { controlname="OKButton" } + cancelbutton { controlname="CancelButton" } + settingslist { controlname="SettingsList" style="SettingsList" wide=180 } + sheet { controlname="Sheet" style="PropertySheet" } + + } + + styles + { + CDialogSettings + { + minimum-width="850" + minimum-height="700" + bgcolor=none + render_bg + { + //0="fill( x0, y0, x0+200, y1, Light )" + //1="fill( x0+200, y0, x1, y1, DefaultBackground)" + 0="image_scale( x0, y0, x1, y1, graphics/JackMyth/SettingsDialog )" + 1="image_scale( x0, y0, x0+200, y1, graphics/JackMyth/SettingsDialog_Fade )" + 2="fill( x0+200, y0, x1, y1, JackMyth.HalfTranslucent)" + } + + } + + "SettingsList" + { + //inset="6 -14 4 0" + minimum-width="200" //Jumps between 200 and 194. Dont believe it's lies + minimum-height="525" + font-size=15 [$LINUX] + font-size=20 + padding-left=15 + } + + ListPanelSectionHeader //clear the header + { + render_bg{ + + } + bgcolor=none + } + + ListPanel + { + render_bg {} + bgcolor=none + } + + } + layout + { + region { name="buttons" width=max height=42 align="bottom" } + region { name="body" margin-bottom=52 } + + place { control="settingslist,sheet" region=body width=max height=max spacing=-4 } + place { control="settingslist" margin-top=32 } + place { control="sheet" margin-left=200 margin-top=32 } + place { control="okbutton,cancelbutton" region="buttons" width=92 height=32 align=right margin-right=10 spacing=10 } + } +} diff --git a/resource/layout/settingssubbroadcast.layout b/resource/layout/settingssubbroadcast.layout new file mode 100644 index 0000000..ea56f5c --- /dev/null +++ b/resource/layout/settingssubbroadcast.layout @@ -0,0 +1,79 @@ +"resource/layout/settingssubbroadcast.layout" +{ + controls + { + "BroadcastDisabledLabel" { ControlName="Label" fieldName="BroadcastDisabledLabel" labelText="#Steam_Settings_Broadcast_Disabled_System" wrap="1" group="ShowWhenDisabled" } + "BroadcastDisabledSupportURL" { ControlName="URLLabel" fieldName="BroadcastDisabledSupportURL" group="ShowWhenDisabled" } + + "BroadcastStatusHeader" { ControlName="Label" fieldName="BroadcastStatusHeader" labelText="#Steam_Settings_Broadcast_StatusHeader" group="HideWhenUnavailable" } + "BroadcastStatus" { ControlName="URLLabel" labeltext="#Steam_Settings_Broadcast_StatusNotBroadcast" style="rightcolumnlink" fieldName="BroadcastStatus" group="HideWhenUnavailable" } + + "BroadcastHelpHeader" { ControlName="Label" fieldName="BroadcastHelpHeader" labelText="#Steam_Settings_Broadcast_HelpHeader" group="HideWhenUnavailable" } + "BroadcastHelpURL" { ControlName="URLLabel" fieldName="BroadcastHelpURL" labelText="#Steam_Settings_Broadcast_HelpURL_Desc" URLText="#Steam_Settings_Broadcast_HelpURL_URL" group="HideWhenUnavailable" } + + "Divider1" { ControlName="Divider" group="HideWhenUnavailable" } + + "PermissionsHeader" { ControlName="Label" fieldName="PermissionsHeader" labelText="#Steam_Settings_Broadcast_PermissionsHeader" group="HideWhenUnavailable" } + "Permissions" { ControlName="ComboBox" fieldName="Permissions" editable="0" group="HideWhenUnavailable" } + + "DimensionsHeader" { ControlName="Label" fieldName="DimensionsHeader" labelText="#Steam_Settings_Broadcast_DimensionsHeader" group="HideWhenDisabled" } + "Dimensions" { ControlName="ComboBox" fieldName="Dimensions" group="HideWhenDisabled" editable="0" } + + "BitrateLimitHeader" { ControlName="Label" fieldName="BitrateLimitHeader" labelText="#Steam_Settings_Broadcast_BitrateHeader" group="HideWhenDisabled" } + "BitrateLimit" { ControlName="ComboBox" fieldName="BitrateLimit" group="HideWhenDisabled" editable="0" } + + "EncoderHeader" { ControlName="Label" fieldName="EncoderHeader" labelText="#Steam_Settings_Broadcast_EncoderHeader" group="HideWhenDisabled" } + "EncoderSetting" { ControlName="ComboBox" fieldName="EncoderSetting" group="HideWhenDisabled" editable="0" } + + "ShowChatHeader" { ControlName="Label" fieldName="ShowChatHeader" labelText="#Steam_Settings_Broadcast_ShowChat" group="HideWhenDisabled" } + "ShowChatCombo" { ControlName="ComboBox" fieldName="ShowChatCombo" group="HideWhenDisabled" editable="0" } + + "IncludeDesktop" { ControlName="CheckButton" fieldName="IncludeDesktop" group="HideWhenDisabled" } + "RecordSystemAudio" { ControlName="CheckButton" fieldName="RecordSystemAudio" group="HideWhenDisabled" } + "RecordMic" { ControlName="CheckButton" fieldName="RecordMic" group="HideWhenDisabled" } + "ConfigMic" { ControlName="URLLabel" fieldName="ConfigMic" labelText="#Steam_Settings_Broadcast_ConfigMic" URLText="steam://settings/voice" group="HideWhenDisabled" } + "ShowDebugInfo" { ControlName="CheckButton" fieldName="ShowDebugInfo" group="HideWhenDisabled" } + "ShowReminder" { ControlName="CheckButton" fieldName="ShowReminder" group="HideWhenDisabled" } + + "RequiresRestartLabel" { ControlName="Label" fieldName="RequiresRestartLabel" labelText="#Steam_Settings_Broadcast_RequiresRestart" visible="0" } + } + + styles + { + + } + + layout + { + place { control="BroadcastDisabledLabel" margin-left=20 margin-right=20 margin-top=32 width=max } + place { control="BroadcastDisabledSupportURL" start="BroadcastDisabledLabel" dir=down margin-top=10 margin-right=20 width=max } + + place { control="BroadcastStatusHeader" margin-left=20 margin-right=20 margin-top=20 } + place { control="BroadcastStatus" start="BroadcastStatusHeader" dir=right margin-left=10 } + + place { control="BroadcastHelpHeader" start="BroadcastStatusHeader" margin-top=4 dir=down } + place { control="BroadcastHelpURL" start="BroadcastStatus" margin-top=4 dir=down } + + place { control="Divider1" start="BroadcastStatusHeader" control="Divider1" dir=down margin-top=35 margin-right=20 width=max} + + place { control="PermissionsHeader" start="Divider1" dir=down margin-top=15 width=max } + place { control="Permissions" start="PermissionsHeader" dir=down margin-top=4 width=350 } + + place { control="DimensionsHeader" start="Permissions" dir=down margin-top=10 width=max } + place { control="Dimensions" start="DimensionsHeader" dir=down margin-top=4 width=250 } + + place { control="BitrateLimitHeader" start="Dimensions" dir=down margin-top=10 width=max } + place { control="BitrateLimit" start="BitrateLimitHeader" dir=down margin-top=4 width=250 } + + place { control="EncoderHeader" start="BitrateLimit" dir=down margin-top=10 width=max } + place { control="EncoderSetting" start="EncoderHeader" dir=down margin-top=4 width=250 } + + place { control="ShowChatHeader" start="EncoderSetting" dir=down margin-top=10 width=max } + place { control="ShowChatCombo" start="ShowChatHeader" dir=down margin-top=4 width=250 } + + place { control="IncludeDesktop,RecordSystemAudio,RecordMic,EnableHardwareSupport,ShowDebugInfo,ShowReminder" start="ShowChatCombo" dir=down margin-top=10 } + place { control="ConfigMic" start="RecordMic" dir=right height=28 } + + place { control="RequiresRestartLabel" margin-left=20 margin-right=20 width=max margin-top=500 } + } +} diff --git a/resource/layout/settingssubmusic.layout b/resource/layout/settingssubmusic.layout new file mode 100644 index 0000000..218bf48 --- /dev/null +++ b/resource/layout/settingssubmusic.layout @@ -0,0 +1,116 @@ +"resource/layout/settingssubmusic.layout" +{ + controls + { + LibraryHeader { controlname="Label" labelText="#Music_Settings_Library_Header" style="HeaderText" } + LibraryList { controlname=ListPanel tabposition=1 style="LibraryListStyle" } + + AddLibraryButton { + controlname="Button" + labeltext="#Music_Settings_Library_Add" + style="ActionButtonStyle" + command="AddEntryToLibraryAction" + } + RemoveLibraryButton { + controlname="Button" + labeltext="#Music_Settings_Library_Remove" + style="ActionButtonStyle" + command="RemoveSelectedEntryFromLibraryAction" + } + StartCrawlingButton { + controlname="Button" + labeltext="#Music_Settings_Library_StartCrawling" + style="ActionButtonStyle" + command="StartCrawlingAction" + } + + + LibraryDivider { ControlName="divider" } + + DatabaseHeader { controlname="Label" labelText="#Music_Settings_Database_Header" style="HeaderText" } + DatabaseCrawlAtStartup { ControlName="CheckButton" labelText="#Music_Settings_Database_CrawlAtStartup" } + DatabaseCrawlSteamInstallFolders { ControlName="CheckButton" labelText="#Music_Settings_CrawlSteamInstallFolders" } + DatabaseInfoLabel { controlname="Label" labelText="#Music_Settings_Database_XAlbumsWithYTracks" style="DescriptionLabel" } + ResetDatabaseButton { + controlname="Button" + labeltext="#Music_Settings_Database_ResetDatabase" + style="ActionButtonStyle" + command="ResetDatabaseAction" + } + DatabaseDivider { ControlName="divider" } + + VolumeHeader { ControlName="Label" labelText="#Music_Settings_Volume_Header" style="HeaderText" } + VolumeSlider { ControlName="Slider" style="VolumeSliderStyle" } + VolumeDivider { ControlName="divider" } + + PauseMusicHeader { ControlName="Label" labelText="#Music_Settings_PauseMusic_Header" style="HeaderText" } + PauseMusicWhenStartingApplicationCheckbox { ControlName="CheckButton" labelText="#Music_Settings_PauseMusicWhenStartingApplication" } + PauseMusicWhenVoiceChatCheckbox { ControlName="CheckButton" labelText="#Music_Settings_PauseMusicWhenVoiceChat" } + + NotificationHeader { ControlName="Label" labelText="#Music_Settings_Notification_Header" style="HeaderText" } + NotificationPlaylistNowPlayingCheckbox { ControlName="CheckButton" labelText="#Music_Settings_NotificationPlaylistNowPlaying" } + EnableMediaKeysCheckbox { ControlName="CheckButton" labelText="#Music_Settings_EnableMediaKeys" } + + LoggingHeader { ControlName="Label" labelText="#Music_Settings_Logging_Header" style="HeaderText" } + LoggingCrawlingCheckbox { ControlName="CheckButton" labelText="#Music_Settings_LoggingCrawling" } + } + + styles + { + DescriptionLabel + { + + } + + LibraryListStyle + { + bgcolor=List.Back + font-size=13 [$LINUX] + font-size=15 + } + + HeaderText + { + textcolor=DefaultText + font-size=18 [$LINUX] + font-size=24 + } + + + VolumeSliderStyle { bgcolor=none font-family=basefont font-size=16 } + } + + layout + { + region { name=content height=max width=max margin-left=20 margin-right=20 margin-top=20} + + place { control=LibraryHeader region=content } + place { control=LibraryList region=content width=max start=LibraryHeader margin-top=10 dir=down height=80} + + place { control=AddLibraryButton,RemoveLibraryButton,StartCrawlingButton region=content y=120 dir=right spacing=10 } + place { control=LibraryDivider region=content start=AddLibraryButton dir=down margin-top=15 width=max } + + place { control=DatabaseHeader region=content start=LibraryDivider dir=down margin-top=10 } + place { control=DatabaseCrawlAtStartup region=content start=DatabaseHeader dir=down margin-top=5} + place { control=DatabaseCrawlSteamInstallFolders region=content start=DatabaseHeader dir=down margin-top=5 x=250} + + place { control=ResetDatabaseButton region=content start=DatabaseCrawlAtStartup dir=down margin-top=8} + place { control=DatabaseInfoLabel region=content start=ResetDatabaseButton dir=right margin-left=10 margin-top=3} + + place { control=DatabaseDivider region=content start=ResetDatabaseButton dir=down margin-top=15 width=max } + + place { control=VolumeHeader region=content start=DatabaseDivider dir=down margin-top=15 } + place { control=VolumeSlider region=content start=VolumeHeader dir=right margin-left=10 width=200 spacing=10 } + place { control=EnableMediaKeysCheckbox region=content start=VolumeHeader dir=down margin-top=10 spacing=10 } + place { control=VolumeDivider region=content start=EnableMediaKeysCheckbox dir=down margin-top=10 width=max } + + place { control=PauseMusicHeader region=content start=VolumeDivider dir=down margin-top=10 } + place { control="PauseMusicWhenStartingApplicationCheckbox,PauseMusicWhenVoiceChatCheckbox" region=content start=PauseMusicHeader dir=down margin-top=5 } + place { control=LoggingHeader region=content start=VolumeDivider dir=down margin-top=10 x=250} + place { control=LoggingCrawlingCheckbox region=content start=LoggingHeader dir=down margin-top=5} + place { control=NotificationHeader region=content start=PauseMusicWhenVoiceChatCheckbox dir=down margin-top=10 } + place { control=NotificationPlaylistNowPlayingCheckbox region=content start=NotificationHeader dir=down margin-top=5} + + + } +} diff --git a/resource/layout/settingssubstreaming.layout b/resource/layout/settingssubstreaming.layout new file mode 100644 index 0000000..504a727 --- /dev/null +++ b/resource/layout/settingssubstreaming.layout @@ -0,0 +1,115 @@ +"resource/layout/settingssubstreaming.layout" +{ + controls + { + "DescriptionLabel" + { + ControlName="Label" + fieldName="DescriptionLabel" + wrap=1 + labelText="#Steam_Settings_Streaming_Description" + } + "RemoteClientList" + { + ControlName="ListPanel" + style="RemoteClientList" + tall=140 + } + "EnableStreaming" { ControlName="CheckButton" fieldName="EnableStreaming" labelText="#Steam_Settings_Streaming_EnableStreaming" } + + "SetPIN" { ControlName="Button" fieldName="SetPIN" command="SetPIN" labelText="#Steam_Settings_Streaming_SetPIN" } + + "HostDivider" { ControlName="divider" } + "HostLabel" + { + ControlName="Label" + fieldName="HostLabel" + wrap=1 + labelText="#Steam_Settings_Streaming_HostLabel" + } + + "UnsupportedPlatform" + { + ControlName="Label" + fieldName="UnsupportedPlatform" + wrap=1 + labelText="#Steam_Settings_Streaming_UnsupportedPlatform" + } + + "AdvancedHostOptions" { ControlName="Button" fieldName="AdvancedHostOptions" command="AdvancedHostOptions" labelText="#Steam_Settings_Streaming_AdvancedHostOptions" } + + "ClientDivider" { ControlName="divider" } + "ClientLabel" + { + ControlName="Label" + fieldName="ClientLabel" + wrap=1 + labelText="#Steam_Settings_Streaming_ClientLabel" + } + + "QualityFast" { ControlName="RadioButton" fieldName="QualityFast" labelText="#Steam_Settings_Streaming_QualityFast" } + "QualityBalanced" { ControlName="RadioButton" fieldName="QualityBalanced" labelText="#Steam_Settings_Streaming_QualityBalanced" } + "QualityBeautiful" { ControlName="RadioButton" fieldName="QualityBeautiful" labelText="#Steam_Settings_Streaming_QualityBeautiful" } + + "AdvancedClientOptions" { ControlName="Button" fieldName="AdvancedClientOptions" command="AdvancedClientOptions" labelText="#Steam_Settings_Streaming_AdvancedClientOptions" } + + "SupportInformationLabel" + { + ControlName="URLLabel" + fieldName="SupportInformationLabel" + labelText="#Steam_Settings_Streaming_StreamingSupport" + URLText="https://support.steampowered.com/kb_article.php?ref=3629-RIAV-1617" + } + } + + style + { + "ListPanelSectionHeader" + { + minimum-height=0 + } + } + + layout + { + region { name=bottom margin-top=280 width=max height=max margin-left=20 margin-right=20} + + place + { + control="DescriptionLabel,RemoteClientList,EnableStreaming" + dir=down + align=top + width=max + margin-left=20 + margin-right=20 + margin-top=20 + spacing=10 + } + + place { control="SetPIN" start=EnableStreaming dir=right align=right margin-right=20 } + + place { region=bottom control=HostDivider width=max} + place { region=bottom control=HostLabel width=max start=HostDivider dir=down margin-top=15 } + place { region=bottom control=UnsupportedPlatform width=max start=HostLabel dir=down margin-top=10 } + place { region=bottom control=AdvancedHostOptions start=HostLabel dir=down margin-top=10 } + + place { region=bottom control=ClientDivider width=max start=AdvancedHostOptions dir=down margin-top=15 } + place { region=bottom control=ClientLabel width=max start=ClientDivider dir=down margin-top=15 } + + place { region=bottom control=QualityFast start=ClientLabel dir=down margin-top=10} + place + { + control="QualityBalanced,QualityBeautiful" + region=bottom + start=QualityFast + margin-left=10 + dir=right + align=top + width=max + spacing=10 + } + place { region=bottom control=AdvancedClientOptions start=QualityFast dir=down margin-top=10 } + + place { region=bottom control=SupportInformationLabel align=bottom dir=down margin-bottom=50 } + } +} \ No newline at end of file diff --git a/resource/layout/settingssubstreaming_advanced_client.layout b/resource/layout/settingssubstreaming_advanced_client.layout new file mode 100644 index 0000000..976d7bf --- /dev/null +++ b/resource/layout/settingssubstreaming_advanced_client.layout @@ -0,0 +1,94 @@ +"resource/layout/settingssubstreaming_advanced_client.layout" +{ + controls + { + "DescriptionLabel" + { + ControlName="Label" + fieldName="DescriptionLabel" + wrap=1 + labelText="#Steam_Settings_Streaming_AdvancedClientOptions_Description" + } + + "BandwidthLabel" { ControlName="Label" associate="BandwidthLimit" labelText="#Steam_Settings_Streaming_Bandwidth" } + "BandwidthLimit" { ControlName="ComboBox" fieldName="BandwidthLimit" style="BandwidthLimit" editable="0" } + + "ResolutionLabel" { ControlName="Label" associate="ResolutionLimit" labelText="#Steam_Settings_Streaming_Resolution" } + "ResolutionLimit" { ControlName="ComboBox" fieldName="ResolutionLimit" style="ResolutionLimit" editable="0" } + + "AudioChannelsLabel" { ControlName="Label" associate="AudioChannelSelect" labelText="#Steam_Settings_Streaming_AudioChannelSelect" } + "AudioChannelSelect" { ControlName="ComboBox" fieldName="AudioChannelSelect" editable="0" } + + "EnableHardwareDecoding" { ControlName="CheckButton" fieldName="EnableHardwareDecoding" labelText="#Steam_Settings_Streaming_EnableHardwareDecoding" } + "EnableDebugOverlay" { ControlName="CheckButton" fieldName="EnableDebugOverlay" labelText="#Steam_Settings_Streaming_EnableDebugOverlay" } + + "SupportInformationLabel" + { + ControlName="URLLabel" + fieldName="SupportInformationLabel" + labelText="#Steam_Settings_Streaming_StreamingSupport" + URLText="https://support.steampowered.com/kb_article.php?ref=3629-RIAV-1617" + } + + OKButton { ControlName="Button" fieldName="OKButton" command="Close" labelText="#PropertyDialog_OK" } + } + + style + { + } + + layout + { + region { name=hidden width=0 height=0} + region { name="buttons" width=max height=42 align="bottom" } + + place { control="DescriptionLabel" margin-left=20 margin-right=20 margin-top=40 width=max } + + place + { + control="BandwidthLabel,BandwidthLimit" + dir=down + start=DescriptionLabel + width=max + margin-right=20 + margin-top=15 + spacing=5 + } + + place + { + control="ResolutionLabel,ResolutionLimit" + dir=down + start=BandwidthLimit + width=max + margin-right=20 + margin-top=10 + spacing=5 + } + + place + { + control="AudioChannelsLabel,AudioChannelSelect" + dir=down + start=ResolutionLimit + width=max + margin-right=20 + margin-top=10 + spacing=5 + } + + place + { + control="EnableHardwareDecoding,EnableDebugOverlay" + start=AudioChannelSelect + dir=down + width=max + margin-right=20 + margin-top=15 + spacing=2 + } + + place { control="SupportInformationLabel" region="buttons" margin-left=20 margin-top=0 height=32 } + place { control="OKButton" region="buttons" width=92 align=right margin-right=10 } + } +} \ No newline at end of file diff --git a/resource/layout/settingssubstreaming_advanced_host.layout b/resource/layout/settingssubstreaming_advanced_host.layout new file mode 100644 index 0000000..d6b5be9 --- /dev/null +++ b/resource/layout/settingssubstreaming_advanced_host.layout @@ -0,0 +1,109 @@ +"resource/layout/settingssubstreaming_advanced_host.layout" +{ + controls + { + "DescriptionLabel" + { + ControlName="Label" + fieldName="DescriptionLabel" + wrap=1 + labelText="#Steam_Settings_Streaming_AdvancedHostOptions_Description" + } + + "ChangeDesktopResolution" { ControlName="CheckButton" fieldName="ChangeDesktopResolution" labelText="#Steam_Settings_Streaming_ChangeDesktopResolution" } + + "DynamicallyAdjustResolution" { ControlName="CheckButton" fieldName="DynamicallyAdjustResolution" labelText="#Steam_Settings_Streaming_DynamicallyAdjustResolution" } + + "EnableCaptureNVFBC" { ControlName="CheckButton" fieldName="EnableCaptureNVFBC" labelText="#Steam_Settings_Streaming_EnableCaptureNVFBC" } + + "EnableHardwareEncoding" { ControlName="CheckButton" fieldName="EnableHardwareEncoding" labelText="#Steam_Settings_Streaming_EnableHardwareEncoding" } + "EnableHardwareEncodingNVIDIA" { ControlName="CheckButton" fieldName="EnableHardwareEncodingNVIDIA" labelText="#Steam_Settings_Streaming_EnableHardwareEncodingNVIDIA" } + "EnableHardwareEncodingAMD" { ControlName="CheckButton" fieldName="EnableHardwareEncodingAMD" labelText="#Steam_Settings_Streaming_EnableHardwareEncodingAMD" } + "EnableHardwareEncodingIntel" { ControlName="CheckButton" fieldName="EnableHardwareEncodingIntel" labelText="#Steam_Settings_Streaming_EnableHardwareEncodingIntel" } + + "SoftwareEncodingThreadsLabel" + { + ControlName="Label" + fieldName="SoftwareEncodingThreadsLabel" + wrap=1 + labelText="#Steam_Settings_Streaming_SoftwareEncodingThreads_Description" + } + "SoftwareEncodingThreads" { ControlName="ComboBox" fieldName="SoftwareEncodingThreads" style="ResolutionLimit" editable="0" } + + "EnableTrafficPriorityLabel" + { + ControlName="Label" + fieldName="EnableTrafficPriorityLabel" + wrap=1 + labelText="#Steam_Settings_Streaming_EnableTrafficPriority_Description" + } + "EnableTrafficPriority" { ControlName="CheckButton" fieldName="EnableTrafficPriority" labelText="#Steam_Settings_Streaming_EnableTrafficPriority" } + + "SupportInformationLabel" + { + ControlName="URLLabel" + fieldName="SupportInformationLabel" + labelText="#Steam_Settings_Streaming_StreamingSupport" + URLText="https://support.steampowered.com/kb_article.php?ref=3629-RIAV-1617" + } + + OKButton { ControlName="Button" fieldName="OKButton" command="Close" labelText="#PropertyDialog_OK" } + } + + style + { + } + + layout + { + region { name=hidden width=0 height=0} + region { name="buttons" width=max height=42 align="bottom" } + + place { control=DescriptionLabel margin-top=40 margin-left=20 margin-right=20 width=max} + place + { + control="ChangeDesktopResolution,DynamicallyAdjustResolution,EnableCaptureNVFBC,EnableHardwareEncoding" + dir=down + start=DescriptionLabel + width=max + margin-right=20 + margin-top=10 + spacing=2 + } + place + { + control="EnableHardwareEncodingNVIDIA,EnableHardwareEncodingAMD,EnableHardwareEncodingIntel,EnableTrafficPriorityLabel,EnableTrafficPriority" + margin-top=5 + dir=down + start=EnableHardwareEncoding + width=max + margin-left=30 + margin-right=20 + spacing=2 + } + place + { + control="SoftwareEncodingThreadsLabel,SoftwareEncodingThreads" + dir=down + start=EnableHardwareEncoding + margin-top=105 + width=max + margin-right=20 + spacing=5 + } + place + { + control="EnableTrafficPriorityLabel,EnableTrafficPriority" + dir=down + start=SoftwareEncodingThreads + margin-top=15 + width=max + margin-top=365 + margin-right=20 + spacing=5 + } + + place { control="SupportInformationLabel" region="buttons" margin-left=20 height=32 } + place { control="OKButton" region="buttons" width=92 align=right margin-right=10 } + } +} \ No newline at end of file diff --git a/resource/layout/settingssubstreaming_pin.layout b/resource/layout/settingssubstreaming_pin.layout new file mode 100644 index 0000000..8ffd1fc --- /dev/null +++ b/resource/layout/settingssubstreaming_pin.layout @@ -0,0 +1,67 @@ +"resource/layout/settingssubstreaming_pin.layout" +{ + controls + { + StreamingPINDialog { controlname="Frame" title="#Steam_Settings_Streaming_PIN_Title" style="StreamingPINDialog" } + + Description { controlname="Label" style="Description" wrap=1 labelText="#Steam_Settings_Streaming_PIN_Text" } + + PIN1 { controlname="TextEntry" style="Password" tabposition=1 } + PIN2 { controlname="TextEntry" style="Password" tabposition=2 } + + KeyImage { controlname="Label" style="Key" zpos=-4 } + + OK { controlname="Button" fieldName="OK" tabposition=3 command="Save" labeltext="#PropertyDialog_OK" default=1 } + Cancel { controlname="Button" tabposition=4 command="Close" labeltext="#PropertyDialog_Cancel" } + } + + styles + { + StreamingPINDialog + { + minimum-width = 400 + minimum-height = 260 + } + + Password + { + minimum-height=50 + font-size=40 + } + + Description + { + + } + + Key + { + bgcolor=none + render_bg={} + image="graphics/keybg" + inset="20 20 0 0" + } + + } + + layout + { + region { name="top" width=max height=260 margin=20 margin-top=40} + + region { name="bottom" width=max align=bottom height=45 align="bottom" } + + place { control="KeyImage" region="top" align=left x=150 y=0 width=max height=max margin-top=-20 margin-right=0} + + place { control="Description" region="top" width=max } + + place { control="PIN1,PIN2" start=Description dir=down region="top" margin-top=15 spacing=10 width=165 } + + // bottom: OK/cancel + place { control="OK,Cancel" region="bottom" + width=92 align=right + margin-right=10 margin-top=0 + margin-bottom=10 spacing=10 } + } + +} + diff --git a/resource/layout/special_survey_forwardtoweb.layout b/resource/layout/special_survey_forwardtoweb.layout new file mode 100644 index 0000000..bdad915 --- /dev/null +++ b/resource/layout/special_survey_forwardtoweb.layout @@ -0,0 +1,18 @@ +"resource/layout/special_survey_forwardtoweb.layout" +{ + controls + { + WelcomeText + { + controlname="Label" + labeltext="#SteamUI_SpecialSurvey_ForwardToWeb" + wrap=1 + } + } + + layout + { + region { name=box margin-left=20 margin-right=20 margin-top=20 margin-bottom=20 } + place { region=box controls=WelcomeText x=0 y=0 width=max height=max } + } +} diff --git a/resource/layout/special_survey_overview.layout b/resource/layout/special_survey_overview.layout new file mode 100644 index 0000000..bfe581b --- /dev/null +++ b/resource/layout/special_survey_overview.layout @@ -0,0 +1,18 @@ +"resource/layout/special_survey_overview.layout" +{ + controls + { + WelcomeText + { + controlname="Label" + labeltext="#SteamUI_SpecialSurvey_Welcome" + wrap=1 + } + } + + layout + { + region { name=box margin-left=20 margin-right=20 margin-top=20 margin-bottom=20 } + place { region=box controls=WelcomeText x=0 y=0 width=max height=max } + } +} diff --git a/resource/layout/steamcontrollerwarning.layout b/resource/layout/steamcontrollerwarning.layout new file mode 100644 index 0000000..4162316 --- /dev/null +++ b/resource/layout/steamcontrollerwarning.layout @@ -0,0 +1,56 @@ +"resource/layout/steamcontrollerwarning.layout" +{ + controls + { + SteamController10ft { controlname="Frame" title=" " style="SteamController10ft" } + + ConfirmTextHeader { controlname="Label" labeltext="#Steam_VGUIControllerWarningHeader" wrap=0 style=ConfirmTextHeader } + ConfirmText { controlname="Label" labeltext="#Steam_VGUIControllerWarning" wrap=1 style=ConfirmText } + + ControllerDontShowCheckButton { controlname="CheckButton" tabposition=3 labeltext="#SteamUI_NotifyTrayHintDialog_DontShow" } + Help { controlname="Button" tabposition=2 labeltext="#steam_menu_help" } + Close { controlname="Button" tabposition=1 labeltext="#vgui_close" } + } + + styles + { + SteamController10ft + { + minimum-width = 706 + minimum-height = 370 + inset="0 0 0 0" + + render_bg + { + // background gradient + 0="gradient( x0+1, y0, x1-1, y1-45, dialogbg, almostblack )" + 5="image( x0 + 3, y0 + 3, x1, y1, graphics/controller_dialog )" + } + } + + ConfirmTextHeader + { + textcolor="110 192 236 255" + font-size=26 + } + + ConfirmText + { + textcolor="110 192 236 255" + font-size=20 + } + } + + layout + { + region { name="bottom" width=max align=bottom height=45 margin=10 } + + place { control="ConfirmTextHeader" width=435 y=116 margin-left=30 } + place { control="ConfirmText" width=430 y=140 margin=20 margin-left=30 } + place { control="ControllerBackground" width=max y=40 height=max margin=15 } + place { control="Close,Help" region="bottom" align=right spacing=20 width=100 height=25 } + place { control="ControllerDontShowCheckButton" region="bottom" align=left spacing=5 margin-left=20 } + + } + +} diff --git a/resource/layout/steamrootdialog.layout b/resource/layout/steamrootdialog.layout new file mode 100644 index 0000000..302a82c --- /dev/null +++ b/resource/layout/steamrootdialog.layout @@ -0,0 +1,659 @@ +"resource/layout/steamrootdialog.layout" +{ + controls + { + + "fullscreen" + { + "ControlName" "Button" + style="FullscreenButton" + command="fullscreen" + tooltiptext="#tooltip_view_fullscreen" + } + + "startvr" + { + "ControlName" "Button" + style="VRButton" + command="url steam://run/250820" + tooltiptext="#tooltip_view_vr_start" + } + + "exitvr" + { + "ControlName" "Button" + style="VRButtonExit" + command="exitvr" + tooltiptext="#tooltip_view_vr_exit" + } + + "New" + { + "ControlName" "URLLabel" + style="new_label" + "URLText" "http://store.steampowered.com/uiupdate" + zpos=-2 + } + + "UINavigatorPanel" + { + "ControlName" "CUINavigatorPanel" + zpos=-2 + } + + "UIStatusPanel" + { + "ControlName" "CUIStatusPanel" + zpos=-2 + } + + "MenuBar" + { + "ControlName" "MenuBar" + style=RootMenu + } + + SupportAlert + { + ControlName=Button + labelText="#Steam_SupportAlert" + style="support_alert" + textAlignment=center + command="OpenSupportAlertWindow" + } + + ParentalLockButton + { + ControlName=ToggleButton + style="parental_lock_button" + labelText="" + text="" + command="ParentalLock" + } + + InboxButton + { + ControlName=MenuButton + style="inbox_button" + textAlignment=west + } + + add_game + { + "ControlName" "MenuButton" + labelText="#steam_client_add_game" + style="AddGameButton" + } + + frame_title + { + ControlName=Label + + style="ClientTitle" + "textAlignment" "west" + "textAlignment" "center" [$OSX] + } + + account_url + { + "ControlName" "MenuButton" + "fieldName" "account_url" + "labelText" "#Steam_Account_Name" + style="AccountURLStyle" + } + + + account_balance + { + "ControlName" "URLLabel" + "fieldName" "account_balance" + "labelText" "" + "URLText" "steam://url/StoreWallet/" + style="AccountBalanceStyle" + } + + account_balance_seperator + { + "ControlName" "Label" + "fieldName" "account_balance_seperator" + "labelText" "|" + style="AccountBalanceSeparatorStyle" + } + + universe_label + { + ControlName=Label + labelText=#Steam_Universe_Internal + } + + view_friends + { + ControlName=URLLabel + labelText="#Steam_ViewFriends" + "URLText" "steam://open/friends" + style="view_friends" + textAlignment=east + } + online_friends + { + ControlName=Label + labelText="#Steam_OnlineFriends" + style="online_friends" + textAlignment=east + zpos=-1 + } + } + + styles + { + + AccountBalanceStyle + { + textcolor=Root.SubLabel.Text + bgcolor="none" + font-family=basefont + font-size=10 [$LINUX] + font-size=13 + font-style=regular + inset="0 1 0 0" + } + + AccountBalanceStyle:Hover + { + textcolor=Root.SubLabel.Text + } + + AccountBalanceSeparatorStyle + { + textcolor=Root.SubLabel.Text + font-family=basefont + font-size=14 + font-weight=400 + font-style=regular + inset="0 -1 0 0" + } + + new_label + { + bgcolor=none + inset="0 0 0 0" + } + + new_label:hover + { + bgcolor=none + inset="0 0 0 0" + } + + new_label_german + { + bgcolor=none + render_bg={} + image="graphics/new_button_german" + inset="0 0 0 0" + } + + new_label_german:hover + { + bgcolor=none + render_bg={} + image="graphics/new_button_hover_german" + inset="0 0 0 0" + } + + new_label_french + { + bgcolor=none + render_bg={} + image="graphics/new_button_french" + inset="0 0 0 0" + } + + new_label_french:hover + { + bgcolor=none + render_bg={} + image="graphics/new_button_hover_french" + inset="0 0 0 0" + } + + new_label_italian + { + bgcolor=none + render_bg={} + image="graphics/new_button_italian" + inset="0 0 0 0" + } + + new_label_italian:hover + { + bgcolor=none + render_bg={} + image="graphics/new_button_hover_italian" + inset="0 0 0 0" + } + + new_label_spanish + { + bgcolor=none + render_bg={} + image="graphics/new_button_spanish" + inset="0 0 0 0" + } + + new_label_spanish:hover + { + bgcolor=none + render_bg={} + image="graphics/new_button_hover_spanish" + inset="0 0 0 0" + } + + new_label_danish + { + bgcolor=none + render_bg={} + image="graphics/new_button_danish" + inset="0 0 0 0" + } + + new_label_danish:hover + { + bgcolor=none + render_bg={} + image="graphics/new_button_hover_danish" + inset="0 0 0 0" + } + + new_label_norwegian + { + bgcolor=none + render_bg={} + image="graphics/new_button_norwegian" + inset="0 0 0 0" + } + + new_label_norwegian:hover + { + bgcolor=none + render_bg={} + image="graphics/new_button_hover_norwegian" + inset="0 0 0 0" + } + + new_label_swedish + { + bgcolor=none + render_bg={} + image="graphics/new_button_swedish" + inset="0 0 0 0" + } + + new_label_swedish:hover + { + bgcolor=none + render_bg={} + image="graphics/new_button_hover_swedish" + inset="0 0 0 0" + } + + RootMenu + { + bgcolor="none" + } + + AddGameButton + { + font-family=basefont + inset="-6 0 0 0" + font-size=13 [$LINUX] + font-size=15 + font-weight=800 + font-style=none + textcolor=none + image="graphics/Threshold/add" + render{} + render_bg{} + } + + AddGameButton:hover + { + bgcolor=Menu.Hover + render{} + } + + AddGameButton:selected + { + bgcolor=Menu.Hover + render{} + } + + AddGameButton:disabled + { + textcolor=none + render{} + } + + CSteamRootDialog + { + bgcolor=almostblack + + render_bg + { + // top area and graphics + //1="fill( x0+240, y0, x1, y0+80, Root.Header)" + //2="fill( x0, y0+32, x0+240, y1, Root.LeftCol)" + //3="fill( x0+240, y1-48, x1, y1, Root.Header)" + //4="fill( x0+240, y0+80, x1, y1-48, almostblack)" + 0="image_scale(x0,y0,x1,y1,graphics/JackMyth/MainBG)" + } + render + { + 0="image (x0+14, y0+94, x1, y1, graphics/Threshold/store)" + 1="image (x0+14, y0+142, x1, y1, graphics/Threshold/library)" + 2="image (x0+14, y0+190, x1, y1, graphics/Threshold/community)" + 3="image (x0+14, y0+238, x1, y1, graphics/Threshold/me)" + + 4="fill(x0, y0, x1, y0+1, Frame.Outline.Focus)" + 5="fill(x0, y0, x0+1, y1, Frame.Outline.Focus)" + 6="fill(x1-1, y0, x1, y1, Frame.Outline.Focus)" + 7="fill(x0, y1-1, x1, y1, Frame.Outline.Focus)" + + } + } + + CSteamRootDialog:FrameFocus{ + render + { + 0="image (x0+14, y0+94, x1, y1, graphics/Threshold/store)" + 1="image (x0+14, y0+142, x1, y1, graphics/Threshold/library)" + 2="image (x0+14, y0+190, x1, y1, graphics/Threshold/community)" + 3="image (x0+14, y0+238, x1, y1, graphics/Threshold/me)" + + 4="fill(x0, y0, x1, y0+1, Frame.Outline)" + 5="fill(x0, y0, x0+1, y1, Frame.Outline)" + 6="fill(x1-1, y0, x1, y1, Frame.Outline)" + 7="fill(x0, y1-1, x1, y1, Frame.Outline)" + } + } + + "MenuBar MenuButton" + { + textcolor="none" + inset="0 0 0 0" + render{ + 0="image(x0+16,y0+18,x1,y1,graphics/Threshold/menu)" + } + } + + "MenuBar MenuButton:hover" + { + bgcolor=Menu.Button.Hover + render_bg { + } + } + + "MenuBar MenuButton:frameFocus:hover" + { + bgcolor=Menu.Button.Hover + render_bg { + } + } + + "MenuBar MenuButton:frameFocus:selected" + { + bgcolor=Accent + render_bg { + } + + } + + view_friends + { + textcolor=Root.Label.Text + bgcolor="none" + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + font-style=regular + } + + view_friends:hover + { + textcolor=Root.Label.Hover.Text + } + + online_friends + { + textcolor=Root.SubLabel.Text + bgcolor="none" + font-family=basefont + font-size=11 [$LINUX] + font-size=13 + font-weight=400 + font-style=regular + } + + online_friends:disabled + { + textcolor=Root.LeftCol.Disabled + } + + support_alert + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=1000 + font-style=none + textcolor=DefaultText + padding-left=50 + padding-right=50 + padding-top=6 + inset="-8 -3 8 0" + render {} + render_bg { + 0="fill( x0, y0 + 3, x1-1, y1, parental_lock_inactive1 )" + } + } + + support_alert:hover + { + render_bg { + 0="fill( x0, y0 + 3, x1-1, y1, parental_lock_inactive3 )" + } + } + + support_alert_ack + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=1000 + font-style=none + textcolor=white + padding-left=50 + padding-right=50 + padding-top=6 + inset="-8 -3 8 0" + render {} + render_bg { + 0="fill( x0, y0 + 3, x1-1, y1, support_lock_ack1 )" + + } + } + + support_alert_ack:hover + { + render_bg { + 0="fill( x0, y0 + 3, x1-1, y1, support_lock_ack2 )" + } + } + + inbox_button + { + font-family=basefont + inset="-6 0 0 0" + font-size=13 [$LINUX] + font-size=15 + font-weight=800 + font-style=none + textcolor=Root.LeftCol.Text + image="graphics/Threshold/mail" + render{} + render_bg{} + } + + inbox_button:hover + { + bgcolor=Menu.Hover + render{} + } + + inbox_button:selected + { + bgcolor=Menu.Hover + render{} + } + + inbox_button:disabled + { + textcolor=Root.LeftCol.Disabled + image="graphics/Threshold/mail_dis" + render{} + } + + inbox_button_active + { + font-family=basefont + inset="-6 0 0 0" + font-size=13 [$LINUX] + font-size=15 + font-weight=800 + font-style=none + textcolor=none + bgcolor=Accent + image="graphics/Threshold/mail" + render {} + render_bg{} + } + + inbox_button_active:hover + { + bgcolor=Accent.Hover + render {} + } + inbox_button_active:selected + { + bgcolor=Accent.Hover + render {} + } + + inbox_button_active:disabled + { + image="graphics/Threshold/mail_dis" + render {} + } + + parental_lock_button + { + bgcolor=none + image="graphics/Threshold/notfamilyview" + render{} + render_bg{} + } + + parental_lock_button:hover + { + bgcolor=Menu.Hover + } + + parental_lock_button:selected + { + image="graphics/Threshold/familyview" + } + + + parental_lock_button:selected:hover + { + bgcolor=Menu.Hover + image="graphics/Threshold/familyview" + + } + + inboxmenuitem + { + textcolor=Menu.Disabled.Text + } + + inboxmenuitem_active + { + textcolor=Menu.Text + } + + inboxmenuitem_active:hover + { + textcolor=Menu.Text + } + + AccountURLStyle + { + font-size=13 [$LINUX] + font-size=15 + textcolor=Root.Label.Text + } + + AccountURLStyle:hover + { + textcolor=Root.Label.Hover.Text + } + + AccountURLStyle:disabled + { + textcolor=Root.LeftCol.Disabled + padding-right=0 + } + + } + + colors + { + support_flag_red "169 72 71 255" + + support_hover_red1 "193 94 93 255" + support_hover_red2 "156 64 63 255" + + inbox_active_text DefaultText + inbox_inactive_text DefaultText.Disabled + + backdrop "20 20 20 255" + + disabledborder "63 63 63 255" + } + + layout + { + region { name=hidden width=0 height=0} + region { name=left width=240 y=32} + region { name=bottom-left region=left align=bottom height=48 width=max} + region { name=bottom width=max height=48 align=bottom} + region { name=account align=bottom-right margin-right=48 width=max height=52 margin-left=505} + + place { control="New, account_URL" region=hidden} + place { control="add_game" x=14 y=16 region=hidden height=0 width=0} + + place { control="MenuBar" height=48 width=48 y=32 x=0 } + place { control="UINavigatorPanel" width=max height=max margin-right=0 margin-left=0 margin-bottom=48 margin-top=0 } + + place { control="ParentalLockButton, startVR, exitVR, SupportAlert" region=bottom-left align=right margin-right=48 height=48 width=48 spacing=0 dir=right} + place { control="UIStatusPanel" height=48 width=323 region=bottom margin-left=192} + place { control="InboxButton" height=48 width=48 region=bottom align=right } + + place { control="fullscreen,frame_minimize,frame_maximize,frame_close" align=right width=46 height=32 spacing=0 } + + place { control="FriendPanel" height=48 y=0 width=48 margin-left=4 region=account align=right} + place { control="account_balance, account_balance_seperator, view_friends, universe_label" dir=right margin-right=54 margin-top=12 spacing=5 region=account align=right} + place { control="online_friends" height=12 y=30 spacing=5 margin-right=54 region=account align=right} + } +} diff --git a/resource/layout/steamrootdialog_gamespage_details.layout b/resource/layout/steamrootdialog_gamespage_details.layout new file mode 100644 index 0000000..cf0e5d3 --- /dev/null +++ b/resource/layout/steamrootdialog_gamespage_details.layout @@ -0,0 +1,349 @@ +"resource/layout/steamrootdialog_gamespage_details.layout" +{ + controls + { + GamesList + { + tabposition=1 + } + + DetailsBorder { controlname=Panel style="DetailsBorderPanel" zpos="-1" } + + // Header image, plus overlays + headerimagea { controlname="ImagePanel" style="headerimage" zpos="-4" visible=1 scaling="none" horizontal-align=left vertical-align=top } + headerimageb { controlname="ImagePanel" style="headerimage" zpos="-4" visible=1 scaling="none" horizontal-align=left vertical-align=top } + + // Header text labels + gametitleheader { controlname="CDetailsGameTitleHeaderPanel" zpos="2" } + gamesubheader { controlname="CDetailsGameSubHeaderPanel" zpos="2" } + + linkslabel { controlname="Label" labeltext="#Steam_Links" style="rightcolumnheadertext" } + sendguestpasslink { controlname="URLLabel" labeltext="#steam_send_guestpass" style="rightcolumnlink" tabposition=7 command="SendGuestPass" } + achievementslink { controlname="URLLabel" labeltext="#Steam_Achievements" style="rightcolumnlink" } + forumlink { controlname="URLLabel" labeltext="#Steam_Forums" style="rightcolumnlink" } + ogglink { controlname="URLLabel" labeltext="#Steam_OGG" style="rightcolumnlink" } + manuallink { controlname="URLLabel" labeltext="#Steam_Game_Manual" style="rightcolumnlink" } + newslink { controlname="URLLabel" labeltext="#Steam_News" style="rightcolumnlink" } + storelink { controlname="URLLabel" labeltext="#Steam_Game_SteamStorePage" style="rightcolumnlink" } + gamehublink { controlname="URLLabel" labeltext="#Steam_Game_GameHub" style="rightcolumnlink" } + dlclink { controlname="URLLabel" labeltext="#Steam_DLC" style="rightcolumnlink" } + cdkeylink { controlname="URLLabel" labeltext="#Steam_CDKeyLink" style="rightcolumnlink" } + guidelink { controlname="URLLabel" labeltext="#Steam_Guide" style="rightcolumnlink" } + guideslink { controlname="URLLabel" labeltext="#Steam_Guides" style="rightcolumnlink" } + supportlink { controlname="URLLabel" labeltext="#Steam_Support" style="rightcolumnlink" } + recommendlink { controlname="URLLabel" labeltext="#Steam_Game_RecommendGame" style="rightcolumnlink" } + editconfiglink { controlname="URLLabel" labeltext="#steam_editcontroller" style="rightcolumnlink" } + + + // Right column tags + tagslabel { controlname="Label" labeltext="#Steam_Tags" style="rightcolumnheadertext" } + edittagslink { controlname="URLLabel" labeltext="#steam_details_edittags" style="rightcolumnlink" } + + // Body contents + welcomedetails { controlname="CGamesPage_Details_Welcome" zpos="1" } + rentaldetails { controlname="CGamesPage_Details_Rental" zpos="1" } + dlcdetails { controlname="CGamesPage_Details_DLC" zpos="1" } + friendsdetails { controlname="CGamesPage_Details_Friends" zpos="1" } + clouddetails { controlname="CGamesPage_Details_Cloud" zpos="1" } + communityfilesdetails { controlname="CGamesPage_Details_CommunityFiles" zpos="1" } + achievementsdetails { controlname="CGamesPage_Details_Achievements" zpos="1" } + newsdetails { controlname="CGamesPage_Details_News" zpos="1" } + nonsteamdetails { controlname="CGamesPage_Details_NonSteam" zpos="1" } + screenshotsdetails { controlname="CGamesPage_Details_Screenshots" zpos="1" } + turnnotifications { controlname="CGamesPage_Details_TurnNotifications" zpos="1" visible="0" } + + // Empty list contents + emptylisttext { controlname="RichText" style="emptylisttext" } + + } + + styles + { + CGamesListPanel + { + render_bg + { + 0="image_scale(x0,y0,x1,y1,graphics/JackMyth/FadeLR)" + //0="radient(x1,y0,x0,y1,JackMyth.HalfTranslucent,0 0 0 0)" + } + } + + emptylisttext + { + textcolor=DefaultText + font-size=13 [$LINUX] + font-size=15 + render_bg {} + } + + CGamesPage_Details + { + bgcolor=JackMyth.Translucent + inset="0 0 0 0" + render + { + } + render_bg + { + } + } + + // Some overrides for our listpanel + "GamesPage_Details ListPanel" + { + bgcolor="0 0 0 0" + render_bg {} + render {} + } + + "GamesPage_Details ListPanel" + { + padding-left=15 + } + + "GamesPage_Details ListPanelInterior" + { + bgcolor=none + inset="0 0 0 0" + render {} + render_bg + { + } + } + + "GamesPage_Details ListPanelInterior:scrollbar" + { + inset="0 0 0 0" + bgcolor=none + render_bg + { + } + } + + "GamesPage_Details ListPanelDragger" + { + bgcolor="none" + render {} + render_bg {} + } + + "GamesPage_Details ListPanelColumnHeader" + { + bgcolor="none" + font-size=13 [$LINUX] + font-size=15 + inset="0 0 0 0" + render {} + render_bg + { + //0="fill( x0, y0, x1, y1, ButtonFace)" + } + + } + + "CGamesListPanel ListPanelColumnSelectButton" + { + bgcolor=none + inset="0 0 0 0" + render { + 5="image( x0 + 5, y0 + 3, x1, y1, graphics/Threshold/icons/plus_hover )" + } + render_bg { + } + } + + "CGamesListPanel ListPanelColumnSelectButton:hover" + { + bgcolor=none + inset="0 0 0 0" + render { + 5="image( x0 + 5, y0 + 3, x1, y1, graphics/Threshold/icons/plus )" + } + render_bg { + } + } + + headerimage + { + bgcolor=Root.Back + inset="0 0 0 0" + + } + + rightcolumnheadertext + { + inset="0 0 0 0" + font-family=basefont + font-weight=700 + font-size=15 [$LINUX] + font-size=18 + textcolor=Accent + padding-top=12 + padding-left=0 + render_bg + { + + } + } + + rightcolumnheadertext-red + { + inset="0 0 0 0" + font-size=15 [$LINUX] + font-size=18 + textcolor=Accent + font-family=basefont + font-weight=700 + padding-top=12 + padding-left=0 + render_bg + { + + } + } + + rightcolumnheadertext-green + { + + inset="0 0 0 0" + font-size=15 [$LINUX] + font-size=18 + textcolor=Accent + font-family=basefont + font-weight=700 + padding-top=12 + padding-left=0 + render_bg + { + + } + } + + rightcolumnheadertext-blue + { + inset="0 0 0 0" + font-size=15 [$LINUX] + font-size=18 + textcolor=Accent + font-family=basefont + font-weight=700 + padding-top=12 + padding-left=0 + render_bg + { + + } + } + + rightcolumnlink + { + inset="0 0 0 0" + font-size=13 [$LINUX] + font-size=15 + font-style=normal + textcolor=DefaultText + font-family=basefont + padding=10 + bgcolor=Root.BackTransparent + render_bg + { + + } + } + + rightcolumnlink:scrollbar + { + padding-top=0 + padding-bottom=0 + } + + rightcolumnlink:hover + { + textcolor=Accent + } + + rightcolumnlink:disabled + { + textcolor=DefaultText.Disabled + } + + rightcolumntag + { + inset="0 -5 0 0" + font-size=28 [$LINUX] + font-size=34 + font-style=normal + textcolor=Accent + padding=10 + font-family=light + bgcolor=Root.BackTransparent + render_bg + { + } + } + + DetailsBorderPanel + { + + bgcolor = none + render + { + // background gradient + } + } + } + + layout + { + region {name=hidden width=0 height=0} + region { name="list" y=0 x=0 width=275 height=max margin-top=0 margin-bottom=0 } + region { name="details" y=0 x=275 width=max height=max margin-top=0 overflow=scroll-vertical} //overflow + region { name="header" region=details y=0 x=0 width=max height=300} + region { name="headertext" region=header y=15 x=15 width=max height=max margin-right=20 } + region { name="links" region=header align=bottom height=50 width=max overflow=scroll-horizontal } + region { name="detailsbody" region=details y=300 margin-top=15 margin-right=15 margin-left=15 height=max width=max overflow=allow-vertical} + + // Empty list text, which goes across regions + place { control=emptylisttext region=list width=max height=max margin=10} + + // Games list on left + place { control=GamesList region=list width=max height=max margin=0 } + + // Body contents + place + { + control=welcomedetails,rentaldetails,turnnotifications,friendsdetails,achievementsdetails,dlcdetails,screenshotsdetails,clouddetails,communityfilesdetails,newsdetails,nonsteamdetails + region=detailsbody + dir=down + width=max + spacing=15 + } + + // Details border + place { control=DetailsBorder y=0 x=0 width=max height=max } + + // Main header image is at the bottom, then one of three color overlays is visible, and finally the + // horizontal fade out gradient on the top. We have an a and a b image, which we crossfade between. + place { control=headerimagea region=header width=max height=max align=top-center margin-top=-75 } + place { control=headerimageb region=header width=max height=max align=top-center margin-top=-75 } + + // Header text + place { control=gametitleheader region=headertext dir=down height=60 } + place { control=gamesubheader region=headertext start=gametitleheader dir=down height=55 } + place { control=*taglink region=headertext start=gamesubheader dir=right height=55} + + // Links + place + { + control=sendguestpasslink,storelink,gamehublink,forumlink,ogglink,achievementslink,newslink,dlclink,cdkeylink,manuallink,guidelink,guideslink,supportlink,recommendlink,editconfiglink + region=links + height=32 + dir=right + align=bottom + } + + place{ control="linkslabel,tagslabel,edittagslink" region=hidden} + + } + +} diff --git a/resource/layout/steamrootdialog_gamespage_list.layout b/resource/layout/steamrootdialog_gamespage_list.layout new file mode 100644 index 0000000..2de3c39 --- /dev/null +++ b/resource/layout/steamrootdialog_gamespage_list.layout @@ -0,0 +1,31 @@ +"resource/layout/steamrootdialog_gamespage_list.layout" +{ + controls + { + "GamesList" + { + tabposition=1 + } + } + + styles + { + URLLabel + { + font-style=normal + } + } + + colors + { + ListPanel.PostSectionLeading 12 + } + + layout + { + // content pages + place { control="GamesList" width=max height=max } + + } + +} diff --git a/resource/layout/steamrootdialog_mediapage.layout b/resource/layout/steamrootdialog_mediapage.layout new file mode 100644 index 0000000..fa0ddfa --- /dev/null +++ b/resource/layout/steamrootdialog_mediapage.layout @@ -0,0 +1,11 @@ +"resource/layout/steamrootdialog_mediapage.layout" +{ + + layout + { + // content pages + place { control=GamesList width=max height=max } + + } + +} diff --git a/resource/layout/steamrootdialog_musicpage_details.layout b/resource/layout/steamrootdialog_musicpage_details.layout new file mode 100644 index 0000000..7a6870c --- /dev/null +++ b/resource/layout/steamrootdialog_musicpage_details.layout @@ -0,0 +1,30 @@ +"resource/layout/steamrootdialog_musicpage_details.layout" +{ + controls + { + CMusicPage_Details_Content { controlname="CMusicPage_Details_Content" } + } + + styles + { + CMusicPage_Details + { + inset="0 0 0 0" + render + { + } + render_bg + { + //0="gradient( x0, y0, x1, y1, dialogbg, almostblack )" + } + } + + } + + layout + { + region { name="content" y=0 x=0 width=max height=max } + place { control=CMusicPage_Details_Content region=content x=0 y=0 width=max height=max } + } + +} diff --git a/resource/layout/steamrootdialog_toolspage.layout b/resource/layout/steamrootdialog_toolspage.layout new file mode 100644 index 0000000..8da4140 --- /dev/null +++ b/resource/layout/steamrootdialog_toolspage.layout @@ -0,0 +1,31 @@ +"resource/layout/steamrootdialog_toolspage.layout" +{ + + layout + { + // content pages + place { control="GamesList" width=max height=max } + + } + + styles + { + "GamesList" + { + bgcolor=none + render + { + //gradient to obscure content at top of scrolling region + //1="gradient( x0+2, y0 + 1, x1-1, y0 + 16, dialogbg, none )" + + //gradient to obscure content at bottom of scrolling region + //2="gradient( x0+2, y1 - 16, x1-1, y1-1, none, almostblack )" + } + render_bg + { + 0="fill( x0, y0, x1, y1, Root.Back )" + } + } + } + +} diff --git a/resource/layout/steamvrhmdwarning.layout b/resource/layout/steamvrhmdwarning.layout new file mode 100644 index 0000000..f3f164c --- /dev/null +++ b/resource/layout/steamvrhmdwarning.layout @@ -0,0 +1,68 @@ +"resource/layout/steamvrhmdwarning.layout" +{ + controls + { + SteamVRHMD { controlname="Frame" title=" " style="SteamVRHMD" } + + ConfirmTextHeader { controlname="Label" labeltext="#Steam_VGUIVRHMDWarningHeader" wrap=0 style=ConfirmTextHeader } + ConfirmText { controlname="Label" labeltext="#Steam_VGUIVRHMDWarning" wrap=1 style=ConfirmText } + OculusText { controlname="RichText" style=ConfirmText scrollbar=0 } + + VRDontShowCheckButton { controlname="CheckButton" tabposition=3 labeltext="#SteamUI_NotifyTrayHintDialog_DontShow" } + Help { controlname="Button" tabposition=2 labeltext="#steam_menu_help" textalignment=left } + Install { controlname="Button" tabposition=1 labeltext="#SteamUI_InstallSteamVR" textalignment=left } + Close { controlname="Button" tabposition=1 labeltext="#vgui_close" textalignment=left } + } + + styles + { + SteamVRHMD + { + minimum-width = 706 + minimum-height = 370 + inset="0 0 0 0" + + render_bg + { + // background gradient + 0="gradient( x0+1, y0, x1-1, y1-45, dialogbg, almostblack )" + 5="image( x0 + 3, y0 + 3, x1, y1, graphics/vrwarning_dialog )" + } + } + + ConfirmTextHeader + { + textcolor="110 192 236 255" + font-size=26 + } + + ConfirmText + { + textcolor="110 192 236 255" + font-size=20 + selectedtextcolor="label2" + render_bg {} + height=400px + } + + "ConfirmText url" + { + textcolor="110 192 236 255" + font-size=20 + font-style=underline + render_bg {} + } + + } + + layout + { + region { name="bottom" width=max align=bottom height=45 margin=10 } + + place { control="ConfirmTextHeader" width=435 y=116 margin-left=30 } + place { control="ConfirmText,OculusText" width=430 y=130 margin=20 height=max margin-left=30 spacing=10 dir=down } + place { control="ControllerBackground" width=max y=40 height=max margin=15 } + place { control="Install,Close,Help" region="bottom" align=right spacing=20 width=120 height=25 } + place { control="VRDontShowCheckButton" region="bottom" align=left spacing=5 margin-left=20 } + } +} diff --git a/resource/layout/streamingintro.layout b/resource/layout/streamingintro.layout new file mode 100644 index 0000000..ac31357 --- /dev/null +++ b/resource/layout/streamingintro.layout @@ -0,0 +1,51 @@ +"resource/layout/streamingintro.layout" +{ + controls + { + "IntroLabel" + { + ControlName="Label" + fieldName="IntroLabel" + wrap=1 + labelText="#SteamUI_StreamingIntro" + } + + "StreamingIntroImage" + { + controlname="ImagePanel" + fieldName="StreamingIntroImage" + style="StreamingImage" + image=graphics/streaming_intro + } + + "IntroLabel2" + { + ControlName="Label" + fieldName="IntroLabel2" + wrap=1 + labelText="#SteamUI_StreamingIntro2" + } + + OKButton { ControlName="Button" fieldName="OKButton" command="Start" labelText="#vgui_ok" } + CancelButton { ControlName="Button" fieldName="CancelButton" command="Close" labelText="#vgui_cancel" } + } + + style + { + } + + layout + { + + region { name="buttons" width=max height=48 align="bottom" } + + place { control="IntroLabel" x=20 y=40 width=350 height=48 } + place { control="StreamingIntroImage" x=15 y=70 width=356 height=167 } + place { control="IntroLabel2" x=20 y=225 width=350 height=48 } + + place { control="CancelButton,OKButton" region="buttons" + width=92 height=25 align=right + margin-right=10 margin-top=0 + margin-bottom=2 spacing=10 } + } +} \ No newline at end of file diff --git a/resource/layout/streamingprogress.layout b/resource/layout/streamingprogress.layout new file mode 100644 index 0000000..76caf3f --- /dev/null +++ b/resource/layout/streamingprogress.layout @@ -0,0 +1,28 @@ +"resource/layout/streamingprogress.layout" +{ + controls + { + ProgressLabel { controlname="Label" labeltext="#SteamUI_StreamLaunch_RemoteStart" wrap=1 } + ThrobberThrobberThrobber { controlname="ThrobberImagePanel" } + } + + colors + { + } + + styles + { + highlight + { + textcolor=DefaultText + } + } + + layout + { + region { name=box margin-top=20 margin-bottom=20 margin-left=20 margin-right=20 width=max height=max } + + place { controls="ProgressLabel" region=box margin-top=15 dir=down align=left width=320 } + place { controls="ThrobberThrobberThrobber" region=box start=ProgressLabel dir=down align=left margin-top=25 margin-left=162 } + } +} diff --git a/resource/layout/subpaneloptionsbrowser.layout b/resource/layout/subpaneloptionsbrowser.layout new file mode 100644 index 0000000..f6aa93f --- /dev/null +++ b/resource/layout/subpaneloptionsbrowser.layout @@ -0,0 +1,49 @@ +"resource/layout/subpaneloptionsbrowser.layout" +{ + controls + { + DescriptionLabel { ControlName=Label labeltext="#Overlay_SettingsBrowserDesc" wrap=1 } + Divider1 { ControlName=Divider } + + OverlayHomePageLabel { ControlName=Label labelText="#Overlay_SettingsHomepageLabel" } + OverlayHomePage { ControlName=TextEntry } + + ClientBrowserAuthHomePage { ControlName=CheckButton fieldName="ClientBrowserAuthHomePage" } + + ClearWebCacheButton { ControlName=Button labelText="#Steam_SettingsBrowserClearWebCache" command=ClearWebCache } + ClearAllCookiesButton { ControlName=Button labelText="#Steam_SettingsBrowserClearAllCookies" command=ClearCookies } + + } + + colors + { + } + + styles + { + highlight + { + textcolor=DefaultText + } + + checkbox + { + padding-top=0 + padding-bottom=0 + } + + + } + + layout + { + place { controls=DescriptionLabel margin-top=20 margin-left=20 margin-right=20 width=max } + place { start=DescriptionLabel controls=OverlayHomePageLabel dir=down margin-top=20 width=200 } + place { start=OverlayHomePageLabel controls=OverlayHomePage dir=down margin-top=5 width=240 } + place { start=OverlayHomePage controls=ClientBrowserAuthHomePage dir=down region=bottom width=max margin-top=15 } + place { start=ClientBrowserAuthHomePage controls=Divider1 dir=down region=bottom width=max margin-top=15 } + place { start=Divider1 controls=ClearWebCacheButton height=20 width=240 region=bottom dir=down margin-top=15 } + place { start=ClearWebCacheButton controls=ClearAllCookiesButton height=20 width=240 region=bottom dir=down margin-top=15 } + + } +} diff --git a/resource/layout/subpaneloptionscloud.layout b/resource/layout/subpaneloptionscloud.layout new file mode 100644 index 0000000..145fde1 --- /dev/null +++ b/resource/layout/subpaneloptionscloud.layout @@ -0,0 +1,52 @@ +"resource/layout/subpaneloptionscloud.layout" +{ + controls + { + EnableCloudCheck + { + controlname=button + labeltext="#Steam_EnableCloud" + wrap=1 + } + + EnableScreenshotsCheck + { + controlname=button + labeltext="#Steam_EnableCloudScreenshots" + wrap=1 + } + + SteamCloudInfo + { + controlname=label + labeltext="#Steam_CloudInfo" + wrap=1 + } + } + + colors + { + + } + + styles + { + + } + + layout + { + region { name=box margin-top=20 margin-bottom=20 margin-left=20 margin-right=20 width=max height=max } + + place { control=SteamCloudInfo region=box width=max } + place { + controls=", EnableCloudCheck, EnableScreenshotsCheck" + start = SteamCloudInfo + margin-top = 10 + region=box + dir=down + width=max + spacing = 1 + } + } +} diff --git a/resource/layout/subpaneloptionscontroller.layout b/resource/layout/subpaneloptionscontroller.layout new file mode 100644 index 0000000..b65e81f --- /dev/null +++ b/resource/layout/subpaneloptionscontroller.layout @@ -0,0 +1,55 @@ +"resource/layout/subpaneloptionscontroller.layout" +{ + controls + { + TitleLabel { controlname=label labeltext="#Steam_SettingsControllerTitle" style=highlight } + DescriptionLabel { ControlName=Label labeltext="#Steam_SettingsControllerDescription" wrap=1 } + Divider1 { ControlName=Divider } + DescriptionBindingLabel { ControlName=Label labeltext="#Steam_SettingsControllerBindingDescription" wrap=1 } + + GeneralSettingsButton { ControlName=Button labelText="#Steam_SettingsControllerGeneralSettings" command=EditGeneralSettings } + BigPictureConfigButton { ControlName=Button labelText="#Steam_SettingsControllerBigPictureConfig" command=EditBPConfig } + DesktopConfigButton { ControlName=Button labelText="#Steam_SettingsControllerDesktopConfig" command=EditDesktopConfig } + GuideConfigButton { ControlName=Button labelText="#Steam_SettingsControllerGuideConfig" command=EditGuideConfig } + + } + + colors + { + } + + styles + { + highlight + { + textcolor=DefaultText + font-size=18 [$LINUX] + font-size=24 + } + + checkbox + { + padding-top=0 + padding-bottom=0 + } + } + + layout + { + region { name=box margin-top=10 margin-bottom=20 margin-left=20 margin-right=20 width=max height=max } + region { name=top region=box margin-top=10 } + region { name=topleft region=top y=130 width=255 margin-right=20 } + region { name=topright region=top x=263 width=235 y=131} + + region { name=bottom region=box y=320 } + + place { controls=TitleLabel margin-top=20 margin-left=20 margin-right=20 width=max } + place { start=TitleLabel controls=DescriptionLabel height=40 region=top dir=down margin-top=15 width=max } + place { start=DescriptionLabel controls=GeneralSettingsButton height=20 width=240 region=top dir=down margin-top=15 } + place { start=GeneralSettingsButton controls=Divider1 height=20 region=top dir=down margin-top=15 width=max } + place { start=Divider1 controls=DescriptionBindingLabel height=40 region=top dir=down margin-top=15 width=max } + place { start=DescriptionBindingLabel controls=BigPictureConfigButton height=20 width=240 region=top dir=down margin-top=15 } + place { start=BigPictureConfigButton controls=DesktopConfigButton height=20 width=240 region=top dir=down margin-top=15 } + place { start=DesktopConfigButton controls=GuideConfigButton height=20 width=240 region=top dir=down margin-top=15 } + } +} diff --git a/resource/layout/subpaneloptionsdownloads.layout b/resource/layout/subpaneloptionsdownloads.layout new file mode 100644 index 0000000..ff3e95d --- /dev/null +++ b/resource/layout/subpaneloptionsdownloads.layout @@ -0,0 +1,115 @@ +"resource/layout/subpaneloptionsdownloads.layout" +{ + controls + { + ThrottleRatesLabel { controlname=label labeltext=#Steam_ThrottleRatesLabel } + RegionLabel { controlname=label labeltext=#Steam_RegionLabel style=highlight } + LibrariesLabel { controlname=label labeltext=#Steam_LibrariesLabel style=highlight } + RestrictionsLabel { controlname=label labeltext=#Steam_DownloadRestrictionsLabel style=highlight } + RegionInfoLabel { controlname=label labeltext=#Steam_RegionInfo wrap=1 } + ManageInstalledappsLabel { controlname=label labeltext=#SteamUI_ContentMgr_ManageInstalledAppsInfo } + FlushDownloadConfigLabel { controlname=label labeltext=#SteamUI_ContentMgr_FlushDownloadConfigInfo tooltiptext=#SteamUI_ContentMgr_FlushDownloadConfigTip } + + ThrottleRates + { + controlname=combobox + editable="0" + } + + DownloadRegionCombo + { + controlname=combobox + editable="0" + } + + ManageInstalledApps + { + controlname=button + labeltext = #SteamUI_ContentMgr_ManageInstalledApps + command=ManageInstalledApps + } + + FlushDownloadConfig + { + controlname=button + labeltext = #SteamUI_ContentMgr_FlushDownloadConfig + command=FlushContentConfig + } + + AutoUpdateTimeRestrictCheckbox { controlname=checkbutton labeltext=#Steam_AutoUpdateTimeRestrictionLabel } + AutoUpdateTimeRestrictStartLabel { controlname=label labeltext=#Steam_AutoUpdateTimeRestrictionStart style=padded } + AutoUpdateTimeRestrictEndLabel { controlname=label labeltext=#Steam_AutoUpdateTimeRestrictionEnd style=padded } + AutoUpdateTimeRestrictStart { controlname=combobox } + AutoUpdateTimeRestrictEnd { controlname=combobox } + AllowDownloadsDuringGameplayCheckbox { controlname=checkbutton labeltext=#Steam_AllowDownloadsDuringGameplay tooltiptext=#Steam_AllowDownloadsDuringGameplayDetails} + ThrottleDownloadsWhileStreamingCheckbox { controlname=checkbutton labeltext=#Steam_ThrottleDownloadsWhileStreaming tooltiptext=#Steam_ThrottleDownloadsWhileStreamingDetails } + DownloadRatesInBitsCheckbox { controlname=checkbutton labeltext=#Steam_DownloadRatesInBits } + + Divider1 { ControlName=Divider } + Divider2 { ControlName=Divider } + Divider3 { ControlName=Divider } + + } + + colors + { + } + + styles + { + highlight + { + textcolor=DefaultText + font-size=18 [$LINUX] + font-size=24 + } + + padded + { + padding-top=6 + } + + + } + + layout + { + region { name=box margin-top=10 margin-bottom=20 margin-left=20 margin-right=20 width=max height=max } + + place { controls="LibrariesLabel" region=box margin-top=10 dir=down } + place { controls="ManageInstalledApps" region=box start=LibrariesLabel margin-top=10 width=235 height=25 dir=down } + place { controls="ManageInstalledappsLabel" region=box start=ManageInstalledApps margin-top=10 width=max dir=down } + + place { controls="Divider1" region=box start=ManageInstalledappsLabel dir=down margin-top=15 width=max } + + place { controls="RegionLabel" region=box start=Divider1 dir=down margin-top=15 } + place { controls="DownloadRegionCombo" region=box start=RegionLabel margin-top=10 height=25 width=235 dir=down } + place { controls="RegionInfoLabel" region=box start=DownloadRegionCombo margin-top=10 width=max dir=down } + + place { controls="Divider2" region=box start=RegionInfoLabel dir=down width=max margin-top=15 } + + place { controls="RestrictionsLabel" region=box start=Divider2 dir=down margin-top=15 } + + place { controls="AutoUpdateTimeRestrictCheckbox" region=box start=RestrictionsLabel dir=down margin-top=4 } + place { controls="AutoUpdateTimeRestrictStartLabel" region=box start=AutoUpdateTimeRestrictCheckbox dir=down margin-top=4 } + place { controls="AutoUpdateTimeRestrictStart" region=box start=AutoUpdateTimeRestrictStartLabel dir=right margin-left=10 width=78 } + place { controls="AutoUpdateTimeRestrictEndLabel" region=box start=AutoUpdateTimeRestrictStart dir=right margin-left=20 } + place { controls="AutoUpdateTimeRestrictEnd" region=box start=AutoUpdateTimeRestrictEndLabel dir=right margin-left=10 width=78 } + + place { controls="ThrottleRatesLabel" region=box start=RestrictionsLabel dir=down margin-left=260 margin-top=6 } + place { controls="ThrottleRates" region=box start=ThrottleRatesLabel dir=down width=235 height=25 margin-top=10 } + + place { controls="AllowDownloadsDuringGameplayCheckbox" region=box start=AutoUpdateTimeRestrictStartLabel dir=down margin-top=15 } + place { controls="ThrottleDownloadsWhileStreamingCheckbox" region=box start=AllowDownloadsDuringGameplayCheckbox dir=down } + place { controls="DownloadRatesInBitsCheckbox" region=box start=ThrottleDownloadsWhileStreamingCheckbox dir=down } + + place { controls="Divider3" region=box start=DownloadRatesInBitsCheckbox dir=down width=max margin-top=10 } + + place { controls="FlushDownloadConfig" region=box start=Divider3 margin-top=15 width=235 height=25 dir=down } + place { controls="FlushDownloadConfigLabel" region=box start=FlushDownloadConfig margin-top=10 width=max dir=down } + + + + + } +} diff --git a/resource/layout/subpaneloptionsfamily.layout b/resource/layout/subpaneloptionsfamily.layout new file mode 100644 index 0000000..5e2a985 --- /dev/null +++ b/resource/layout/subpaneloptionsfamily.layout @@ -0,0 +1,83 @@ +"resource/layout/subpaneloptionscloud.layout" +{ + controls + { + FamilySharingTitle { controlname=label labeltext=#Steam_Settings_Family_Sharing_Title style=highlight} + + FamilySharingInfoText { controlname=label labeltext=#Steam_Settings_Family_Sharing_Info wrap=1 } + + AuthorizedDeviceCheck { ControlName=checkbutton labeltext=#Steam_Settings_Family_Sharing_AuthorizedDevice tooltiptext=#Steam_Settings_Family_Sharing_AuthorizedDevice_ToolTip } + + BorrowersLabel { controlname=label labeltext=#Steam_Settings_Family_Sharing_Borrowers wrap=1 } + BorrowersList { controlname=listpanel } + + "ManageSharingLabel" + { + ControlName="URLLabel" + fieldName="ManageSharingLabel" + labelText="#Steam_Settings_Family_Sharing_ManageSharing" + URLText="steam://url/FamilySharing" + } + + + FamilyOptionsTitle { controlname=label labeltext=#Steam_Settings_Family_Options_Title style=highlight } + FamilyOptionsText { controlname=label labeltext=#Steam_Settings_Family_Options_Text wrap=1 } + + "ManageOptionsLabel" + { + ControlName="URLLabel" + fieldName="ManageOptionsLabel" + labelText="#Steam_Parental_Manage" + URLText="steam://url/ParentalSetup" + } + + ShowNotificationsCheck { ControlName=checkbutton labeltext=#Steam_Settings_Family_Show_Notifications } + + Divider1 { ControlName=Divider } + } + + colors + { + } + + styles + { + highlight + { + textcolor=DefaultText + font-size=18 [$LINUX] + font-size=24 + } + + padded + { + padding-top=6 + } + + + } + + layout + { + + region { name=box margin-top=10 margin-bottom=20 margin-left=20 margin-right=20 width=max height=max } + + place { controls="FamilyOptionsTitle" region=box dir=down margin-top=15 } + place { controls="FamilyOptionsText" region=box start=FamilyOptionsTitle margin-top=10 width=max dir=down } + place { controls="ManageOptionsLabel" region=box start=FamilyOptionsText margin-top=10 width=235 height=24 dir=down } + + place { controls="Divider1" region=box start=ManageOptionsLabel dir=down margin-top=16 width=max } + place { controls="FamilySharingTitle" region=box start=Divider1 dir=down margin-top=15 } + place { controls="FamilySharingInfoText" region=box start=FamilySharingTitle margin-top=10 width=max dir=down } + place { controls="AuthorizedDeviceCheck" region=box margin-top=8 width=300 height=24 start=FamilySharingInfoText dir=down } + place { controls="ManageSharingLabel" region=box margin-top=8 width=235 height=24 margin-left=320 start=FamilySharingInfoText dir=down } + + place { controls="BorrowersLabel" region=box start=FamilySharingInfoText margin-top=44 width=max dir=down } + place { controls="BorrowersList" region=box start=BorrowersLabel width=max height=121 margin-top=6 dir=down } + place { controls="ShowNotificationsCheck" region=box start=BorrowersList margin-top=10 dir=down } + + + + + } +} diff --git a/resource/layout/subpaneloptionsingame.layout b/resource/layout/subpaneloptionsingame.layout new file mode 100644 index 0000000..0bb3244 --- /dev/null +++ b/resource/layout/subpaneloptionsingame.layout @@ -0,0 +1,89 @@ +"resource/layout/subpaneloptionsingame.layout" +{ + controls + { + TitleLabel { controlname=label labeltext="#Steam_SettingsInGameTitle" style=highlight } + EnableOverlayCheck { ControlName=CheckButton labelText="#Overlay_SettingsEnable" } + EnableSCTenfootOverlayCheck [!$OSX&&!$LINUX] { ControlName=CheckButton labelText="#Overlay_SettingsSCTenfootEnable" } + EnableVRDesktopGameTheaterCheck [!$OSX&&!$LINUX] { ControlName=CheckButton labelText="#Overlay_SettingsEnableVRDesktopGameTheaterCheck" } + HotKeySelector { ControlName=HotKeyEntry } + ScreenshotHotKeySelector { ControlName=HotKeyEntry } + DescriptionLabel { ControlName=Label labeltext="#Overlay_SettingsDescription" wrap=1 } + HotKeySelectorLabel { ControlName=Label labelText="#Overlay_SettingsHotKeyLabel" } + ScreenshotLabel { ControlName=Label labelText="#Overlay_SettingsScreenshotHotKeyLabel" } + ScreenshotActionLabel { ControlName=Label labelText="#Overlay_SettingsScreenshotActionLabel" } + ScreenshotNotifyCheck { ControlName=CheckButton labelText="#Friends_DisplayNotification" style=checkbox } + ScreenshotPlaySoundCheck { ControlName=CheckButton labelText="#Friends_PlayASound" } + ScreenshotSaveUncompressedCheck { ControlName=CheckButton labelText="#Overlay_SaveUncompressed" } + + SetScreenshotFolderButton { ControlName=Button labelText="#Steam_SettingsInGameScreenshotFolder" command=SetScreenshotFolder } + + ShowIngameFPSLabel { ControlName=Label labelText="#Steam_Settings_Ingame_ShowFPS_Title" } + ShowIngameFPSCornerCombo { ControlName="ComboBox" fieldName="ShowIngameFPSCombo" editable="0" } + ShowIngameFPSContrastCheck { ControlName=CheckButton labelText="#Steam_Settings_Ingame_ShowFPS_HightContrast" style=checkbox } + + Divider1 { ControlName=Divider } + PingRateLabel { controlname=label labeltext=#Steam_ServerBrowserPingRateLabel wrap=1 style=highlight } + PingRateInfo { controlname=label labeltext=#Steam_ServerBrowserPingRateInfo wrap=1 } + PingRateCombo + { + controlname=combobox + editable="0" + } + } + + colors + { + } + + styles + { + highlight + { + textcolor=DefaultText + font-size=18 [$LINUX] + font-size=24 + } + + checkbox + { + padding-top=0 + padding-bottom=0 + } + } + + layout + { + region { name=box margin-top=20 margin-bottom=20 margin-left=20 margin-right=20 width=max height=max } + + place { controls=TitleLabel region=box } + place { controls=DescriptionLabel width=max region=box start=TitleLabel width=max dir=down margin-top=8 } + place { controls=EnableOverlayCheck region=box start=DescriptionLabel margin-top=5 width=max dir=down } + place [!$OSX&&!$LINUX] { controls=EnableSCTenfootOverlayCheck region=box start=EnableOverlayCheck dir=down } + place [!$OSX&&!$LINUX] { controls=EnableVRDesktopGameTheaterCheck region=box start=EnableSCTenfootOverlayCheck dir=down } + + place [$WINDOWS] { controls=HotKeySelectorLabel,HotKeySelector start=EnableVRDesktopGameTheaterCheck margin-top=10 dir=down spacing=5 width=220 region=box } + place [!$WINDOWS] { controls=HotKeySelectorLabel,HotKeySelector start=EnableOverlayCheck margin-top=10 dir=down spacing=5 width=220 region=box } + + place { controls=ShowIngameFPSLabel,ShowIngameFPSCombo,ShowIngameFPSContrastCheck dir=down spacing=5 start=HotKeySelector margin-top=55 width=220 region=box } + + place [$WINDOWS] { controls=ScreenshotLabel start=EnableVRDesktopGameTheaterCheck margin-top=10 x=270 dir=down region=box } + place [!$WINDOWS] { controls=ScreenshotLabel start=EnableOverlayCheck margin-top=10 x=270 dir=down region=box } + place { controls=ScreenshotHotKeySelector,SetScreenshotFolderButton + dir=down + start=ScreenshotLabel + margin-top=4 + spacing=5 + width=220 + region=box } + + place { control=ScreenshotActionLabel region=box start=SetScreenshotFolderButton dir=down margin-top=20 } + place { controls=ScreenshotNotifyCheck,ScreenshotPlaySoundCheck,ScreenshotSaveUncompressedCheck dir=down start=ScreenshotActionLabel + margin-top=6 margin-left=10 region=box } + + place { control=Divider1 start=ShowIngameFPSContrastCheck dir=down margin-top=40 region=box width=max } + place { controls="PingRateLabel" region=box start=Divider1 margin-top=10 width=max dir=down } + place { controls="PingRateCombo" region=box start=PingRateLabel margin-top=10 width=235 dir=down height=25 } + place { controls="PingRateInfo" region=box start=PingRateCombo margin-top=10 width=max dir=down } + } +} diff --git a/resource/layout/toolwindow.layout b/resource/layout/toolwindow.layout new file mode 100644 index 0000000..ec8ce2c --- /dev/null +++ b/resource/layout/toolwindow.layout @@ -0,0 +1,117 @@ +"resource/layout/toolwindow.layout" +{ + controls + { + // the container + ToolWindowSheet { controlname="PropertySheet" } + } + + + styles + { + Frame + { + minimum-height=460 + minimum-width=460 + } + ToolWindow + { + bgcolor=DefaultBackground + render_bg + { + //Has no frametitle, need to draw one + 0="fill(x0,y0,x1,y0+32,TitleBar.Focus)" + 1="fill(x0,y0+32,x1,y1,Root.TabBar)" + } + } + + ToolWindow:frameFocus + { + minimum-height=460 + minimum-width=460 + bgcolor=DefaultBackground + render_bg + { + //Has no frametitle, need to draw one + 0="fill(x0,y0,x1,y0+32,TitleBar)" + 1="fill(x0,y0+32,x1,y1,Root.TabBar)" + } + } + + + Button //New tab button + { + textcolor="0 0 0 0" // don't render the + as text + render_bg + { + // background fill + 0="fill( x0, y0, x1 - 1, y1 - 8, DefaultBackground )" + 1="image(x0 + 6, y0 + 7, x1, y1 - 1, graphics/Threshold/icons/plus_sm)" + } + } + + Button:hover + { + render_bg + { + // background fill + 0="fill( x0, y0, x1 - 1, y1 - 8, Menu.Button.Hover )" + 1="image(x0 + 6, y0 + 7, x1, y1 - 1, graphics/Threshold/icons/plus_sm)" + } + } + + + MenuButton // Show tabs button + { + padding-left=5 + padding-right=5 + inset="-3 4 0 0" + bgcolor=none + render_bg + { + // background fill + 0="fill( x0 - 1, y0, x1, y1 + 3, DefaultBackground )" + } + } + + MenuButton:hover + { + render_bg + { + // background fill + 0="fill( x0 - 1, y0, x1, y1 + 3, Menu.Button.Hover )" + } + } + + MenuButton:selected + { + render_bg + { + // background fill + 0="fill( x0 - 1, y0, x1, y1 + 3, Accent )" + } + } + + TabMenuButtonFlash + { + bgcolor=none + render_bg + { + // background fill + 0="fill( x0, y0, x1, y1, Accent )" + } + } + + TabMenuItemFlash + { + textcolor="Accent" + } + + } + + layout + { + place { control="frame_minimize, frame_maximize, frame_close" align=right margin-top=0 margin-right=0 width=46 height=32 spacing=0 } + place { control="ToolWindowSheet" x=0 y=28 height=max width=max margin-right=0 } + } +} diff --git a/resource/layout/twofactorcodechallenge.layout b/resource/layout/twofactorcodechallenge.layout new file mode 100644 index 0000000..b6a3f32 --- /dev/null +++ b/resource/layout/twofactorcodechallenge.layout @@ -0,0 +1,77 @@ +"resource/layout/twofactorcodechallenge.layout" +{ + controls + { + TwoFactorCodeChallenge { controlname="Frame" title="#Steam_GetTwoFactorCode_Title" style="TwoFactorCodeChallenge" } + + Label1 { controlname="Label" wrap=1 style="Instructions" labeltext="#Steam_GetTwoFactorCode_EnterCode" } + + Label2 { controlname="Label" wrap=1 style="Instructions" labeltext="#Steam_GetTwoFactorCode_EnterCodeDetails" } + + Key { controlname="Label" style="Key" } + + AuthCode { controlname="TextEntry" style="AuthCode" command="AuthCodeEntered" tabposition=1 } + + Background { controlname="ImagePanel" style="Background" image="graphics/JackMyth/bg_security_wizard" zpos=-4 } + + OK { controlname="Button" tabposition=2 command="AuthCodeEntered" labeltext="#PropertyDialog_OK" default=1 enabled=false } + Cancel { controlname="Button" tabposition=3 command="Close" labeltext="#PropertyDialog_Cancel" } + } + + styles + { + TwoFactorCodeChallenge + { + minimum-width = 380 + minimum-height = 420 + render_bg + { + 0="image_scale(x0,y0,x1,y1,graphics/JackMyth/bg_security_wizard)" + } + } + + Key + { + //image="graphics/icon_security_key" + textcolor=none + } + + AuthCode + { + minimum-height=50 + font-size=40 + } + + Instructions + { + font-size=15 + } + + Background + { + + } + + } + + layout + { + region { name="top" width=max height=80 margin=10 margin-top=38 } + region { name="middle" width=max y=70 height=160 margin=5 } + region { name="bottom" width=max align=bottom height=36 align="bottom" } + + //place { control="Background" align=left margin=10 y=42 margin-bottom=48 width=360 } + place { control="Background" align=left margin=10 y=42 margin-bottom=48 width=0 } + + place { control="Label1" region="top" x=20 spacing=8 width=max height=48 dir=down } + + place { control="Key" region="middle" margin-left=20 } + + place { control="AuthCode, Label2" region="middle" dir=down spacing=8 margin-left=80 width=190 } + + // bottom: OK/cancel + place { control="OK,Cancel" region="bottom" width=92 height=32 align=right margin-right=10 spacing=10 } + } + +} + diff --git a/resource/layout/ugcdownloadpanel.layout b/resource/layout/ugcdownloadpanel.layout new file mode 100644 index 0000000..16a6bb6 --- /dev/null +++ b/resource/layout/ugcdownloadpanel.layout @@ -0,0 +1,261 @@ +"resource/layout/ugcdownloadpanel.layout" +{ + controls + { + // this just sets the height + appsubscriptionsdownloadpanel { tall="145" } + ugcdownloadpanel { style="panelStyle" } + + // black fill, used on the background + + workshopminibanner { controlname="ImagePanel" zpos="2" image="resource/workshop_minibanner" } + + // top row + namelabel { controlname="Label" labelText="#steam_subscribed_files" style="ModuleHeading" } + dashlabel { controlname="Label" labelText="" } + updatetypelabel { controlname="Label" labelText="#steam_downloads_updating" style=ModuleHeading2 } + starttimelabel { controlname="Label" labelText="#steam_downloads_initiated" style=Label2} + starttimefield { controlname="Label" labelText="%time_started%" style=Label} + pauseresumebutton { controlname="Button" style="SmPauseButton" tooltiptext="#steam_downloads_pause" } + + // second row + downloadtotallabel { controlname="Label" labelText="#steam_downloads_gamesize_update" style="label2" } + downloadtotalfield { controlname="Label" labelText="%download_totals%" style="label" } + downloadfileslabel { controlname="Label" labelText="#steam_subscribed_files_complete" style="Label2" } + downloadfilesfield { controlname="Label" labeltext="%download_files_totals%" style="label" } + + timeremaininglabel { controlname="Label" labelText="#steam_downloads_timeremaining" style="label2" group="HideOnCompletion" } + timeremainingfield { controlname="Label" labelText="%time_remaining%" style="label" group="HideOnCompletion" } + + downloadprogressbar { controlname="ProgressBar" style="SlimProgressBar" barinset=0 continuous=1 group="HideOnCompletion" } + + + // right pane + graphdownloadrate { controlname="Label" labelText="#steam_downloads_currentrate" zpos="1" style="label2" group="HideOnCompletion" } + + // + viewmodsbutton { controlname="Button" labelText="#steam_downloads_view_on_workshop" style=ViewModsButton command=ViewMods } + } + + + colors + { + } + + styles + { + panelStyle + { + + } + panelStyleHighlight + { + render_bg + { + 1="fill( x0, y0, x1, y1+3, Root.Header)" + } + } + + links + { + font-size=12 [$LINUX] + font-size=14 + font-style=normal + font-family=basefont + //font-style="uppercase" + padding-left=0 + padding-top=0 + padding-bottom=0 + } + + links:hover + { + textcolor=DefaultText.Hover + } + + rightcolumnlink:hover + { + textcolor=DefaultText.Hover + } + + label2 + { + bgcolor none + font-size=12 [$LINUX] + font-size=14 + textcolor Root.SubLabel.Text + padding-top "0" + //font-style="uppercase" + } + + ModuleHeading + { + font-family basefont + bgcolor="none" + font-size=14 [$LINUX] + font-size=18 + padding-top "0" + font-weight "700" + } + + ModuleHeading2 + { + font-family basefont + bgcolor="none" + font-size=14 [$LINUX] + font-size=18 + padding-top "0" + font-weight "400" + } + + panelBgColorActive + { + //bgcolor="clientbg" + } + + + graphdownloadrate + { + font-family "Arial" + font-size=12 [$LINUX] + font-size=14 + //font-style="uppercase" + //padding-left "10" + //padding-right "20" + } + + SmPauseButton + { + + inset="2 0 0 0" + font-family=basefont + font-size=14 [$LINUX] + font-size=16 + font-weight=400 + textcolor=DefaultText + bgcolor=none + image=graphics/Threshold/icons/pause + + render + { + } + } + + SmResumeButton + { + + inset="2 0 0 0" + font-family=basefont + font-size=14 [$LINUX] + font-size=16 + font-weight=400 + textcolor=DefaultText + bgcolor=none + image=graphics/Threshold/icons/install + + render + { + } + } + + SmRemoveButton + { + inset="2 0 0 0" + font-family=basefont + font-size=14 [$LINUX] + font-size=16 + font-weight=400 + textcolor=DefaultText + bgcolor=none + image=graphics/Threshold/icons/close + + render + { + } + } + + SlimProgressBar + { + render_bg + { + 0="fill( x0, y0, x1, y1, Progress.Back )" + } + render + { + } + } + + + ViewModsButton + { + + inset="23 0 0 0" + font-family=basefont + font-size=14 [$LINUX] + font-size=16 + font-weight=400 + textcolor=DefaultText + bgcolor=none + + render + { + 1="image( x0 + 6, y0 + 4, x1, y1, graphics/Threshold/icons/workshop )" + } + render_bg + { + // background fill + 0="fill( x0, y0, x1, y1, Accent )" + } + } + + ViewModsButton:Hover + { + render_bg + { + // background fill + 0="fill( x0, y0, x1, y1, Accent.Hover )" + } + } + + ViewModsButton:Disabled + { + textcolor=DefaultText.Hover + render_bg + { + // background fill + 0="fill( x0, y0, x1, y1, Button.Disabled )" + } + } + } + + + layout + { + + region { name="column1" x=0 width=200 } + region { name="column2" x=210 width=max } + region { name="column3" x=430 width=max } + region { name="column4" x=0 width=max overflow=allow-horizontal } //Wierd x setting to account for smallest window size + + // Left Column + place { control="gameimage" margin-left=8 margin-top=15 width=184 height=69 } + place { control="workshopminibanner" margin-left=8 margin-top=15 width=184 height=69 } + + //Left-mid + place { control="namelabel" region=column2 margin-top=16 margin-left=0 } + place { control="viewmodsbutton" region=column2 start=namelabel dir=down margin-top=10 height=23} + place { control="downloadprogressbar" region=column2 start=viewmodsbutton margin-top=5 dir=down spacing=10 height=3 width=150 } + place { control="graphdownloadrate" region=column2 start=downloadprogressbar dir=down margin-top=5 margin-left=0 } + + //right-mid + place { control="downloadtotallabel,downloadtotalfield" region="column3" x=0 align=top margin-top=43 spacing=6 } + place { control="downloadfileslabel,downloadfilesfield" region="column3" x=0 align=top margin-top=63 spacing=6 } + place { control="starttimelabel,starttimefield" region="column3" x=0 align=top margin-top=83 spacing=6 } + place { control="timeremaininglabel,timeremainingfield" region="column3" x=0 align=top margin-top=83 spacing=6 } + + // right + place { control="updatetypelabel" region="column4" spacing=10 margin-top=22 align=right margin-right=16 } + place { control="pauseresumebutton" region="column4" width=26 dir=right spacing=10 margin-top=50 align=right margin-right=16} + + } +} diff --git a/resource/layout/uinavigatorpanel.layout b/resource/layout/uinavigatorpanel.layout new file mode 100644 index 0000000..894ad9e --- /dev/null +++ b/resource/layout/uinavigatorpanel.layout @@ -0,0 +1,679 @@ +"resource/layout/uinavigatorpanel.layout" +{ + styles + { + BackButton + { + bgcolor=TitleBar + padding-left=0 + padding-right=0 + inset="13 0 0 0" + image="graphics/Threshold/back_sm_dis" + render_bg { + } + render + { + 0="image(x0+60, y0+12, x1, y1, graphics/Threshold/title)" + } + } + + BackButton:framefocus + { + image="graphics/Threshold/back_sm" + bgcolor=TitleBar.Accent + render_bg{ + } + render + { + 0="image(x0+60, y0+12, x1, y1, graphics/Threshold/titlefocus)" + } + } + + BackButton:hover + { + image="graphics/Threshold/back_sm" + bgcolor=TitleBar.Accent.Hover + render_bg{ + } + } + + BackButton:active + { + image="graphics/Threshold/back_sm" + bgcolor=TitleBar.Accent.Hover + render_bg{ + } + } + + BackButton:disabled + { + bgcolor=none + image="none" + render_bg {} + render {} + } + + grouper + { + bgcolor=none + render_bg + { + // background fill + 0="fill( x0, y0, x0 + 275, y1, clientgrouper )" + } + } + + headertextlarge + { + padding-left=10 + padding-top=5 + padding-right=10 + padding-bottom=5 + font-size=26 [$LINUX] + font-size=34 + font-family=light + textcolor=Text + font-weight=400 + //bgcolor=DarkDialogBGTransparent + minimum-width=200 + } + + zoomslider + { + inset="0 0 0 0" + textcolor=Root.Label.Text + } + + zoomslider:hover + { + inset="0 0 0 0" + textcolor=Root.Label.Hover.Text + } + + LibrarySeparator + { + textcolor=none + render_bg + { + 0="fill(x1-2, y0+13, x1, y1-13, DefaultText.Hover)" + } + } + + + LibrarySearch + { + padding-left=-4 + font-family=basefont + font-size=15 [$LINUX] + font-size=20 + textcolor=Search.Active.Text + shadowtextcolor=DefaultCursor + bgcolor=Search.Back + render_bg{ + } + render{} + + } + + LibrarySearch:empty + { + font-style=normal + textcolor=Search.Text + + } + + LibrarySearch:hover + { + textcolor=Search.Active.Text + } + + LibrarySearch:empty:hover + { + font-style=normal + textcolor=Search.Hover.Text + + } + + LibrarySearch:disabled + { + font-style=DefaultText.Disabled + textcolor="None" + + } + + LibrarySearchIcon + { + bgcolor=Search.Back + inset="15 2 0 0" + image="graphics/Threshold/icons/search" + padding-left=0 + padding-right=0 + padding-top=0 + render_bg{ + } + + } + + LibrarySearchIcon:disabled + { + image="none" + } + + MusicAddButton + { + inset="5 0 0 0" + font-size=13 [$LINUX] + font-size=15 + font-family=basefont + textcolor="labelfocus" + font-style=uppercase + image="graphics/Threshold/icons/plus" + render_bg + { + } + } + + MusicAddButton:hover + { + textcolor="white" + image="graphics/Threshold/icons/plus_hover" + render_bg + { + + } + } + + MusicPlayerIcon + { + bgcolor="none" + inset="0 0 0 0" + render_bg={} + image="graphics/Threshold/icons/music_player" + } + + MusicPlayerIcon:hover + { + bgcolor=Menu.Button.Hover + render_bg={} + image="graphics/Threshold/icons/music_player" + } + + MusicPlayerIcon:selected + { + bgcolor=Menu.Button.Active + render_bg={} + image="graphics/Threshold/icons/music_player" + } + + LibraryShow + { + padding-left=0 + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor="LabelDisabled" + font-style=uppercase + } + + NavLabel + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor="Label" + font-style=uppercase + } + + NavLabelView + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor="LabelDisabled" + font-style=uppercase + padding-left=0 + } + + NavLabelZoom + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=Root.SubLabel.Text + font-style=uppercase + padding-right=5 + } + + NavLabel2 + { + font-family=basefont + font-size=15 [$LINUX] + font-size=20 + font-weight=400 + textcolor=Root.Label.Text + font-style=uppercase + inset="0 0 6 0" + render{ + 0="image(x1-7,y0+20,x1,y1,graphics/Threshold/icons/down)" + } + } + + NavLabel2:hover + { + textcolor=Root.Label.Hover.Text + inset="0 0 6 0" + render{ + 0="image(x1-7,y0+20,x1,y1,graphics/Threshold/icons/down_hover)" + } + } + + NavLabel2:selected + { + textcolor=Root.Label.Text + inset="0 0 6 0" + render{ + 0="image(x1-7,y0+20,x1,y1,graphics/Threshold/icons/down)" + } + } + + Panel_transparent + { + bgcolor="none" + } + + + ViewDetailButton + { + bgcolor=DefaultText + inset="0 0 0 0" + padding-left=0 + padding-right=0 + render{ + 0="image(x0,y0,x1,y1,graphics/Threshold/detail_scale)" + } + render_bg{} + } + + ViewDetailButton:hover + { + bgcolor=DefaultText + render{ + 0="image(x0,y0,x1,y1,graphics/Threshold/detail_scale_hover)" + } + } + + ViewDetailButton:active + { + bgcolor=Accent + } + + ViewDetailButton:selected + { + bgcolor=Accent + } + + ViewDetailButton:selected:hover + { + bgcolor=Accent + render{ + 0="image(x0,y0,x1,y1,graphics/Threshold/detail_scale_hover)" + } + } + + ViewDetailButton:disabled + { + bgcolor=DefaultText.Disabled + } + + ViewGridButton + { + bgcolor=DefaultText + inset="1 0 0 0" + //image="graphics/icon_button_grid" + padding-left=0 + padding-right=0 + render{ + 0="image(x0,y0,x1,y1,graphics/Threshold/grid_scale)" + } + render_bg{} + } + + ViewGridButton:hover + { + bgcolor=DefaultText + render{ + 0="image(x0,y0,x1,y1,graphics/Threshold/grid_scale_hover)" + } + } + + ViewGridButton:active + { + bgcolor=Accent + } + + ViewGridButton:selected + { + bgcolor=Accent + } + + ViewGridButton:selected:hover + { + bgcolor=Accent + render{ + 0="image(x0,y0,x1,y1,graphics/Threshold/grid_scale_hover)" + } + } + + ViewGridButton:disabled + { + bgcolor=DefaultText.Disabled) + } + + ViewListButton + { + bgcolor=DefaultText + inset="1 0 0 0" + padding-left=0 + padding-right=0 + render{ + 0="image(x0,y0,x1,y1,graphics/Threshold/list_scale)" + } + } + + ViewListButton:hover + { + bgcolor=none + render{ + 0="image(x0,y0,x1,y1,graphics/Threshold/list_scale_hover)" + } + } + + ViewListButton:active + { + bgcolor=Accent + } + + ViewListButton:selected + { + bgcolor=Accent + } + + ViewListButton:selected:hover + { + bgcolor=Accent + render{ + 0="image(x0,y0,x1,y1,graphics/Threshold/list_scale_hover)" + } + } + + ViewListButton:disabled + { + bgcolor=DefaultText.Disabled + } + + WebPanelStyle + { + bgcolor=none + //bgcolor="almostblack" + textcolor=DefaultText + + render_bg + { + } + } + + BroadcastPanelMinimized + { + bgcolor=almostblack + textcolor="label" + inset="0 0 0 0" + render_bg + { + } + } + + TextEntryURL + { + inset-left=5 + bgcolor=TextBox.Back + render_bg{} + render{} + } + + CUINavButtonNew + { + textcolor="133 176 223 255" + font-weight=800 + } + + CUINavButton + { + textcolor=Root.LeftCol.Text + bgcolor="none" + font-family=basefont + font-size=15 [$LINUX] + font-size=20 + font-weight=400 + inset="57 0 0 0" + } + + CUINavButton:disabled + { + textcolor=Root.LeftCol.Disabled + bgcolor="none" + font-family=basefont + font-weight=400 + } + + CUINavButton:hover + { + textcolor=Root.LeftCol.Text + bgcolor=Menu.Hover + render_bg + { + } + } + + CUINavButton:disabled:hover + { + textcolor=Root.LeftCol.Disabled + //font-style="uppercase" + } + + CUINavButton:selected + { + textcolor=Root.LeftCol.Text + bgcolor=Accent.Hover + render_bg + { + } + } + + CUINavButton2 + { + textcolor="Labelfocus" + bgcolor="none" + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + font-style="uppercase" + padding-left=5 + padding-right=5 + padding-bottom=4 + } + + CUINavButton2:hover + { + textcolor="text" + font-style="uppercase,outerglow" + font-outerglow-color="TextGlowHoverSm" + font-outerglow-offset=1 + font-outerglow-filtersize=1 + } + + CUINavButton2:selected + { + textcolor="white" + bgcolor=none + font-style="uppercase,outerglow" + font-outerglow-color="TextGlowSelectedSm" + font-outerglow-offset=1 + font-outerglow-filtersize=1 + } + + CUINavigatorPanel + { + bgcolor="none" + } + + "CSteamRootDialog CGameFilterMenuButton" + { + inset="0 0 0 0" + padding-left=5 + + } + + "CGamesPage_Mini CGameFilterMenuButton" + { + inset="3 0 0 0" + padding-left="0" + + } + + LabelEVCert + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + textcolor="darkclientbg" + font-weight=400 + bgcolor="html.secureurl" + inset-left=4 + inset-right=4 + } + + ForwardButton + { + bgcolor=none + inset="5 0 0 0" + render_bg={} + image="graphics/Threshold/forward" + } + + ForwardButton:hover + { + bgcolor=Menu.Button.Hover + render_bg={} + image="graphics/Threshold/forward" + } + + ForwardButton:active + { + bgcolor=Accent + render_bg={} + image="graphics/Threshold/forward" + } + + ForwardButton:disabled + { + bgcolor=none + render_bg={} + image="none" + } + + ReloadButton + { + inset="5 0 0 0" + } + + StopButton + { + inset="5 0 0 0" + } + + URLStatusImage + { + bgcolor=none + inset="0 0 0 0" + render{ + } + } + + URLBarSecure + { + textcolor="html.secureurl" + } + + URLBarBrokenSecure + { + textcolor="html.insecureurl" + } + } + + colors + { + + } + + layout + { + region {name=hidden width=0 height=0} + region {name=left width=240 y=32} + region {name=right x=240 y=32} + + place { control="label_store,label_library,label_community,label_me,label_news,label_console" dir=down x=0 y=48 spacing=0 width=max height=48 region=left} + place { control="label_community_friends,label_community_profile,label_community_gamehubs,label_community_forums,label_community_workshop,label_community_greenlight,label_community_marketplace" region=hidden} + place { control="label_community_new" start="label_community" y="-40" x="15" width=0 height=0 region=hidden} + + place { control="back" x=0 y=0 height=32 width=48} + place { control="forward" region=left x=48 height=48 width=48} + + place { control="URLBar" region=right width=max height=48 } + place { control="EVCert" region=hidden} + place { control="PageLoadThrobber,refresh,stop,URLStatusImage" y=0 height=48 width=48 align=right region=left} + + place { control="subnavgroup_library" y=0 height=48 width=max margin-right=0 region=hidden region=right} + + place { control="label_search_icon" align=left height=48 region=right width=35} + place { control="library_search" start=label_search_icon height=48 dir=right region=right} + + place { control="library_filters" x=275 y=0 height=48 region=right} + + place { control="label_zoom_separator" align=right height=48 spacing=3 margin-right=150 region=right} + place { control="library_zoom" width=82 height=22 align=right y=13 margin-right=165 region=right} + place { control="label_library_view,label_library_zoom" region=hidden } + + place { control="library_music_add_button" region=hidden} + place { control="library_music_player_icon" width=48} + place { control="library_music_menu,library_music_player_icon" align=right y=0 height=48 spacing=10 margin-right=0 region=right} + + place { control="library_filters_details,library_filters_list,library_filters_grid" align=right y=0 height=48 spacing=0 margin-right=1 width=48 region=right} + + place { control=emailreminderbar start=URLBar dir=down margin-top=0 margin-right=0 width=max height=50 region=right} + place { control=phonereminderbar start=URLBar dir=down margin-top=0 margin-left=0 width=max height=80 region=right} + + // content pages - these are all pushed down by the email reminder bar (above) if it's visible + place { control=DownloadsPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=ScreenshotsPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=GamesPage_List width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=GamesPage_Details width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=GamesPage_Grid width=max height=max margin-top=46 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=WebPanel width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=BroadcastPage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=BroadcastPageMin width=300 height=168 margin-top=0 margin-left=0 margin-right=30 margin-bottom=26 dir=down align=bottom-right } + place { control=BroadcastPageMinHoriz width=300 height=168 margin-top=0 margin-left=0 margin-right=30 margin-bottom=40 dir=down align=bottom-right } + place { control=ConsolePage width=max height=max margin-top=0 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down} + + place { control=MediaPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + place { control=ToolsPage width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + + place { control=MusicPage_Details width=max height=max margin-top=48 margin-left=0 margin-right=0 margin-bottom=0 start=emailreminderbar dir=down } + } + +} + diff --git a/resource/layout/uistatuspanel.layout b/resource/layout/uistatuspanel.layout new file mode 100644 index 0000000..8c18021 --- /dev/null +++ b/resource/layout/uistatuspanel.layout @@ -0,0 +1,59 @@ +"resource/layout/uistatuspanel.layout" +{ + controls + { + StatusDownloading { controlname=URLLabel style="StatusLabel" labelText="" URLText="steam://open/downloads" } + StatusPaused{ controlname=URLLabel style="StatusLabelDim" labelText="" URLText="steam://open/downloads" } + StatusComplete { controlname=URLLabel style="StatusLabelDim" labelText="" URLText="steam://open/downloads" } + StatusProgressbar { controlname="ProgressBar" style="SlimProgressBar" barinset=0 continuous=1 } + } + + styles + { + CUIStatusPanel + { + render{ + 0="image( x0, y0, x1, y1, graphics/Threshold/downloads)" + } + } + + StatusLabelDim + { + textcolor=none + } + + StatusLabelDim:hover + { + textcolor=none + render_bg + { + 0="fill(x0, y0, x1, y1, Menu.Hover)" + } + } + + SlimProgressBar + { + textcolor=Accent + render_bg + { + 0="fill( x0, y0, x1, y1, Progress.Back )" + } + render + { + } + } + } + + layout + { + region {name=hidden width=0 height=0} + region {name=button width=48 height=48} + region {name=text width=max height=48 margin-left=48} + + place { control="StatusPaused" region=button height=max width=max} + place { control="StatusComplete" region=button height=max width=max} + + place { control="StatusDownloading" region=text margin-left=10 margin-top=12} //Also Offline mode status + place { control="StatusProgressbar" region=text width=max height=5 align=bottom margin-bottom=9 margin-right=10 margin-left=10} + } +} diff --git a/resource/layout/updatecontrollerfirmware.layout b/resource/layout/updatecontrollerfirmware.layout new file mode 100644 index 0000000..7aaa28d --- /dev/null +++ b/resource/layout/updatecontrollerfirmware.layout @@ -0,0 +1,30 @@ +"resource/layout/updatecontrollerfirmware.layout" +{ + controls + { + UpdateControllerFirmwareDialog { controlname="Frame" title="#SteamUI_UpdateControllerFirmware_Title" style="UpdateControllerFirmwareDialog" } + + ConfirmText { controlname="Label" labeltext="#SteamUI_UpdateControllerFirmware_Intro" wrap=1 } + + Cancel { controlname="Button" tabposition=1 labeltext="#SteamUI_UpdateControllerFirmware_Cancel" } + Continue { controlname="Button" tabposition=1 labeltext="#SteamUI_UpdateControllerFirmware_Continue" } + } + + styles + { + UpdateControllerFirmwareDialog + { + minimum-width = 400 + minimum-height = 220 + } + + } + + layout + { + region { name="bottom" width=max align=bottom height=40 margin=10 } + + place { control="ConfirmText" width=max y=40 margin=15 } + place { control="Cancel,Continue" region="bottom" align=right spacing=5 } + } +} diff --git a/resource/menus/friends.menu b/resource/menus/friends.menu new file mode 100644 index 0000000..576ff57 --- /dev/null +++ b/resource/menus/friends.menu @@ -0,0 +1,28 @@ +"menubar" +{ + Friends + { + text="#steam_menu_friends_view" + + AddFriend { text="#steam_menu_friends_add" shellcmd="steam://friends/add" } + Divider {} + SortByName { text="#steam_menu_friends_sortbyname" command="ToggleSortByName" checkable=1 } + ShowAvatars { text="#steam_menu_friends_showavatars" command="Avatars" checkable=1 } + OnlineUsersOnly { text="#steam_menu_friends_hideoffline" command="OnlineOnly" checkable=1 } + ShowTagged { text="#steam_menu_friends_showtagged" command="ToggleTagged" checkable=1 } + + Divider {} + + Online { text="#friends_online" shellcmd="steam://friends/status/online" checkable=1 autocheck=0 } + Away { text="#friends_away" shellcmd="steam://friends/status/away" checkable=1 autocheck=0 } + Play { text="#friends_lookingtoplay" shellcmd="steam://friends/status/play" checkable=1 autocheck=0 } + Trade { text="#friends_lookingtotrade" shellcmd="steam://friends/status/trade" checkable=1 autocheck=0 } + Busy { text="#friends_busy" shellcmd="steam://friends/status/busy" checkable=1 autocheck=0 } + Offline { text="#friends_offline" shellcmd="steam://friends/status/offline" checkable=1 autocheck=0 } + + Divider {} + + Settings { text="#steam_menu_friends_settings" shellcmd="steam://settings/friends" } + } + +} diff --git a/resource/menus/steam.menu b/resource/menus/steam.menu new file mode 100644 index 0000000..8647a6e --- /dev/null +++ b/resource/menus/steam.menu @@ -0,0 +1,48 @@ +"menubar" +{ + Steam + { + text = [!$OSX] "#steam_menu_file" + text = [$OSX] "#SteamRootAccount" + + MyAccount { text="#Steam_Account_Link" shellcmd="steam://url/StoreAccount/" } + GoOnline { text="#SteamUI_OfflineMode_GoOnline" command="goonline" } + GoOffline { text="#SteamUI_OfflineMode_GoOffline" command="gooffline" } + ChangeUser { text="#steam_menu_changeuser" command="ChangeUser" } + + Divider {} + + Friends { text="#steam_menu_friends" shellcmd="steam://open/friends" } + ViewPlayerList { text="#steam_menu_view_players" shellcmd="steam://friends/players" } + Servers { text="#steam_menu_servers" shellcmd="steam://open/servers" } + Screenshots { text="#steam_screenshots" command="screenshots" } + Downloads { text="#steam_menu_downloads" shellcmd="steam://nav/downloads" } + + Divider {} + + MiniMode { text="#steam_menu_minimode" shellcmd="steam://open/minigameslist" } + LargeMode { text="#steam_menu_largemode" shellcmd="steam://open/largegameslist" } + StartVR { text="#steam_menu_startvr" shellcmd="steam://run/250820" } + ExitVR { text="#steam_menu_exitvr" command="exitvr" } + BigPictureMode { text="#steam_menu_bigpicturemode" shellcmd="steam://open/bigpicture" } + MusicDetails { text="#steam_menu_view_music_details" shellcmd="steam://nav/music/details" } + MusicPlayer { text="#steam_menu_view_musicplayer" shellcmd="steam://open/musicplayer" } + + Divider {} + + AddShortcut { text="#Steam_menu_AddShortcut" shellcmd="steam://AddNonSteamGame" } + ActivateRetail { text="#Steam_RegisterProductCode" command="ActivateRetail" } + BackupGames { text="#steam_menu_backupgames" command="backupgames" } + RedeemWalletVoucher { text="#Steam_RedeemWalletVoucher" shellcmd="steam://url/RedeemWalletVoucher" } + SystemInfo { text="#steam_menu_systeminfo" command="SystemInfo" } + Support { text="#steam_menu_support" command="Support" } + + Divider {} + + CheckForUpdates { text="#steam_menu_checkforupdates" command="CheckForUpdates" } + Settings { text="#steam_menu_settings" command="Settings" } + Restart { text="#Steam_MustRestart_Button" command="RestartSteam" } + Exit { text="#Steam_ExitSteam" command="Exit" } + About { text="#steam_about" command="About" } + } +} diff --git a/resource/mic_meter_dead.tga b/resource/mic_meter_dead.tga new file mode 100644 index 0000000..e10aaeb Binary files /dev/null and b/resource/mic_meter_dead.tga differ diff --git a/resource/mic_meter_live.tga b/resource/mic_meter_live.tga new file mode 100644 index 0000000..ed11111 Binary files /dev/null and b/resource/mic_meter_live.tga differ diff --git a/resource/multiple_screenshots.tga b/resource/multiple_screenshots.tga new file mode 100644 index 0000000..25c801f Binary files /dev/null and b/resource/multiple_screenshots.tga differ diff --git a/resource/screenshots_none_selected.tga b/resource/screenshots_none_selected.tga new file mode 100644 index 0000000..3f58eab Binary files /dev/null and b/resource/screenshots_none_selected.tga differ diff --git a/resource/steam_logo.tga b/resource/steam_logo.tga new file mode 100644 index 0000000..ff62870 Binary files /dev/null and b/resource/steam_logo.tga differ diff --git a/resource/steam_logo_big.tga b/resource/steam_logo_big.tga new file mode 100644 index 0000000..0891326 Binary files /dev/null and b/resource/steam_logo_big.tga differ diff --git a/resource/steam_splash_fallback.tga b/resource/steam_splash_fallback.tga new file mode 100644 index 0000000..dc411eb Binary files /dev/null and b/resource/steam_splash_fallback.tga differ diff --git a/resource/steamscheme.res b/resource/steamscheme.res new file mode 100644 index 0000000..a80af36 --- /dev/null +++ b/resource/steamscheme.res @@ -0,0 +1,638 @@ +/////////////////////////////////////////////////////////// +// old-style vgui description file +// currently used only for the BaseSettings, Colors LayoutTemplates and Fonts sections +/////////////////////////////////////////////////////////// + +//The previous statement is a lie, this is used for ye olde styles (titlebar, propertysheet, etc) +Scheme +{ + //////////////////////// COLORS /////////////////////////// + // color details + // this is a list of all the colors used by the scheme + Colors + { + // base colors + "White" "255 255 255 255" + "TransparentBlack" "0 0 0 128" + "Black" "0 0 0 255" + "Blank" "1 1 1 0" + "TestColor" "255 0 0 255" + + // scheme-specific colors + "OffWhite" "216 222 211 255" + "DullGreen" "216 222 211 255" + "Maize" "196 181 80 255" + + "LightGrayBG" "121 126 121 255" + "GrayBG" "73 78 73 255" + "GrayBG2" "82 89 78 255" + + SecBG GrayBG2 + + "ClayBG" "70 70 70 255" + "ClayButtonBG" "87 88 88 255" + "ClayEnabled" "85 88 82 255" + "ClayKeyFocus" "89 92 77 255" + "ClayMouseDown" "85 85 85 255" + "ClayDisabledText" "128 134 126 255" + "ClayLightGreen" "173 181 168 255" // frame button (close X) etc + "ClayDimLightGreen" "166 172 162 255" // frame button and title without focus etc + "LightClayBG" "104 106 101 255" // property sheet interior, active tab + "LightClayButtonBG" "125 128 120 255" // buttons on property sheet interior, active tab + "DarkClayBG" "47 49 45 255" // shadow + "p_ClayMouseDown" "94 94 94 255" + "ClaySheetBottom" "92 89 87 255" + + "MaizeBG" "145 134 60 255" // background color of any selected text or menu item + + "GreenBG" "76 88 68 255" + "LightGreenBG" "90 106 80 255" // darker background color + "DarkGreenBG" "62 70 55 255" // background color of text edit panes (chat, text entries, etc.) + + "DisabledText1" "117 128 111 255" // disabled text + "DisabledText2" "40 46 34 255" // overlay color for disabled text (to give that inset look + + "NotificationBodyText" "White" + + // button state text colors + "Normal" "143 146 141 255" + "Over" "196 181 80 255" // same as Maize + "Down" "35 36 33 255" + + // background colors + + // titlebar colors + "TitleDimText" "136 145 128 255" + "TitleBG" "TestColor" + "TitleDimBG" "TestColor" + + // border colors + "BorderBright" "128 128 128 255" // the lit side of a control + "BorderDark" "40 46 34 255" // the dark/unlit side of a control + "BorderSelection" "0 0 0 255" // the additional border color for displaying the default/selected button + } + + + ///////////////////// BASE SETTINGS //////////////////////// + // + // default settings for all panels + // controls use these to determine their settings + BaseSettings + { + } + + //////////////////////// layout ///////////////////////////// + // + // describes default layouts for controls that have and control their own children + // works just like a normal settings .res file, except only positioning attributes are recognized + LayoutTemplates + { + Frame + { + frame_menu + { + visible 0 // hidden + } + + frame_title + { + xpos 0 + ypos 0 + wide max + tall 32 + AutoResize 1 + } + + frame_captiongrip + { + xpos 0 + ypos 0 + wide r46 + tall 32 + AutoResize 1 + } + + //Steam has the ability to have buttons fill in space dynamically if some are missing + //(See below) BUT NOT HERE! + frame_minimize + { + xpos r92 + ypos 0 + wide 46 + tall 32 + PinCorner 1 + } + + frame_maximize + { + xpos r138 + ypos 0 + wide 46 + tall 32 + PinCorner 1 + } + frame_close + { + xpos r46 + ypos 0 + wide 46 + tall 32 + PinCorner 1 + } + + frame_brGrip + { + xpos r8 + ypos r8 + wide 8 + tall 8 + PinCorner 3 + } + } + + PropertyDialog + { + sheet + { + xpos 0 //9 + ypos 32 + wide max + tall r52 + } + + // these buttons are still a bit special - if some of them are hidden, they shuffle + // across taking the place of other buttons to make sure there aren't gaps + ApplyButton + { + xpos r101 + ypos r42 + wide 92 + tall 32 + } + + CancelButton + { + xpos r203 + ypos r42 + wide 92 + tall 32 + } + + OKButton + { + xpos r304 + ypos r42 + wide 92 + tall 32 + } + } + + WizardPanel + { + subpanel + { + xpos 0 + ypos 32 + wide max + tall r52 + AutoResize 3 + } + + PrevButton + { + xpos r306 + ypos r42 + wide 92 + tall 32 + PinCorner 3 + } + NextButton + { + xpos r204 + ypos r42 + wide 92 + tall 32 + PinCorner 3 + } + CancelButton + { + xpos r102 + ypos r42 + wide 92 + tall 32 + PinCorner 3 + } + FinishButton + { + xpos r102 + ypos r42 + wide 92 + tall 32 + PinCorner 3 + } + } + + } + + // + //////////////////////// FONTS ///////////////////////////// + // + // !! legacy, should set fonts in the style for a control + // this is just for reference by the code + + Fonts + { + "Default" + { + "1" + { + "name" "Segoe UI" + "tall" "13" + "weight" "0" + } + } + "DefaultBold" + { + "1" + { + "name" "Segoe UI" + "tall" "15" + "weight" "1000" + } + } + "DefaultUnderline" + { + "1" + { + "name" "Segoe UI" + "tall" "13" + "weight" "800" + "underline" "1" + } + } + "DefaultSmall" + { + "1" + { + "name" "Segoe UI" + "tall" "11" + "weight" "800" + } + } + "ListSmall" + { + "1" + { + name "Segoe UI" + tall "12" + weight "0" + } + } + "DefaultVerySmall" + { + "1" + { + "name" "Segoe UI" + "tall" "12" + "weight" "800" + } + } + + "DefaultLarge" + { + "1" + { + "name" "Segoe UI" + "tall" "18" + "weight" "0" + } + } + "UiBold" + { + "1" + { + "name" "Segoe UI" + "tall" "14" + "weight" "1000" + } + } + "HeadlineLarge" + { + "1" + { + "name" "Segoe UI" + "tall" "22" + "weight" "1000" + "antialias" "1" + } + } + "UiHeadline" + { + "1" + { + "name" "Segoe UI" + "tall" "13" + "weight" "0" + } + } + "MenuLarge" + { + "1" + { + "name" "Segoe UI" + "tall" "16" + "weight" "600" + "antialias" "1" + } + } + // this is the symbol font + "Marlett" + { + "1" + { + "name" "Marlett" + "tall" "14" + "weight" "0" + "symbol" "1" + } + } + MarlettLarge + { + "1" + { + "name" "Marlett" + "tall" "16" + "weight" "0" + "symbol" "1" + } + + } + "DefaultFixed" + { + "1" + { + "name" "Lucida Console" + "name" "Monaco" [$OSX] + "tall" "10" + "weight" "0" + } + } + "ConsoleText" + { + "1" + { + "name" "Lucida Console" + "name" "Monaco" [$OSX] + "tall" "10" + "weight" "500" + } + } + FriendsSmall + { + "1" + { + "name" "Segoe UI" + "tall" "12" + "weight" "800" + } + } + FriendsMedium + { + "1" + { + "name" "Segoe UI" + "tall" "13" + "weight" "800" + } + } + + FriendsVerySmall + { + "1" + { + "name" "Segoe UI" + "tall" "12" + "weight" "0" + } + } + FriendsVerySmallUnderline + { + "1" + { + "name" "Segoe UI" + "tall" "12" + "weight" "0" + "underline" "1" + } + } + OverlayTaskbarFont + { + "1" + { + "name" "Segoe UI" + "tall" "16" + "weight" "1000" + } + } + } + + + // + //////////////////// APPEARANCES ////////////////////////////// + // + // !! currently unused, just left for reference + Appearances + { + + p_ListGiftSendInteriorBorder + { + inset "0 0 0 0" + render_bg + { + "1" "image_tiled( x0, y0, x1, y0 + 5, graphics/shadowTop )" + "2" "fill( x0, y0 + 5, x1, y1, GrayBG )" // body + "3" "image( x1-111, y1 - 132, x1-5, y1-24, graphics/gift_wizard_friends )" + } + } + + p_ListGiftSendScrollInteriorBorder + { + inset "0 0 0 0" + render_bg + { + "1" "image_tiled( x0, y0, x1, y0 + 5, graphics/shadowTop )" + "2" "fill( x0, y0 + 5, x1, y1, GrayBG )" // body + "3" "image( x1-111, y1 - 132, x1-5, y1-24, graphics/gift_wizard_friends )" + } + } + + + ChatInputBorder // for text entry fields and drop-down controls and  boxes in Chat + { + inset "4 0 4 0" + render_bg + { + "0" "fill( x0 + 1, y0 + 1, x1 - 1, y1 - 1, DarkGray )" + "1" "image( x1 - 10, y0 + 10, x1, y1 - 10, graphics/btnStdRight )" // right + "2" "image( x0, y0 + 10, x0 + 10, y1 - 10, graphics/btnStdLeft )" // left + "3" "image( x0 + 10, y0, x1 - 10, y0 + 10, graphics/btnStdTop )" // top + "4" "image( x0 + 10, y1 - 10, x1 - 10, y1, graphics/btnStdBottom )" // bottom + "5" "image( x1 - 10, y0, x1, y0 + 10, graphics/btnStdTopRight )" // topright + "6" "image( x0, y0, x0 + 10, y0 + 10, graphics/btnStdTopLeft )" // topleft + "7" "image( x1 - 10, y1 - 10, x1, y1, graphics/btnStdBottomRight )" // bottomright + "8" "image( x0, y1 - 10, x0 + 10, y1, graphics/btnStdBottomLeft )" // bottomleft + } + } + ListPanelSlantBGWithBorder + { + inset "1 1 1 1" + render + { + "2" "image( x1 - 3, y0, x1, y0 + 3, graphics/tabSquareTopRight )" // topright + "3" "image( x0 , y0, x0 + 3, y0 + 3, graphics/tabSquareTopLeft )" // topleft + "4" "image( x1 - 3, y1 - 3, x1, y1, graphics/tabStdBottomRight )" // bottomright + "5" "image( x0, y1 - 3, x0 + 3, y1, graphics/tabStdBottomLeft )" // bottomleft + "6" "image( x0 + 3, y0, x1 - 3, y0 + 1, graphics/tabStdTop )" // top + "7" "image( x0, y0 + 3, x0 + 1, y1 - 3, graphics/tabStdLeft )" // left + "8" "image( x1 - 1, y0 + 3, x1, y1 - 3, graphics/tabStdRight )" // right + "9" "image( x0 + 3, y1 - 1, x1 - 3, y1, graphics/tabStdBottom )" // bottom + } + render_bg + { + "1" "image_tiled( x0 + 1, y0 + 1, x1 - 1, y0 + 90, graphics/FriendsListSlantBG )" + "2" "fill( x0 + 1, y0 + 90, x1 - 1, y1 - 1, DarkGray )" // body + } + } + ListPanelSlantBGNoBorder + { + inset "0 0 0 0" + render_bg + { + "1" "image_tiled( x0, y0, x1, y0 + 90, graphics/FriendsListSlantBG )" + "2" "fill( x0, y0 + 90, x1, y1, DarkGray )" // body + } + } + ChatFriendTitlePanelDefault + { + render_bg + { + "1" "image( x0, y0 + 2, x0 + 2, y0 + 50, graphics/FriendsPanelLeftBG )" // left + "2" "fill( x0 + 2, y0 + 2, x1 - 2, y0 + 50, Friends.PanelDefault )" // body + "3" "image( x1 - 2, y0 + 2, x1, y0 + 50, graphics/FriendsPanelRightBG )" //right + } + } + + + VoiceChatOffBG + { + inset "1 1 1 1" + render + { + "2" "image( x1 - 3, y0, x1, y0 + 3, graphics/tabStdTopRight )" // topright + "3" "image( x0 , y0, x0 + 3, y0 + 3, graphics/tabStdTopLeft )" // topleft + "4" "image( x1 - 3, y1 - 3, x1, y1, graphics/tabStdBottomRight )" // bottomright + "5" "image( x0, y1 - 3, x0 + 3, y1, graphics/tabStdBottomLeft )" // bottomleft + "6" "image( x0 + 3, y0, x1 - 3, y0 + 1, graphics/tabStdTop )" // top + "7" "image( x0, y0 + 3, x0 + 1, y1 - 3, graphics/tabStdLeft )" // left + "8" "image( x1 - 1, y0 + 3, x1, y1 - 3, graphics/tabStdRight )" // right + "9" "image( x0 + 3, y1 - 1, x1 - 3, y1, graphics/tabStdBottom )" // bottom + } + render_bg + { + "0" "fill( x0 + 1, y0 + 1, x1 - 1, y1 - 1, ClayBG )" + } + } + VoiceChatOnBG + { + inset "1 1 1 1" + render + { + "2" "image( x1 - 3, y0, x1, y0 + 3, graphics/tabStdTopRight )" // topright + "3" "image( x0 , y0, x0 + 3, y0 + 3, graphics/tabStdTopLeft )" // topleft + "4" "image( x1 - 3, y1 - 3, x1, y1, graphics/tabStdBottomRight )" // bottomright + "5" "image( x0, y1 - 3, x0 + 3, y1, graphics/tabStdBottomLeft )" // bottomleft + "6" "image( x0 + 3, y0, x1 - 3, y0 + 1, graphics/tabStdTop )" // top + "7" "image( x0, y0 + 3, x0 + 1, y1 - 3, graphics/tabStdLeft )" // left + "8" "image( x1 - 1, y0 + 3, x1, y1 - 3, graphics/tabStdRight )" // right + "9" "image( x0 + 3, y1 - 1, x1 - 3, y1, graphics/tabStdBottom )" // bottom + } + render_bg + { + "0" "gradient( x0 + 1, y0 + 1, x1 - 1, y1 - 1, ChatGradientTop, ChatGradientBottom )" + } + } + + ChatInviteBG + { + inset "1 1 1 1" + render + { + "2" "image( x1 - 3, y0, x1, y0 + 3, graphics/tabStdTopRight )" // topright + "3" "image( x0 , y0, x0 + 3, y0 + 3, graphics/tabStdTopLeft )" // topleft + "4" "image( x1 - 3, y1 - 3, x1, y1, graphics/tabSquareBottomRight )" // bottomright + "5" "image( x0, y1 - 3, x0 + 3, y1, graphics/tabSquareBottomLeft )" // bottomleft + "6" "image( x0 + 3, y0, x1 - 3, y0 + 1, graphics/tabStdTop )" // top + "7" "image( x0, y0 + 3, x0 + 1, y1 - 3, graphics/tabStdLeft )" // left + "8" "image( x1 - 1, y0 + 3, x1, y1 - 3, graphics/tabStdRight )" // right + "9" "image( x0 + 3, y1 - 1, x1 - 3, y1, graphics/tabStdBottom )" // bottom + } + render_bg + { + "0" "fill( x0 + 1, y0 + 1, x1 - 1, y1 - 1, DarkGray )" + } + } + + FriendPanelDefault + { + render_bg + { + "1" "image( x0, y0 + 2, x0 + 2, y0 + 50, graphics/FriendsPanelLeftBG )" // left + "2" "fill( x0 + 2, y0 + 2, x1, y0 + 50, Friends.PanelDefault )" // body + } + } + + FriendPanelMouseOver + { + render_bg + { + "1" "image( x0, y0 + 2, x0 + 2, y0 + 50, graphics/FriendsPanelLeftBG_Over )" // left + "2" "fill( x0 + 2, y0 + 2, x1, y1, Friends.PanelOver )" // body + } + } + + FriendPanelSelected + { + render_bg + { + "1" "image( x0, y0 + 2, x0 + 2, y0 + 50, graphics/FriendsPanelLeftBG_Down )" // left + "2" "fill( x0 + 2, y0 + 2, x1, y1, Friends.PanelSelected )" // body + } + } + + FriendPanelAffordanceMouseover + { + render_bg + { + "1" "fill( x0 + 3, y0 + 1, x1 - 2, y1 - 2, DarkGray )" //body + "1" "fill( x0 + 2, y0 + 2, x1 - 1, y1 - 3, DarkGray )" //body + } + } + FriendPanelAffordanceMousedown + { + render_bg + { + "1" "fill( x0 + 3, y0 + 2, x1 - 2, y1 - 2, DarkGray )" //body + "1" "fill( x0 + 2, y0 + 3, x1 - 1, y1 - 3, DarkGray )" //body + } + } + FriendPanelAffordanceListMouseover + { + render_bg + { + "1" "fill( x0 + 1, y0, x1 - 1, y1, Friends.PanelDefault )" //body + "1" "fill( x0, y0 + 1, x1, y1 - 1, Friends.PanelDefault )" //body + } + } + + } +} diff --git a/resource/styles/colors/_ColorGuide.txt b/resource/styles/colors/_ColorGuide.txt new file mode 100644 index 0000000..9eb8eb5 --- /dev/null +++ b/resource/styles/colors/_ColorGuide.txt @@ -0,0 +1,10 @@ +The default Accent options, "Accent", "Accent.Hover", and "Accent.Selected" are all relative shades of the main Accent color, corresponding to button states. "AccentInv" is an inverted color to the Accent, currently only used for the Downloads section Disk Usage graph. + +The UWP Documentation states that text on Accent colored backgrounds needs to be either white or black, depending on the Accent color. The "Accent.Text" color is responsible for all text on accent backgrounds. Note: Images on Accent colored elements are currently all white, so black text is not 100% supported. + +"TitleBar", "TitleBar.Focus", "TitleBar.Accent", and "TitleBar.Accent.Hover" are all specific colors for the Accented Title Bar option. All are likely just previous colors, but these are seperate entities in case you want to specify a different color. +These options (with the exception of "TitleBar.Accent" and "TitleBar.Accent.Hover") are overwritten if the Accented Title Bar option is disabled. + +"Frame.Outline" and "Frame.Outline.Focus" are colors for the optional Window Outlines feature. Note that "Frame.Outline.Focus" is actually the color the border will be when the window is OUT of focus. + +"Notification.Back" is the background color of notifications. Be cautious changing this, as it could make icons/text difficult to read. \ No newline at end of file diff --git a/resource/styles/colors/cobalt.styles b/resource/styles/colors/cobalt.styles new file mode 100644 index 0000000..fc4a2a0 --- /dev/null +++ b/resource/styles/colors/cobalt.styles @@ -0,0 +1,23 @@ +"cobalt.styles" +{ + colors + { + Accent="0 120 215 255" + Accent.Hover="0 90 158 255" + Accent.Selected="25 106 167 255" + Accent.Text="255 255 255 255" //Color of text on Accent color, usually white or black + + AccentInv="255 185 0 255" //Complimentary color for disk usage + + //These are for the Colored Titlebar Option + TitleBar=Accent //TitleBar background + TitleBar.Focus="8 8 8 255" //For loss of focus + TitleBar.Accent=Accent.Hover //Colored buttons on/close to Titlebar + TitleBar.Accent.Hover=Accent.Selected //Hover states for colored buttons + Notification.Back="31 31 31 255" + + //These are for the Window Border Option + Frame.Outline=Accent + Frame.Outline.Focus="125 125 125 255" + } +} \ No newline at end of file diff --git a/resource/styles/colors/cyan.styles b/resource/styles/colors/cyan.styles new file mode 100644 index 0000000..5414031 --- /dev/null +++ b/resource/styles/colors/cyan.styles @@ -0,0 +1,23 @@ +"cyan.styles" +{ + colors + { + Accent="0 153 188 255" + Accent.Hover="0 107 131 255" + Accent.Selected="25 121 143 255" + Accent.Text="255 255 255 255" //Color of text on Accent color, usually white or black + + AccentInv="178 82 0 255" //Complimentary color for disk usage + + //These are for the Colored Titlebar Option + TitleBar=Accent //TitleBar background + TitleBar.Focus="8 8 8 255" //For loss of focus + TitleBar.Accent=Accent.Hover //Colored buttons on/close to Titlebar + TitleBar.Accent.Hover=Accent.Selected //Hover states for colored buttons + Notification.Back="31 31 31 255" + + //These are for the Window Border Option + Frame.Outline=Accent + Frame.Outline.Focus="125 125 125 255" + } +} \ No newline at end of file diff --git a/resource/styles/colors/gray.styles b/resource/styles/colors/gray.styles new file mode 100644 index 0000000..4d42db6 --- /dev/null +++ b/resource/styles/colors/gray.styles @@ -0,0 +1,23 @@ +"gray.styles" +{ + colors + { + Accent="102 97 96 255" + Accent.Hover="122 117 116 255" + Accent.Selected="135 130 129 255" + Accent.Text="255 255 255 255" //Color of text on Accent color, usually white or black + + AccentInv="255 255 255 255" //Complimentary color for disk usage + + //These are for the Colored Titlebar Option + TitleBar=Accent //TitleBar background + TitleBar.Focus="8 8 8 255" //For loss of focus + TitleBar.Accent=Accent.Hover //Colored buttons on/close to Titlebar + TitleBar.Accent.Hover=Accent.Selected //Hover states for colored buttons + Notification.Back="31 31 31 255" + + //These are for the Window Border Option + Frame.Outline=Accent + Frame.Outline.Focus="125 125 125 255" + } +} \ No newline at end of file diff --git a/resource/styles/colors/green.styles b/resource/styles/colors/green.styles new file mode 100644 index 0000000..38c5e70 --- /dev/null +++ b/resource/styles/colors/green.styles @@ -0,0 +1,23 @@ +"green.styles" +{ + colors + { + Accent="16 137 62 255" + Accent.Hover="11 92 42 255" + Accent.Selected="34 107 62 255" + Accent.Text="255 255 255 255" //Color of text on Accent color, usually white or black + + AccentInv="232 46 213 255" //Complimentary color for disk usage + + //These are for the Colored Titlebar Option + TitleBar=Accent //TitleBar background + TitleBar.Focus="8 8 8 255" //For loss of focus + TitleBar.Accent=Accent.Hover //Colored buttons on/close to Titlebar + TitleBar.Accent.Hover=Accent.Selected //Hover states for colored buttons + Notification.Back="31 31 31 255" + + //These are for the Window Border Option + Frame.Outline=Accent + Frame.Outline.Focus="125 125 125 255" + } +} \ No newline at end of file diff --git a/resource/styles/colors/magenta.styles b/resource/styles/colors/magenta.styles new file mode 100644 index 0000000..c3bc6e1 --- /dev/null +++ b/resource/styles/colors/magenta.styles @@ -0,0 +1,23 @@ +"magenta.styles" +{ + colors + { + Accent="234 0 94 255" + Accent.Hover="153 0 94 255" + Accent.Selected="191 0 117 255" + Accent.Text="255 255 255 255" //Color of text on Accent color, usually white or black + + AccentInv="0 255 255 255" //Complimentary color for disk usage + + //These are for the Colored Titlebar Option + TitleBar=Accent //TitleBar background + TitleBar.Focus="8 8 8 255" //For loss of focus + TitleBar.Accent=Accent.Hover //Colored buttons on/close to Titlebar + TitleBar.Accent.Hover=Accent.Selected //Hover states for colored buttons + Notification.Back="31 31 31 255" + + //These are for the Window Border Option + Frame.Outline=Accent + Frame.Outline.Focus="125 125 125 255" + } +} \ No newline at end of file diff --git a/resource/styles/colors/no_outline.styles b/resource/styles/colors/no_outline.styles new file mode 100644 index 0000000..03879cb --- /dev/null +++ b/resource/styles/colors/no_outline.styles @@ -0,0 +1,8 @@ +"titlebar_black.styles" +{ + colors + { + Frame.Outline="0 0 0 0" + Frame.Outline.Focus="0 0 0 0" + } +} \ No newline at end of file diff --git a/resource/styles/colors/orange.styles b/resource/styles/colors/orange.styles new file mode 100644 index 0000000..a06d4ae --- /dev/null +++ b/resource/styles/colors/orange.styles @@ -0,0 +1,23 @@ +"orange.styles" +{ + colors + { + Accent="255 185 0 255" + Accent.Hover="186 137 0 255" + Accent.Selected="192 148 25 255" + Accent.Text="255 255 255 255" //Color of text on Accent color, usually white or black + + AccentInv="0 43 178 255" //Complimentary color for disk usage + + //These are for the Colored Titlebar Option + TitleBar=Accent //TitleBar background + TitleBar.Focus="8 8 8 255" //For loss of focus + TitleBar.Accent=Accent.Hover //Colored buttons on/close to Titlebar + TitleBar.Accent.Hover=Accent.Selected //Hover states for colored buttons + Notification.Back="31 31 31 255" + + //These are for the Window Border Option + Frame.Outline=Accent + Frame.Outline.Focus="125 125 125 255" + } +} \ No newline at end of file diff --git a/resource/styles/colors/purple.styles b/resource/styles/colors/purple.styles new file mode 100644 index 0000000..1dd8475 --- /dev/null +++ b/resource/styles/colors/purple.styles @@ -0,0 +1,23 @@ +"cobalt.styles" +{ + colors + { + Accent="136 23 152 255" + Accent.Hover="98 17 110 255" + Accent.Selected="113 40 124 255" + Accent.Text="225 255 255 255" //Color of text on Accent color, usually white or black + + AccentInv="255 185 0 255" //Complimentary color for disk usage + + //These are for the Colored Titlebar Option + TitleBar=Accent //TitleBar background + TitleBar.Focus="8 8 8 255" //For loss of focus + TitleBar.Accent=Accent.Hover //Colored buttons on/close to Titlebar + TitleBar.Accent.Hover=Accent.Selected //Hover states for colored buttons + Notification.Back="31 31 31 255" + + //These are for the Window Border Option + Frame.Outline=Accent + Frame.Outline.Focus="125 125 125 255" + } +} \ No newline at end of file diff --git a/resource/styles/colors/red.styles b/resource/styles/colors/red.styles new file mode 100644 index 0000000..cba0515 --- /dev/null +++ b/resource/styles/colors/red.styles @@ -0,0 +1,23 @@ +"red.styles" +{ + colors + { + Accent="232 17 35 255" + Accent.Hover="153 0 13 255" + Accent.Selected="163 25 36 255" + Accent.Text="255 255 255 255" //Color of text on Accent color, usually white or black + + AccentInv="20 173 208 255" //Complimentary color for disk usage + + //These are for the Colored Titlebar Option + TitleBar=Accent //TitleBar background + TitleBar.Focus="8 8 8 255" //For loss of focus + TitleBar.Accent=Accent.Hover //Colored buttons on/close to Titlebar + TitleBar.Accent.Hover=Accent.Selected //Hover states for colored buttons + Notification.Back="31 31 31 255" + + //These are for the Window Border Option + Frame.Outline=Accent + Frame.Outline.Focus="125 125 125 255" + } +} \ No newline at end of file diff --git a/resource/styles/colors/titlebar_black.styles b/resource/styles/colors/titlebar_black.styles new file mode 100644 index 0000000..7f5867f --- /dev/null +++ b/resource/styles/colors/titlebar_black.styles @@ -0,0 +1,9 @@ +"titlebar_black.styles" +{ + colors + { + TitleBar="8 8 8 255" + TitleBar.Focus="8 8 8 255" //For loss of focus + Notification.Back="31 31 31 255" //fun fact: on windows 10 this is slightly transparent, so the actual color varies! + } +} \ No newline at end of file diff --git a/resource/styles/gameoverlay.styles b/resource/styles/gameoverlay.styles new file mode 100644 index 0000000..5c7e078 --- /dev/null +++ b/resource/styles/gameoverlay.styles @@ -0,0 +1,39 @@ +gameoverlay.styles +{ + include "resource/styles/steam.styles" + + colors + { + mostly_black "41 41 41 240" + semi_black "20 20 20 128" + semi_gray "20 20 20 220" + + Overlay.Header=Root.LeftCol + Overlay.Back=Root.RightCol + Overlay.Footer=Root.LeftCol + Overlay.Item.Hover="96 96 96 96" + Overlay.Sidebar="0 0 0 96" + Overlay.Sidebar.Hover="96 96 96 96" + Overlay.Div="96 96 96 255" + + Notifications.PanelPosition "BottomRight" // osx has toast in the upper right, but in-overlay should not. + } + + styles + { + detailsbox + { + render_bg + { + 0="fill(x0+10, y1-1, x1-10, y1, Overlay.Div)" + } + } + + detailsboxtitle + { + font-size=28 + font-family=semilight + textcolor=Accent + } + } +} \ No newline at end of file diff --git a/resource/styles/jackmyth.styles b/resource/styles/jackmyth.styles new file mode 100644 index 0000000..519204a --- /dev/null +++ b/resource/styles/jackmyth.styles @@ -0,0 +1,302 @@ +jackmyth.styles +{ + colors + { + JackMyth.Translucent = "0 0 0 0" + JackMyth.LittleTranslucent = "0 0 0 20" + JackMyth.HalfTranslucent = "0 0 0 100" + JackMyth.HalfOpacity = "0 0 0 150" + JackMyth.Opacity = "0 0 0 200" + JackMyth.LittleTranslucent180="0 0 0 180" + JackMyth.LittleTranslucentWhite = "255 255 255 20" + JackMyth.HalfTranslucentWhite = "255 255 255 100" + JackMyth.HalfOpacityWhite = "255 255 255 150" + JackMyth.OpacityWhite = "255 255 255 200" + JackMyth.LittleTranslucent180White="255 255 255 180" + } + styles + { + //BackUp + CBackupWizard + { + minimum-height=455 + render_bg + { + 0="image_scale(x0,y0,x1,y1,graphics\JackMyth\BackupWizard)" + } + } + CBackupStartPage + { + bgcolor=JackMyth.Translucent + render_bg{} + } + CBackupSelectGamesPage + { + bgcolor=JackMyth.Translucent + render_bg{} + } + CBackupSelectDirectoryPage + { + bgcolor=JackMyth.Translucent + render_bg{} + } + CBackupSelectOptionsPage + { + render_bg + { + 0=gradient(x0,y0,x1,y1,none,JackMyth.HalfTranslucent) + } + } + CBackupCopyFilesPage + { + render_bg + { + 0=gradient(x0,y0,x1,y1,none,JackMyth.HalfTranslucent) + } + } + CBackupCompletionPage + { + render_bg + { + 0=gradient(x0,y0,x1,y1,none,JackMyth.HalfTranslucent) + } + } + CBackupRestoreGamesPage + { + render_bg + { + 0=gradient(x0,y0,x1,y1,none,JackMyth.HalfTranslucent) + } + } + + //InstallAppWizard + CInstallAppWizard + { + minimum-height=592 + render_bg + { + 0="image_scale(x0,y0,x1,y1,graphics\JackMyth\InstallAppWizard)" + } + } + "CInstallAppWizard ImagePanel" + { + image=none + render + { + 0="fill(x0,y0,x1,y1,JackMyth.Translucent)" + } + } + CInstallSubChooseApps + { + render_bg + { + 0=gradient(x0,y0,x1,y1,none,JackMyth.HalfTranslucent) + } + } + CInstallAppsSubPanel + { + render_bg + { + 0=gradient(x0,y0,x1,y1,none,JackMyth.HalfTranslucent) + } + } + CInstallSubComplete + { + render_bg + { + 0=gradient(x0,y0,x1,y1,none,JackMyth.HalfTranslucent) + } + } + + //CRegisterCDKeyWizard + CRegisterCDKeyWizard + { + render_bg + { + 0="image_scale(x0,y0,x1,y1,graphics\JackMyth\CDKeyWizard)" + } + } + CRegisterSubIntro + { + render_bg + { + 0=gradient(x0,y0,x1,y1,JackMyth.HalfOpacity,none) + } + } + CSSASubPanel + { + render_bg + { + 0=gradient(x0,y0,x1,y1,none,JackMyth.HalfOpacity) + } + } + "CSSASubPanel HTML" + { + bgcolor=JackMyth.HalfTranslucent + } + CRegisterSubEnterCDKey + { + render_bg + { + 0=fill(x0,y0,x1,y1,JackMyth.HalfTranslucent) + } + } + CRegisterSubReceipt + { + render_bg + { + 0=gradient(x0,y0,x1,y1,JackMyth.HalfOpacity,none) + } + } + + "CRegisterSubReceipt ListPanelInterior" + { + render_bg + { + 0=gradient(x0,y0,x1,y1,JackMyth.HalfOpacity,none) + } + } + + RegisterSubReceipt + { + render_bg + { + 0=gradient(x0,y0,x1,y1,JackMyth.HalfOpacity,none) + } + } + + //CSystemInfoDialog + CSystemInfoDialog + { + minimum-height=630 + minimum-width=440 + render_bg + { + 0="image_scale(x0,y0,x1,y1,graphics\JackMyth\SystemInfo)" + } + } + CSurveySummarizeData + { + render_bg + { + 0=gradient(x0,y0,x1,y1,JackMyth.HalfOpacity,none) + } + } + //SettingsDialog + CAccountPage + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + CSettingsSubFriends + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + CSubPanelOptionsFamily + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + CSettingsSubInGame + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + CSettingsSubStreaming + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + CSubPanelOptionsInterface + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + CSubPanelOptionsDownloads + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + CSubPanelOptionsCloud + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + CSettingsSubVoice + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + CSettingsSubMusic + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + CSettingsSubBroadcast + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + CSettingsSubBrowser + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + CSettingsSubController + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + CSubPanelShaderCache + { + render_bg + { + 0=fill(x0,y0,x1,y1,none) + } + } + + //Friend + CFriendsListSubPanel + { + render_bg + { + 0="fill(x0,y0,x1,y1,none)" + } + } + CFriendsFriendsPage + { + render_bg + { + 0="fill(x0,y0,x1,y1,JackMyth.HalfTranslucent)" + } + } + } + +} \ No newline at end of file diff --git a/resource/styles/legacycolors.styles b/resource/styles/legacycolors.styles new file mode 100644 index 0000000..dd99946 --- /dev/null +++ b/resource/styles/legacycolors.styles @@ -0,0 +1,254 @@ +"legacycolors.styles" +{ + colors + { + //Steam Colors + black="0 0 0 255" + dark="35 35 35 255" + almostBlack="22 22 22 255" + almostBlackTrans="22 22 22 204" + white="255 255 255 255" + grey="153 153 153 255" + none="0 0 0 0" + yellow="255 255 0 255" + offwhite="164 164 164 255" + dullgreen="216 222 211 255" + maize="203 191 87 255" + red="255 51 51 255" + darkblue="39 100 130 255" + blue="54 143 179 255" + darkred="128 0 0 255" + darkpurple="64 0 64 255" + + dark_blue "2 15 23 255" + med_blue "13 52 82 255" + bg_blue "10 36 56 255" + + // control colors + bordercolor="102 102 102 255" + darkcorner="73 73 73 255" + buttontext=Text + buttontextactive=Text + + // new control colors + ButtonFace="102 102 102 200" + ButtonFace2="80 80 80 255" // for use in main client list panel column header, some button states + ButtonFace3="92 92 92 255" // button cornering pixels + ButtonFaceDisabled="102 102 102 15" + ButtonFaceHover="99 99 99 240" /// hover! + ButtonFaceActive="102 102 102 240" // not sure what this state is... + ButtonFaceFocus="105 105 105 240" // keyboard focus + ButtonFaceActiveFocus="105 105 105 255" // this is the default choice + BlueBorder="33 33 33 255" + ButtonBorder="89 89 89 255" + ButtonBorderSubtle="79 79 79 255" + ButtonBorderPage="124 124 124 255" + ButtonBorderDisabled="75 75 75 255" + ButtonBorderDisabled2="65 65 65 255" //cornering pixels + ButtonBorderActive="125 125 125 255" + ButtonBorderFocus="137 137 137 255" + ButtonBorderFocusSubtle="122 122 122 255" + + Text="207 207 207 255" + Text2="180 180 180 255" + TextDisabled="99 99 99 255" + TextHover="226 226 226 255" + TextSelected="239 239 239 255" + TextentrySelected="237 237 237 235" // color of any selected text + TextSelectedBG="37 89 148 255" // background color of any selected text + TextGlowHover="124 124 124 255" + TextGlowSelected="169 169 169 255" + TextGlowHoverSm="123 123 123 255" + TextGlowSelectedSm="142 142 142 255" + + NavLabel="153 153 153 255" + Label="168 168 168 255" + Label2="111 111 111 255" + LabelDisabled="115 115 115 255" + LabelFocus="196 196 196 255" + + SuperNav="white" + SuperNavHover="white" + + ScrollGlyph="198 198 198 255" // the color of the scroll bar arrows + ScrollGlyphDisabled="74 74 74 255" + ScrollGlyphFocus="242 242 242 255" + + ScrollBG="54 54 54 255" // the color of the scroll bar gutter + + HeaderClient="53 53 53 255" // the color of the List box header in the main client window + HeaderDialog="92 92 92 255" // the color of the list box header in other windows + + //TitleBar="26 26 26 80" + //TitleBarFocus="14 31 56 80" + MenuBG="68 68 68 255" + + Focus="25 55 84 255" // background color of any selected menu or list item + Focus2="21 70 107 255" // background color of view buttons and anything else in focus that needs more 'punch' + Focus3="82 82 82 255" // background color of highlighted friends + Focus4="67 158 191 255" // bright cyan used in progress bars + + FocusGrid="85 117 161 240" // background color of any grid item + Highlight="16 53 82 120" // same as focus + + Highlight1="92 193 229 255" // installing hover color + Highlight2="76 159 191 255" // installing color + Highlight3="173 69 71 255" // red for errors, blocked, etc. + Highlight5="24 53 82 255" // blue + Highlight5a="30 66 102 255" // lighter version of highlight5 + Highlight5b="17 42 86 255" // as highlight5 but darker, for non-focused window borders + + BackgroundStartSubtle="20 20 20 155" + BackgroundStartSubtle="31 31 31 45" [$OSX] + BackgroundStartSubtlest="22 22 22 100" + BackgroundStart="22 22 22 180" + BackgroundStartOpaque="35 35 35 255" + + ClientBG="30 30 30 255" + ClientBGTop="25 32 46 255" + ClientGrouper="41 42 46 255" + DialogBG="38 38 38 255" + DialogBGFade1="56 56 56 255" + DialogBGFade2="56 56 56 0" + + DarkClientBG="35 35 35 255" + DarkDialogBG="38 38 38 255" + DarkClientBGTransparent="35 35 35 19" + DarkDialogBGTransparent="55 55 55 170" + + GameDetailsBlueTransparent="71 148 179 60" + GameDetailsGreenTransparent="71 148 179 160" + GameDetailsRedTransparent="71 148 179 160" + + GameDetailsBlue="71 148 179 255" + GameDetailsGreen="71 148 179 255" + GameDetailsRed="71 148 179 255" + + PropertySheetBG="58 58 58 255" + InteriorColor="52 52 52 255" + + DialogBorder="117 117 117 255" // border color around any dialog + + FillBG1="62 62 62 255" //gradient colors + FillBG2="69 69 69 255" + + MenuBG1="75 75 75 255" //gradient colors + MenuBG2="54 54 54 255" + + Divider="86 86 86 255" + SuperDivider="71 71 71 255" + DarkImageBorder="48 48 48 255" + DarkImageOverlay="0 0 0 80" + + inbox_active "158 194 29 255" + inbox_active2 "155 199 9 255" + inbox_active4 "122 145 71 255" + inbox_active5 "85 102 47 255" + + + inbox_inactive "38 38 37 255" + inbox_inactive2 "142 194 12 255" + inbox_inactive4 "122 145 71 255" + inbox_inactive5 "74 102 29" + + parental_lock_active1 "138 175 6 255" + parental_lock_active2 "49 49 49 255" + parental_lock_active4 "122 145 71 255" + parental_lock_active5 "85 102 47 255" + green5 "126 166 75 255" + green6 "92 126 16 255" + green7 "62 90 22 255" + green8 "38 48 2 255" + + + launch0 "119 215 250 255" + launch1 "83 172 204 255" + launch2 "54 125 153 255" + + + parental_lock_inactive1 "154 49 48 255" + parental_lock_inactive2 "189 79 79 255" + parental_lock_inactive3 "215 90 90 255" + parental_lock_inactive4 "146 72 71 255" + parental_lock_inactive5 "103 48 47 255" + red6="38 1 1 255" + + // colors pulled from steamscheme.res + "ClayBG" "70 70 70 255" + "ClayButtonBG" "85 85 85 255" + "ClayEnabled" "88 88 88 255" + "ClayKeyFocus" "92 92 92 255" + "ClayMouseDown" "85 85 85 255" + "ClayDisabledText" "134 134 134 255" + "ClayLightGreen" "173 181 168 255" // frame button (close X) etc + "ClayDimLightGreen" "166 172 162 255" // frame button and title without focus etc + "LightClayBG" "104 106 101 255" // property sheet interior, active tab + "LightClayButtonBG" "125 128 120 255" // buttons on property sheet interior, active tab + "DarkClayBG" "47 49 45 255" // shadow + "p_ClayMouseDown" "94 94 94 255" + "ClaySheetBottom" "92 90 87 255" + "MaizeBG" "145 134 60 255" // background color of any selected text or menu item + "GreenBG" "76 88 68 255" + "LightGreenBG" "90 106 80 255" // darker background color + "DarkGreenBG" "62 70 55 255" // background color of text edit panes (chat, text Entries, etc.) + "LightGrayBG" "121 126 121 255" + "GrayBG" "73 73 73 255" + "GrayBG2" "37 37 37 255" + "TempGradientTop" "52 52 52 255" + + DragDrop.DragFrame "255 255 255 192" + DragDrop.DropFrame "150 255 150 255" + + ListPanel.TextColor Text + ListPanel.BgColor none + ListPanel.SelectedTextColor TextentrySelected + ListPanel.SelectedBgColor TextSelectedBG + ListPanel.SelectedOutOfFocusBgColor ClientBG + ListPanel.DisabledTextColor TextDisabled + ListPanel.DisabledSelectedTextColor ClientBG + ListPanel.EmptyListInfoTextColor Label + + WizardPanel.HeaderBGColor HeaderDialog + + PropertySheet.FlashTabColor "76 159 191 255" + + html.secureurl "126 166 75 255" + html.insecureurl "173 69 72 255" + + TextEntry.IMEBGColor "225 225 225 255" + TextEntry.IMEFGColor "black" + + + // Friends List colors + Friends.InGameColor "144 186 60 255" + Friends.InGameHoverColor "182 235 76 255" + Friends.OnlineColor "84 165 196 255" + Friends.OnlineHoverColor "104 203 242 255" + Friends.OfflineColor "127 127 127 255" + Friends.OfflineHoverColor "185 185 185 255" + Friends.PanelDefault "Label" + Friends.PanelOver "Text" + Friends.PanelSelected "ClientBG" + Friends.SectionHeader "Label" + Friends.NoAvatarOver "Text" + Friends.IgnoredColor "White" + Friends.ListHeaderFadeOut "54 54 54 0" + Friends.GoldenColor "255 255 99 255" +// Friends.GoldenColor "228 202 99 255" + Friends.GoldenHoverColor "255 255 180 255" +// Friends.GoldenHoverColor "248 218 109 255" + + + ChatDialog.URLColor "text" + //ChatOwnTextColor "Label" + ChatOwnTextColor "200 200 255 255" + //ChatDialog.HistoryColor "124 124 124 255" + ChatDialog.HistoryColor "200 200 200 200 255" + ChatGradientTop "39 39 39 255" + ChatGradientBottom "104 104 104 255" + + + + dd_texture_bottom "16 16 16 255" + } +} \ No newline at end of file diff --git a/resource/styles/settings.styles b/resource/styles/settings.styles new file mode 100644 index 0000000..6e36b2c --- /dev/null +++ b/resource/styles/settings.styles @@ -0,0 +1,66 @@ +"settings.styles" +{ + colors + { + + AchievementPopup.TitleColor DefaultText + AchievementPopup.DescriptionColor DefaultText.Hover + + GiftOnlyInfo.ImagePanelColor DefaultBackground + + //Settings + Frame.ClientInsetX 10 + Frame.ClientInsetY 35 + Frame.FocusTransitionEffectTime "0" // time it takes for a window to fade in/out on focus/out of focus + Frame.TransitionEffectTime "0.25" // time it takes for a window to fade in/out on open/close + Frame.OnDragAlphaDelayTime "0.15" // time it takes after clicking the title bar of a window before the alpha multiplier kicks in + Frame.OnDragAlphaMultiplier "1.0" // multiplier applied to alpha while dragging a frame + Frame.AutoSnapRange "6" + Frame.UsesAlphaBlending 1 + FrameSystemButton.Icon "" + FrameSystemButton.DisabledIcon "" + + Notifications.PanelPosition "BottomRight" // Can be "BottomRight", "BottomLeft", "TopRight", "TopLeft" + Notifications.PanelPosition "TopRight" [$OSX] // the dock is on the bottom for OSX, so instead pop top right like other apps do + Notifications.SlideDirection "Horizontal" // Can be "Vertical", "Horizontal", "None" and controls slide effect + Notifications.FadeInTime "0.45" // Controls the time it takes to slide/fade into view + Notifications.FadeOutTime "0.45" // Controls the time it takes to slide/fade out of view + Notifications.DisplayTime "6.0" // Controls the length of time at steady state after fade in and before fade out + Notifications.StackSize "3" // Controls how many panels we will stack before background queuing + + ListPanel.PerPixelScrolling 1 + ListPanel.PostSectionLeading 10 + + // Default tooltip delay pops fast, but lets the mouse pass through without popping + // Anchor=Cursor makes it stick to initial pop location like windows implementation. + // Anchor can also be 'Float' to move with the mouse, or 'Parent' to stick just outside the parent panel (useful for icon sized items) + Tooltip.Delay=75 + Tooltip.Anchor=Cursor + + Menu.TextInset "10" + + PropertySheet.TransitionEffectTime "0" // time to change from one tab to another + PropertySheet.TabGap 0 + + RichText.InsetX 8 + RichText.InsetY 7 + + ScrollBar.Wide 15 + + SectionedListPanel.CollapserWidth 15 + + HTML.SearchInsetY 5 + HTML.SearchInsetX 10 + HTML.SearchWide 400 + HTML.SearchTall 52 + HTML.SearchAnimationTime 0.25 + + HTML.IMEInsetY 5 + HTML.IMEInsetX 10 + HTML.IMEWide 400 + HTML.IMETall 52 + HTML.IMEAnimationTime 0.25 + + MessageBox.ButtonHeight 32 + } +} \ No newline at end of file diff --git a/resource/styles/steam.styles b/resource/styles/steam.styles new file mode 100644 index 0000000..f8b13e8 --- /dev/null +++ b/resource/styles/steam.styles @@ -0,0 +1,3255 @@ +steam.styles +{ + include "resource/styles/legacycolors.styles" + include "resource/styles/settings.styles" + include "resource/styles/jackmyth.styles" + include "config.ini" + colors + { + //Font Familys + basefont="Segoe UI" + light="Segoe UI Light" + semilight="Segoe UI Semilight" + semibold="Segoe UI Semibold" + bold="Segoe UI Bold" + + //Standard Element/Text colors ******** + //TODO: Some of these colors arent actually used, fix or remove + + Dark = "14 14 14 255" + Neutral = "31 31 31 255" + Light = "43 43 43 255" + + DefaultBackground=Neutral + + DefaultText=white + DefaultText.Hover="153 153 153 255" + DefaultText.Disabled="102 102 102 255" + DefaultText.Selected=Accent.Text + DefaultText.Back=Accent //For highlighted text + DefaultCursor=white + + Label.Text=DefaultText + SubLabel.Text="180 180 180 255" //Any label we want to have visual distinction, usually subheaders + + URL.Text=Accent + URL.Hover.Text=DefaultText.Hover + + Page.Back=Neutral + Page.Tab=Light + Page.Tab.Active=Accent + Page.Tab.Hover="78 78 78 255" + Page.Tab.Active.Hover=Page.Tab.Active + Page.Tab.Text=DefaultText + Page.Tab.Active.Text=Accent.Text + + List.Back=Dark + List.Header=Light + List.Header.Div=Neutral + List.Page=Dark + List.Page.Header=Light + List.Page.Header.Div=Neutral + List.Text=DefaultText + List.Header.Text=DefaultText + List.Header.Text.Hover=DefaultText.Hover + List.Text.Disabled=DefaultText.Disabled + + //Button.Back="51 51 51 255" + Button.Back=JackMyth.HalfOpacity + //Button.Page.Back="51 51 51 255" + Button.Page.Back=Button.Back + Button.Hover="74 74 74 255" + Button.Page.Hover="74 74 74 255" + Button.Active=Accent + Button.Active.Hover=Accent.Hover + Button.Disabled=Button.Back + Button.Text=DefaultText + Button.Hover.Text=DefaultText + Button.Active.Text=Accent.Text + Button.Disabled.Text="109 109 109 255" + + Check.Outline="204 204 204 255" + Check.Outline.Hover=white + Check.Outline.Disabled="119 119 119 255" + Check.Active=Accent + Check.Text=DefaultText + Check.Text.Hover=DefaultText + Check.Disabled.Text=DefaultText.Disabled + + Radio.Outline="204 204 204 255" + Radio.Hover.Outline=white + Radio.Active=Accent + Radio.Text=DefaultText + Radio.Text.Hover=DefaultText + Radio.Disabled.Text=DefaultText.Disabled + + //ComboBox.Back="17 17 17 255" + ComboBox.Back=JackMyth.HalfTranslucent + ComboBox.Hover=Light + ComboBox.Outline="119 119 119 255" + ComboBox.Outline.Hover="153 153 153 255" + ComboBox.Active=ComboBox.Hover + ComboBox.Disabled=Button.Back + ComboBox.Text=DefaultText + ComboBox.Disabled.Text="110 110 110 255" + + Scroll.Back="23 23 23 50" + Scroll.Bar.Back="69 69 69 255" + Scroll.Bar.Hover="116 116 116 255" + Scroll.Bar.Active="162 162 162 255" + Scroll.Button.Back=Scroll.Back + Scroll.Button.Hover=Scroll.Bar.Hover + Scroll.Button.Active=Scroll.Bar.Active + + Menu.Back=ComboBox.Hover + Menu.Button.Hover="96 96 96 170" + Menu.Button.Active=Accent.Hover + //Menu.Hover="64 64 64 255" + Menu.Hover="0 185 255 200" + Menu.Active=Accent + Menu.Outline="118 118 118 255" + Menu.Div="128 128 128 255" + Menu.Text=DefaultText + Menu.Disabled.Text=DefaultText.Disabled + + Progress.Back=Button.Hover + + TextBox.Back=ComboBox.Back + TextBox.Outline=ComboBox.Outline + TextBox.Outline.Hover=white + //TextBox.Active=white + TextBox.Active=JackMyth.HalfTranslucentWhite + TextBox.Outline.Active=Accent + TextBox.Text=TextBox.Outline + TextBox.Hover.Text=DefaultText + TextBox.Active.Text=black + TextBox.Disabled.Text=DefaultText.Disabled + TextBox.Active.Cursor=black + + //Specific Element colors ********* + + //These are all in accent specific ini now + //TitleBar="8 8 8 255" + //TitleBar.Focus="8 8 8 255" //For loss of focus + //Notification.Back="31 31 31 255" + + TitleBar.Hover="70 70 70 100" //for buttons on titlebar + TitleBar.Active="70 70 70 200" + TitleBar.CloseButton="232 17 35 255" //Special colors for close X + TitleBar.CloseButton.Active="241 112 122 255" + Frame.Text="96 96 96 255" + Frame.Focus.Text=DefaultText + + Root.Header = DefaultBackground + Root.TabBar = Light + Root.LeftCol = Light //Left Column + Root.LeftCol.Header= DefaultBackground + Root.LeftCol.Bottom = DefaultBackground + Root.Back = Dark + Root.RightCol= JackMyth.HalfTranslucent + //Root.RightCol = DefaultBackground //Right column (When needed) + Root.Div = Menu.Div + Root.BackTransparent="14 14 14 170" //For details header/grid chrome + + Root.LeftCol.Text=DefaultText + Root.Label.Text=DefaultText + Root.Label.Hover.Text="180 180 180 255" + Root.SubLabel.Text="180 180 180 255" + Root.LeftCol.Disabled=DefaultText.Disabled + + Search.Back=Scroll.Back + Search.Text="130 130 130 255" + Search.Hover.Text="180 180 180 255" + Search.Active.Text=DefaultText + + Chat.Back = Root.Back + Chat.Popup = DefaultBackground + Chat.Div = Light + + //Games that are installed/running use "Installed.Text" + //Games that are uninstalled use "Uninstalled.Text" + //Games that are updating/have updates use "Updating.Text" + Uninstalled.Text="200 200 200 255" + Uninstalled.Hover.Text="230 230 230 255" + //Uninstalled.Hover.Text="80 80 80 255" + Installed.Text=DefaultText + Installed.Hover.Text="230 230 230 255" + Updating.Text="76 159 191 255" + //Updating.Text="165 165 165 255" + Updating.Hover.Text="140 140 140 255" + Shortcut.Text=Installed.Text + Shortcut.Hover.Text=Installed.Hover.Text + Mod.Text=Installed.Text + Mod.Hover.Text=Installed.Hover.Text + Decrypting.Text=Updating.Text + Decrypting.Hover.Text=Updating.Hover.Text + Syncing.Text=Updating.Text + Syncing.Hover.Text=Updating.Hover.Text + //Running.Text=Installed.Text + Running.Text=Friends.InGameColor + Running.Hover.Text=Friends.InGameColor + //Running.Hover.Text=Installed.Hover.Text + + } + + styles + { + downarrow + { + image="graphics/Threshold/icons/down" + } + + downarrow:hover + { + image="graphics/Threshold/icons/down" + } + + uparrow + { + image="graphics/Threshold/icons/up" + } + + rightarrow + { + image="graphics/Threshold/icons/right" + } + + rightarrow:hover + { + image="graphics/Threshold/icons/right_hover" + } + + Button + { + font-family=basefont + minimum-height=30 + padding-left=4 + padding-right=4 + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=Button.Text + bgcolor=Button.Back + render_bg + { + } + } + + "Page Button" + { + bgcolor=Button.Page.Back + render_bg + { + } + } + + Button:hover + { + textcolor=Button.Hover.Text + bgcolor=Button.Back + render + { + // lines around + 0="fill( x0, y0, x0+2, y1, Button.Hover)" + 1="fill( x1-2, y0, x1, y1, Button.Hover)" + 2="fill( x0, y0, x1, y0+2, Button.Hover)" + 3="fill( x0, y1-2, x1, y1, Button.Hover)" + } + } + + "Page Button:hover" + { + textcolor=Button.Hover.Text + bgcolor=Button.Page.Back + render + { + // lines around + 0="fill( x0, y0, x0+2, y1, Button.Page.Hover)" + 1="fill( x1-2, y0, x1, y1, Button.Page.Hover)" + 2="fill( x0, y0, x1, y0+2, Button.Page.Hover)" + 3="fill( x0, y1-2, x1, y1, Button.Page.Hover)" + } + } + + Button:focus + { + textcolor=Button.Active.Text + bgcolor=Button.Active + render + { + } + } + + "Page Button:focus" + { + textcolor=Button.Active.Text + bgcolor=Button.Active + render + { + } + } + + Button:active // this is the left-mouse-currently-pressed state + { + textcolor=Button.Active.Text + bgcolor=Button.Active + render + { + } + } + + "Page Button:active" + { + textcolor=Button.Active.Text + bgcolor=Button.Active + render + { + } + } + + Button:selected + { + textcolor=Button.Active.Text + bgcolor=Button.Active + render + { + } + } + + "Page Button:selected" + { + textcolor=Button.Active.Text + bgcolor=Button.Active + render + { + } + } + + Button:selected:hover + { + textcolor=Button.Active.Text + bgcolor=Button.Active + render + { + // lines around + 0="fill( x0, y0, x0+2, y1, Button.Active.Hover)" + 1="fill( x1-2, y0, x1, y1, Button.Active.Hover)" + 2="fill( x0, y0, x1, y0+2, Button.Active.Hover)" + 3="fill( x0, y1-2, x1, y1, Button.Active.Hover)" + } + } + + "Page Button:selected:hover" + { + textcolor=Button.Active.Text + bgcolor=Button.Active + render + { + // lines around + 0="fill( x0, y0, x0+2, y1, Button.Active.Hover)" + 1="fill( x1-2, y0, x1, y1, Button.Active.Hover)" + 2="fill( x0, y0, x1, y0+2, Button.Active.Hover)" + 3="fill( x0, y1-2, x1, y1, Button.Active.Hover)" + } + } + + Button:disabled + { + textcolor=Button.Disabled.Text + bgcolor=Button.Disabled + render + { + } + } + + "Page Button:disabled" + { + textcolor=Button.Disabled.Text + bgcolor=Button.Disabled + render + { + } + } + + CFriendsListSectionAffordance //Group list header option dropdown button + { + inset="0 0 0 0" + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=DefaultText + } + + CFriendsListSectionHeader + { + bgcolor=none + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=List.Header.Text + inset="5 0 0 0" + render_bg + { + //0="fill( x0-2, y0, x1, y1, List.Header )" + 0="fill( x0-2, y0, x1, y1, JackMyth.Opacity )" + } + } + + CFriendPanel + { + inset="0 2 0 0" + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=DefaultText + } + + CheckButton + { + font-family=basefont + inset="20 0 0 0" + minimum-height=26 + minimum-width=20 + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=Check.Text + //image="graphics/Threshold/icons/check" + render + { + 0="fill(x0,y0+4,x0+2,y0+24,Check.Outline)" + 1="fill(x0+2,y0+4,x0+18,y0+6,Check.Outline)" + 2="fill(x0+2,y0+22,x0+18,y0+24,Check.Outline)" + 3="fill(x0+18,y0+4,x0+20,y0+24,Check.Outline)" + } + } + + CheckButton:selected + { + //image="graphics/Threshold/icons/check_sel" + render + { + 0="fill(x0,y0+4,x0+20,y0+24,Check.Active)" + 1="image(x0+2,y0+6,x1,y1,graphics/Threshold/icons/check_sel1)" + } + } + + CheckButton:hover + { + textcolor=Check.Text.Hover + //image="graphics/Threshold/icons/check_hover" + render + { + 0="fill(x0,y0+4,x0+2,y0+24,Check.Outline.Hover)" + 1="fill(x0+2,y0+4,x0+18,y0+6,Check.Outline.Hover)" + 2="fill(x0+2,y0+22,x0+18,y0+24,Check.Outline.Hover)" + 3="fill(x0+18,y0+4,x0+20,y0+24,Check.Outline.Hover)" + } + } + + CheckButton:selected:hover + { + textcolor=Check.Text.Hover + //image="graphics/Threshold/icons/check_sel_hover" + render + { + 0="fill(x0,y0+4,x0+20,y0+24,Check.Active)" + 1="image(x0+2,y0+6,x1,y1,graphics/Threshold/icons/check_sel1)" + 2="fill(x0,y0+4,x0+2,y0+24,Check.Outline.Hover)" + 3="fill(x0+2,y0+4,x0+18,y0+6,Check.Outline.Hover)" + 4="fill(x0+2,y0+22,x0+18,y0+24,Check.Outline.Hover)" + 5="fill(x0+18,y0+4,x0+20,y0+24,Check.Outline.Hover)" + } + } + + CheckButton:disabled + { + textcolor=Check.Disabled.Text + //image="graphics/Threshold/icons/check_dis" + render + { + 0="fill(x0,y0+4,x0+2,y0+24,Check.Outline.Disabled)" + 1="fill(x0+2,y0+4,x0+18,y0+6,Check.Outline.Disabled)" + 2="fill(x0+2,y0+22,x0+18,y0+24,Check.Outline.Disabled)" + 3="fill(x0+18,y0+4,x0+20,y0+24,Check.Outline.Disabled)" + } + } + + CheckButton:selected:disabled + { + textcolor=Check.Disabled.Text + //image="graphics/Threshold/icons/check_sel_dis" + render + { + 0="fill(x0,y0+4,x0+2,y0+24,Check.Outline.Disabled)" + 1="image(x0+2,y0+6,x1,y1,graphics/Threshold/icons/check_dis1)" + 2="fill(x0+2,y0+4,x0+18,y0+6,Check.Outline.Disabled)" + 3="fill(x0+2,y0+22,x0+18,y0+24,Check.Outline.Disabled)" + 4="fill(x0+18,y0+4,x0+20,y0+24,Check.Outline.Disabled)" + } + } + + IndeterminateCheckButton + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=Check.Text + bgcolor=none + image="graphics/Threshold/icons/check_ind" + } + + IndeterminateCheckButton:hover + { + textcolor=Check.Text.Hover + image="graphics/Threshold/icons/check_ind_hover" + } + + CheckButtonList + { + inset="0 1 1 1" + textcolor=List.Text + bgcolor=List.Back + render{} + render_bg { + } + } + + CheckButtonList:scrollbar + { + } + + "Page CheckButtonList" + { + inset="0 1 1 1" + textcolor=List.Text + bgcolor=List.Page + render { } + render_bg + { + } + } + + "Page CheckButtonList:scrollbar" + { + } + + "CheckbuttonList Checkbutton" + { + textcolor=Check.Text + } + + "CheckbuttonList Checkbutton:hover" + { + textcolor=Check.Text.Hover + } + + "CheckbuttonList Checkbutton:focus" + { + textcolor=Check.Text + } + + "CheckbuttonList Checkbutton:selected" + { + render_bg + { + + } + } + + ComboBox + { + inset="3 0 0 0" + minimum-height=30 + textcolor=ComboBox.Text + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + bgcolor=ComboBox.Back + render + { + // lines around + 0="fill(x0, y0, x0+2, y1, ComboBox.Outline)" //left + 1="fill(x1-2, y0, x1, y1, ComboBox.Outline)" //right + 2="fill(x0, y0, x1, y0+2, ComboBox.Outline)" //top + 3="fill(x0, y1-2, x1, y1, ComboBox.Outline)" //bottom + } + } + + ComboBox:hover + { + bgcolor=ComboBox.Back + render + { + // lines around + 0="fill(x0, y0, x0+2, y1, ComboBox.Outline.Hover)" //left + 1="fill(x1-2, y0, x1, y1, ComboBox.Outline.Hover)" //right + 2="fill(x0, y0, x1, y0+2, ComboBox.Outline.Hover)" //top + 3="fill(x0, y1-2, x1, y1, ComboBox.Outline.Hover)" //bottom + } + } + + ComboBoxButton + { + bgcolor=none + textcolor=none + render{} + render_bg + { + 0="image(x0+6,y0+10,x1,y1,graphics/Threshold/icons/down)" + } + } + + Divider + { + bgcolor="none" + render + { + 0="fill( x0, y1 - 1, x1, y1, Menu.Div )" + } + } + + Frame + { + //bgcolor=JackMyth.HalfTrnaslucent + bgcolor="DefaultBackground" + render{ + 0="fill(x0, y0, x1, y0+1, Frame.Outline.Focus)" + 1="fill(x0, y0, x0+1, y1, Frame.Outline.Focus)" + 2="fill(x1-1, y0, x1, y1, Frame.Outline.Focus)" + 3="fill(x0, y1-1, x1, y1, Frame.Outline.Focus)" + } + } + + Frame:FrameFocus + { + render{ + 0="fill(x0, y0, x1, y0+1, Frame.Outline)" + 1="fill(x0, y0, x0+1, y1, Frame.Outline)" + 2="fill(x1-1, y0, x1, y1, Frame.Outline)" + 3="fill(x0, y1-1, x1, y1, Frame.Outline)" + } + } + + FrameBRGripPanel + { + //image=graphics/resizer + } + + FrameBRGripPanel:hover + { + //image=graphics/resizer_over + } + + FrameMinimizeButton + { + render_bg {} + inset="12 11 0 0" + image="graphics/Threshold/window_controls/min_focus" + } + + FrameMinimizeButton:framefocus + { + image="graphics/Threshold/window_controls/min" + } + + FrameMinimizeButton:hover + { + image="graphics/Threshold/window_controls/min" + bgcolor="TitleBar.Hover" + } + + FrameMinimizeButton:active + { + bgcolor="TitleBar.Active" + } + + FrameMaximizeButton + { + render_bg {} + inset="12 11 0 0" + image="graphics/Threshold/window_controls/max_focus" + } + + FrameMaximizeButton:framefocus + { + image="graphics/Threshold/window_controls/max" + } + + FrameMaximizeButton:hover + { + image="graphics/Threshold/window_controls/max" + bgcolor="TitleBar.Hover" + } + + FrameMaximizeButton:active + { + bgcolor="TitleBar.Active" + } + + // these are for when the maximize button becomes the restore button + FrameRestoreButton + { + render_bg {} + inset="12 11 0 0" + image="graphics/Threshold/window_controls/restore_focus" + } + + FrameRestoreButton:framefocus + { + image="graphics/Threshold/window_controls/restore" + } + + FrameRestoreButton:hover + { + image="graphics/Threshold/window_controls/restore" + bgcolor="TitleBar.Hover" + } + + FrameRestoreButton:active + { + bgcolor="TitleBar.Active" + } + + FrameCloseButton + { + render_bg {} + inset="12 11 0 0" + image="graphics/Threshold/window_controls/close_focus" + } + + FrameCloseButton:framefocus + { + image="graphics/Threshold/window_controls/close" + } + + FrameCloseButton:hover + { + image="graphics/Threshold/window_controls/close" + bgcolor="TitleBar.CloseButton" + } + + FrameCloseButton:active + { + bgcolor="TitleBar.CloseButton.Active" + image="graphics/Threshold/window_controls/close_active" + } + + FrameCloseButton:disabled + { + image="graphics/Threshold/window_controls/close" + } + + + FrameTitle + { + font-family=basefont + inset="5 1 0 0" + padding-left="0" + padding-right="64" + font-size=12 [$LINUX] + font-size=14 + font-weight=400 + textcolor=Frame.Text + bgcolor=TitleBar.Focus + render_bg + { + } + } + + + FrameTitle:framefocus + { + textcolor=Frame.Focus.Text + bgcolor=TitleBar + render_bg + { + } + } + + + "CFriendsDialog SectionedListPanelInterior" + { + bgcolor=none + inset="-6 -1 -1 -1" + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=List.Text + selectedtextcolor=DefaultText.Selected + selectedbgcolor=JackMyth.HalfTranslucent + //selectedbgcolor=DefaultText.Back + shadowtextcolor=List.Text.Disabled // the color of disabled line items + render{ } + render_bg { + } + } + + GraphPanel //XXX:Pretty sure this isnt even used anymore + { + textcolor=Accent + bgcolor=none + inset="0 -3 0 0" + render_bg { } + } + + HTML + { + bgcolor=JackMyth.Translucent + //bgcolor="almostblack" + //inset="2 2 2 2" + render_bg + { + } + + } + + Label + { + textcolor=Label.Text + selectedtextcolor=Label.Text + bgcolor="none" + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + } + + ListPanel + { + bgcolor= JackMyth.HalfTranslucent + //bgcolor=List.Back + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=List.Text + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + shadowtextcolor=List.Text.Disabled // the color of disabled line items + padding-left=10 + inset="0 0 0 0" + render{} + render_bg + { + } + } + + "Page ListPanel" + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=List.Text + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + padding-left=10 + inset="0 0 0 0" + bgcolor=List.Page + render_bg + { + } + } + + "CGamesListPanel" + { + //bgcolor=JackMyth.HalfTranslucent + //bgcolor=Root.Back + //bgcolor=Root.Back + //font-family=basefont + font-family="Comic Sans MS" + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=List.Text + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + shadowtextcolor=List.Text.Disabled + padding-left=10 + inset="0 0 0 0" + render_bg + { + } + } + + "GameItem_Uninstalled" + { + font-family=basefont + textcolor=Uninstalled.Text + selectedtextcolor=Accent.Text + } + "GameItem_Uninstalled:hover" + { + font-family=basefont + textcolor=Uninstalled.Hover.Text + selectedtextcolor=Accent.Text + } + + "GameItem_Installed" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Installed.Text + selectedtextcolor=Accent.Text + } + "GameItem_Installed:hover" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Installed.Hover.Text + selectedtextcolor=Accent.Text + } + + "GameItem_Running" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Running.Text + selectedtextcolor=Accent.Text + } + "GameItem_Running:hover" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Running.Hover.Text + selectedtextcolor=Accent.Text + } + + "GameItem_Shortcut" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Shortcut.Text + selectedtextcolor=Accent.Text + } + "GameItem_Shortcut:hover" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Shortcut.Hover.Text + selectedtextcolor=Accent.Text + } + + "GameItem_Mod" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Mod.Text + selectedtextcolor=Accent.Text + } + "GameItem_Mod:hover" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Mod.Hover.Text + selectedtextcolor=Accent.Text + } + + "GameItem_Updating" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Updating.Text + selectedtextcolor=Accent.Text + } + "GameItem_Updating:hover" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Updating.Hover.Text + selectedtextcolor=Accent.Text + } + + "GameItem_Decrypting" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Decrypting.Text + selectedtextcolor=Accent.Text + } + "GameItem_Decrypting:hover" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Decrypting.Hover.Text + selectedtextcolor=Accent.Text + } + + "GameItem_Syncing" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Syncing.Text + selectedtextcolor=Accent.Text + } + "GameItem_Syncing:hover" + { + font-size=15 [$LINUX] + font-size=18 + textcolor=Syncing.Hover.Text + selectedtextcolor=Accent.Text + } + + "GameColumn_BigText" + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=700 + textcolor=DefaultText + } + + ListPanelCheckBox + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=Check.Text + image="graphics/Threshold/icons/check" + inset="0 0 0 0" + render{} + } + + ListPanelCheckBox:selected + { + image="graphics/Threshold/icons/check_sel" + } + + ListPanelCheckBox:focus + { + image="graphics/Threshold/icons/check" + } + + ListPanelCheckBox:selected:focus + { + image="graphics/Threshold/icons/check_sel" + } + + ListPanelCheckBox:disabled + { + textcolor=Check.Disabled.Text + image="graphics/Threshold/icons/check_dis" + } + + ListPanelCheckBox:disabled:select + { + textcolor=Check.Disabled.Text + image="graphics/Threshold/icons/check_sel_dis" + } + + "ListPanelColumnheader ListPanelCheckBox" + { + font-family=basefont + minimum-height=0 + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=Check.Text + image="graphics/Threshold/icons/check_sm" + inset="4 0 0 0" + } + + "ListPanelColumnHeader ListPanelCheckBox:selected" + { + image="graphics/Threshold/icons/check_sm_sel" + } + + "ListPanelColumnheader ListPanelCheckBox:focus" + { + image="graphics/Threshold/icons/check_sm" + } + + "ListPanelColumnheader ListPanelCheckBox:selected:focus" + { + image="graphics/Threshold/icons/check_sm_sel" + } + + ListPanelColumnheader + { + font-family=basefont + minimum-height=0 + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=List.Header.Text + bgcolor=List.Header + inset="0 0 0 0" + render={} + render_bg + { + } + } + + ListPanelColumnHeader:hover + { + textcolor=List.Header.Text.Hover + } + + "Page ListPanelColumnHeader" + { + bgcolor=List.Page.Header + render_bg + { + } + } + + "Csteamrootdialog ListPanelColumnheader" + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=List.Header.Text + //bgcolor=List.Header + bgcolor=JackMyth.Opacity + inset="0 0 0 0" + + render_bg + { + } + } + + + "Csteamrootdialog ListPanelColumnHeader:hover" + { + textcolor=List.Header.Text.Hover + } + + "Csteamrootdialog ListPanelSectionCollapser" + { + inset = "0 1 0 0" + //bgcolor=List.Header + bgcolor=JackMyth.HalfOpacity + render{} + } + + "CGamesPage_Mini ListPanelSectionCollapser" + { + inset = "5 1 0 0" + bgcolor=JackMyth.HalfOpacity + //bgcolor=List.Header + render{} + } + + + + ListPanelColumnSelectButton // the games list column chooser + { + inset="-3 3 0 0" + bgcolor=List.Header + render + { + 0="image( x0 + 5, y0 + 4, x1, y1, graphics/Threshold/icons/plus )" + } + render_bg { + } + } + + ListPanelColumnSelectButton:hover + { + render + { + 0="image( x0 + 5, y0 + 4, x1, y1, graphics/Threshold/icons/plus_hover )" + } + } + ListPanelColumnSelectButton:selected + { + render + { + 0="image( x0 + 5, y0 + 4, x1, y1, graphics/Threshold/icons/plus )" + } + } + + "CGamesListPanel ListPanelColumnSelectButton" + { + inset="0 0 0 0" + bgcolor=List.Header + render + { + 0="image( x0+2, y0+2, x1, y1, graphics/Threshold/icons/plus )" + } + render_bg { + } + } + "CGamesListPanel ListPanelColumnSelectButton:hover" + { + render + { + 0="image( x0+2, y0+2, x1, y1, graphics/Threshold/icons/plus_hover )" + } + } + "CGamesListPanel ListPanelColumnSelectButton:selected" + { + render + { + 0="image( x0+2, y0+2, x1, y1, graphics/Threshold/icons/plus )" + } + } + + ListPanelDragger + { + bgcolor="none" + render + { + //fill makes dragger visible + 0="fill( x0, y0, x0 + 1, y1 - 1, List.Header.Div )" + } + } + + "Page ListPanelDragger" + { + bgcolor="none" + render + { + //fill makes dragger visible + 0="fill( x0, y0, x0 + 1, y1 - 1, List.Page.Header.Div )" + } + } + + ListPanelInterior + { + inset="0 0 0 0" + padding-left=5 + font-size=13 [$LINUX] + font-size=15 + textcolor=List.Text + bgcolor="none" + render + { + + } + render_bg + { + + } + } + + ListPanelInterior:scrollbar + { + + } + + "CSteamRootDialog ListPanel" + { + bgcolor=JackMyth.LittleTranslucent + render_bg {} + } + + "Csteamrootdialog ListPanelInterior" + { + bgcolor=JackMyth.HalfTranslucent + //bgcolor=Root.Back + render_bg + { + } + } + + "Csteamrootdialog ListPanelInterior:scrollbar" + { + render + { + } + } + + "Page ListPanelInterior" + { + bgcolor=List.Page + render_bg + { + } + } + + "Page ListPanelInterior:scrollbar" + { + + } + + ListPanelSectionHeader + { + inset="5 0 0 0" + textcolor=List.Header.Text + minimum-height=30 + font-size=13 [$LINUX] + font-size=15 + bgcolor=List.Header + render_bg + { + } + } + + "Csteamrootdialog ListPanelSectionHeader" + { + bgcolor=JackMyth.HalfOpacity + //bgcolor=List.Header + render_bg + { + } + } + + "ListPanel RichText" + { + textcolor=TextBox.Hover.Text + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + bgcolor=none + render{} + render_bg {} + } + + "ListPanel RichText url" + { + font-size=13 [$LINUX] + font-size=15 + textcolor=URL.Text + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + font-style=underline + } + + "ListPanel RichTextInterior" + { + render_bg {} + bgcolor=none + } + + ListPanelSectionCollapser + { + bgcolor=none + render_bg {} + image="graphics/Threshold/icons/right" + inset="0 0 0 0" + } + + ListPanelSectionCollapser:hover + { + image="graphics/Threshold/icons/right_hover" + } + + ListPanelSectionCollapser:selected + { + image="graphics/Threshold/icons/down" + } + + ListPanelSectionCollapser:selected:hover + { + image="graphics/Threshold/icons/down_hover" + } + + MainNav + { + textcolor=DefaultText + selectedtextcolor=DefaultText + bgcolor="none" + font-family=semilight + font-size=16 [$LINUX] + font-size=24 + font-weight=700 + //font-style="uppercase" + } + + Menu + { + bgcolor=Menu.Back + padding-right=4 + inset="2 2 2 2" + + render_bg + { + 0="fill(x0, y0, x0+1, y1, Menu.Outline)" //left + 1="fill(x1-1, y0, x1, y1, Menu.Outline)" //right + 2="fill(x0, y0, x1, y0+1, Menu.Outline)" //top + 3="fill(x0, y1-1, x1, y1, Menu.Outline)" //bottom + } + + render {} + } + + MenuBar + { + bgcolor=none + } + + "Page MenuBar" + { + bgcolor=none + } + + "MenuBar MenuButton" + { + textcolor="none" + inset="0 0 0 0" + render{ + 0="image(x0+17,y0+10,x1,y1,graphics/Threshold/menu_focus)" + } + } + + "MenuBar MenuButton:frameFocus" + { + render{ + 0="image(x0+17,y0+10,x1,y1,graphics/Threshold/menu)" + } + } + + "MenuBar MenuButton:hover" + { + textcolor="none" + bgcolor=TitleBar.Hover + render_bg { + } + } + + "MenuBar MenuButton:selected" + { + textcolor="none" + bgcolor=TitleBar.Accent + render_bg { + } + + } + + MenuButton //XXX: where is this used? + { + font-family=basefont + font-size=26 //SIGH... + font-weight=400 + textcolor=DefaultText + bgcolor="none" + render_bg {} + } + + MenuButton:hover + { + //textcolor="white" + } + + MenuButton:selected + { + //textcolor="white" + } + + MenuItem + { + font-family=basefont + textcolor=Menu.Text + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + inset="0 0 0 0" + padding-right=6 + bgcolor=none + render_bg {} + } + + MenuItem:selected + { + bgcolor=Menu.Hover + } + + MenuItem:hover + { + bgcolor=Menu.Hover + } + + MenuItem:disabled + { + textcolor=Menu.Disabled.Text + } + + MenuItem:disabled:hover + { + textcolor=Menu.Disabled.Text + bgcolor=Menu.Hover + } + + MenuSeparator + { + inset="-4 0 0 0" + textcolor="none" + bgcolor=none + render_bg{ + 0="fill(x0+15,y1-1,x1-20,y1,Menu.Div)" + } + } + + Notification + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + bgcolor=Notification.Back + render_bg + { + } + render {} + } + + + Page + { + bgcolor="none" + render_bg + { + // background gradient + 0="fill( x0, y0, x1, y1, Page.Back )" + } + } + + "CSteamRootDialog Page" + { + bgcolor="none" + render_bg {} + } + + "Page RadioButtonList" + { + bgcolor="List.Page" + } + + PageTab + { + minimum-height=0 + textcolor=Page.Tab.Text + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + inset="0 0 0 0" + bgcolor=JackMyth.HalfOpacity + //bgcolor=Page.Tab + render={} + render_bg + { + } + } + + + PageTab:selected + { + textcolor=Page.Tab.Active.Text + bgcolor=Page.Tab.Active + render_bg + { + } + } + + + PageTab:hover + { + textcolor=Page.Tab.Text + bgcolor=Page.Tab.Hover + render_bg + { + } + } + + PageTab:selected:hover + { + textcolor=Page.Tab.Active.Text + bgcolor=Page.Tab.Active.Hover + render_bg + { + } + } + + "PageDragFrame PageTab" + { + font-size=13 [$LINUX] + font-size=15 + font-style="" + } + + TabCloseButton + { + render_bg {} + bgcolor=none + minimum-height=0 + padding=0 + image="graphics/Threshold/icons/tiny_x" + } + + TabCloseButton:hover + { + image="graphics/Threshold/icons/tiny_x_hover" + } + + Panel + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=DefaultText + bgcolor="none" + } + + ProgressBox //Legend has fortold that this is the loading frame + { + + } + + "ProgressBox ProgressBar" + { + textcolor=none + bgcolor=none + } + + ProgressBar + { + textcolor="Accent" + bgcolor="Progress.Back" + render + { + // lines around + //1="fill( x0 + 1, y0 + 1, x1 - 1, y0 + 2, ButtonBorder )" // top + //2="fill( x0 + 1, y1 - 2, x1 - 1, y1 - 1, ButtonBorder )" // bottom + //3="fill( x0 + 1, y0 + 1, x0 + 2, y1 - 1, ButtonBorder )" // left + //4="fill( x1 - 2, y0 + 1, x1 - 1, y1 - 1, ButtonBorder )" // right + } + } + + "Page ProgressBar" + { + textcolor="Accent" + bgcolor="Progress.Back" + render + { + // lines around + //1="fill( x0 + 1, y0 + 1, x1 - 1, y0 + 2, ButtonBorder )" // top + //2="fill( x0 + 1, y1 - 2, x1 - 1, y1 - 1, ButtonBorder )" // bottom + //3="fill( x0 + 1, y0 + 1, x0 + 2, y1 - 1, ButtonBorder )" // left + //4="fill( x1 - 2, y0 + 1, x1 - 1, y1 - 1, ButtonBorder )" // right + } + } + + PropertyPage + { + bgcolor="none" + } + + "CFriendsDialog PropertySheet" + { + bgcolor="none" + } + + RadioButton + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=Radio.Text + render_bg {} + image="graphics/Threshold/icons/rad" + bgcolor=none + } + + RadioButton:hover + { + textcolor=Radio.Text.Hover + image="graphics/Threshold/icons/rad_hover" + } + + RadioButton:selected + { + image="graphics/Threshold/icons/rad_sel" + } + + RadioButton:selected:hover //Since selected radio buttons cant be toggled, only change the text color + { + textcolor=Radio.Text.Hover + image="graphics/Threshold/icons/rad_sel" + } + + RadioButton:focus + { + textcolor=Radio.Text + image="graphics/Threshold/icons/rad" + } + + RadioButton:focus:hover + { + textcolor=Radio.Text.Hover + image="graphics/Threshold/icons/rad_hover" + } + + RadioButton:selected:focus + { + textcolor=Radio.Text + image="graphics/Threshold/icons/rad_sel" + } + + RadioButton:selected:focus:hover + { + textcolor=Radio.Text.Hover + image="graphics/Threshold/icons/rad_sel" + } + + RadioButtonList + { + bgcolor=List.Back + inset="-2 0 0 0" + render_bg + { + } + } + + RichText + { + textcolor=TextBox.Hover.Text + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + inset="0 0 0 0" + //bgcolor=TextBox.Back + bgcolor=none + render + { + // lines around + //0="fill( x0, y0, x1, y0 + 1, TextBox.Outline )" // top + //1="fill( x0, y1 - 1, x1, y1, TextBox.Outline )" // bottom + //2="fill( x0, y0, x0 + 1, y1, TextBox.Outline )" // left + //3="fill( x1 - 1, y0, x1, y1, TextBox.Outline )" // right + } + } + + RichTextInterior + { + bgcolor=none + } + + // style of links in a rich text control + + "RichText url" + { + font-size=13 [$LINUX] + font-size=15 + textcolor=URL.Text + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + font-style=underline + } + + "RichText url:hover" + { + textcolor=URL.Hover.Text + } + + // style of bold text in a rich text control + "RichText bold" + { + font-size=13 [$LINUX] + font-size=15 + font-weight=1000 + } + + "RichText emphasis" + { + font-size=13 [$LINUX] + font-size=15 + font-style=italic + } + + ScrollBar + { + minimum-height=0 + inset="0 0 0 0" + } + + ScrollBarButton.up + { + bgcolor=Scroll.Button.Back + minimum-height=0 + inset="-1 2 0 0" + image="graphics/Threshold/scroll/up" + render_bg + { + } + + } + + ScrollBarButton.up:hover + { + bgcolor=Scroll.Button.Hover + render_bg + { + } + } + + ScrollBarButton.up:active + { + bgcolor=Scroll.Button.Active + render_bg + { + } + } + + ScrollBarButton.up:disabled + { + bgcolor=Scroll.Button.Disabled + render_bg + { + } + } + + ScrollBarButton.down + { + bgcolor=Scroll.Button.Back + minimum-height=0 + inset="-2 0 0 0" + image="graphics/Threshold/scroll/down" + render_bg + { + } + } + + ScrollBarButton.down:hover + { + bgcolor=Scroll.Button.Hover + render_bg + { + } + } + + ScrollBarButton.down:active + { + bgcolor=Scroll.Button.Active + render_bg + { + } + } + + + ScrollBarButton.down:disabled + { + bgcolor=Scroll.Button.Disabled + render_bg + { + } + } + + ScrollBarButton.left + { + bgcolor=Scroll.Button.Back + minimum-height=0 + inset="1 3 0 0" + image="graphics/Threshold/scroll/left" + render_bg + { + } + } + + ScrollBarButton.left:hover + { + bgcolor=Scroll.Button.Hover + render_bg + { + } + } + + ScrollBarButton.right + { + bgcolor=Scroll.Button.Back + minimum-height=0 + image="graphics/Threshold/scroll/right" + inset="0 2 0 0" + render_bg + { + } + } + + ScrollBarButton.right:hover + { + bgcolor=Scroll.Button.Hover + render_bg + { + } + } + + ScrollBarHandle //vertical scrollbar thumb + { + bgcolor=Scroll.Bar.Back + minimum-height=0 + render_bg + { + } + } + + "ScrollBarHandle:hover" + { + bgcolor=Scroll.Bar.Hover + render_bg + { + } + } + + "ScrollBarHandle:active" + { + bgcolor=Scroll.Bar.Active + render_bg + { + } + } + + + + "SliderHoriz" //horizontal scrollbar thumb + { + bgcolor=Scroll.Bar.Back + minimum-height=0 + render + { + } + } + + "SliderHoriz:hover" + { + bgcolor=Scroll.Bar.Hover + render + { + } + } + + "SliderHoriz:active" + { + bgcolor=Scroll.Bar.Active + render { + } + } + + ScrollBarSlider // gutter + { + bgcolor=Scroll.Back + render{ } + render_bg + { + } + } + + ScrollBarSliderHoriz // gutter + { + bgcolor=Scroll.Back + render{ } + render_bg { } + } + + ScrollBarSlider:disabled + { + bgcolor="none" + render_bg {} + } + + "ScrollBar SliderHoriz" // gutter + { + bgcolor=Scroll.Back + } + + "HTML ScrollBar" + { + bgcolor=Scroll.Back + render_bg { + } + } + "HTML ScrollBar.Horizontal" + { + bgcolor=Scroll.Back + render_bg { + } + } + + "HTML ScrollBarSlider.Horizontal" + { + bgcolor=Scroll.Back + render_bg { + } + + } + + "HTML SliderHoriz" + { + bgcolor=Scroll.Back + render_bg + { + } + } + + SectionedListPanel + { + bgcolor=List.Back + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=List.Text + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + inset="1 -1 1 1" + render + { + } + render_bg + { + } + } + + "CFriendsDialog SectionedListPanel" + { + //bgcolor=DefaultBackground + bgcolor=JackMyth.HalfOpacity + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=List.Text + selectedtextcolor=DefaultText.Selected + //selectedbgcolor=DefaultText.Back + selectedbgcolor=JackMyth.HalfTranslucent + render { } + render_bg + { + + } + } + + SectionedlistpanelCollapser + { + render_bg + { + } + bgcolor=List.Header + image="graphics/Threshold/icons/right" + inset="6 0 0 0" + } + + "CFriendsDialog SectionedlistpanelCollapser" + { + render_bg + { + } + render{} + //bgcolor=List.Header + bgcolor=JackMyth.HalfOpacity + minimum-height=0 + image="graphics/Threshold/icons/right" + inset="6 0 0 0" + } + + SectionedListPanelCollapser:hover + { + image="graphics/Threshold/icons/right_hover" + } + + "CFriendsDialog SectionedListPanelCollapser:hover" + { + image="graphics/Threshold/icons/right_hover" + } + + SectionedListPanelCollapser:selected + { + image="graphics/Threshold/icons/down" + } + + "CFriendsDialog SectionedlistpanelCollapser:selected" + { + image="graphics/Threshold/icons/down" + } + + SectionedListPanelCollapser:selected:hover + { + image="graphics/Threshold/icons/down_hover" + } + + "CFriendsDialog SectionedListPanelCollapser:selected:hover" + { + image="graphics/Threshold/icons/down_hover" + } + + Slider //XXX: ??? I guess these are in settings? + { + font-family=basefont + font-size=10 + font-weight=400 + textcolor=SubLabel.Text + //font-style=uppercase + } + + Slider:focus + { + textcolor=Label.Text + } + + StatusLabel + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=Label.Text + font-style=normal + } + + StatusLabelDim + { + font-family=basefont + font-size=11 [$LINUX] + font-size=13 + font-weight=400 + textcolor=SubLabel.Text + font-style=normal + } + + TextEntry + { + font-family=basefont + minimum-height=30 + font-size=13 [$LINUX] + font-size=15 + textcolor=TextBox.Text + font-weight=400 + bgcolor=TextBox.Back + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor // this is the cursor color + + inset-left=4 + inset-top=0 + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 2, TextBox.Outline )" // top + 1="fill( x0, y1 - 2, x1, y1, TextBox.Outline )" // bottom + 2="fill( x0, y0, x0 + 2, y1, TextBox.Outline )" // left + 3="fill( x1 - 2, y0, x1, y1, TextBox.Outline )" // right + } + } + + "Page TextEntry" + { + bgcolor=TextBox.Back + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 2, TextBox.Outline )" // top + 1="fill( x0, y1 - 2, x1, y1, TextBox.Outline )" // bottom + 2="fill( x0, y0, x0 + 2, y1, TextBox.Outline )" // left + 3="fill( x1 - 2, y0, x1, y1, TextBox.Outline )" // right + } + } + + TextEntry:hover + { + textcolor=TextBox.Hover.Text + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 2, TextBox.Outline.Hover )" // top + 1="fill( x0, y1 - 2, x1, y1, TextBox.Outline.Hover )" // bottom + 2="fill( x0, y0, x0 + 2, y1, TextBox.Outline.Hover )" // left + 3="fill( x1 - 2, y0, x1, y1, TextBox.Outline.Hover )" // right + } + } + + "Page TextEntry:hover" + { + textcolor=TextBox.Hover.Text + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 2, TextBox.Outline.Hover )" // top + 1="fill( x0, y1 - 2, x1, y1, TextBox.Outline.Hover )" // bottom + 2="fill( x0, y0, x0 + 2, y1, TextBox.Outline.Hover )" // left + 3="fill( x1 - 2, y0, x1, y1, TextBox.Outline.Hover )" // right + } + } + + TextEntry:focus //Active + { + textcolor=TextBox.Active.Text + shadowtextcolor=TextBox.Active.Cursor + bgcolor=TextBox.Active + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 2, TextBox.Outline.Active )" // top + 1="fill( x0, y1 - 2, x1, y1, TextBox.Outline.Active )" // bottom + 2="fill( x0, y0, x0 + 2, y1, TextBox.Outline.Active )" // left + 3="fill( x1 - 2, y0, x1, y1, TextBox.Outline.Active )" // right + } + } + + "Page TextEntry:focus" + { + textcolor=TextBox.Active.Text + shadowtextcolor=TextBox.Active.Cursor + bgcolor=TextBox.Active + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 2, TextBox.Outline.Active )" // top + 1="fill( x0, y1 - 2, x1, y1, TextBox.Outline.Active )" // bottom + 2="fill( x0, y0, x0 + 2, y1, TextBox.Outline.Active )" // left + 3="fill( x1 - 2, y0, x1, y1, TextBox.Outline.Active )" // right + } + } + + + TextEntry:disabled + { + textcolor=TextBox.Disabled.Text + bgcolor=TextBox.Back + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 2, TextBox.Outline )" // top + 1="fill( x0, y1 - 2, x1, y1, TextBox.Outline )" // bottom + 2="fill( x0, y0, x0 + 2, y1, TextBox.Outline )" // left + 3="fill( x1 - 2, y0, x1, y1, TextBox.Outline )" // right + } + } + + // The 'empty' style is used for 'hint text' in text entry fields. + // If the text box does not have focus and does not have content, a + // hint text property will be shown with this style. This is comment + // to pre-fill to box with something like 'Search' that goes away when active + TextEntry:empty + { + font-style=italic + textcolor=TextBox.Disabled.Text + } + + TextEntryLarge //Used for password on login screen + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + textcolor=TextBox.Text + font-weight=400 + bgcolor=TextBox.Back + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor // this is the cursor color + + inset-left=4 + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 2, TextBox.Outline )" // top + 1="fill( x0, y1 - 2, x1, y1, TextBox.Outline )" // bottom + 2="fill( x0, y0, x0 + 2, y1, TextBox.Outline )" // left + 3="fill( x1 - 2, y0, x1, y1, TextBox.Outline )" // right + } + } + + TextEntryLarge:hover + { + textcolor=TextBox.Hover.Text + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 2, TextBox.Outline.Hover )" // top + 1="fill( x0, y1 - 2, x1, y1, TextBox.Outline.Hover )" // bottom + 2="fill( x0, y0, x0 + 2, y1, TextBox.Outline.Hover )" // left + 3="fill( x1 - 2, y0, x1, y1, TextBox.Outline.Hover )" // right + } + } + + TextEntryLarge:focus + { + textcolor=TextBox.Active.Text + shadowtextcolor=TextBox.Active.Cursor + bgcolor=TextBox.Active + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 2, TextBox.Outline.Active )" // top + 1="fill( x0, y1 - 2, x1, y1, TextBox.Outline.Active )" // bottom + 2="fill( x0, y0, x0 + 2, y1, TextBox.Outline.Active )" // left + 3="fill( x1 - 2, y0, x1, y1, TextBox.Outline.Active )" // right + } + } + + TextEntryLarge:disabled + { + textcolor=TextBox.Disabled.Text + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 2, TextBox.Outline )" // top + 1="fill( x0, y1 - 2, x1, y1, TextBox.Outline )" // bottom + 2="fill( x0, y0, x0 + 2, y1, TextBox.Outline )" // left + 3="fill( x1 - 2, y0, x1, y1, TextBox.Outline )" // right + } + } + + TextEntryURL + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + textcolor=URL.Text + font-weight=400 + bgcolor="none" + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor // this is the cursor color + inset-left=0 + inset-top=-1 + render { } + } + + TextEntryURL:Hover + { + textcolor=URL.Hover.Text + render + { + + } + } + + ToggleButton + { + inset="1 0 0 0" + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=Button.Text + bgcolor=Button.Back + render_bg + { + } + } + + ToggleButton:hover + { + textcolor=Button.Hover.Text + render_bg + { + // background fill + 0="fill( x0, y0, x0+2, y1, Button.Hover)" + 1="fill( x1-2, y0, x1, y1, Button.Hover)" + 2="fill( x0, y0, x1, y0+2, Button.Hover)" + 3="fill( x0, y1-2, x1, y1, Button.Hover)" + } + } + + ToggleButton:selected + { + textcolor=Button.Active.Text + bgcolor=Button.Active + render_bg + { + } + } + + + "Page ToggleButton" + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=Button.Text + bgcolor=Button.Page.Back + render_bg + { + } + } + + "Page ToggleButton:hover" + { + textcolor=Button.Hover.Text + render_bg + { + 1="fill( x0, y0, x0+2, y1, Button.Page.Hover)" + 2="fill( x1-2, y0, x1, y1, Button.Page.Hover)" + 3="fill( x0, y0, x1, y0+2, Button.Page.Hover)" + 4="fill( x0, y1-2, x1, y1, Button.Page.Hover)" + } + } + + "Page ToggleButton:selected" + { + textcolor=Button.Active.Text + bgcolor=Button.Active + render_bg + { + } + } + + // the background and frame of a tooltip + TooltipWindow + { + font-size=13 [$LINUX] + font-size=15 + bgcolor="Menu.Back" + render_bg{ + 1="fill( x0, y0, x1, y0 + 1, Menu.Outline )" // top + 2="fill( x0, y1 - 1, x1, y1, Menu.Outline )" // bottom + 3="fill( x0, y0, x0 + 1, y1, Menu.Outline )" // left + 4="fill( x1 - 1, y0, x1, y1, Menu.Outline )" // right + } + } + + // body text inside a tooltip + "TooltipWindow Label" + { + font-size=13 [$LINUX] + font-size=15 + padding-left=4 + textcolor=Label.Text + } + + // headline text inside a tooltip + tooltip_headline + { + font-size=13 [$LINUX] + font-size=15 + padding-left=4 + textcolor=Accent + } + + TreeNode + { + bgcolor=none + render_bg {} + } + + TreeNodeImage + { + bgcolor=none + } + + TreeViewSubPanel + { + bgcolor=none + } + + TreeNodeText + { + font-family=basefont + font-size=13 + font-size=15 + textcolor=DefaultText + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + bgcolor=none + render {} + render_bg {} + } + + TreeView //File list + { + render_bg + { + } + } + + URLLabel + { + textcolor=URL.Text + bgcolor="none" + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + font-style=underline + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + } + + URLLabel:Hover + { + textcolor=URL.Hover.Text + } + + URLLabelSimple + { + textcolor=URL.Text + bgcolor="none" + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + font-style=regular + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + } + + URLLabelSimple:Hover + { + font-style=underline + textcolor=URL.Hover.Text + } + + URLLabelSimple2 + { + textcolor=URL.Text + bgcolor="none" + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + font-style=regular + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + } + + URLLabelSimple2:Hover + { + textcolor=URL.Hover.Text + } + + + // Steam-specific styles + CConsoleHistory + { + font-family="Lucida Console" + font-size=9 + font-family="Menlo" [$OSX] + font-size=14 [$OSX] + textcolor=DefaultText + selectedtextcolor=DefaultText + //bgcolor=Root.Back + bgcolor=JackMyth.Translucent + + render + { + } + render_bg + { + } + } + + GameColumnHeaderFavorites + { + image="steam/cached/fav_remove" + } + + CGamesListFavoritesToggle + { + image="graphics/Threshold/icons/fav_addTo" + } + + CGamesListFavoritesToggle:hover + { + image="graphics/Threshold/icons/fav_addTo_ovr" + } + + CGamesListFavoritesToggle:selected + { + image="graphics/Threshold/icons/fav_remove" + } + + CGamesListFavoritesToggle:selected:hover + { + image="graphics/Threshold/icons/fav_remove_ovr" + } + + WrapPanel //XXX: ?? I think this is used for screenshot library but HMM + { + inset="0 0 0 0" + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=DefaultText + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + bgcolor=none + inset="1 -1 1 1" + render_bg { + } + } + + FullscreenButton + { + bgcolor=none + inset="8 0 0 0" + render_bg={} + render={} + image="graphics/Threshold/window_controls/fullscreen_focus" + } + + FullscreenButton:framefocus + { + image="graphics/Threshold/window_controls/fullscreen" + } + + FullscreenButton:hover + { + image="graphics/Threshold/window_controls/fullscreen" + bgcolor="TitleBar.Hover" + } + + FullscreenButton:active + { + bgcolor="TitleBar.Active" + } + + FullscreenButton:disabled + { + bgcolor=none + inset="0 0 0 0" + render_bg={} + image=none + } + + VRButton + { + inset="-10 0 0 0" + bgcolor=none + render_bg={} + render={} + image="graphics/Threshold/vr" + } + + VRButton:hover + { + bgcolor=Menu.Hover + } + + VRButton:active + { + bgcolor=Menu.Hover + } + + VRButton:disabled + { + bgcolor=none + render_bg={} + image="none" + } + + VRButtonExit + { + inset="-10 0 0 0" + bgcolor=none + render_bg={} + render={} + image="graphics/Threshold/vr" + } + + VRButtonExit:hover + { + bgcolor=Menu.Hover + } + + VRButtonExit:active + { + bgcolor=Menu.Hover + } + + VRButtonExit:disabled + { + bgcolor=none + image="none" + } + + BackButton + { + bgcolor=none + inset="0 0 0 0" + render_bg={} + image="graphics/Threshold/back" + } + + BackButton:hover + { + bgcolor=none + render_bg={} + image="graphics/Threshold/back" + } + + BackButton:active + { + bgcolor=none + render_bg={} + image="graphics/Threshold/back" + } + + BackButton:disabled + { + bgcolor=none + image="graphics/Threshold/back_dis" + render_bg{} + } + + ForwardButton + { + bgcolor=none + inset="0 0 0 0" + render_bg={} + image="graphics/Threshold/forward" + } + + ForwardButton:hover + { + bgcolor=none + render_bg={} + image="graphics/Threshold/forward" + } + + ForwardButton:active + { + bgcolor=none + render_bg={} + image="graphics/Threshold/forward" + } + + ForwardButton:disabled + { + bgcolor=none + render_bg={} + image="graphics/Threshold/forward_dis" + } + + HomeButton + { + bgcolor=none + inset="1 0 0 0" + render_bg={} + image="graphics/Threshold/home" + } + + HomeButton:hover + { + bgcolor=Menu.Button.Hover + render_bg={} + image="graphics/Threshold/home" + render_bg={ + } + } + + HomeButton:active + { + bgcolor=Accent + render_bg={} + image="graphics/Threshold/home" + render_bg={ + } + } + + HomeButton:disabled + { + bgcolor=none + render_bg={} + image="graphics/Threshold/home" + } + + ReloadButton + { + bgcolor=none + inset="1 0 0 0" + render_bg={} + image="graphics/Threshold/reload" + } + + ReloadButton:hover + { + bgcolor=Menu.Button.Hover + image="graphics/Threshold/reload" + render_bg={ + } + } + + ReloadButton:active + { + bgcolor=Accent + image="graphics/Threshold/reload" + render_bg={ + } + } + + ReloadButton:disabled + { + bgcolor=none + render_bg={} + image="graphics/Threshold/reload" + } + + StopButton + { + bgcolor=none + inset="1 0 0 0" + render_bg={} + image="graphics/Threshold/stop" + } + + StopButton:hover + { + bgcolor=Menu.Button.Hover + image="graphics/Threshold/stop" + render_bg={ + } + } + + StopButton:active + { + bgcolor=Accent + image="graphics/Threshold/stop" + render_bg={ + } + } + + StopButton:disabled + { + bgcolor=none + render_bg={} + image="graphics/Threshold/stop" + } + + "html-findbar" + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + textcolor=DefaultText + font-weight=400 + bgcolor="DefaultBackground" + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor // this is the cursor color + inset-left=0 + inset-top=0 + + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 1, Menu.Outline )" // top + 1="fill( x0, y1 - 1, x1, y1, Menu.Outline )" // bottom + 2="fill( x0, y0, x0 + 1, y1, Menu.Outline )" // left + 3="fill( x1 - 1, y0, x1, y1, Menu.Outline )" // right + } + } + + "html-imebar" + { + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + textcolor=DefaultText + font-weight=400 + bgcolor="DefaultBackground" + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + shadowtextcolor=DefaultCursor // this is the cursor color + inset-left=0 + inset-top=0 + + render + { + // lines around + 0="fill( x0, y0, x1, y0 + 1, Menu.Outline )" // top + 1="fill( x0, y1 - 1, x1, y1, Menu.Outline )" // bottom + 2="fill( x0, y0, x0 + 1, y1, Menu.Outline )" // left + 3="fill( x1 - 1, y0, x1, y1, Menu.Outline )" // right + } + } + + gamedetails-headerlabel + { + font-size=16 [$LINUX] + font-size=24 + font-style="normal" + font-family=semilight + font-weight=400 + textcolor=DefaultText + } + + gamedetails-headerlabel-red + { + font-size=16 [$LINUX] + font-size=24 + font-style="normal" + font-family=semilight + font-weight=400 + textcolor="Accent" + } + + gamedetails-headerlabel-green + { + font-size=16 [$LINUX] + font-size=24 + font-style="normal" + textcolor="Accent" + font-family=semilight + font-weight=400 + } + + gamedetails-headerlabel-blue + { + font-size=16 [$LINUX] + font-size=24 + font-style="normal" + textcolor="Accent" + font-family=semilight + font-weight=400 + } + + // styles for text used in RichText controls in various places + + console_text_error + { + textcolor="Accent" + font-size=14 + font-family="Menlo" [$OSX] + font-size=16 [$OSX] + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + } + + console_text + { + font-family="Lucida Console" + font-size=9 + font-family="Menlo" [$OSX] + font-size=14 [$OSX] + textcolor=DefaultText + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + } + + friends_chat_text //TODO: Chat text colors + { + textcolor="DefaultText" + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + font-size=13 [$LINUX] + font-size=15 + } + + friends_chat_text_self + { + textcolor="ChatOwnTextColor" + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + font-size=13 [$LINUX] + font-size=15 + } + + friends_chat_history + { + textcolor="ChatDialog.HistoryColor" + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + font-size=13 [$LINUX] + font-size=15 + } + + friends_chat_event + { + textcolor="DefaultText" + font-size=13 [$LINUX] + font-size=15 + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + } + + friends_chat_bright_event + { + textcolor="DefaultText" + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + font-size=13 [$LINUX] + font-size=15 + font-weight=1000 + } + + friends_chat_url + { + textcolor=URL.Text + font-style=underline + font-size=13 [$LINUX] + font-size=15 + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + } + + friends_chat_url:hover + { + textcolor=URL.Hover.Text + } + + friends_chat_name_ingame + { + textcolor="Friends.InGameColor" + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + font-size=13 [$LINUX] + font-size=15 + } + + friends_chat_name_golden + { + textcolor="Friends.GoldenColor" + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + font-size=13 [$LINUX] + font-size=15 + } + + + friends_chat_self + { + textcolor="Friends.OnlineColor" + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + font-size=13 [$LINUX] + font-size=15 + } + + friends_chat_name + { + textcolor="Friends.OnlineColor" + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + font-size=13 [$LINUX] + font-size=15 + } + + friends_chat_accountid + { + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + textcolor="DefaultText" + font-size=13 [$LINUX] + font-size=15 + } + + friends_chat_securitylink + { + textcolor="DefaultText" + bgcolor="none" + font-family=basefont + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + font-style=underline + selectedtextcolor=DefaultText.Selected + selectedbgcolor=DefaultText.Back + } + + friends_chat_securitylink:Hover + { + textcolor="DefaultText.Hover" + } + + CChatRoomDlg //TODO: Here lies (some) chat window things. May god have mercy on your soul + { + //bgcolor=DefaultBackground + minimum-height=400 + minimum-width=400 + render + { + } + render_bg + { + 0="image_scale(x0,y0-32,x1,y1,graphics/JackMyth/ChatRoom)" + 1="fill(x0,y0,x1,y0+55,JackMyth.HalfTranslucent)" + 2="fill(x0,y0+50,x1,y0+55,JackMyth.HalfTranslucent)" + } + + } + + ChatListPanel + { + //bgcolor=Chat.Back + //bgcolor=JackMyth.Opacity + render {} + + render_bg + { + 0="gradient(x0,y0,x1,y1,JackMyth.HalfTranslucent,JackMyth.Opacity)" + } + } + + Chat_MenuButton_withChrome + { + font-family=basefont + //font-style="uppercase" + font-size=13 [$LINUX] + font-size=15 + font-weight=400 + textcolor=DefaultText + bgcolor=Button.Back + minimum-width=120 + render_bg + { + } + } + + Chat_MenuButton_withChrome:disabled + { + textcolor=DefaultText.Disabled + render_bg + { + } + } + + // used in friends tooltip and friends list for overriding regular styles with custom colors + friends_offline + { + textcolor="Friends.OfflineColor" + } + + friends_offline:hover + { + textcolor="Friends.OfflineHoverColor" + } + + friends_online + { + textcolor="Friends.OnlineColor" + } + + friends_online:hover + { + textcolor="Friends.OnlineHoverColor" + } + + friends_ingame + { + textcolor="Friends.InGameColor" + } + + friends_ingame:hover + { + textcolor="Friends.InGameHoverColor" + } + + friends_golden + { + textcolor="Friends.GoldenColor" + } + + friends_golden:hover + { + textcolor="Friends.GoldenHoverColor" + } + + friends_ignored + { + textcolor="Friends.IgnoredColor" + } + + + TabPageCloseButton + { + padding-right=16 + } + + SuperNavMenu + { + padding-left=8 + padding-right=8 + bgcolor=Menu.Back + render {} + + render_bg + { + // top area and graphic + 0="fill(x0, y0, x0+1, y1, Menu.Outline)" //left + 1="fill(x1-1, y0, x1, y1, Menu.Outline)" //right + 2="fill(x0, y0, x1, y0+1, Menu.Outline)" //top + 3="fill(x0, y1-1, x1, y1, Menu.Outline)" //bottom + } + } + + SuperNavMenuItem + { + font-size=13 [$LINUX] + font-size=15 + font-weight=regular + textcolor=Menu.Text + bgcolor=none + } + + SuperNavMenuItem:selected + { + textcolor=Menu.Text + render_bg + { + // top area and graphic + 0="fill( x0+1, y0+1, x1-1, y1-1, Menu.Hover )" + } + } + + SuperNavMenuItem:hover + { + textcolor=Menu.Text + render_bg + { + // top area and graphic + 0="fill( x0+1, y0+1, x1-1, y1-1, Menu.Hover )" + } + } + + "SuperNavMenuDivider" //Pretty sure this uses MenuDivider anyway, why bother having two + { + textcolor="none" + render { + //1="fill( x0+6, y0+1, x1-6, y0+2, Menu.Div )" + } + } + + "NotifyRemoteClientTitle" //XXX:?? + { + textcolor="DefaultText" + } + + "NotifyRemoteClientInfo" + { + textcolor="176 172 165 255" + } + + //Special window styling for older frames + CGamePropertiesDialog + { + render_bg { + 0="fill(x0, y0, x1, y0+64, Page.Tab)" + } + } + + CServerBrowserDialog + { + render_bg { + 0="fill(x0, y0, x1, y0+64, Page.Tab)" + } + } + + CInternetGames + { + render_bg { + 0="fill(x0, y0, x1, y1 - 42, Page.Tab)" + } + } + + COverlaySettingsDialog + { + render_bg { + 0="fill(x0, y0, x1, y0+64, Page.Tab)" + } + } + + CPlayersDialog + { + render_bg { + 0="fill(x0, y0, x1, y0+64, Page.Tab)" + } + } + + } +} diff --git a/resource/valve_logo.tga b/resource/valve_logo.tga new file mode 100644 index 0000000..9017f1f Binary files /dev/null and b/resource/valve_logo.tga differ diff --git a/resource/valve_logo_welcome.tga b/resource/valve_logo_welcome.tga new file mode 100644 index 0000000..67a1488 Binary files /dev/null and b/resource/valve_logo_welcome.tga differ diff --git a/resource/vprofpanel.res b/resource/vprofpanel.res new file mode 100644 index 0000000..5e6a93e --- /dev/null +++ b/resource/vprofpanel.res @@ -0,0 +1,164 @@ +"Resource\VProfPanel.res" +{ + "UIProfilePanel" + { + "ControlName" "CVProfPanel" + "fieldName" "UIProfilePanel" + "wide" "1200" + "tall" "400" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "VProf" + } + "ProfileTree" + { + "ControlName" "CProfileTree" + "fieldName" "ProfileTree" + "xpos" "1" + "ypos" "20" + "wide" "277" + "tall" "275" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Hierarchy" + { + "ControlName" "CProfileHierarchyPanel" + "fieldName" "Hierarchy" + "xpos" "10" + "ypos" "95" + "wide" "1180" + "tall" "295" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "CategoryCombo" + { + "ControlName" "ComboBox" + "fieldName" "CategoryCombo" + "xpos" "100" + "ypos" "30" + "wide" "230" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "SortCombo" + { + "ControlName" "ComboBox" + "fieldName" "SortCombo" + "xpos" "737" + "ypos" "30" + "wide" "149" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "HierarchicalViewSelection" + { + "ControlName" "CheckButton" + "fieldName" "HierarchicalViewSelection" + "xpos" "475" + "ypos" "30" + "wide" "151" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "Hierarchical View" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "RedoSorting" + { + "ControlName" "Button" + "fieldName" "RedoSorting" + "xpos" "629" + "ypos" "30" + "wide" "105" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "Redo Sorting" + "textAlignment" "west" + "wrap" "0" + "Command" "redosort" + "Default" "1" + } + "VerboseCheckbox" + { + "ControlName" "CheckButton" + "fieldName" "VerboseCheckbox" + "xpos" "337" + "ypos" "30" + "wide" "135" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "Verbose" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "CategoryLabel" + { + "ControlName" "Label" + "fieldName" "CategoryLabel" + "xpos" "10" + "ypos" "30" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "Category :" + "textAlignment" "east" + "wrap" "0" + } +} diff --git a/resource/webkit.css b/resource/webkit.css new file mode 100644 index 0000000..37dcd71 --- /dev/null +++ b/resource/webkit.css @@ -0,0 +1,56 @@ +::-webkit-scrollbar, +::-webkit-scrollbar-corner { + width: 15px; + height: 15px; + background: #171717; +} + +::-webkit-scrollbar-track, +::-webkit-scrollbar-thumb { + background: #454545 center no-repeat; +} + +::-webkit-scrollbar-button { + background: #171717 center no-repeat; +} + +::-webkit-scrollbar-thumb { + background-color: #454545; +} + +::-webkit-scrollbar-track:vertical { + background: #171717 +} + +::-webkit-scrollbar-track:horizontal { + background: #171717 +} + + +::-webkit-scrollbar-button:hover, +::-webkit-scrollbar-thumb:hover { + background-color: #747474; +} + +::-webkit-scrollbar-button:vertical:decrement { + height: 20px; + background-position: center 7px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAFCAYAAACJmvbYAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wwNACYmCfU3XwAAAFxJREFUCNctzbENgQEYANH3iVZhEI0lRKLW28BUWptotBKdBfRO81eXV50KVJfqVl0WW82M6ow9fthX55mxro444IEndjhU3zVOeOM+M5/qhS1Oqmu1WT6zdFNd/1BeOOkXJGp1AAAAAElFTkSuQmCC); +} + +::-webkit-scrollbar-button:vertical:increment { + height: 20px; + background-position: center 7px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAFCAYAAACJmvbYAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wwNACU2P290+AAAAF1JREFUCNc1zKERAQAYgNH3m0ARJYEumMidPSzhzgjmEAQDyBawwaeQXnuqW7WCan6uqtsCd5yr3cxU7XDGfaoNTvjgjTWWuPybLY7Y44nrzLymMjOqA7Z4zcyj8gXb2zFx5ZM4DwAAAABJRU5ErkJggg==); +} + +::-webkit-scrollbar-button:horizontal:decrement { + width: 20px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAHCAYAAADAp4fuAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wwNACYI1SM6kAAAAFxJREFUCNdtzbENQWEAhdFz5Z/CDho7yItErTeSAcxgADtoXqnQaRV6V6MS7VecL20l0XaLHW7jG/aYcMdptD1gjSvOSV4DG7wxJ3m0zQIXPLFqu0zS4Nc85t/9A28+Kv/T/CdEAAAAAElFTkSuQmCC); +} + +::-webkit-scrollbar-button:horizontal:increment { + width: 20px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAHCAYAAADAp4fuAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wwNACYWLywH8wAAAGRJREFUCNctyqERgQEABtD3ub8KIk1TjCGI7pwBWMAyogWc7izxFzsQjfAp8nvantte2m6hrQmu+GDf9pBE/rrADiuMk7ZJ8sYLM2yGJP3PNb4Yh7ZTHLHEM8ltwAlz3JM82voBsvorxYBJxB4AAAAASUVORK5CYII=); +} + diff --git a/resource/workshop_banner.tga b/resource/workshop_banner.tga new file mode 100644 index 0000000..78e1157 Binary files /dev/null and b/resource/workshop_banner.tga differ diff --git a/resource/workshop_minibanner.tga b/resource/workshop_minibanner.tga new file mode 100644 index 0000000..151d8d9 Binary files /dev/null and b/resource/workshop_minibanner.tga differ diff --git a/servers/AddServerGamesPage.res b/servers/AddServerGamesPage.res new file mode 100644 index 0000000..3c83524 --- /dev/null +++ b/servers/AddServerGamesPage.res @@ -0,0 +1,331 @@ +"servers/AddServerGamesPage.res" +{ + "InternetGames" + { + "ControlName" "CInternetGames" + "fieldName" "InternetGames" + "xpos" "0" + "ypos" "28" + "wide" "624" + "tall" "278" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "AddToFavoritesButton" + { + "ControlName" "Button" + "fieldName" "AddToFavoritesButton" + "xpos" "384" + "ypos" "247" + "wide" "232" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "0" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#ServerBrowser_AddSelectedToFavorites" + "textAlignment" "west" + "wrap" "0" + "Command" "OnAddToFavorites" + "Default" "0" + } + "gamelist" + { + "ControlName" "ListPanel" + "fieldName" "gamelist" + "xpos" "8" + "ypos" "8" + "wide" "608" + "tall" "230" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + + + "RefreshButton" + { + "ControlName" "Button" + "fieldName" "RefreshButton" + "xpos" "462" + "ypos" "212" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "0" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#ServerBrowser_RefreshAll" + "textAlignment" "west" + "wrap" "0" + "Command" "GetNewList" + "Default" "0" + } + "RefreshQuickButton" + { + "ControlName" "Button" + "fieldName" "RefreshQuickButton" + "xpos" "364" + "ypos" "212" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_RefreshQuick" + "textAlignment" "west" + "wrap" "0" + "Command" "refresh" + "Default" "0" + } + "AddServerButton" + { + "ControlName" "Button" + "fieldName" "AddServerButton" + "xpos" "364" + "ypos" "212" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "0" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#ServerBrowser_AddServer" + "textAlignment" "west" + "wrap" "0" + "Command" "AddServerByName" + "Default" "0" + } + "AddCurrentServerButton" + { + "ControlName" "Button" + "fieldName" "AddServerButton" + "xpos" "216" + "ypos" "212" + "wide" "142" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "0" + "enabled" "0" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#ServerBrowser_AddCurrentServer" + "textAlignment" "west" + "wrap" "0" + "Command" "AddCurrentServer" + "Default" "0" + } + "Filter" + { + "ControlName" "ToggleButton" + "fieldName" "Filter" + "xpos" "8" + "ypos" "212" + "wide" "108" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#ServerBrowser_ChangeFilters" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "FilterString" + { + "ControlName" "Label" + "fieldName" "FilterString" + "xpos" "12" + "ypos" "242" + "wide" "600" + "tall" "24" + "AutoResize" "1" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "LabelDull" + "textAlignment" "west" + "wrap" "0" + dulltext 1 + } + "GameFilter" + { + "ControlName" "ComboBox" + "fieldName" "GameFilter" + "xpos" "60" + "ypos" "150" + "wide" "164" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "LocationFilter" + { + "ControlName" "ComboBox" + "fieldName" "LocationFilter" + "xpos" "311" + "ypos" "180" + "wide" "112" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "MapFilter" + { + "ControlName" "TextEntry" + "fieldName" "MapFilter" + "xpos" "60" + "ypos" "180" + "wide" "164" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "PingFilter" + { + "ControlName" "ComboBox" + "fieldName" "PingFilter" + "xpos" "311" + "ypos" "150" + "wide" "112" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "SecureFilter" + { + "ControlName" "ComboBox" + "fieldName" "SecureFilter" + "xpos" "311" + "ypos" "210" + "wide" "112" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "ServerEmptyFilterCheck" + { + "ControlName" "CheckButton" + "fieldName" "ServerEmptyFilterCheck" + "xpos" "436" + "ypos" "174" + "wide" "184" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "7" + "paintbackground" "1" + "labelText" "#ServerBrowser_HasUsersPlaying" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "ServerFullFilterCheck" + { + "ControlName" "CheckButton" + "fieldName" "ServerFullFilterCheck" + "xpos" "436" + "ypos" "150" + "wide" "184" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "6" + "paintbackground" "1" + "labelText" "#ServerBrowser_ServerNotFull" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "NoPasswordFilterCheck" + { + "ControlName" "CheckButton" + "fieldName" "NoPasswordFilterCheck" + "xpos" "436" + "ypos" "198" + "wide" "184" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "8" + "paintbackground" "1" + "labelText" "#ServerBrowser_IsNotPasswordProtected" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + +} diff --git a/servers/DialogAddServer.res b/servers/DialogAddServer.res new file mode 100644 index 0000000..ce54abd --- /dev/null +++ b/servers/DialogAddServer.res @@ -0,0 +1,187 @@ +"Servers/DialogAddServer.res" +{ + "DialogAddServer" + { + "ControlName" "CDialogAddServer" + "fieldName" "DialogAddServer" + "xpos" "516" + "ypos" "487" + "wide" "572" + "tall" "390" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#ServerBrowser_AddServersTitle" + } + "GameTabs" + { + "ControlName" "PropertySheet" + "fieldName" "GameTabs" + "xpos" "20" + "ypos" "175" + "wide" "526" + "tall" "150" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Servers" + { + "ControlName" "ListPanel" + "fieldName" "Servers" + "xpos" "0" + "ypos" "28" + "wide" "526" + "tall" "122" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "ServerNameText" + { + "ControlName" "TextEntry" + "fieldName" "ServerNameText" + "xpos" "20" + "ypos" "74" + "wide" "330" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "TestServersButton" + { + "ControlName" "Button" + "fieldName" "TestServersButton" + "xpos" "356" + "ypos" "102" + "wide" "190" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#ServerBrowser_FindGames" + "textAlignment" "west" + "wrap" "0" + "Command" "TestServers" + "Default" "0" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "356" + "ypos" "74" + "wide" "190" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#ServerBrowser_AddAddressToFavorites" + "textAlignment" "west" + "wrap" "0" + "Command" "OK" + "Default" "1" + } + "SelectedOKButton" + { + "ControlName" "Button" + "fieldName" "SelectedOKButton" + "xpos" "336" + "ypos" "340" + "wide" "210" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_AddSelectedToFavorites" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "22" + "ypos" "46" + "wide" "330" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_EnterIPofServerToAdd" + "textAlignment" "west" + "font" "UiBold" + "wrap" "0" + } + "ExampleLabel" + { + "ControlName" "Label" + "fieldName" "ExampleLabel" + "xpos" "22" + "ypos" "106" + "wide" "328" + "tall" "74" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#ServerBrowser_Examples" + "textAlignment" "north-west" + "wrap" "0" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "482" + "ypos" "131" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#ServerBrowser_Cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } +} diff --git a/servers/DialogGameInfo.res b/servers/DialogGameInfo.res new file mode 100644 index 0000000..b3a9d6d --- /dev/null +++ b/servers/DialogGameInfo.res @@ -0,0 +1,455 @@ +"Servers\DialogGameInfo.res" +{ + "DialogGameInfo" + { + "ControlName" "CDialogGameInfo" + "fieldName" "DialogGameInfo" + "xpos" "100" + "ypos" "100" + "wide" "416" + "tall" "440" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + } + "Connect" + { + "ControlName" "Button" + "fieldName" "Connect" + "xpos" "122" + "ypos" "400" + "wide" "80" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "labelText" "#ServerBrowser_JoinGame" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "1" + } + "Close" + { + "ControlName" "Button" + "fieldName" "Close" + "xpos" "312" + "ypos" "400" + "wide" "80" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "labelText" "#ServerBrowser_Close" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + } + "Refresh" + { + "ControlName" "Button" + "fieldName" "Refresh" + "xpos" "218" + "ypos" "400" + "wide" "80" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "labelText" "#ServerBrowser_Refresh" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "26" + "ypos" "371" + "wide" "356" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_AlertWhenSlotIsFree" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "AutoRetry" + { + "ControlName" "ToggleButton" + "fieldName" "AutoRetry" + "xpos" "28" + "ypos" "400" + "wide" "80" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "4" + "labelText" "#ServerBrowser_AutoRetry" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + } + "AutoRetryAlert" + { + "ControlName" "RadioButton" + "fieldName" "AutoRetryAlert" + "xpos" "27" + "ypos" "375" + "wide" "358" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "5" + "labelText" "#ServerBrowser_AlertMeWhenSlotOpens" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + "SubTabPosition" "1" + } + "AutoRetryJoin" + { + "ControlName" "RadioButton" + "fieldName" "AutoRetryJoin" + "xpos" "28" + "ypos" "396" + "wide" "356" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "5" + "labelText" "#ServerBrowser_JoinWhenSlotOpens" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + "SubTabPosition" "2" + } + "PlayerList" + { + "ControlName" "ListPanel" + "fieldName" "PlayerList" + "xpos" "24" + "ypos" "228" + "wide" "368" + "tall" "140" + "autoResize" "3" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "SysMenu" + { + "ControlName" "Menu" + "fieldName" "SysMenu" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + } + "ServerLabel" + { + "ControlName" "Label" + "fieldName" "ServerLabel" + "xpos" "16" + "ypos" "42" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_ServerName" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "GameLabel" + { + "ControlName" "Label" + "fieldName" "GameLabel" + "xpos" "16" + "ypos" "90" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_GameLabel" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "ServerIPLabel" + { + "ControlName" "Label" + "fieldName" "ServerIPLabel" + "xpos" "16" + "ypos" "66" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_IPAddressLabel" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "MapLabel" + { + "ControlName" "Label" + "fieldName" "MapLabel" + "xpos" "16" + "ypos" "114" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_MapLabel" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "PlayersLabel" + { + "ControlName" "Label" + "fieldName" "PlayersLabel" + "xpos" "16" + "ypos" "138" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_PlayersLabel" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "PingLabel" + { + "ControlName" "Label" + "fieldName" "PingLabel" + "xpos" "16" + "ypos" "186" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_LatencyLabel" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "ServerText" + { + "ControlName" "Label" + "fieldName" "ServerText" + "xpos" "128" + "ypos" "42" + "wide" "260" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "Counter-Strike Source dedicated server" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "GameText" + { + "ControlName" "Label" + "fieldName" "GameText" + "xpos" "128" + "ypos" "90" + "wide" "260" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "Counter-Strike: Source" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "ServerIPText" + { + "ControlName" "TextEntry" + "fieldName" "ServerIPText" + "xpos" "128" + "ypos" "64" + "wide" "260" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "MapText" + { + "ControlName" "Label" + "fieldName" "MapText" + "xpos" "128" + "ypos" "114" + "wide" "260" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "cs_compound" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "PlayersText" + { + "ControlName" "Label" + "fieldName" "PlayersText" + "xpos" "128" + "ypos" "138" + "wide" "260" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "0 / 24" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "PingText" + { + "ControlName" "Label" + "fieldName" "PingText" + "xpos" "128" + "ypos" "186" + "wide" "260" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "12" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "15" + "ypos" "162" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_ValveAntiCheat" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "SecureText" + { + "ControlName" "Label" + "fieldName" "SecureText" + "xpos" "128" + "ypos" "162" + "wide" "260" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_Secure" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } +} + diff --git a/servers/DialogGameInfo_AutoRetry.res b/servers/DialogGameInfo_AutoRetry.res new file mode 100644 index 0000000..dea0e65 --- /dev/null +++ b/servers/DialogGameInfo_AutoRetry.res @@ -0,0 +1,460 @@ +"Servers\DialogGameInfo.res" +{ + "DialogGameInfo" + { + "ControlName" "CDialogGameInfo" + "fieldName" "DialogGameInfo" + "xpos" "376" + "ypos" "183" + "wide" "416" + "tall" "500" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + } + "Connect" + { + "ControlName" "Button" + "fieldName" "Connect" + "xpos" "122" + "ypos" "400" + "wide" "80" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "labelText" "#ServerBrowser_JoinGame" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "1" + "selected" "0" + } + "Close" + { + "ControlName" "Button" + "fieldName" "Close" + "xpos" "312" + "ypos" "400" + "wide" "80" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "labelText" "#ServerBrowser_Close" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "Refresh" + { + "ControlName" "Button" + "fieldName" "Refresh" + "xpos" "218" + "ypos" "400" + "wide" "80" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "labelText" "#ServerBrowser_Refresh" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "26" + "ypos" "371" + "wide" "356" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_AlertWhenSlotIsFree" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "AutoRetry" + { + "ControlName" "ToggleButton" + "fieldName" "AutoRetry" + "xpos" "28" + "ypos" "400" + "wide" "80" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "labelText" "#ServerBrowser_AutoRetry" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + "selected" "1" + } + "AutoRetryAlert" + { + "ControlName" "RadioButton" + "fieldName" "AutoRetryAlert" + "xpos" "27" + "ypos" "435" + "wide" "358" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_AlertMeWhenSlotOpens" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "1" + } + "AutoRetryJoin" + { + "ControlName" "RadioButton" + "fieldName" "AutoRetryJoin" + "xpos" "28" + "ypos" "456" + "wide" "356" + "tall" "24" + "autoResize" "0" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_JoinWhenSlotOpens" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "2" + } + "PlayerList" + { + "ControlName" "ListPanel" + "fieldName" "PlayerList" + "xpos" "24" + "ypos" "228" + "wide" "368" + "tall" "140" + "autoResize" "3" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "SysMenu" + { + "ControlName" "Menu" + "fieldName" "SysMenu" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + } + "ServerLabel" + { + "ControlName" "Label" + "fieldName" "ServerLabel" + "xpos" "16" + "ypos" "42" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_ServerName" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "GameLabel" + { + "ControlName" "Label" + "fieldName" "GameLabel" + "xpos" "16" + "ypos" "90" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_GameLabel" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "ServerIPLabel" + { + "ControlName" "Label" + "fieldName" "ServerIPLabel" + "xpos" "16" + "ypos" "66" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_IPAddressLabel" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "MapLabel" + { + "ControlName" "Label" + "fieldName" "MapLabel" + "xpos" "16" + "ypos" "114" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_MapLabel" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "PlayersLabel" + { + "ControlName" "Label" + "fieldName" "PlayersLabel" + "xpos" "16" + "ypos" "138" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_PlayersLabel" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "PingLabel" + { + "ControlName" "Label" + "fieldName" "PingLabel" + "xpos" "16" + "ypos" "186" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_LatencyLabel" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "ServerText" + { + "ControlName" "Label" + "fieldName" "ServerText" + "xpos" "128" + "ypos" "42" + "wide" "260" + "tall" "20" + "autoResize" "1" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "test" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "GameText" + { + "ControlName" "Label" + "fieldName" "GameText" + "xpos" "128" + "ypos" "90" + "wide" "260" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "Day of Defeat: Source" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "ServerIPText" + { + "ControlName" "TextEntry" + "fieldName" "ServerIPText" + "xpos" "128" + "ypos" "64" + "wide" "260" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "MapText" + { + "ControlName" "Label" + "fieldName" "MapText" + "xpos" "128" + "ypos" "114" + "wide" "260" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "dod_anzio" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "PlayersText" + { + "ControlName" "Label" + "fieldName" "PlayersText" + "xpos" "128" + "ypos" "138" + "wide" "260" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "2 / 2" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "PingText" + { + "ControlName" "Label" + "fieldName" "PingText" + "xpos" "128" + "ypos" "186" + "wide" "260" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "12" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "15" + "ypos" "162" + "wide" "108" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_ValveAntiCheat" + "textAlignment" "east" + "dulltext" "1" + "brighttext" "0" + "wrap" "0" + } + "SecureText" + { + "ControlName" "Label" + "fieldName" "SecureText" + "xpos" "128" + "ypos" "162" + "wide" "260" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#ServerBrowser_Secure" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } +} diff --git a/servers/DialogGameInfo_NonSteam.res b/servers/DialogGameInfo_NonSteam.res new file mode 100644 index 0000000..d63e6e7 --- /dev/null +++ b/servers/DialogGameInfo_NonSteam.res @@ -0,0 +1,454 @@ +"Servers/DialogGameInfo_NonSteam.res" +{ + "DialogGameInfo" + { + "ControlName" "CDialogGameInfo" + "fieldName" "DialogGameInfo" + "xpos" "570" + "ypos" "246" + "wide" "416" + "tall" "180" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#ServerBrowser_GameInfoWithNameTitle" + } + "Connect" + { + "ControlName" "Button" + "fieldName" "Connect" + "xpos" "122" + "ypos" "140" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#ServerBrowser_JoinGame" + "textAlignment" "west" + "wrap" "0" + "Default" "1" + } + "Close" + { + "ControlName" "Button" + "fieldName" "Close" + "xpos" "295" + "ypos" "137" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#ServerBrowser_Close" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "Refresh" + { + "ControlName" "Button" + "fieldName" "Refresh" + "xpos" "218" + "ypos" "140" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#ServerBrowser_Refresh" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "26" + "ypos" "111" + "wide" "356" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_ServerNotResponding" + "textAlignment" "west" + "wrap" "0" + } + "AutoRetry" + { + "ControlName" "ToggleButton" + "fieldName" "AutoRetry" + "xpos" "28" + "ypos" "140" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#ServerBrowser_AutoRetry" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "AutoRetryAlert" + { + "ControlName" "RadioButton" + "fieldName" "AutoRetryAlert" + "xpos" "27" + "ypos" "115" + "wide" "358" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#ServerBrowser_AlertMeWhenSlotOpens" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "1" + } + "AutoRetryJoin" + { + "ControlName" "RadioButton" + "fieldName" "AutoRetryJoin" + "xpos" "28" + "ypos" "136" + "wide" "356" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#ServerBrowser_JoinWhenSlotOpens" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "2" + } + "PlayerList" + { + "ControlName" "ListPanel" + "fieldName" "PlayerList" + "xpos" "24" + "ypos" "228" + "wide" "368" + "tall" "0" + "AutoResize" "3" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "ServerLabel" + { + "ControlName" "Label" + "fieldName" "ServerLabel" + "xpos" "16" + "ypos" "42" + "wide" "108" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_ServerName" + "textAlignment" "east" + "wrap" "0" + } + "GameLabel" + { + "ControlName" "Label" + "fieldName" "GameLabel" + "xpos" "16" + "ypos" "60" + "wide" "90" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_GameLabel" + "textAlignment" "east" + "wrap" "0" + } + "ServerIPLabel" + { + "ControlName" "Label" + "fieldName" "ServerIPLabel" + "xpos" "16" + "ypos" "66" + "wide" "108" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_IPAddressLabel" + "textAlignment" "east" + "wrap" "0" + } + "MapLabel" + { + "ControlName" "Label" + "fieldName" "MapLabel" + "xpos" "16" + "ypos" "114" + "wide" "108" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_MapLabel" + "textAlignment" "east" + "wrap" "0" + } + "PlayersLabel" + { + "ControlName" "Label" + "fieldName" "PlayersLabel" + "xpos" "16" + "ypos" "138" + "wide" "108" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_PlayersLabel" + "textAlignment" "east" + "wrap" "0" + } + "PingLabel" + { + "ControlName" "Label" + "fieldName" "PingLabel" + "xpos" "16" + "ypos" "186" + "wide" "108" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_LatencyLabel" + "textAlignment" "east" + "wrap" "0" + } + "ServerText" + { + "ControlName" "Label" + "fieldName" "ServerText" + "xpos" "128" + "ypos" "42" + "wide" "260" + "tall" "20" + "AutoResize" "1" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } + "GameText" + { + "ControlName" "Label" + "fieldName" "GameText" + "xpos" "128" + "ypos" "60" + "wide" "260" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "Team Fortress Classic" + "textAlignment" "west" + "wrap" "0" + } + "ServerIPText" + { + "ControlName" "TextEntry" + "fieldName" "ServerIPText" + "xpos" "128" + "ypos" "64" + "wide" "260" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "MapText" + { + "ControlName" "Label" + "fieldName" "MapText" + "xpos" "128" + "ypos" "114" + "wide" "260" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } + "PlayersText" + { + "ControlName" "Label" + "fieldName" "PlayersText" + "xpos" "128" + "ypos" "138" + "wide" "260" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } + "PingText" + { + "ControlName" "Label" + "fieldName" "PingText" + "xpos" "128" + "ypos" "186" + "wide" "260" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "15" + "ypos" "162" + "wide" "108" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "Label" + "textAlignment" "east" + "wrap" "0" + } + "SecureText" + { + "ControlName" "Label" + "fieldName" "SecureText" + "xpos" "128" + "ypos" "162" + "wide" "260" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "128" + "ypos" "82" + "wide" "256" + "tall" "52" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_NonSteamGame" + "textAlignment" "north-west" + "wrap" "1" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "16" + "ypos" "82" + "wide" "90" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_ServerLabel" + "textAlignment" "north-east" + "wrap" "0" + } +} diff --git a/servers/DialogGameInfo_SinglePlayer.res b/servers/DialogGameInfo_SinglePlayer.res new file mode 100644 index 0000000..c54a0b1 --- /dev/null +++ b/servers/DialogGameInfo_SinglePlayer.res @@ -0,0 +1,454 @@ +"Servers/DialogGameInfo_SinglePlayer.res" +{ + "DialogGameInfo" + { + "ControlName" "CDialogGameInfo" + "fieldName" "DialogGameInfo" + "xpos" "570" + "ypos" "246" + "wide" "416" + "tall" "180" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#ServerBrowser_GameInfoWithNameTitle" + } + "Connect" + { + "ControlName" "Button" + "fieldName" "Connect" + "xpos" "195" + "ypos" "137" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "0" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#ServerBrowser_JoinGame" + "textAlignment" "west" + "wrap" "0" + "Default" "1" + } + "Close" + { + "ControlName" "Button" + "fieldName" "Close" + "xpos" "295" + "ypos" "137" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#ServerBrowser_Close" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "Refresh" + { + "ControlName" "Button" + "fieldName" "Refresh" + "xpos" "218" + "ypos" "140" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#ServerBrowser_Refresh" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "26" + "ypos" "111" + "wide" "356" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_ServerNotResponding" + "textAlignment" "west" + "wrap" "0" + } + "AutoRetry" + { + "ControlName" "ToggleButton" + "fieldName" "AutoRetry" + "xpos" "28" + "ypos" "140" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#ServerBrowser_AutoRetry" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "AutoRetryAlert" + { + "ControlName" "RadioButton" + "fieldName" "AutoRetryAlert" + "xpos" "27" + "ypos" "115" + "wide" "358" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#ServerBrowser_AlertMeWhenSlotOpens" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "1" + } + "AutoRetryJoin" + { + "ControlName" "RadioButton" + "fieldName" "AutoRetryJoin" + "xpos" "28" + "ypos" "136" + "wide" "356" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#ServerBrowser_JoinWhenSlotOpens" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "2" + } + "PlayerList" + { + "ControlName" "ListPanel" + "fieldName" "PlayerList" + "xpos" "24" + "ypos" "228" + "wide" "368" + "tall" "0" + "AutoResize" "3" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "ServerLabel" + { + "ControlName" "Label" + "fieldName" "ServerLabel" + "xpos" "16" + "ypos" "42" + "wide" "108" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_ServerName" + "textAlignment" "east" + "wrap" "0" + } + "GameLabel" + { + "ControlName" "Label" + "fieldName" "GameLabel" + "xpos" "16" + "ypos" "60" + "wide" "90" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_GameLabel" + "textAlignment" "east" + "wrap" "0" + } + "ServerIPLabel" + { + "ControlName" "Label" + "fieldName" "ServerIPLabel" + "xpos" "16" + "ypos" "66" + "wide" "108" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_IPAddressLabel" + "textAlignment" "east" + "wrap" "0" + } + "MapLabel" + { + "ControlName" "Label" + "fieldName" "MapLabel" + "xpos" "16" + "ypos" "114" + "wide" "108" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_MapLabel" + "textAlignment" "east" + "wrap" "0" + } + "PlayersLabel" + { + "ControlName" "Label" + "fieldName" "PlayersLabel" + "xpos" "16" + "ypos" "138" + "wide" "108" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_PlayersLabel" + "textAlignment" "east" + "wrap" "0" + } + "PingLabel" + { + "ControlName" "Label" + "fieldName" "PingLabel" + "xpos" "16" + "ypos" "186" + "wide" "108" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_LatencyLabel" + "textAlignment" "east" + "wrap" "0" + } + "ServerText" + { + "ControlName" "Label" + "fieldName" "ServerText" + "xpos" "128" + "ypos" "42" + "wide" "260" + "tall" "20" + "AutoResize" "1" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } + "GameText" + { + "ControlName" "Label" + "fieldName" "GameText" + "xpos" "128" + "ypos" "60" + "wide" "260" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "Team Fortress Classic" + "textAlignment" "west" + "wrap" "0" + } + "ServerIPText" + { + "ControlName" "TextEntry" + "fieldName" "ServerIPText" + "xpos" "128" + "ypos" "64" + "wide" "260" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "MapText" + { + "ControlName" "Label" + "fieldName" "MapText" + "xpos" "128" + "ypos" "114" + "wide" "260" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } + "PlayersText" + { + "ControlName" "Label" + "fieldName" "PlayersText" + "xpos" "128" + "ypos" "138" + "wide" "260" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } + "PingText" + { + "ControlName" "Label" + "fieldName" "PingText" + "xpos" "128" + "ypos" "186" + "wide" "260" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "15" + "ypos" "162" + "wide" "108" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "Label" + "textAlignment" "east" + "wrap" "0" + } + "SecureText" + { + "ControlName" "Label" + "fieldName" "SecureText" + "xpos" "128" + "ypos" "162" + "wide" "260" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } + "StatusInfo" + { + "ControlName" "Label" + "fieldName" "StatusInfo" + "xpos" "128" + "ypos" "82" + "wide" "256" + "tall" "52" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_FriendNotInGameServer" + "textAlignment" "north-west" + "wrap" "1" + } + "StatusLabel" + { + "ControlName" "Label" + "fieldName" "StatusLabel" + "xpos" "16" + "ypos" "82" + "wide" "90" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_ServerLabel" + "textAlignment" "north-east" + "wrap" "0" + } +} diff --git a/servers/DialogServerBrowser.res b/servers/DialogServerBrowser.res new file mode 100644 index 0000000..09a3aae --- /dev/null +++ b/servers/DialogServerBrowser.res @@ -0,0 +1,63 @@ +"Servers/DialogServerBrowser.res" +{ + "CServerBrowserDialog" + { + "ControlName" "Frame" + "fieldName" "CServerBrowserDialog" + "xpos" "1" + "ypos" "1" + "wide" "602" + "tall" "387" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "GameTabs" + { + "ControlName" "PropertySheet" + "fieldName" "GameTabs" + "xpos" "1" + "ypos" "24" + "wide" "638" + "tall" "338" + "autoResize" "3" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + } + "StatusLabel" + { + "ControlName" "Label" + "fieldName" "StatusLabel" + "xpos" "1" + "ypos" "362" + "wide" "5000" + "tall" "24" + "autoResize" "1" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "textAlignment" "west" + "dulltext" "0" + "zpos" "-1" + style="status" + } + + styles + { + status + { + inset="8 0 0 0" + } + } + + layout + { + place { control=GameTabs x=0 y=28 width=max height=max margin-bottom=10} + place { control=StatusLabel width=0 height=0} + } +} diff --git a/servers/DialogServerPassword.res b/servers/DialogServerPassword.res new file mode 100644 index 0000000..ec2e6d5 Binary files /dev/null and b/servers/DialogServerPassword.res differ diff --git a/servers/InternetGamesPage.res b/servers/InternetGamesPage.res new file mode 100644 index 0000000..12230c7 --- /dev/null +++ b/servers/InternetGamesPage.res @@ -0,0 +1,300 @@ +"servers/InternetGamesPage.res" +{ + "InternetGames" + { + "ControlName" "CInternetGames" + "fieldName" "InternetGames" + "xpos" "0" + "ypos" "28" + "wide" "624" + "tall" "278" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "ConnectButton" + { + "ControlName" "Button" + "fieldName" "ConnectButton" + "xpos" "512" + "ypos" "244" + "wide" "104" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "0" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#ServerBrowser_Connect" + "textAlignment" "west" + "wrap" "0" + "Command" "connect" + "Default" "1" + } + "RefreshButton" + { + "ControlName" "Button" + "fieldName" "RefreshButton" + "xpos" "399" + "ypos" "244" + "wide" "104" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#ServerBrowser_RefreshAll" + "textAlignment" "west" + "wrap" "0" + "Command" "GetNewList" + "Default" "0" + } + "RefreshQuickButton" + { + "ControlName" "Button" + "fieldName" "RefreshQuickButton" + "xpos" "267" + "ypos" "244" + "wide" "124" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_RefreshQuick" + "textAlignment" "west" + "wrap" "0" + "Command" "refresh" + "Default" "0" + } + "AddServerButton" + { + "ControlName" "Button" + "fieldName" "AddServerButton" + "xpos" "267" + "ypos" "244" + "wide" "124" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "0" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#ServerBrowser_AddServer" + "textAlignment" "west" + "wrap" "0" + "Command" "AddServerByName" + "Default" "0" + } + "gamelist" + { + "ControlName" "ListPanel" + "fieldName" "gamelist" + "xpos" "8" + "ypos" "8" + "wide" "608" + "tall" "226" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + margin-right=8 + } + "Filter" + { + "ControlName" "ToggleButton" + "fieldName" "Filter" + "xpos" "8" + "ypos" "244" + "wide" "128" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#ServerBrowser_ChangeFilters" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "FilterString" + { + "ControlName" "Label" + "fieldName" "FilterString" + "xpos" "142" + "ypos" "244" + "wide" "200" + "tall" "24" + "AutoResize" "1" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "LabelDull" + "textAlignment" "west" + "wrap" "0" + } + "GameFilter" + { + "ControlName" "ComboBox" + "fieldName" "GameFilter" + "xpos" "70" + "ypos" "150" + "wide" "164" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "MapFilter" + { + "ControlName" "TextEntry" + "fieldName" "MapFilter" + "xpos" "70" + "ypos" "180" + "wide" "164" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "PingFilter" + { + "ControlName" "ComboBox" + "fieldName" "PingFilter" + "xpos" "311" + "ypos" "150" + "wide" "112" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "SecureFilter" + { + "ControlName" "ComboBox" + "fieldName" "SecureFilter" + "xpos" "311" + "ypos" "210" + "wide" "112" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "ServerEmptyFilterCheck" + { + "ControlName" "CheckButton" + "fieldName" "ServerEmptyFilterCheck" + "xpos" "436" + "ypos" "174" + "wide" "184" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "7" + "paintbackground" "1" + "labelText" "#ServerBrowser_HasUsersPlaying" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "ServerFullFilterCheck" + { + "ControlName" "CheckButton" + "fieldName" "ServerFullFilterCheck" + "xpos" "436" + "ypos" "150" + "wide" "184" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "6" + "paintbackground" "1" + "labelText" "#ServerBrowser_ServerNotFull" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "NoPasswordFilterCheck" + { + "ControlName" "CheckButton" + "fieldName" "NoPasswordFilterCheck" + "xpos" "436" + "ypos" "198" + "wide" "222" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "8" + "paintbackground" "1" + "labelText" "#ServerBrowser_IsNotPasswordProtected" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + + + layout + { + region { name="bottom" align=bottom width=max height=32 margin=0 } + + place { control=gamelist y=10 margin-bottom=42 width=max height=max} + place { control="AddServerButton,RefreshQuickButton,RefreshButton,ConnectButton" region="bottom" margin-right=12 spacing=8 height=32 align=right } + place { control="Filter,FilterString" region="bottom" height=32 width=max end-right="AddServerButton" margin-left=12 spacing=8 } + + + } +} diff --git a/servers/InternetGamesPage_Filters.res b/servers/InternetGamesPage_Filters.res new file mode 100644 index 0000000..7e62119 --- /dev/null +++ b/servers/InternetGamesPage_Filters.res @@ -0,0 +1,379 @@ +"servers/InternetGamesPage_Filters.res" +{ + "InternetGames" + { + "ControlName" "CInternetGames" + "fieldName" "InternetGames" + "xpos" "0" + "ypos" "28" + "wide" "624" + "tall" "278" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "ConnectButton" + { + "ControlName" "Button" + "fieldName" "ConnectButton" + "xpos" "512" + "ypos" "244" + "wide" "104" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "0" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#ServerBrowser_Connect" + "textAlignment" "west" + "wrap" "0" + "Command" "connect" + "Default" "1" + } + "RefreshButton" + { + "ControlName" "Button" + "fieldName" "RefreshButton" + "xpos" "399" + "ypos" "244" + "wide" "104" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#ServerBrowser_RefreshAll" + "textAlignment" "west" + "wrap" "0" + "Command" "GetNewList" + "Default" "0" + } + "RefreshQuickButton" + { + "ControlName" "Button" + "fieldName" "RefreshQuickButton" + "xpos" "267" + "ypos" "244" + "wide" "124" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_RefreshQuick" + "textAlignment" "west" + "wrap" "0" + "Command" "refresh" + "Default" "0" + } + "AddServerButton" + { + "ControlName" "Button" + "fieldName" "AddServerButton" + "xpos" "260" + "ypos" "244" + "wide" "104" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "0" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#ServerBrowser_AddServer" + "textAlignment" "west" + "wrap" "0" + "Command" "AddServerByName" + "Default" "0" + } + "gamelist" + { + "ControlName" "ListPanel" + "fieldName" "gamelist" + "xpos" "8" + "ypos" "8" + "wide" "608" + "tall" "134" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Filter" + { + "ControlName" "ToggleButton" + "fieldName" "Filter" + "xpos" "8" + "ypos" "244" + "wide" "128" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#ServerBrowser_ChangeFilters" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "FilterString" + { + "ControlName" "Label" + "fieldName" "FilterString" + "xpos" "142" + "ypos" "244" + "wide" "240" + "tall" "24" + "AutoResize" "1" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "LabelDull" + "textAlignment" "west" + "wrap" "0" + } + "GameFilter" + { + "ControlName" "ComboBox" + "fieldName" "GameFilter" + "xpos" "60" + "ypos" "150" + "wide" "164" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "MapFilter" + { + "ControlName" "TextEntry" + "fieldName" "MapFilter" + "xpos" "60" + "ypos" "180" + "wide" "164" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "PingFilter" + { + "ControlName" "ComboBox" + "fieldName" "PingFilter" + "xpos" "311" + "ypos" "150" + "wide" "112" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "SecureFilter" + { + "ControlName" "ComboBox" + "fieldName" "SecureFilter" + "xpos" "311" + "ypos" "180" + "wide" "112" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "ServerEmptyFilterCheck" + { + "ControlName" "CheckButton" + "fieldName" "ServerEmptyFilterCheck" + "xpos" "436" + "ypos" "174" + "wide" "184" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "7" + "paintbackground" "1" + "labelText" "#ServerBrowser_HasUsersPlaying" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "ServerFullFilterCheck" + { + "ControlName" "CheckButton" + "fieldName" "ServerFullFilterCheck" + "xpos" "436" + "ypos" "150" + "wide" "184" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "6" + "paintbackground" "1" + "labelText" "#ServerBrowser_ServerNotFull" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "NoPasswordFilterCheck" + { + "ControlName" "CheckButton" + "fieldName" "NoPasswordFilterCheck" + "xpos" "436" + "ypos" "198" + "wide" "222" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "8" + "paintbackground" "1" + "labelText" "#ServerBrowser_IsNotPasswordProtected" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "GameFilterLabel" + { + "ControlName" "Label" + "fieldName" "GameFilterLabel" + "xpos" "12" + "ypos" "150" + "wide" "44" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_Game" + "textAlignment" "east" + "wrap" "0" + } + "MapFilterLabel" + { + "ControlName" "Label" + "fieldName" "MapFilterLabel" + "xpos" "12" + "ypos" "180" + "wide" "44" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_Map" + "textAlignment" "east" + "wrap" "0" + } + "PingFilterLabel" + { + "ControlName" "Label" + "fieldName" "PingFilterLabel" + "xpos" "234" + "ypos" "150" + "wide" "72" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_Latency" + "textAlignment" "east" + "wrap" "0" + } + "SecureFilterLabel" + { + "ControlName" "Label" + "fieldName" "SecureFilterLabel" + "xpos" "236" + "ypos" "180" + "wide" "72" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#ServerBrowser_AntiCheat" + "textAlignment" "east" + "wrap" "0" + } + + + layout + { + region { name=filters align=left margin-bottom=32 margin-right=12 margin-left=12 width=200 height=max} + region { name="bottom" align=bottom width=max height=32 margin=0 } + + place { control=gamelist y=10 margin-bottom=42 margin-left=200 width=max height=max} + + place { control="GameFilterLabel, GameFilter" margin-top=15 dir=down spacing=8 region=filters } + place { control="MapFilterLabel, MapFilter" start=GameFilter margin-top=15 dir=down spacing=8 region=filters } + place { control="PingFilterLabel, PingFilter" start=MapFilter margin-top=15 dir=down spacing=8 region=filters } + place { control="SecureFilterLabel, SecureFilter" start=PingFilter margin-top=15 dir=down spacing=8 region=filters } + place { control="ServerEmptyFilterCheck, ServerFullFilterCheck, NoPasswordFilterCheck" start=SecureFilter margin-top=15 dir=down region=filters} + + place { control="AddServerButton,RefreshQuickButton,RefreshButton,ConnectButton" region="bottom" margin-right=12 spacing=8 height=24 align=right } + place { control="Filter,FilterString" region="bottom" height=32 width=max end-right="AddServerButton" margin-left=12 spacing=8 } + + + } +} diff --git a/servers/VACBannedConnRefusedDialog.res b/servers/VACBannedConnRefusedDialog.res new file mode 100644 index 0000000..0f6044d Binary files /dev/null and b/servers/VACBannedConnRefusedDialog.res differ diff --git a/servers/icon_bots.tga b/servers/icon_bots.tga new file mode 100644 index 0000000..92c1609 Binary files /dev/null and b/servers/icon_bots.tga differ diff --git a/servers/icon_bots_column.tga b/servers/icon_bots_column.tga new file mode 100644 index 0000000..4283177 Binary files /dev/null and b/servers/icon_bots_column.tga differ diff --git a/servers/icon_password.tga b/servers/icon_password.tga new file mode 100644 index 0000000..577c784 Binary files /dev/null and b/servers/icon_password.tga differ diff --git a/servers/icon_password_column.tga b/servers/icon_password_column.tga new file mode 100644 index 0000000..1afb043 Binary files /dev/null and b/servers/icon_password_column.tga differ diff --git a/servers/icon_robotron.tga b/servers/icon_robotron.tga new file mode 100644 index 0000000..9fe1202 Binary files /dev/null and b/servers/icon_robotron.tga differ diff --git a/servers/icon_robotron_column.tga b/servers/icon_robotron_column.tga new file mode 100644 index 0000000..2c29982 Binary files /dev/null and b/servers/icon_robotron_column.tga differ diff --git a/servers/icon_secure_deny.tga b/servers/icon_secure_deny.tga new file mode 100644 index 0000000..547bfe9 Binary files /dev/null and b/servers/icon_secure_deny.tga differ diff --git a/steam/cached/AccountPage.res b/steam/cached/AccountPage.res new file mode 100644 index 0000000..07ae430 --- /dev/null +++ b/steam/cached/AccountPage.res @@ -0,0 +1,534 @@ +"Steam/cached/AccountPage.res" +{ + styles{ + + } + + layout{ + place { control=LogoutLabel,ContactEmailLabel,Label2,SecurityStatusLabel dir=down margin-top=20 margin-left=20 spacing=8 width=120} + place { control=AccountInfo, start=LogoutLabel dir=right margin-left=0} + place { control=EmailInfo,VACStatusLabel,VacInfoLink start=AccountInfo dir=down margin-top=8 spacing=8} + place { control=SecurityIcon,SecurityStatusState start=SecurityStatusLabel dir=right margin-left=0 spacing=4} + place { control=AccountLink start=LogoutLabel dir=right align=right margin-right=50} + + place { control=ValidateContactEmailButton,ManageSecurityButton,ChangePasswordButton,ChangeContactEmailButton start=SecurityStatusLabel dir=down margin-top=25 spacing=8 width=320} + + place { control=Divider1 start=ChangeContactEmailButton dir=down margin-top=15 width=max margin-right=20} + + place { control=BetaParticipationLabel,CurrentBetaLabel start=Divider1 dir=down margin-top=15 spacing=4 width=150} + place { control=ChangeBetaButton start=BetaParticipationLabel dir=right margin-left=0 width=200} + place { control=ReportBugLink start=BetaParticipationLabel dir=right align=right margin-right=50} + + place { control=Divider2 start=CurrentBetaLabel dir=down margin-top=15 width=max margin-right=20} + + place { control=NoPersonalInfoCheck start=Divider2 dir=down margin-top=15} + place { control=Label1 start=NoPersonalInfoCheck dir=down margin-top=8 x=28} + } + + "AccountPage" + { + "ControlName" "CAccountPage" + "fieldName" "AccountPage" + "xpos" "0" + "ypos" "28" + "wide" "484" + "tall" "514" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "ValidateContactEmailButton" + { + "ControlName" "Button" + "fieldName" "ValidateContactEmailButton" + "xpos" "20" + "ypos" "132" + "wide" "337" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_VerifyContactEmaill" + "textAlignment" "west" + "wrap" "0" + "Command" "ValidateContactEmail" + "Default" "1" + "selected" "0" + } + "MachineLockAccountButton" + { + "ControlName" "Button" + "fieldName" "MachineLockAccountButton" + "xpos" "20" + "ypos" "132" + "wide" "337" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_LockAccountButton" + "textAlignment" "west" + "wrap" "0" + "Command" "LockAccount" + "Default" "0" + "selected" "0" + } + "ManageSecurityButton" + { + "ControlName" "Button" + "fieldName" "ManageSecurityButton" + "xpos" "20" + "ypos" "132" + "wide" "337" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_ManageSecurityButton" + "textAlignment" "west" + "wrap" "0" + "Command" "ManageSecurity" + "Default" "0" + "selected" "0" + } + "ChangeContactEmailButton" + { + "ControlName" "Button" + "fieldName" "ChangeContactEmailButton" + "xpos" "20" + "ypos" "192" + "wide" "337" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Steam_ChangeContactEmail" + "textAlignment" "west" + "wrap" "0" + "Command" "ChangeContactEmail" + "Default" "0" + "selected" "0" + } + "ChangePasswordButton" + { + "ControlName" "Button" + "fieldName" "ChangePasswordButton" + "xpos" "20" + "ypos" "162" + "wide" "337" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Steam_ChangePassword" + "textAlignment" "west" + "wrap" "0" + "Command" "ChangePassword" + "Default" "0" + "selected" "0" + } + "VACInfoLinkImage" + { + "ControlName" "ImagePanel" + "fieldName" "VACInfoLinkImage" + "xpos" "468" + "ypos" "58" + "wide" "28" + "tall" "28" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/icon_click_for_details" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "2" + } + + "SecurityStatusLabel" + { + "ControlName" "Label" + "fieldName" "SecurityStatusLabel" + "xpos" "20" + "ypos" "87" + "wide" "223" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_Settings_Security_Status_Label" + "textAlignment" "west" + "wrap" "0" + style=Label + } + + "SecurityIcon" + { + "ControlName" "ImagePanel" + "fieldName" "SecurityIcon" + "xpos" "132" + "ypos" "86" + "wide" "28" + "tall" "28" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/icon_security_poor" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + "zpos" "1" + } + + "SecurityStatusState" + { + "ControlName" "Label" + "fieldName" "SecurityStatusState" + "xpos" "163" + "ypos" "87" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_Settings_Security_Status_State" + "textAlignment" "west" + "wrap" "0" + style=Label + } + + "EmailInfo" + { + "ControlName" "Label" + "fieldName" "EmailInfo" + "xpos" "136" + "ypos" "40" + "wide" "260" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_EmailAddressUnverified" + "textAlignment" "west" + "wrap" "0" + } + "LogoutLabel" + { + "ControlName" "Label" + "fieldName" "LogoutLabel" + "xpos" "20" + "ypos" "16" + "wide" "110" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_LogoutDialogLabel" + "textAlignment" "west" + "wrap" "0" + } + "AccountInfo" + { + "ControlName" "Label" + "fieldName" "AccountInfo" + "xpos" "136" + "ypos" "16" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "tester7" + "textAlignment" "west" + "font" "UiBold" + "wrap" "0" + } + "AccountURL" + { + "ControlName" "URLLabel" + "fieldName" "AccountLink" + "labelText" "#Steam_Account_Link" + "URLText" "steam://url/StoreAccount/" + "xpos" "363" + "ypos" "20" + "wide" "156" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "north-east" + "wrap" "0" + } + + + "ContactEmailLabel" + { + "ControlName" "Label" + "fieldName" "ContactEmailLabel" + "xpos" "20" + "ypos" "40" + "wide" "110" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_ChangeContactEmailLabel" + "textAlignment" "west" + "wrap" "0" + } + "Divider1" + { + "ControlName" "Divider" + "fieldName" "Divider1" + "xpos" "20" + "ypos" "288" + "wide" "440" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + + "ChangeUserButton" + { + "ControlName" "Button" + "fieldName" "ChangeUserButton" + "xpos" "20" + "ypos" "222" + "wide" "337" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#Steam_ChangeUser" + "textAlignment" "west" + "wrap" "0" + "Command" "Logout" + "Default" "0" + "selected" "0" + } + + "NoPersonalInfoCheck" + { + "ControlName" "CheckButton" + "fieldName" "NoPersonalInfoCheck" + "xpos" "17" + "ypos" "392" + "wide" "550" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#Steam_NoSavePersonalInfoCheck" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "44" + "ypos" "426" + "wide" "360" + "tall" "50" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_NoSavePersonalInfoCheckDescription" + "textAlignment" "north-west" + "wrap" "1" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "20" + "ypos" "63" + "wide" "110" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#VAC_Status" + "textAlignment" "west" + "wrap" "0" + } + "VACStatusLabel" + { + "ControlName" "Label" + "fieldName" "VACStatusLabel" + "xpos" "136" + "ypos" "67" + "wide" "340" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#VAC_NoBans" + "textAlignment" "north-west" + "wrap" "1" + } + "Divider2" + { + "ControlName" "Divider" + "fieldName" "Divider2" + "xpos" "20" + "ypos" "384" + "wide" "440" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "BetaParticipationLabel" + { + "ControlName" "Label" + "fieldName" "BetaParticipationLabel" + "xpos" "20" + "ypos" "302" + "wide" "140" + "tall" "72" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_AccountPage_BetaParticipation" + "textAlignment" "north-west" + "wrap" "1" + } + "CurrentBetaLabel" + { + "ControlName" "Label" + "fieldName" "CurrentBetaLabel" + "xpos" "163" + "ypos" "302" + "wide" "200" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_NoBetaAvailable" + "textAlignment" "north-west" + "wrap" "1" + } + + "ChangeBetaButton" + { + "ControlName" "Button" + "fieldName" "ChangeBetaButton" + "xpos" "162" + "ypos" "340" + "wide" "194" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_PickShortcutApp" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "command" "ChangeBeta" + } + + "ReportBugLink" + { + "ControlName" "URLLabel" + "fieldName" "ReportBugLink" + "xpos" "363" + "ypos" "302" + "wide" "130" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_BetaReportBug" + "textAlignment" "north-east" + "wrap" "0" + } +} diff --git a/steam/cached/AddShortcutDialog.res b/steam/cached/AddShortcutDialog.res new file mode 100644 index 0000000..b61e356 --- /dev/null +++ b/steam/cached/AddShortcutDialog.res @@ -0,0 +1,120 @@ +"steam/cached/AddShortcutDialog.res" +{ + layout + { + place { control="Label1" margin-top=42 margin-left=20 margin-right=20} + place { control="AppList" width=max height=max margin-top=67 margin-bottom=50} + + region { name=bottom margin-left=20 margin-right=20 margin-bottom=15 height=35 width=max align=bottom} + place { control="BrowseButton,AddSelectedButton,CloseButton" region=bottom align=right dir=right spacing=10} + } + + "AddShortcutDialog" + { + "ControlName" "CAddShortcutDialog" + "fieldName" "AddShortcutDialog" + "xpos" "794" + "ypos" "447" + "wide" "700" + "tall" "420" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#SteamUI_PickShortcutTitle" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "10" + "ypos" "36" + "wide" "645" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_AddGameLabel" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + "AppList" + { + "ControlName" "ListPanel" + "fieldName" "AppList" + "xpos" "10" + "ypos" "64" + "wide" "681" + "tall" "288" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "BrowseButton" + { + "ControlName" "Button" + "fieldName" "BrowseButton" + "xpos" "291" + "ypos" "362" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "AddSelectedButton" + { + "ControlName" "Button" + "fieldName" "AddSelectedButton" + "xpos" "393" + "ypos" "362" + "wide" "195" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "599" + "ypos" "362" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } +} diff --git a/steam/cached/BackupCompletionPage.res b/steam/cached/BackupCompletionPage.res new file mode 100644 index 0000000..904da25 --- /dev/null +++ b/steam/cached/BackupCompletionPage.res @@ -0,0 +1,60 @@ +"steam/cached/BackupCompletionPage.res" +{ + "BackupCompletionPage" + { + "ControlName" "CBackupCompletionPage" + "fieldName" "BackupCompletionPage" + "xpos" "5" + "ypos" "29" + "wide" "394" + "tall" "327" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "StatusLabel" + { + "ControlName" "Label" + "fieldName" "StatusLabel" + "xpos" "24" + "ypos" "24" + "wide" "321" + "tall" "112" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_BackupComplete_Info" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + "OpenFolderButton" + { + "ControlName" "Button" + "fieldName" "OpenFolderButton" + "xpos" "24" + "ypos" "170" + "wide" "180" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_BackupWizard_OpenFolder" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Command" "OpenBackupFolder" + "Default" "1" + } +} + \ No newline at end of file diff --git a/steam/cached/BackupCopyFilesPage.res b/steam/cached/BackupCopyFilesPage.res new file mode 100644 index 0000000..bf16a9b --- /dev/null +++ b/steam/cached/BackupCopyFilesPage.res @@ -0,0 +1,126 @@ +"steam/cached/BackupCopyFilesPage.res" +{ + "BackupCopyFilesPage" + { + "ControlName" "CBackupCopyFilesPage" + "fieldName" "BackupCopyFilesPage" + "xpos" "8" + "ypos" "48" + "wide" "388" + "tall" "300" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "TotalProgress" + { + "ControlName" "ProgressBar" + "fieldName" "TotalProgress" + "xpos" "24" + "ypos" "128" + "wide" "332" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "progress" "-1.#IND00" + } + "TimeReminingLabel" + { + "ControlName" "Label" + "fieldName" "TimeReminingLabel" + "xpos" "173" + "ypos" "98" + "wide" "176" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "8 seconds" + "textAlignment" "west" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "65" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_BackingUpFile" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "23" + "ypos" "99" + "wide" "133" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TotalBackupProgress" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "24" + "ypos" "16" + "wide" "320" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_BackingUpFiles_Info" + "textAlignment" "west" + "wrap" "1" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "24" + "ypos" "160" + "wide" "250" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_BackupBytesProgress" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/BackupSelectDirectoryPage.res b/steam/cached/BackupSelectDirectoryPage.res new file mode 100644 index 0000000..0f8f45c --- /dev/null +++ b/steam/cached/BackupSelectDirectoryPage.res @@ -0,0 +1,171 @@ +"steam/cached/BackupSelectDirectoryPage.res" +{ + "BackupSelectDirectoryPage" + { + "ControlName" "CBackupSelectDirectoryPage" + "fieldName" "BackupSelectDirectoryPage" + "xpos" "8" + "ypos" "48" + "wide" "388" + "tall" "300" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "DirectoryLabel" + { + "ControlName" "TextEntry" + "fieldName" "DirectoryLabel" + "xpos" "24" + "ypos" "114" + "wide" "336" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "24" + "ypos" "145" + "wide" "140" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ChangeDirectory" + "textAlignment" "west" + "wrap" "0" + "Command" "Browse" + "Default" "1" + "selected" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "90" + "wide" "325" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_BackupDirectory" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "24" + "ypos" "24" + "wide" "308" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ChooseBackupDirectory_Info" + "textAlignment" "north-west" + "wrap" "1" + } + "SpaceRequiredLabel" + { + "ControlName" "Label" + "fieldName" "SpaceRequiredLabel" + "xpos" "218" + "ypos" "190" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "324 MB" + "textAlignment" "west" + "wrap" "0" + } + "SpaceAvailableLabel" + { + "ControlName" "Label" + "fieldName" "SpaceAvailableLabel" + "xpos" "218" + "ypos" "212" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "40392 MB" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "24" + "ypos" "190" + "wide" "191" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ScanCDKey_SpaceRequired" + "textAlignment" "west" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "24" + "ypos" "212" + "wide" "194" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ScanCDKey_SpaceAvailable" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/BackupSelectGamesPage.res b/steam/cached/BackupSelectGamesPage.res new file mode 100644 index 0000000..600290f --- /dev/null +++ b/steam/cached/BackupSelectGamesPage.res @@ -0,0 +1,90 @@ +"steam/cached/BackupSelectGamesPage.res" +{ + "BackupSelectGamesPage" + { + "ControlName" "CBackupSelectGamesPage" + "fieldName" "BackupSelectGamesPage" + "xpos" "8" + "ypos" "48" + "wide" "388" + "tall" "300" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "AppChecklist" + { + "ControlName" "CheckButtonList" + "fieldName" "AppChecklist" + "xpos" "24" + "ypos" "90" + "wide" "340" + "tall" "162" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "25" + "ypos" "24" + "wide" "335" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_BackupSelectGames_Info" + "textAlignment" "north-west" + "wrap" "1" + } + "SpaceRequiredLabel" + { + "ControlName" "Label" + "fieldName" "SpaceRequiredLabel" + "xpos" "218" + "ypos" "255" + "wide" "128" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "LabelBright" + "labelText" "3233 MB" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "25" + "ypos" "255" + "wide" "183" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ScanCDKey_SpaceRequired" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/BackupSelectOptionsPage.res b/steam/cached/BackupSelectOptionsPage.res new file mode 100644 index 0000000..03be577 --- /dev/null +++ b/steam/cached/BackupSelectOptionsPage.res @@ -0,0 +1,192 @@ +"steam/cached/BackupSelectOptionsPage.res" +{ + "BackupSelectOptionsPage" + { + "ControlName" "CBackupSelectOptionsPage" + "fieldName" "BackupSelectOptionsPage" + "xpos" "8" + "ypos" "48" + "wide" "388" + "tall" "300" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "SizeCombo" + { + "ControlName" "ComboBox" + "fieldName" "SizeCombo" + "xpos" "24" + "ypos" "180" + "wide" "140" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "156" + "wide" "172" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_BackupFileSize" + "textAlignment" "west" + "associate" "SizeCombo" + "wrap" "0" + } + "ArchiveName" + { + "ControlName" "TextEntry" + "fieldName" "ArchiveName" + "xpos" "24" + "ypos" "114" + "wide" "265" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "24" + "ypos" "90" + "wide" "265" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_BackupFileName" + "textAlignment" "west" + "associate" "ArchiveName" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "257" + "ypos" "231" + "wide" "64" + "tall" "21" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%disks%" + "textAlignment" "west" + "font" "UiHeadline" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "24" + "ypos" "218" + "wide" "234" + "tall" "52" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_DisksRequiredApprox" + "textAlignment" "north-east" + "wrap" "1" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "24" + "ypos" "24" + "wide" "320" + "tall" "63" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_BackupNameAndSize_Info" + "textAlignment" "north-west" + "wrap" "1" + } + "CustomFileSizeEntry" + { + "ControlName" "TextEntry" + "fieldName" "CustomFileSizeEntry" + "xpos" "181" + "ypos" "180" + "wide" "70" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "6" + "NumericInputOnly" "1" + "unicode" "0" + } + "CustomFileSizeLabel" + { + "ControlName" "Label" + "fieldName" "CustomFileSizeLabel" + "xpos" "254" + "ypos" "180" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "MB" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/CDKeyLaunchDialog.res b/steam/cached/CDKeyLaunchDialog.res new file mode 100644 index 0000000..e0badcb --- /dev/null +++ b/steam/cached/CDKeyLaunchDialog.res @@ -0,0 +1,128 @@ +"Steam/Cached/CDKeyLaunchDialog.res" +{ + "CDKeyDisplayDialog" + { + "ControlName" "CCDKeyDisplayDialog" + "fieldName" "CDKeyDisplayDialog" + "xpos" "875" + "ypos" "619" + "wide" "500" + "tall" "300" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_LegacyCDKey_Title" + } + "LaunchButton" + { + "ControlName" "Button" + "fieldName" "LaunchButton" + "xpos" "274" + "ypos" "218" + "wide" "150" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "CopyButton" + { + "ControlName" "Button" + "fieldName" "CopyButton" + "xpos" "24" + "ypos" "218" + "wide" "215" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "KeyList" + { + "ControlName" "ListPanel" + "fieldName" "KeyList" + "xpos" "24" + "ypos" "98" + "wide" "450" + "tall" "100" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "259" + "ypos" "218" + "wide" "215" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "close" + "Default" "0" + } + "ReasonLabel" + { + "ControlName" "Label" + "fieldName" "ReasonLabel" + "xpos" "16" + "ypos" "37" + "wide" "416" + "tall" "56" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_CDKeyDisplayReason" + "textAlignment" "north-west" + "wrap" "1" + } + "DontShowAgainCheck" + { + "ControlName" "CheckButton" + "fieldName" "DontShowAgainCheck" + "xpos" "20" + "ypos" "253" + "wide" "250" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Logout_DontShowAgain" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } +} diff --git a/steam/cached/ChooseBetaDialog.res b/steam/cached/ChooseBetaDialog.res new file mode 100644 index 0000000..33e269b --- /dev/null +++ b/steam/cached/ChooseBetaDialog.res @@ -0,0 +1,134 @@ +"Steam/cached/ChooseBetaDialog.res" +{ + "ChooseBetaDialog" + { + "ControlName" "CChooseBetaDialog" + "fieldName" "ChooseBetaDialog" + "xpos" "580" + "ypos" "353" + "wide" "440" + "tall" "400" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_ChooseBetaDlgTitle" + } + "BetaListComboBox" + { + "ControlName" "ComboBox" + "fieldName" "BetaListComboBox" + "xpos" "20" + "ypos" "249" + "wide" "309" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "50" + "wide" "380" + "tall" "150" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ChooseBetaExplanation" + "textAlignment" "north-west" + "wrap" "1" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "20" + "ypos" "219" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_AccountPage_BetaParticipation" + "textAlignment" "west" + "wrap" "0" + } + "ReadMoreURL" + { + "ControlName" "URLLabel" + "fieldName" "ReadMoreURL" + "xpos" "20" + "ypos" "278" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ReadMoreAboutBetas" + "textAlignment" "west" + "wrap" "0" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "339" + "ypos" "365" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#PropertyDialog_Cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "Cancel" + "Default" "0" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "237" + "ypos" "365" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#PropertyDialog_OK" + "textAlignment" "west" + "wrap" "0" + "Command" "OK" + "Default" "0" + } +} diff --git a/steam/cached/ConfirmPasswordDialog.res b/steam/cached/ConfirmPasswordDialog.res new file mode 100644 index 0000000..bb7c799 --- /dev/null +++ b/steam/cached/ConfirmPasswordDialog.res @@ -0,0 +1,95 @@ +"steam/cached/ConfirmPasswordDialog.res" +{ + "ConfirmPasswordDialog" + { + "ControlName" "CConfirmPasswordDialog" + "fieldName" "ConfirmPasswordDialog" + "xpos" "480" + "ypos" "382" + "wide" "320" + "tall" "168" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "152" + "ypos" "126" + "wide" "64" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "labelText" "#vgui_ok" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "Default" "1" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "228" + "ypos" "126" + "wide" "64" + "tall" "25" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "labelText" "#vgui_Cancel" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "Command" "Close" + "Default" "0" + } + "PasswordEdit" + { + "ControlName" "TextEntry" + "fieldName" "PasswordEdit" + "xpos" "30" + "ypos" "86" + "wide" "262" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "1" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "30" + "ypos" "38" + "wide" "272" + "tall" "40" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_PasswordRequiredToContinue" + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + } +} + \ No newline at end of file diff --git a/steam/cached/ConsolePage.res b/steam/cached/ConsolePage.res new file mode 100644 index 0000000..da223c2 --- /dev/null +++ b/steam/cached/ConsolePage.res @@ -0,0 +1,87 @@ +"steam/cached/consolepage.res" +{ + "ConsolePage" + { + "ControlName" "CConsolePage" + "fieldName" "ConsolePage" + "xpos" "1" + "ypos" "1" + "wide" "816" + "tall" "424" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + + style=ConsolePage + } + "CompletionList" + { + "ControlName" "Menu" + "fieldName" "CompletionList" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "entry" + { + "ControlName" "TabCatchingTextEntry" + "fieldName" "entry" + "xpos" "0" + "ypos" "400" + "wide" "816" + "tall" "24" + "AutoResize" "1" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "1" + } + "console" + { + "ControlName" "CConsoleHistory" + "fieldName" "console" + "xpos" "0" + "ypos" "1" + "wide" "816" + "tall" "376" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "maxchars" "-1" + "ScrollBar" "1" + } + + styles + { + ConsolePage + { + //bgcolor=DialogBG + render_bg + { + 0="fill(x0,y0,x1,y1,white)" + 1="image_proportional(x0,y0,x1,y1,graphics/JackMyth/OpenLeg)" + 2="fill(x0,y0,x1,y1,JackMyth.HalfTranslucent)" + } + } + } +} diff --git a/steam/cached/DefragAppDialog.res b/steam/cached/DefragAppDialog.res new file mode 100644 index 0000000..1fead7d --- /dev/null +++ b/steam/cached/DefragAppDialog.res @@ -0,0 +1,129 @@ +"steam/cached/DefragAppDialog.res" +{ + "DefragAppDialog" + { + "ControlName" "CDefragAppDialog" + "fieldName" "DefragAppDialog" + "xpos" "768" + "ypos" "458" + "wide" "384" + "tall" "256" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Frame_Defragment" + } + "Progress" + { + "ControlName" "ProgressBar" + "fieldName" "Progress" + "xpos" "27" + "ypos" "113" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "Progress" "0.000000" + } + "LaunchButton" + { + "ControlName" "Button" + "fieldName" "LaunchButton" + "xpos" "146" + "ypos" "214" + "wide" "126" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_LaunchGame" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "280" + "ypos" "214" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#vgui_Cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "close" + "Default" "0" + } + "Fragmentation" + { + "ControlName" "Label" + "fieldName" "Fragmentation" + "xpos" "28" + "ypos" "70" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_FragmentationLabel" + "textAlignment" "west" + "wrap" "0" + } + "Clusters" + { + "ControlName" "Label" + "fieldName" "Clusters" + "xpos" "31" + "ypos" "175" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_FragmentationClustersLabel" + "textAlignment" "west" + "wrap" "0" + } + "DefragDebrief" + { + "ControlName" "Label" + "fieldName" "DefragDebrief" + "xpos" "26" + "ypos" "110" + "wide" "330" + "tall" "104" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_DefragDebriefSuccess" + "textAlignment" "west" + "wrap" "1" + } +} diff --git a/steam/cached/DeleteCache.res b/steam/cached/DeleteCache.res new file mode 100644 index 0000000..1f868c8 --- /dev/null +++ b/steam/cached/DeleteCache.res @@ -0,0 +1,81 @@ +"steam/cached/DeleteCache.res" +{ + "DeleteCache" + { + "ControlName" "CDeleteCacheDialog" + "fieldName" "DeleteCache" + "xpos" "461" + "ypos" "218" + "wide" "300" + "tall" "200" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + "title" "#Steam_CancelPreloading" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "107" + "ypos" "157" + "wide" "80" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#vgui_ok" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Command" "Quit" + "Default" "0" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "199" + "ypos" "157" + "wide" "80" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#vgui_Cancel" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Command" "Cancel" + "Default" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "26" + "ypos" "44" + "wide" "250" + "tall" "100" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_PreloadCancel" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } +} + \ No newline at end of file diff --git a/steam/cached/DialogCheckForUpdates.res b/steam/cached/DialogCheckForUpdates.res new file mode 100644 index 0000000..bad8c03 --- /dev/null +++ b/steam/cached/DialogCheckForUpdates.res @@ -0,0 +1,106 @@ +"steam/cached/DialogCheckForUpdates.res" +{ + "DialogCheckForUpdates" + { + "ControlName" "CDialogCheckForUpdates" + "fieldName" "DialogCheckForUpdates" + "xpos" "1050" + "ypos" "696" + "wide" "460" + "tall" "180" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#steam_checkforupdates_title" + } + "ProgressBar" + { + "ControlName" "ProgressBar" + "fieldName" "ProgressBar" + "xpos" "24" + "ypos" "115" + "wide" "408" + "tall" "24" + "AutoResize" "1" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "progress" "1.000000" + } + "HTML" + { + "ControlName" "HTML" + "fieldName" "HTML" + "xpos" "24" + "ypos" "184" + "wide" "408" + "tall" "200" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "40" + "wide" "408" + "tall" "24" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "textAlignment" "north-west" + "wrap" "1" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "384" + "ypos" "146" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "close" + "Default" "0" + } + "InfoLabel2" + { + "ControlName" "Label" + "fieldName" "InfoLabel2" + "xpos" "24" + "ypos" "69" + "wide" "400" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/steam/cached/DialogCheckForUpdates_Expanded.res b/steam/cached/DialogCheckForUpdates_Expanded.res new file mode 100644 index 0000000..e769dc6 --- /dev/null +++ b/steam/cached/DialogCheckForUpdates_Expanded.res @@ -0,0 +1,143 @@ +"steam/cached/DialogCheckForUpdates_Expanded.res" +{ + "DialogCheckForUpdates" + { + "ControlName" "CDialogCheckForUpdates" + "fieldName" "DialogCheckForUpdates" + "xpos" "1050" + "ypos" "696" + "wide" "460" + "tall" "518" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#steam_checkforupdates_title" + } + "ProgressBar" + { + "ControlName" "ProgressBar" + "fieldName" "ProgressBar" + "xpos" "24" + "ypos" "115" + "wide" "408" + "tall" "24" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "progress" "0.934772" + } + "HTML" + { + "ControlName" "HTML" + "fieldName" "HTML" + "xpos" "24" + "ypos" "184" + "wide" "408" + "tall" "320" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "30" + "wide" "408" + "tall" "40" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "textAlignment" "west" + "wrap" "1" + } + "InfoLabel2" + { + "ControlName" "Label" + "fieldName" "InfoLabel2" + "xpos" "24" + "ypos" "69" + "wide" "400" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "north-west" + "wrap" "1" + } + "RestartNowButton" + { + "ControlName" "Button" + "fieldName" "RestartNowButton" + "xpos" "250" + "ypos" "146" + "wide" "110" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_MustRestart_Button" + "textAlignment" "west" + "wrap" "0" + "Command" "Restart" + "Default" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "368" + "ypos" "146" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "close" + "Default" "0" + } + "BytesDownloaded" + { + "ControlName" "Label" + "fieldName" "BytesDownloaded" + "xpos" "30" + "ypos" "90" + "wide" "400" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "east" + "wrap" "0" + } +} diff --git a/steam/cached/DialogCheckVideoDriver.res b/steam/cached/DialogCheckVideoDriver.res new file mode 100644 index 0000000..66e7847 --- /dev/null +++ b/steam/cached/DialogCheckVideoDriver.res @@ -0,0 +1,58 @@ +"steam/cached/DialogCheckVideoDriver.res" +{ + controls + { + DialogCheckVideoDriver + { + ControlName CDialogCheckVideoDriver + wide 460 + tall 200 + title "#Steam_CheckForVideoDriverUpdates_Title" + } + ProgressBar + { + ControlName ProgressBar + } + CloseButton + { + ControlName Button + labelText "#vgui_close" + Command Close + } + InstallNowButton + { + ControlName Button + visible 0 + labelText "#Steam_InstallVideoDriverNow" + Command Install + Default 0 + } + BytesDownloaded + { + ControlName Label + labelText "" + fieldName BytesDownloaded + xpos 30 + ypos 90 + wide 400 + tall 24 + AutoResize 0 + PinCorner 0 + visible 1 + enabled 1 + tabPosition 0 + paintbackground 1 + textAlignment east + wrap 0 + } + } + + layout + { + place { control=DialogCheckVideoDriver width=460 height=518 } + place { control=ProgressBar x=24 y=115 width=408 height=24 } + place { control=InfoLabel x=24 y=30 width=408 height=40 } + place { control=InstallNowButton,CloseButton align=right x=24 y=146 height=24 width=100 spacing=5 margin-right=28 } + + } +} diff --git a/steam/cached/DuplicateCC.res b/steam/cached/DuplicateCC.res new file mode 100644 index 0000000..2bbc696 Binary files /dev/null and b/steam/cached/DuplicateCC.res differ diff --git a/steam/cached/FragmentationBadWarningDialog.res b/steam/cached/FragmentationBadWarningDialog.res new file mode 100644 index 0000000..4d05ed4 --- /dev/null +++ b/steam/cached/FragmentationBadWarningDialog.res @@ -0,0 +1,76 @@ +"steam/cached/FragmentationBadWarningDialog.res" +{ + "FragBad" + { + "ControlName" "SimpleDialog" + "fieldName" "FragBad" + "xpos" "778" + "ypos" "466" + "wide" "364" + "tall" "240" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_FragmentationBad_Title" + } + "RunGameButton" + { + "ControlName" "Button" + "fieldName" "RunGameButton" + "xpos" "81" + "ypos" "197" + "wide" "128" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Steam_FragmentationBad_RunGame" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "RunDefragButton" + { + "ControlName" "Button" + "fieldName" "RunDefragButton" + "xpos" "218" + "ypos" "196" + "wide" "128" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_FragmentationBad_RunDefrag" + "textAlignment" "west" + "wrap" "0" + "Default" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "12" + "ypos" "52" + "wide" "325" + "tall" "111" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_FragmentationBad_Info" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/steam/cached/GiftRevoked.res b/steam/cached/GiftRevoked.res new file mode 100644 index 0000000..48af5d6 --- /dev/null +++ b/steam/cached/GiftRevoked.res @@ -0,0 +1,76 @@ +"steam/cached/GiftRevoked.res" +{ + "GiftRevokedDialog" + { + "ControlName" "CDialogGiftRevoked" + "fieldName" "GiftRevokedDialog" + "wide" "351" + "tall" "300" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_GiftRevoked_Title" + } + "url" + { + "ControlName" "URLLabel" + "fieldName" "URL" + "xpos" "24" + "ypos" "210" + "wide" "300" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_GiftRevoked_SupportLink" + "textAlignment" "north-west" + "wrap" "1" + "URLText" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=807" + } + "Body" + { + "ControlName" "Label" + "fieldName" "Body" + "xpos" "24" + "ypos" "38" + "wide" "300" + "tall" "160" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_GiftRevoked" + "textAlignment" "north-west" + "wrap" "1" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "251" + "ypos" "260" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "CloseModal" + "Default" "0" + "selected" "0" + } +} diff --git a/steam/cached/GuestPassAcceptError.res b/steam/cached/GuestPassAcceptError.res new file mode 100644 index 0000000..6298af4 --- /dev/null +++ b/steam/cached/GuestPassAcceptError.res @@ -0,0 +1,95 @@ +"steam/cached/GuestPassAcceptError.res" +{ + "GuestPassAcceptDialog" + { + "ControlName" "CDialogGuestPassAccept" + "fieldName" "GuestPassAcceptDialog" + "xpos" "721" + "ypos" "553" + "wide" "351" + "tall" "239" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_GuestPassAccept_TitleFailed" + } + "Body" + { + "ControlName" "Label" + "fieldName" "Body" + "xpos" "24" + "ypos" "88" + "wide" "300" + "tall" "62" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "north-west" + "wrap" "1" + } + "url" + { + "ControlName" "URLLabel" + "fieldName" "URL" + "xpos" "24" + "ypos" "152" + "wide" "300" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "north-west" + "wrap" "1" + "URLText" "" + } + "Headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "24" + "ypos" "58" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + "appearance" "LabelBright" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "251" + "ypos" "200" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "CloseModal" + "Default" "0" + "selected" "0" + } +} diff --git a/steam/cached/GuestPassAcceptOK.res b/steam/cached/GuestPassAcceptOK.res new file mode 100644 index 0000000..3c1aadc --- /dev/null +++ b/steam/cached/GuestPassAcceptOK.res @@ -0,0 +1,97 @@ +"steam/cached/GuestPassAcceptOK.res" +{ + "GuestPassAcceptDialog" + { + "ControlName" "CDialogGuestPassAccept" + "fieldName" "GuestPassAcceptDialog" + "xpos" "639" + "ypos" "252" + "wide" "641" + "tall" "726" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_GuestPassAccept_TitleOK" + } + "HTMLField" + { + "ControlName" "HTML" + "fieldName" "HTMLField" + "xpos" "8" + "ypos" "48" + "wide" "625" + "tall" "623" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "IgnoreButton" + { + "ControlName" "Button" + "fieldName" "IgnoreButton" + "xpos" "250" + "ypos" "680" + "wide" "184" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#steam_guestpass_ignore" + "command" "Ignore" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "450" + "ypos" "680" + "wide" "184" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#steam_guestpass_dealwiththislater" + "command" "Close" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + + "BgRect" + { + "ControlName" "ImagePanel" + "fieldName" "BgRect" + "xpos" "12" + "ypos" "52" + "zpos" "-1" + "wide" "624" + "tall" "596" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "PropertySheetBorder" + "gradientVertical" "0" + "scaleImage" "0" + } +} diff --git a/steam/cached/GuestPassRedeemed.res b/steam/cached/GuestPassRedeemed.res new file mode 100644 index 0000000..61792d7 --- /dev/null +++ b/steam/cached/GuestPassRedeemed.res @@ -0,0 +1,96 @@ +"steam/cached/GuestPassRedeemed.res" +{ + "GuestPassRedeemedDialog" + { + "ControlName" "CDialogGuestPassRedeemed" + "fieldName" "GuestPassRedeemedDialog" + "xpos" "721" + "ypos" "553" + "wide" "351" + "tall" "239" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_GuestPassRedeemed_TitleFailed" + } + "Body" + { + "ControlName" "Label" + "fieldName" "Body" + "xpos" "24" + "ypos" "88" + "wide" "300" + "tall" "62" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "north-west" + "wrap" "1" + } + "url" + { + "ControlName" "URLLabel" + "fieldName" "URL" + "xpos" "24" + "ypos" "152" + "wide" "300" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "north-west" + "wrap" "1" + "URLText" "" + } + "Headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "24" + "ypos" "58" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + "appearance" "LabelBright" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "251" + "ypos" "200" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "CloseModal" + "Default" "0" + "selected" "0" + } +} + diff --git a/steam/cached/GuestPassesDialog.res b/steam/cached/GuestPassesDialog.res new file mode 100644 index 0000000..afe57c8 --- /dev/null +++ b/steam/cached/GuestPassesDialog.res @@ -0,0 +1,119 @@ +"steam/cached/GuestPassesDialog.res" +{ + +controls + { + "GuestPassesDialog" + { + "ControlName" "CDialogGuestPasses" + "fieldName" "GuestPassesDialog" + "xpos" "1049" + "ypos" "676" + "wide" "540" + "tall" "392" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_GuestPasses_Title" + } + "GuestPassesList" + { + "ControlName" "ListPanel" + "fieldName" "GuestPassesList" + "xpos" "12" + "ypos" "100" + "wide" "514" + "tall" "242" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "sendButton" + { + "ControlName" "Button" + "fieldName" "SendButton" + "xpos" "416" + "ypos" "354" + "wide" "110" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "LabelDescription" + { + "ControlName" "Label" + "fieldName" "LabelDescription" + "xpos" "12" + "ypos" "31" + "wide" "514" + "tall" "66" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_GuestPasses_Description" + "textAlignment" "west" + "wrap" "1" + } + "url" + { + "ControlName" "URLLabel" + "fieldName" "URL" + "xpos" "12" + "ypos" "354" + "wide" "417" + "tall" "30" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_GuestPasses_LinkText" + "textAlignment" "west" + "wrap" "1" + "URLText" "#Steam_GuestPasses_LinkURL" + } + "GuestPassContextMenu" + { + "ControlName" "Menu" + "fieldName" "GuestPassContextMenu" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + } + + styles + { + ListPanelSectionHeader + { + inset = "2 1 0 1" + } + } + +} diff --git a/steam/cached/InstallDirextXDialog.res b/steam/cached/InstallDirextXDialog.res new file mode 100644 index 0000000..49a9690 --- /dev/null +++ b/steam/cached/InstallDirextXDialog.res @@ -0,0 +1,78 @@ +"steam/cached/InstallDirextXDialog.res" +{ + "InstallDirextXDialog" + { + "ControlName" "CInstallDirextXDialog" + "fieldName" "InstallDirextXDialog" + "xpos" "640" + "ypos" "465" + "wide" "320" + "tall" "240" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_InstallDirectXDialog_Title" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "231" + "ypos" "201" + "wide" "72" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_ok" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + "selected" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "72" + "wide" "256" + "tall" "64" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_InstallDirextX_Info" + "textAlignment" "north-west" + "wrap" "1" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "20" + "ypos" "142" + "wide" "278" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_InstallDirextX_Link" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://www.microsoft.com/en-gb/download/details.aspx?id=35" + } +} diff --git a/steam/cached/InstallExplanationDialog.res b/steam/cached/InstallExplanationDialog.res new file mode 100644 index 0000000..a067411 --- /dev/null +++ b/steam/cached/InstallExplanationDialog.res @@ -0,0 +1,74 @@ +"steam/cached/InstallExplanationDialog.res" +{ + "InstallExplanationDialog" + { + "ControlName" "CInstallExplanationDialog" + "fieldName" "InstallExplanationDialog" + "xpos" "380" + "ypos" "281" + "wide" "520" + "tall" "440" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + } + "ExplanationHTML" + { + "ControlName" "HTML" + "fieldName" "ExplanationHTML" + "xpos" "8" + "ypos" "48" + "wide" "504" + "tall" "326" + "autoResize" "3" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "InstallButton" + { + "ControlName" "Button" + "fieldName" "InstallButton" + "xpos" "256" + "ypos" "384" + "wide" "172" + "tall" "24" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "labelText" "#Steam_InstallExplanation_Install" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "1" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "433" + "ypos" "384" + "wide" "77" + "tall" "24" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "labelText" "#vgui_close" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Command" "Close" + "Default" "0" + } +} + \ No newline at end of file diff --git a/steam/cached/InstallSubChooseApps.res b/steam/cached/InstallSubChooseApps.res new file mode 100644 index 0000000..09fc05a --- /dev/null +++ b/steam/cached/InstallSubChooseApps.res @@ -0,0 +1,194 @@ +"steam/cached/InstallSubChooseApps.res" +{ + styles{ + "Page CheckButtonList" + { + inset="20 1 1 1" + } + + "Page CheckButtonList:scrollbar" + { + inset="20 1 1 1" + } + } + + layout{ + region { name=body margin-top=20 margin-left=20 margin-right=20 width=max height=max } + place { control=Label1 region=body width=max} + + place { control=GameCheckButtonList margin-top=50 width=max height=120} + + place { control=InstallSize,DriveSpace region=body start=GameCheckButtonList dir=down margin-top=15 spacing=7} + place { control=InstallSizeLabel,DriveSpaceLabel region=body start=GameCheckButtonList dir=down margin-top=15 spacing=7 margin-left=200} + + place { control=InstallFolderLabel start=DriveSpace region=body dir=down margin-top=15 width=max} + place { control=InstallFolderCombo start=InstallFolderLabel region=body dir=down margin-top=7 width=max} + + } + + "InstallSubChooseApps" + { + "ControlName" "CInstallSubChooseApps" + "fieldName" "InstallSubChooseApps" + "xpos" "8" + "ypos" "48" + "wide" "416" + "tall" "342" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "10" + "ypos" "12" + "wide" "340" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Install_SelectGames" + "textAlignment" "west" + "wrap" "1" + } + + "GameCheckButtonList" + { + "ControlName" "CheckButtonList" + "fieldName" "GameCheckButtonList" + "xpos" "16" + "ypos" "32" + "wide" "432" + "tall" "120" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + + "InstallSize" + { + "ControlName" "Label" + "fieldName" "InstallSize" + "xpos" "10" + "ypos" "160" + "wide" "186" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ScanCDKey_SpaceRequired" + "textAlignment" "west" + "wrap" "0" + } + + "InstallSizeLabel" + { + "ControlName" "Label" + "fieldName" "InstallSizeLabel" + "xpos" "200" + "ypos" "160" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "42 MB" + "textAlignment" "west" + "wrap" "0" + } + + "DriveSpace" + { + "ControlName" "Label" + "fieldName" "DriveSpace" + "xpos" "10" + "ypos" "180" + "wide" "186" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ScanCDKey_SpaceAvailable" + "textAlignment" "west" + "wrap" "0" + } + + "DriveSpaceLabel" + { + "ControlName" "Label" + "fieldName" "DriveSpaceLabel" + "xpos" "200" + "ypos" "180" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "101247 MB" + "textAlignment" "west" + "wrap" "0" + } + + "InstallFolderLabel" + { + "ControlName" "Label" + "fieldName" "InstallFolderLabel" + "xpos" "10" + "ypos" "200" + "wide" "200" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ChooseInstallFolder" + "textAlignment" "west" + "wrap" "0" + } + + "InstallFolderCombo" + { + "ControlName" "ComboBox" + "fieldName" "InstallFolderCombo" + "xpos" "10" + "ypos" "232" + "wide" "432" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/InstallSubChooseApps_SingleApp.res b/steam/cached/InstallSubChooseApps_SingleApp.res new file mode 100644 index 0000000..b0a58fb --- /dev/null +++ b/steam/cached/InstallSubChooseApps_SingleApp.res @@ -0,0 +1,247 @@ +"steam/cached/InstallSubChooseApps_SingleApp.res" +{ + styles{ + + } + + layout{ + region { name=body margin-top=20 margin-left=20 margin-right=20 width=max height=max } + place { control=Label1 region=body width=max} + place { control=CreateShortcutCheck,CreateStartMenuShortcutCheck region=body start=Label1 dir=down margin-top=15} + + place { control=InstallSize,DriveSpace,DownloadTimeLabel region=body start=CreateStartMenuShortcutCheck dir=down margin-top=15 spacing=7} + place { control=InstallSizeLabel,DriveSpaceLabel,DownloadTimeInfo region=body start=CreateStartMenuShortcutCheck dir=down margin-top=15 spacing=7 margin-left=200} + + place { control=InstallFolderLabel start=DownloadTimeLabel region=body dir=down margin-top=15 width=max} + place { control=InstallFolderCombo start=InstallFolderLabel region=body dir=down margin-top=7 width=max} + + } + + "InstallSubChooseApps" + { + "ControlName" "CInstallSubChooseApps" + "fieldName" "InstallSubChooseApps" + "xpos" "8" + "ypos" "48" + "wide" "388" + "tall" "300" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "10" + "ypos" "24" + "wide" "340" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_InstallGameInfo" + "textAlignment" "north-west" + "wrap" "1" + } + + "CreateShortcutCheck" + { + "ControlName" "CheckButton" + "fieldName" "CreateShortcutCheck" + "xpos" "16" + "ypos" "60" + "wide" "390" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Install_CreateDesktopShortcut" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + + "CreateStartMenuShortcutCheck" + { + "ControlName" "CheckButton" + "fieldName" "CreateStartMenuShortcutCheck" + "xpos" "16" + "ypos" "84" + "wide" "390" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Install_CreateStartMenuShortcut" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + + "InstallSize" + { + "ControlName" "Label" + "fieldName" "InstallSize" + "xpos" "10" + "ypos" "128" + "wide" "186" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ScanCDKey_SpaceRequired" + "textAlignment" "west" + "wrap" "0" + } + + "InstallSizeLabel" + { + "ControlName" "Label" + "fieldName" "InstallSizeLabel" + "xpos" "200" + "ypos" "128" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "42 MB" + "textAlignment" "west" + "wrap" "0" + } + + "DriveSpace" + { + "ControlName" "Label" + "fieldName" "DriveSpace" + "xpos" "10" + "ypos" "152" + "wide" "186" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ScanCDKey_SpaceAvailable" + "textAlignment" "west" + "wrap" "0" + } + + "DriveSpaceLabel" + { + "ControlName" "Label" + "fieldName" "DriveSpaceLabel" + "xpos" "200" + "ypos" "152" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "148805 MB" + "textAlignment" "west" + "wrap" "0" + } + + "DownloadTimeLabel" + { + "ControlName" "Label" + "fieldName" "DownloadTimeLabel" + "xpos" "10" + "ypos" "176" + "wide" "189" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_InstallDownloadTime" + "textAlignment" "west" + "wrap" "0" + } + + "DownloadTimeInfo" + { + "ControlName" "Label" + "fieldName" "DownloadTimeInfo" + "xpos" "200" + "ypos" "176" + "wide" "200" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_InstallDownloadTime_Info" + "textAlignment" "west" + "wrap" "0" + } + + "InstallFolderLabel" + { + "ControlName" "Label" + "fieldName" "InstallFolderLabel" + "xpos" "10" + "ypos" "200" + "wide" "200" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ChooseInstallFolder" + "textAlignment" "west" + "wrap" "0" + } + + "InstallFolderCombo" + { + "ControlName" "ComboBox" + "fieldName" "InstallFolderCombo" + "xpos" "10" + "ypos" "232" + "wide" "432" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/InstallSubComplete.res b/steam/cached/InstallSubComplete.res new file mode 100644 index 0000000..192fc18 --- /dev/null +++ b/steam/cached/InstallSubComplete.res @@ -0,0 +1,99 @@ +"steam/cached/InstallSubComplete.res" +{ + "InstallSubComplete" + { + "ControlName" "CInstallSubComplete" + "fieldName" "InstallSubComplete" + "xpos" "8" + "ypos" "48" + "wide" "388" + "tall" "300" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "DownloadsPageLink" + { + "ControlName" "URLLabel" + "fieldName" "DownloadsPageLink" + "xpos" "30" + "ypos" "172" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Steam_Install_GoToDownloadsPage" + "textAlignment" "west" + "wrap" "0" + "URLText" "steam://open/downloads" + } + "AutoLaunchCheck" + { + "ControlName" "CheckButton" + "fieldName" "AutoLaunchCheck" + "xpos" "30" + "ypos" "136" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_Install_AutoLaunchGameStart" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "1" + } + + "InstallCompleteLabel" + { + "ControlName" "Label" + "fieldName" "InstallCompleteLabel" + "xpos" "24" + "ypos" "30" + "wide" "380" + "tall" "84" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_InstallComplete_DownloadInfo" + "textAlignment" "north-west" + "wrap" "1" + } + + "DontShowAgainCheck" + { + "ControlName" "CheckButton" + "fieldName" "DontShowAgainCheck" + "xpos" "30" + "ypos" "136" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_Install_DontShowPageAgain" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } +} diff --git a/steam/cached/InstallSubComplete_RetailInstall.res b/steam/cached/InstallSubComplete_RetailInstall.res new file mode 100644 index 0000000..7e669cd --- /dev/null +++ b/steam/cached/InstallSubComplete_RetailInstall.res @@ -0,0 +1,78 @@ +"steam/cached/InstallSubComplete_RetailInstall.res" +{ + "InstallSubComplete" + { + "ControlName" "CInstallSubComplete" + "fieldName" "InstallSubComplete" + "xpos" "8" + "ypos" "48" + "wide" "388" + "tall" "300" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "AutoLaunchCheck" + { + "ControlName" "CheckButton" + "fieldName" "AutoLaunchCheck" + "xpos" "30" + "ypos" "128" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_Install_AutoLaunchGameStart" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "1" + } + + "InstallConfirm" + { + "ControlName" "Label" + "fieldName" "InstallConfirm" + "xpos" "20" + "ypos" "24" + "wide" "380" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_InstallComplete_RetailInstall" + "textAlignment" "west" + "wrap" "1" + } + + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "64" + "wide" "380" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_InstallComplete_RetailInstall_GamesAlwaysAvailable" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/steam/cached/InstallSubConvertApps.res b/steam/cached/InstallSubConvertApps.res new file mode 100644 index 0000000..cfd9b8d --- /dev/null +++ b/steam/cached/InstallSubConvertApps.res @@ -0,0 +1,137 @@ +"steam/cached/InstallSubConvertApps.res" +{ + + styles{ + + } + + layout{ + region { name=body margin-top=20 margin-left=20 margin-right=20 width=max height=max } + place { control=Label1 region=body width=max} + place { control=HTMLEULA width=max height=max margin-top=50} + + } + + "InstallSubConvertApps" + { + "ControlName" "CInstallSubConvertApps" + "fieldName" "InstallSubConvertApps" + "xpos" "8" + "ypos" "48" + "wide" "388" + "tall" "300" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "ProgressBar" + { + "ControlName" "ProgressBar" + "fieldName" "ProgressBar" + "xpos" "24" + "ypos" "104" + "wide" "344" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "progress" "0.489157" + } + "ProgressBarSingleDisk" + { + "ControlName" "ProgressBar" + "fieldName" "ProgressBarSingleDisk" + "xpos" "26" + "ypos" "180" + "wide" "344" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "progress" "0.705629" + "variable" "cd_progress" + } + "infolabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "28" + "wide" "344" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ConvertExistingInfo" + "textAlignment" "north-west" + "wrap" "1" + } + "StatusLabel" + { + "ControlName" "Label" + "fieldName" "StatusLabel" + "xpos" "24" + "ypos" "74" + "wide" "344" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_InstallingWithTimeRemaining" + "textAlignment" "west" + "wrap" "0" + } + "DiskProgressLabel" + { + "ControlName" "Label" + "fieldName" "DiskProgressLabel" + "xpos" "28" + "ypos" "155" + "wide" "280" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_InstallingFromDisk" + "textAlignment" "west" + "wrap" "0" + } + "BytesProgressLabel" + { + "ControlName" "Label" + "fieldName" "BytesProgressLabel" + "xpos" "26" + "ypos" "130" + "wide" "340" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_InstallBytesProgress" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/InstallSubEULA.res b/steam/cached/InstallSubEULA.res new file mode 100644 index 0000000..bbac5ef --- /dev/null +++ b/steam/cached/InstallSubEULA.res @@ -0,0 +1,60 @@ +"steam/cached/InstallSubEULA.res" +{ + + styles{ + + } + + layout{ + region { name=body margin-top=20 margin-left=20 margin-right=20 width=max height=max } + place { control=Label1 region=body width=max} + place { control=HTMLEULA width=max height=max margin-top=70} + } + + "InstallSubEULA" + { + "ControlName" "CInstallSubEULA" + "fieldName" "InstallSubEULA" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "HTMLEULA" + { + "ControlName" "HTML" + "fieldName" "HTMLEULA" + "xpos" "0" + "ypos" "44" + "wide" "456" + "tall" "472" + "AutoResize" "2" + "PinCorner" "0" + "UnpinnedCornerOffsetY" "0" + "UnpinnedCornerOffsetX" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "10" + "ypos" "8" + "wide" "444" + "tall" "42" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_LaunchEULA_Text" + "textAlignment" "west" + "wrap" "1" + } +} diff --git a/steam/cached/InstallSubOptions.res b/steam/cached/InstallSubOptions.res new file mode 100644 index 0000000..c46aa78 --- /dev/null +++ b/steam/cached/InstallSubOptions.res @@ -0,0 +1,77 @@ +"steam/cached/InstallSubOptions.res" +{ + "InstallSubOptions" + { + "ControlName" "CInstallSubOptions" + "fieldName" "InstallSubOptions" + "xpos" "8" + "ypos" "48" + "wide" "390" + "tall" "300" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "CreateShortcutCheck" + { + "ControlName" "CheckButton" + "fieldName" "CreateShortcutCheck" + "xpos" "12" + "ypos" "77" + "wide" "390" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Install_CreateDesktopShortcut" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "CreateStartMenuShortcutCheck" + { + "ControlName" "CheckButton" + "fieldName" "CreateStartMenuShortcutCheck" + "xpos" "12" + "ypos" "51" + "wide" "390" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Install_CreateStartMenuShortcut" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + + "CopyInfo" + { + "ControlName" "Label" + "fieldName" "CopyInfo" + "xpos" "16" + "ypos" "192" + "wide" "390" + "tall" "80" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "< install info >" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/steam/cached/LaunchEULADialog.res b/steam/cached/LaunchEULADialog.res new file mode 100644 index 0000000..dd336e5 --- /dev/null +++ b/steam/cached/LaunchEULADialog.res @@ -0,0 +1,125 @@ +"steam/cached/LaunchEULADialog.res" +{ + + layout{ + region { name=body margin-top=42 margin-left=20 margin-right=20 width=max height=max } + region { name=bottom align=bottom height=42 width=max } + + place { control=Label1 region=body width=max} + place { control=HTML width=max height=max margin-top=75 margin-bottom=100} + place { control=Label2 region=body start=HTML margin-top=10 dir=down width=max} + + place { control="AcceptButton,DeclineButton" region="bottom" align=right + width=92 height32 align=right + margin-right=10 margin-top=0 + margin-bottom=10 spacing=10 } + } + + "LaunchEULADialog" + { + "ControlName" "SimpleDialog" + "fieldName" "LaunchEULADialog" + "xpos" "1155" + "ypos" "611" + "wide" "500" + "tall" "460" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_LaunchEULA_Title" + } + "AcceptButton" + { + "ControlName" "Button" + "fieldName" "AcceptButton" + "xpos" "220" + "ypos" "412" + "wide" "116" + "tall" "23" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_LaunchEULA_Agree" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "DeclineButton" + { + "ControlName" "Button" + "fieldName" "DeclineButton" + "xpos" "348" + "ypos" "412" + "wide" "116" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_LaunchEULA_Decline" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "HTML" + { + "ControlName" "HTML" + "fieldName" "HTML" + "xpos" "8" + "ypos" "93" + "wide" "480" + "tall" "271" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "14" + "ypos" "47" + "wide" "472" + "tall" "42" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_LaunchEULA_Info" + "textAlignment" "north-west" + "wrap" "1" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "8" + "ypos" "369" + "wide" "472" + "tall" "40" + "AutoResize" "1" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_LaunchEULA_Text" + "textAlignment" "west" + "wrap" "1" + } +} diff --git a/steam/cached/LaunchOptionsDialog.res b/steam/cached/LaunchOptionsDialog.res new file mode 100644 index 0000000..f9b7c44 --- /dev/null +++ b/steam/cached/LaunchOptionsDialog.res @@ -0,0 +1,116 @@ +"Steam/Cached/LaunchOptionsDialog.res" +{ + "LaunchOptionsDialog" + { + "ControlName" "CLaunchOptionsDialog" + "fieldName" "LaunchOptionsDialog" + "xpos" "209" + "ypos" "528" + "wide" "373" + "tall" "177" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_GameLaunchOptions_Title" + } + "LaunchButton" + { + "ControlName" "Button" + "fieldName" "LaunchButton" + "xpos" "170" + "ypos" "144" + "wide" "96" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Steam_Launch" + "textAlignment" "west" + "wrap" "0" + "Default" "1" + } + "RadioButton0" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton0" + "xpos" "18" + "ypos" "64" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "1" + } + "RadioButton1" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton1" + "xpos" "18" + "ypos" "94" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "2" + } + "ImagePanel1" + { + "ControlName" "ImagePanel" + "fieldName" "ImagePanel1" + "xpos" "8" + "ypos" "47" + "zpos" "-1" + "wide" "357" + "tall" "90" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "fillcolor" "Blank" + "gradientVertical" "0" + "scaleImage" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "273" + "ypos" "144" + "wide" "94" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#vgui_cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } +} diff --git a/steam/cached/LaunchParametersDialog.res b/steam/cached/LaunchParametersDialog.res new file mode 100644 index 0000000..00d61e6 --- /dev/null +++ b/steam/cached/LaunchParametersDialog.res @@ -0,0 +1,115 @@ +"Steam/Cached/LaunchParametersDialog.res" +{ + "LaunchParametersDialog" + { + "ControlName" "CGameLaunchParametersDialog" + "fieldName" "LaunchParametersDialog" + "xpos" "736" + "ypos" "553" + "wide" "373" + "tall" "177" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_LaunchOptions_Title" + } + "LaunchOptions" + { + "ControlName" "TextEntry" + "fieldName" "LaunchOptions" + "xpos" "12" + "ypos" "92" + "wide" "348" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "SysMenu" + { + "ControlName" "Menu" + "fieldName" "SysMenu" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "12" + "ypos" "36" + "wide" "316" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_OptionsForAdvancedUsersOnly" + "textAlignment" "west" + "wrap" "1" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "268" + "ypos" "138" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#vgui_Cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } + "Button2" + { + "ControlName" "Button" + "fieldName" "Button2" + "xpos" "166" + "ypos" "138" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#vgui_ok" + "textAlignment" "west" + "wrap" "0" + "Command" "OK" + "Default" "1" + } +} diff --git a/steam/cached/LocalizedAudioChoiceDialog.res b/steam/cached/LocalizedAudioChoiceDialog.res new file mode 100644 index 0000000..16922ac --- /dev/null +++ b/steam/cached/LocalizedAudioChoiceDialog.res @@ -0,0 +1,118 @@ +"steam/cached/LocalizedAudioChoiceDialog.res" +{ + "AudioCheck" + { + "ControlName" "SimpleDialog" + "fieldName" "AudioCheck" + "xpos" "1030" + "ypos" "646" + "wide" "500" + "tall" "256" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_SpokenLanguageTestTitle" + } + "Launch" + { + "ControlName" "Button" + "fieldName" "Launch" + "xpos" "248" + "ypos" "208" + "wide" "102" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Steam_Launch" + "textAlignment" "west" + "wrap" "0" + "Command" "" + "Default" "0" + } + "Cancel" + { + "ControlName" "Button" + "fieldName" "Cancel" + "xpos" "364" + "ypos" "207" + "wide" "102" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#vgui_cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "" + "Default" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "38" + "ypos" "51" + "wide" "364" + "tall" "61" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SpokenLanguageTestExplanation" + "textAlignment" "west" + "wrap" "1" + } + "RadioPlayNative" + { + "ControlName" "RadioButton" + "fieldName" "RadioPlayNative" + "xpos" "35" + "ypos" "116" + "wide" "404" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_SpokenLanguageTestRadioButtonCurrent" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "1" + } + "RadioButton1" + { + "ControlName" "RadioButton" + "fieldName" "RadioButton1" + "xpos" "35" + "ypos" "143" + "wide" "431" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_SpokenLanguageTestRadioButtonEnglish" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "2" + } +} diff --git a/steam/cached/MediaConfirmationDialog.res b/steam/cached/MediaConfirmationDialog.res new file mode 100644 index 0000000..716cfd4 --- /dev/null +++ b/steam/cached/MediaConfirmationDialog.res @@ -0,0 +1,76 @@ +"steam/cached/MediaConfirmationDialog.res" +{ + "MediaConfirmationDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "MediaConfirmationDialog" + "xpos" "860" + "ypos" "566" + "wide" "316" + "tall" "168" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_MediaAdded_Title" + } + "PlayMedia" + { + "ControlName" "Button" + "fieldName" "PlayMedia" + "xpos" "22" + "ypos" "116" + "wide" "116" + "tall" "23" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_PlayMedia" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "ContinueBrowsingMedia" + { + "ControlName" "Button" + "fieldName" "ContinueBrowsingMedia" + "xpos" "148" + "ypos" "116" + "wide" "136" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ContinueBrowsingMedia" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "56" + "wide" "247" + "tall" "50" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_MediaAdded_Info" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/steam/cached/NotifyTrayHintDialog.res b/steam/cached/NotifyTrayHintDialog.res new file mode 100644 index 0000000..a528d2b --- /dev/null +++ b/steam/cached/NotifyTrayHintDialog.res @@ -0,0 +1,115 @@ +"Steam/Cached/NotifyTrayHintDialog.res" +{ + "NotifyTrayHintDialog" + { + "ControlName" "Frame" + "fieldName" "NotifyTrayHintDialog" + "xpos" "630" + "ypos" "453" + "wide" "340" + "tall" "264" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#SteamRoot_Title" + } + "tray" + { + "ControlName" "ImagePanel" + "fieldName" "tray" + "xpos" "71" + "ypos" "80" + "zpos" "-1" + "wide" "256" + "tall" "128" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "public/steam_welcome_tooltray" + "gradientVertical" "0" + "scaleImage" "0" + } + "SysMenu" + { + "ControlName" "Menu" + "fieldName" "SysMenu" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "28" + "ypos" "48" + "wide" "300" + "tall" "72" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "LabelDull" + "labelText" "#Steam_trayHint" + "textAlignment" "north-west" + "wrap" "1" + } + "DontShowAgainCheck" + { + "ControlName" "CheckButton" + "fieldName" "DontShowAgainCheck" + "xpos" "24" + "ypos" "194" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#SteamUI_NotifyTrayHintDialog_DontShow" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "240" + "ypos" "224" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "1" + "selected" "0" + } +} diff --git a/steam/cached/OverlayBatteryNotification.res b/steam/cached/OverlayBatteryNotification.res new file mode 100644 index 0000000..553f9ef --- /dev/null +++ b/steam/cached/OverlayBatteryNotification.res @@ -0,0 +1,56 @@ +"steam/cached/OverlayBattery.res" +{ + "OverlayLowBattery" + { + "ControlName" "COverlayLowBattery" + "fieldName" "OverlayLowBattery" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "74" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "10" + "ypos" "20" + "wide" "52" + "tall" "32" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "1" + "image" "resource/steam_logo" + } + "LabelMessage" + { + "ControlName" "Label" + "fieldName" "LabelMessage" + "xpos" "70" + "ypos" "24" + "wide" "166" + "tall" "32" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_LowBattery_Message" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + "textcolor" "NotificationBodyText" + } +} diff --git a/steam/cached/OverlayCDKeyDialog.res b/steam/cached/OverlayCDKeyDialog.res new file mode 100644 index 0000000..baf0df8 --- /dev/null +++ b/steam/cached/OverlayCDKeyDialog.res @@ -0,0 +1,92 @@ +"Steam/Cached/OverlayCDKeyDialog.res" +{ + "OverlayCDKeyDialog" + { + "ControlName" "COverlayCDKeyDialog" + "fieldName" "OverlayCDKeyDialog" + "xpos" "277" + "ypos" "250" + "wide" "450" + "tall" "250" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Overlay_CDKeyNotification_Title" + } + "KeyList" + { + "ControlName" "ListPanel" + "fieldName" "KeyList" + "xpos" "19" + "ypos" "89" + "wide" "400" + "tall" "100" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "320" + "ypos" "202" + "wide" "100" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "command" "close" + "Default" "0" + } + "ReasonLabel" + { + "ControlName" "Label" + "fieldName" "ReasonLabel" + "xpos" "16" + "ypos" "37" + "wide" "416" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_CDKeyNotification_Message" + "textAlignment" "north-west" + "wrap" "1" + } + "DontShowAgainCheck" + { + "ControlName" "CheckButton" + "fieldName" "DontShowAgainCheck" + "xpos" "16" + "ypos" "202" + "wide" "230" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_DontNotifyAgain" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } +} diff --git a/steam/cached/OverlayCDKeyNotification.res b/steam/cached/OverlayCDKeyNotification.res new file mode 100644 index 0000000..3b1920f --- /dev/null +++ b/steam/cached/OverlayCDKeyNotification.res @@ -0,0 +1,90 @@ +"steam/cached/OverlayCDKeyNotification.res" +{ + "OverlayCDKeyNotification" + { + "ControlName" "COverlayCDKeyNotification" + "fieldName" "OverlayCDKeyNotification" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="notification" + } + "LabelMessage" + { + "ControlName" "Label" + "fieldName" "LabelMessage" + "xpos" "10" + "ypos" "10" + "wide" "226" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_CDKeyNotification_Message" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsVerySmall + "textcolor" "Friends.OfflineColor" + } + "LabelKey" + { + "ControlName" "Label" + "fieldName" "LabelKey" + "xpos" "10" + "ypos" "52" + "wide" "226" + "tall" "14" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_CDKeyNotification_CDKey" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsMedium + "textcolor" "NotificationBodyText" + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_CDKeyNotification_Hotkey" + "textAlignment" "center" + "wrap" "0" + "font" FriendsSmall + "textcolor" "Friends.OfflineColor" + } +} diff --git a/steam/cached/OverlayDashboard.res b/steam/cached/OverlayDashboard.res new file mode 100644 index 0000000..913889d --- /dev/null +++ b/steam/cached/OverlayDashboard.res @@ -0,0 +1,79 @@ +"steam/cached/OverlayBasePanel.res" +{ + "BaseDashboardPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BaseDashboardPanel" + "xpos" "0" + "ypos" "0" + "wide" "1600" + "tall" "1200" + "AutoResize" "3" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "SteamLogo" + { + "ControlName" "ImagePanel" + "fieldName" "SteamLogo" + "xpos" "10" + "ypos" "10" + "wide" "400" + "tall" "120" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "resource/steam_logo_big" + } + "PowerMeterDim" + { + "ControlName" "ImagePanel" + "fieldName" "PowerMeterDim" + "xpos" "1492" + "ypos" "15" + "wide" "95" + "tall" "28" + "AutoResize" "0" + "PinCorner" "1" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "scaleimage" "0" + "image" "resource/battery_dim" + } + "PowerMeterBright" + { + "ControlName" "ImagePanel" + "fieldName" "PowerMeterBright" + "xpos" "1494" + "ypos" "17" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "1" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "scaleimage" "0" + "image" "resource/battery_bright" + } + "TaskbarPanel" + { + "ControlName" "EditablePanel" + "fieldName" "TaskbarPanel" + "xpos" "0" + "ypos" "1136" + "wide" "1600" + "tall" "200" + "AutoResize" "1" + "PinCorner" "2" + } +} diff --git a/steam/cached/OverlaySplash.res b/steam/cached/OverlaySplash.res new file mode 100644 index 0000000..b70df76 --- /dev/null +++ b/steam/cached/OverlaySplash.res @@ -0,0 +1,88 @@ +"steam/cached/OverlaySplash.res" +{ + "OverlaySplashScreen" + { + "ControlName" "COverlaySplash" + "fieldName" "OverlaySplashScreen" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="Notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "10" + "ypos" "20" + "wide" "52" + "tall" "32" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "1" + "image" "resource/steam_logo" + } + "LabelMessage" + { + "ControlName" "Label" + "fieldName" "LabelMessage" + "xpos" "70" + "ypos" "24" + "wide" "166" + "tall" "32" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_Splash_Message" + "textAlignment" "north-west" + "wrap" "1" + "textcolor" "Text" + font-family=basefont + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "1" + "ypos" "74" + "wide" "238" + "tall" "23" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "74" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_Splash_Hotkey" + "textAlignment" "center" + "wrap" "0" + style="label" + + } +} diff --git a/steam/cached/OverlayTaskbar.res b/steam/cached/OverlayTaskbar.res new file mode 100644 index 0000000..6b230a1 --- /dev/null +++ b/steam/cached/OverlayTaskbar.res @@ -0,0 +1,116 @@ +"Steam/Cached/OverlayTaskbar.res" +{ + "TaskbarPanel" + { + "ControlName" "EditablePanel" + "fieldName" "TaskbarPanel" + "xpos" "0" + "ypos" "0" + "wide" "640" + "tall" "64" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + } + "CloseButton" + { + "ControlName" "Button" + "fieldName" "ButtonSupport" + "xpos" "20" + "ypos" "16" + "wide" "180" + "tall" "32" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "appearance" "CTaskbarButton" + } + "DLCButton" + { + "ControlName" "Button" + "fieldName" "DLCButton" + "xpos" "-80" + "ypos" "16" + "wide" "100" + "tall" "32" + "AutoResize" "0" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + } + "SettingsButton" + { + "ControlName" "Button" + "fieldName" "SettingsButton" + "xpos" "40" + "ypos" "16" + "wide" "100" + "tall" "32" + "AutoResize" "0" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + } + "WebBrowserButton" + { + "ControlName" "Button" + "fieldName" "WebBrowserButton" + "xpos" "160" + "ypos" "16" + "wide" "100" + "tall" "32" + "AutoResize" "0" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + + } + "CommunityButton" + { + "ControlName" "Button" + "fieldName" "CommunityButton" + "xpos" "280" + "ypos" "16" + "wide" "100" + "tall" "32" + "AutoResize" "0" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + } + "PlayersButton" + { + "ControlName" "Button" + "fieldName" "PlayersButton" + "xpos" "400" + "ypos" "16" + "wide" "100" + "tall" "32" + "AutoResize" "0" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + } + "FriendsButton" + { + "ControlName" "Button" + "fieldName" "FriendsButton" + "xpos" "520" + "ypos" "16" + "wide" "100" + "tall" "32" + "AutoResize" "0" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + } +} diff --git a/steam/cached/ProductMarketingDialog.res b/steam/cached/ProductMarketingDialog.res new file mode 100644 index 0000000..ff33716 Binary files /dev/null and b/steam/cached/ProductMarketingDialog.res differ diff --git a/steam/cached/ProductMarketingDialog_Initial.res b/steam/cached/ProductMarketingDialog_Initial.res new file mode 100644 index 0000000..5ab7535 Binary files /dev/null and b/steam/cached/ProductMarketingDialog_Initial.res differ diff --git a/steam/cached/ProductMarketingDialog_Preload.res b/steam/cached/ProductMarketingDialog_Preload.res new file mode 100644 index 0000000..29d2d80 --- /dev/null +++ b/steam/cached/ProductMarketingDialog_Preload.res @@ -0,0 +1,55 @@ +"steam/cached/ProductMarketingDialog_Preload.res" +{ + "sellpage" + { + "ControlName" "CProductMarketingDialog" + "fieldName" "SellPage" + "xpos" "409" + "ypos" "293" + "wide" "458" + "tall" "408" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + "title" "#steam_sellpage_title" + } + "HTMLSellPage" + { + "ControlName" "HTML" + "fieldName" "HTMLSellPage" + "xpos" "19" + "ypos" "31" + "wide" "420" + "tall" "332" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "365" + "ypos" "373" + "wide" "74" + "tall" "24" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#vgui_close" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Command" "Close" + "Default" "1" + } +} + diff --git a/steam/cached/ProductMarketingDialog_Released.res b/steam/cached/ProductMarketingDialog_Released.res new file mode 100644 index 0000000..312e550 --- /dev/null +++ b/steam/cached/ProductMarketingDialog_Released.res @@ -0,0 +1,55 @@ +"steam/cached/ProductMarketingDialog_Released.res" +{ + "sellpage" + { + "ControlName" "CProductMarketingDialog" + "fieldName" "SellPage" + "xpos" "231" + "ypos" "90" + "wide" "764" + "tall" "798" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + "title" "#steam_sellpage_title" + } + "HTMLSellPage" + { + "ControlName" "HTML" + "fieldName" "HTMLSellPage" + "xpos" "19" + "ypos" "31" + "wide" "724" + "tall" "718" + "autoResize" "3" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "670" + "ypos" "757" + "wide" "74" + "tall" "24" + "autoResize" "0" + "pinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#vgui_close" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Command" "Close" + "Default" "1" + } +} + diff --git a/steam/cached/PurchaseSubExternalSignup.res b/steam/cached/PurchaseSubExternalSignup.res new file mode 100644 index 0000000..963339e --- /dev/null +++ b/steam/cached/PurchaseSubExternalSignup.res @@ -0,0 +1,58 @@ +"Steam/Cached/PurchaseSubExternalSignup.res" +{ + "PurchaseSubExternalSignup" + { + "ControlName" "WizardSubPanel" + "fieldName" "PurchaseSubExternalSignup" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "SignupInfo" + { + "ControlName" "Label" + "fieldName" "SignupInfo" + "xpos" "28" + "ypos" "68" + "wide" "410" + "tall" "186" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "" + "textAlignment" "north-west" + "wrap" "1" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "28" + "ypos" "30" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_ExternalSignupHeadline" + "textAlignment" "west" + "font" "UiBold" + "wrap" "0" + } +} diff --git a/steam/cached/Receipt_AlreadyPurchased.res b/steam/cached/Receipt_AlreadyPurchased.res new file mode 100644 index 0000000..cc5e5b3 --- /dev/null +++ b/steam/cached/Receipt_AlreadyPurchased.res @@ -0,0 +1,43 @@ +"steam/cached/Receipt_AlreadyPurchased.res" +{ + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "20" + "ypos" "52" + "wide" "344" + "tall" "116" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_Receipt_AlreadyPurchased" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "20" + "ypos" "20" + "wide" "344" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_Receipt_AlreadyPurchased_Headline" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "1" + "font" "uiHeadline" + "wrap" "0" + } +} + \ No newline at end of file diff --git a/steam/cached/Receipt_Blank.res b/steam/cached/Receipt_Blank.res new file mode 100644 index 0000000..83b9d92 --- /dev/null +++ b/steam/cached/Receipt_Blank.res @@ -0,0 +1,5 @@ +"steam/cached/Receipt_Blank.res" +{ +} + + \ No newline at end of file diff --git a/steam/cached/Receipt_CC_Alert.res b/steam/cached/Receipt_CC_Alert.res new file mode 100644 index 0000000..b58aef6 --- /dev/null +++ b/steam/cached/Receipt_CC_Alert.res @@ -0,0 +1,242 @@ +"steam/cached/Receipt_CC_Alert.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "132" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionCancelled_PaymentCardAlert_Info" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "420" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionCancelled_PaymentCardAlert_Headline" + "textAlignment" "west" + "font" "UIheadline" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "16" + "ypos" "220" + "wide" "138" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardHolder" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "164" + "ypos" "220" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardHolderName%" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "16" + "ypos" "242" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardType" + "textAlignment" "west" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "164" + "ypos" "242" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardType%" + "textAlignment" "west" + "wrap" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "16" + "ypos" "264" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardLast4" + "textAlignment" "west" + "wrap" "0" + } + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "164" + "ypos" "264" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardLastFourDigits%" + "textAlignment" "west" + "wrap" "0" + } + "Label7" + { + "ControlName" "Label" + "fieldName" "Label7" + "xpos" "16" + "ypos" "286" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_PostCode" + "textAlignment" "west" + "wrap" "0" + } + "Label8" + { + "ControlName" "Label" + "fieldName" "Label8" + "xpos" "164" + "ypos" "286" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%BillingZip%" + "textAlignment" "west" + "wrap" "0" + } + "troubleshooterLink" + { + "ControlName" "URLLabel" + "fieldName" "troubleshooterLink" + "xpos" "20" + "ypos" "304" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://steampowered.com/troubleshooter/live/en/s_bill_01.php" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "16" + "ypos" "194" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_CCDeclined_SupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=294" + } +} diff --git a/steam/cached/Receipt_CC_Declined.res b/steam/cached/Receipt_CC_Declined.res new file mode 100644 index 0000000..f243b2b --- /dev/null +++ b/steam/cached/Receipt_CC_Declined.res @@ -0,0 +1,255 @@ +"steam/cached/Receipt_CC_Declined.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "136" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionCancelled_PaymentCardDeclinedCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "420" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionCancelled_PaymentCardDeclined_Headline" + "textAlignment" "west" + "font" "UIheadline" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "16" + "ypos" "320" + "wide" "138" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardHolder" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "164" + "ypos" "320" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardHolderName%" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "16" + "ypos" "342" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardType" + "textAlignment" "west" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "164" + "ypos" "342" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardType%" + "textAlignment" "west" + "wrap" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "16" + "ypos" "364" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardLast4" + "textAlignment" "west" + "wrap" "0" + } + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "164" + "ypos" "364" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardLastFourDigits%" + "textAlignment" "west" + "wrap" "0" + } + "Label7" + { + "ControlName" "Label" + "fieldName" "Label7" + "xpos" "16" + "ypos" "386" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_PostCode" + "textAlignment" "west" + "wrap" "0" + } + "Label8" + { + "ControlName" "Label" + "fieldName" "Label8" + "xpos" "164" + "ypos" "386" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%BillingZip%" + "textAlignment" "west" + "wrap" "0" + } + "troubleshooterLink" + { + "ControlName" "URLLabel" + "fieldName" "troubleshooterLink" + "xpos" "20" + "ypos" "304" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://steampowered.com/troubleshooter/live/en/s_bill_01.php" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "16" + "ypos" "294" + "wide" "420" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_CCDeclined_SupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=294" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "15" + "ypos" "180" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_CC_Declined_AVSFailure.res b/steam/cached/Receipt_CC_Declined_AVSFailure.res new file mode 100644 index 0000000..745962e --- /dev/null +++ b/steam/cached/Receipt_CC_Declined_AVSFailure.res @@ -0,0 +1,260 @@ +"steam/cached/Receipt_CC_Declined_AVSFailure.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "136" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionCancelled_PaymentCardDeclined_AVSFailureCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "352" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionCancelled_PaymentCardDeclined_Headline" + "textAlignment" "west" + "font" "UIheadline" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "16" + "ypos" "320" + "wide" "138" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardHolder" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "164" + "ypos" "320" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "%CardHolderName%" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "16" + "ypos" "342" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardType" + "textAlignment" "west" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "164" + "ypos" "342" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "%CardType%" + "textAlignment" "west" + "wrap" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "16" + "ypos" "364" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardLast4" + "textAlignment" "west" + "wrap" "0" + } + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "164" + "ypos" "364" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardLastFourDigits%" + "textAlignment" "west" + "wrap" "0" + } + "Label7" + { + "ControlName" "Label" + "fieldName" "Label7" + "xpos" "16" + "ypos" "386" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_PostCode" + "textAlignment" "west" + "wrap" "0" + } + "Label8" + { + "ControlName" "Label" + "fieldName" "Label8" + "xpos" "164" + "ypos" "386" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "%BillingZip%" + "textAlignment" "west" + "wrap" "0" + } + "troubleshooterLink" + { + "ControlName" "URLLabel" + "fieldName" "troubleshooterLink" + "xpos" "20" + "ypos" "304" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://steampowered.com/troubleshooter/live/en/s_bill_01.php" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "16" + "ypos" "294" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_CCDeclined_SupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=294" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "15" + "ypos" "180" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_CC_Declined_InsufficientFunds.res b/steam/cached/Receipt_CC_Declined_InsufficientFunds.res new file mode 100644 index 0000000..a642a9b --- /dev/null +++ b/steam/cached/Receipt_CC_Declined_InsufficientFunds.res @@ -0,0 +1,257 @@ +"steam/cached/Receipt_CC_Declined_InsufficientFunds.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "136" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionCancelled_PaymentCardDeclined_InsufficientFundsCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "352" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionCancelled_PaymentCardDeclined_Headline" + "textAlignment" "west" + "font" "UIheadline" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "16" + "ypos" "320" + "wide" "138" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardHolder" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "164" + "ypos" "320" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardHolderName%" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "16" + "ypos" "342" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardType" + "textAlignment" "west" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "164" + "ypos" "342" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardType%" + "textAlignment" "west" + "wrap" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "16" + "ypos" "364" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardLast4" + "textAlignment" "west" + "wrap" "0" + } + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "164" + "ypos" "364" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardLastFourDigits%" + "textAlignment" "west" + "wrap" "0" + } + "Label7" + { + "ControlName" "Label" + "fieldName" "Label7" + "xpos" "16" + "ypos" "386" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_PostCode" + "textAlignment" "west" + "wrap" "0" + } + "Label8" + { + "ControlName" "Label" + "fieldName" "Label8" + "xpos" "164" + "ypos" "386" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%BillingZip%" + "textAlignment" "west" + "wrap" "0" + } + "troubleshooterLink" + { + "ControlName" "URLLabel" + "fieldName" "troubleshooterLink" + "xpos" "20" + "ypos" "304" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://steampowered.com/troubleshooter/live/en/s_bill_01.php" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "16" + "ypos" "294" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_CCDeclined_SupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=294" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "15" + "ypos" "180" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_CC_Denied_FromPreorder.res b/steam/cached/Receipt_CC_Denied_FromPreorder.res new file mode 100644 index 0000000..9ac52d0 --- /dev/null +++ b/steam/cached/Receipt_CC_Denied_FromPreorder.res @@ -0,0 +1,224 @@ +"steam/cached/Receipt_CC_Denied_FromPreorder.res" +{ + "PurchaseSubBillingInfoReview" + { + "ControlName" "WizardSubPanel" + "fieldName" "PurchaseSubBillingInfoReview" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "152" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Subscription_Preorder_CcardDeclined" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "352" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_Subscription_Preorder_CcardDeclined_Headline" + "textAlignment" "west" + "font" "UIheadline" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "16" + "ypos" "208" + "wide" "128" + "tall" "22" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardHolder" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "152" + "ypos" "208" + "wide" "226" + "tall" "22" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardHolderName%" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "16" + "ypos" "230" + "wide" "128" + "tall" "22" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardType" + "textAlignment" "west" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "152" + "ypos" "230" + "wide" "226" + "tall" "22" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardType%" + "textAlignment" "west" + "wrap" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "16" + "ypos" "252" + "wide" "128" + "tall" "22" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardLast4" + "textAlignment" "west" + "wrap" "0" + } + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "152" + "ypos" "252" + "wide" "226" + "tall" "22" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardLastFourDigits%" + "textAlignment" "west" + "wrap" "0" + } + "Label7" + { + "ControlName" "Label" + "fieldName" "Label7" + "xpos" "16" + "ypos" "274" + "wide" "128" + "tall" "22" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_PostCode" + "textAlignment" "west" + "wrap" "0" + } + "Label8" + { + "ControlName" "Label" + "fieldName" "Label8" + "xpos" "152" + "ypos" "274" + "wide" "226" + "tall" "22" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%BillingZip%" + "textAlignment" "west" + "wrap" "0" + } + "troubleshooterLink" + { + "ControlName" "URLLabel" + "fieldName" "troubleshooterLink" + "xpos" "20" + "ypos" "304" + "wide" "410" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://steampowered.com/troubleshooter/live/en/s_bill_01.php" + } +} diff --git a/steam/cached/Receipt_CC_Preorder.res b/steam/cached/Receipt_CC_Preorder.res new file mode 100644 index 0000000..19075f5 --- /dev/null +++ b/steam/cached/Receipt_CC_Preorder.res @@ -0,0 +1,296 @@ +"steam/cached/Receipt_CC_Preorder.res" +{ + "PurchaseSubBillingInfoReview" + { + "ControlName" "CPurchaseSubBillingInfoReview" + "fieldName" "PurchaseSubBillingInfoReview" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "OrderSummary" + { + "ControlName" "RichText" + "fieldName" "OrderSummary" + "xpos" "11" + "ypos" "69" + "wide" "394" + "tall" "261" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "maxchars" "-1" + "ScrollBar" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Subscription_Preorder_PreProcessCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "420" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_Subscription_Preorder_PreProcess_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "286" + "wide" "136" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardType" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "20" + "ypos" "308" + "wide" "131" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardLast4" + "textAlignment" "west" + "wrap" "0" + } + "CardHolderName" + { + "ControlName" "Label" + "fieldName" "CardHolderName" + "xpos" "164" + "ypos" "264" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardHolderName%" + "textAlignment" "west" + "wrap" "0" + } + "CardType" + { + "ControlName" "Label" + "fieldName" "CardType" + "xpos" "164" + "ypos" "286" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardType%" + "textAlignment" "west" + "wrap" "0" + } + "CardLastFourDigits" + { + "ControlName" "Label" + "fieldName" "CardLastFourDigits" + "xpos" "164" + "ypos" "308" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardLastFourDigits%" + "textAlignment" "west" + "wrap" "0" + } + "CardApprovalCode" + { + "ControlName" "Label" + "fieldName" "CardApprovalCode" + "xpos" "164" + "ypos" "352" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%ConfirmationCode%" + "textAlignment" "west" + "wrap" "0" + } + "PriceTotal" + { + "ControlName" "Label" + "fieldName" "PriceTotal" + "xpos" "164" + "ypos" "330" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%PriceTotal%" + "textAlignment" "west" + "wrap" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "164" + "ypos" "398" + "wide" "116" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionPrintReceipt" + "textAlignment" "west" + "wrap" "0" + "Command" "print" + "Default" "1" + "selected" "0" + } + "Label8" + { + "ControlName" "Label" + "fieldName" "Label8" + "xpos" "20" + "ypos" "264" + "wide" "141" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardHolder" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "20" + "ypos" "330" + "wide" "109" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionPriceTotal" + "textAlignment" "west" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "20" + "ypos" "352" + "wide" "141" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionConfirmation" + "textAlignment" "west" + "wrap" "0" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "15" + "ypos" "150" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_CC_Success.res b/steam/cached/Receipt_CC_Success.res new file mode 100644 index 0000000..7534760 --- /dev/null +++ b/steam/cached/Receipt_CC_Success.res @@ -0,0 +1,278 @@ +"steam/cached/Receipt_CC_Success.res" +{ + "PurchaseSubBillingInfoReview" + { + "ControlName" "WizardSubPanel" + "fieldName" "PurchaseSubBillingInfoReview" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionSuccessCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "420" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionSuccess_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "CardHolderName" + { + "ControlName" "Label" + "fieldName" "CardHolderName" + "xpos" "164" + "ypos" "234" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardHolderName%" + "textAlignment" "west" + "wrap" "0" + } + "CardType" + { + "ControlName" "Label" + "fieldName" "CardType" + "xpos" "164" + "ypos" "256" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardType%" + "textAlignment" "west" + "wrap" "0" + } + "CardLastFourDigits" + { + "ControlName" "Label" + "fieldName" "CardLastFourDigits" + "xpos" "164" + "ypos" "278" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardLastFourDigits%" + "textAlignment" "west" + "wrap" "0" + } + "PriceTotal" + { + "ControlName" "Label" + "fieldName" "PriceTotal" + "xpos" "164" + "ypos" "300" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%PriceTotal%" + "textAlignment" "west" + "wrap" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "164" + "ypos" "368" + "wide" "116" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionPrintReceipt" + "textAlignment" "west" + "wrap" "0" + "Command" "print" + "Default" "1" + } + "Label8" + { + "ControlName" "Label" + "fieldName" "Label8" + "xpos" "20" + "ypos" "234" + "wide" "140" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardHolder" + "textAlignment" "west" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "256" + "wide" "135" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardType" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "20" + "ypos" "278" + "wide" "130" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardLast4" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "20" + "ypos" "300" + "wide" "109" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionPriceTotal" + "textAlignment" "west" + "wrap" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "20" + "ypos" "322" + "wide" "137" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionConfirmation" + "textAlignment" "west" + "wrap" "0" + } + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "164" + "ypos" "322" + "wide" "220" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%ConfirmationCode%" + "textAlignment" "west" + "wrap" "0" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "15" + "ypos" "120" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_CC_Success_FromPreorder.res b/steam/cached/Receipt_CC_Success_FromPreorder.res new file mode 100644 index 0000000..40956d8 --- /dev/null +++ b/steam/cached/Receipt_CC_Success_FromPreorder.res @@ -0,0 +1,278 @@ +"steam/cached/Receipt_CC_Success_FromPreorder.res" +{ + "PurchaseSubBillingInfoReview" + { + "ControlName" "WizardSubPanel" + "fieldName" "PurchaseSubBillingInfoReview" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "86" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Subscription_Preorder_CcardSuccessCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "352" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_Subscription_Preorder_CcardSuccess_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "CardHolderName" + { + "ControlName" "Label" + "fieldName" "CardHolderName" + "xpos" "164" + "ypos" "264" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardHolderName%" + "textAlignment" "west" + "wrap" "0" + } + "cardtype" + { + "ControlName" "Label" + "fieldName" "CardType" + "xpos" "164" + "ypos" "286" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardType%" + "textAlignment" "west" + "wrap" "0" + } + "CardLastFourDigits" + { + "ControlName" "Label" + "fieldName" "CardLastFourDigits" + "xpos" "164" + "ypos" "308" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardLastFourDigits%" + "textAlignment" "west" + "wrap" "0" + } + "PriceTotal" + { + "ControlName" "Label" + "fieldName" "PriceTotal" + "xpos" "164" + "ypos" "330" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%PriceTotal%" + "textAlignment" "west" + "wrap" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "164" + "ypos" "398" + "wide" "116" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionPrintReceipt" + "textAlignment" "west" + "wrap" "0" + "Command" "print" + "Default" "1" + } + "Label8" + { + "ControlName" "Label" + "fieldName" "Label8" + "xpos" "20" + "ypos" "264" + "wide" "139" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardHolder" + "textAlignment" "west" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "286" + "wide" "137" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardType" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "20" + "ypos" "308" + "wide" "133" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardLast4" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "20" + "ypos" "330" + "wide" "109" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionPriceTotal" + "textAlignment" "west" + "wrap" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "20" + "ypos" "352" + "wide" "141" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionConfirmation" + "textAlignment" "west" + "wrap" "0" + } + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "164" + "ypos" "352" + "wide" "220" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%ConfirmationCode%" + "textAlignment" "west" + "wrap" "0" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "15" + "ypos" "150" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_CC_Success_WithShipping.res b/steam/cached/Receipt_CC_Success_WithShipping.res new file mode 100644 index 0000000..575dace --- /dev/null +++ b/steam/cached/Receipt_CC_Success_WithShipping.res @@ -0,0 +1,278 @@ +"steam/cached/Receipt_CC_Success_WithShipping.res" +{ + "PurchaseSubBillingInfoReview" + { + "ControlName" "WizardSubPanel" + "fieldName" "PurchaseSubBillingInfoReview" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "518" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "100" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Subscription_Success_WithShippingCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "352" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_Subscription_Success_WithShipping_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "CardHolderName" + { + "ControlName" "Label" + "fieldName" "CardHolderName" + "xpos" "164" + "ypos" "264" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardHolderName%" + "textAlignment" "west" + "wrap" "0" + } + "CardType" + { + "ControlName" "Label" + "fieldName" "CardType" + "xpos" "164" + "ypos" "286" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardType%" + "textAlignment" "west" + "wrap" "0" + } + "CardLastFourDigits" + { + "ControlName" "Label" + "fieldName" "CardLastFourDigits" + "xpos" "164" + "ypos" "308" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardLastFourDigits%" + "textAlignment" "west" + "wrap" "0" + } + "PriceTotal" + { + "ControlName" "Label" + "fieldName" "PriceTotal" + "xpos" "164" + "ypos" "330" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%PriceTotal%" + "textAlignment" "west" + "wrap" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "164" + "ypos" "398" + "wide" "124" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionPrintReceipt" + "textAlignment" "west" + "wrap" "0" + "Command" "print" + "Default" "1" + } + "Label8" + { + "ControlName" "Label" + "fieldName" "Label8" + "xpos" "20" + "ypos" "264" + "wide" "141" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardHolder" + "textAlignment" "west" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "286" + "wide" "138" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardType" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "20" + "ypos" "308" + "wide" "137" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardLast4" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "20" + "ypos" "330" + "wide" "109" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionPriceTotal" + "textAlignment" "west" + "wrap" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "20" + "ypos" "352" + "wide" "140" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionConfirmation" + "textAlignment" "west" + "wrap" "0" + } + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "164" + "ypos" "352" + "wide" "220" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%ConfirmationCode%" + "textAlignment" "west" + "wrap" "0" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "15" + "ypos" "150" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_CC_UseLimit.res b/steam/cached/Receipt_CC_UseLimit.res new file mode 100644 index 0000000..558917c --- /dev/null +++ b/steam/cached/Receipt_CC_UseLimit.res @@ -0,0 +1,258 @@ +"steam/cached/Receipt_CC_UseLimit.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "128" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionCancelled_PaymentCardUseLimitHit_InfoCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "420" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionCancelled_PaymentCardUseLimitHit_Headline" + "textAlignment" "west" + "font" "UIheadline" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "320" + "wide" "138" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardHolder" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "164" + "ypos" "320" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "%CardHolderName%" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "20" + "ypos" "342" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardType" + "textAlignment" "west" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "164" + "ypos" "342" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardType%" + "textAlignment" "west" + "wrap" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "20" + "ypos" "364" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionCardLast4" + "textAlignment" "west" + "wrap" "0" + } + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "164" + "ypos" "364" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%CardLastFourDigits%" + "textAlignment" "west" + "wrap" "0" + } + "Label7" + { + "ControlName" "Label" + "fieldName" "Label7" + "xpos" "20" + "ypos" "386" + "wide" "128" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_PostCode" + "textAlignment" "west" + "wrap" "0" + } + "Label8" + { + "ControlName" "Label" + "fieldName" "Label8" + "xpos" "164" + "ypos" "386" + "wide" "226" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%BillingZip%" + "textAlignment" "west" + "wrap" "0" + } + "troubleshooterLink" + { + "ControlName" "URLLabel" + "fieldName" "troubleshooterLink" + "xpos" "20" + "ypos" "304" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://steampowered.com/troubleshooter/live/en/s_bill_01.php" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "20" + "ypos" "294" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_CCDeclined_SupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=294" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "15" + "ypos" "180" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_CDKey_Cancelled.res b/steam/cached/Receipt_CDKey_Cancelled.res new file mode 100644 index 0000000..d0873f9 Binary files /dev/null and b/steam/cached/Receipt_CDKey_Cancelled.res differ diff --git a/steam/cached/Receipt_CDKey_InvalidKey.res b/steam/cached/Receipt_CDKey_InvalidKey.res new file mode 100644 index 0000000..0cdb064 Binary files /dev/null and b/steam/cached/Receipt_CDKey_InvalidKey.res differ diff --git a/steam/cached/Receipt_CDKey_MustOwnOtherApp.res b/steam/cached/Receipt_CDKey_MustOwnOtherApp.res new file mode 100644 index 0000000..44b7cee --- /dev/null +++ b/steam/cached/Receipt_CDKey_MustOwnOtherApp.res @@ -0,0 +1,63 @@ +"steam/cached/Receipt_CDKey_MustOwnOtherApp.res" +{ + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "20" + "ypos" "52" + "wide" "344" + "tall" "116" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_SubscriptionCancelled_CDKey_MustOwnOtherApp" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "20" + "ypos" "20" + "wide" "344" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_SubscriptionCancelled_CDKey_MustOwnOtherApp_Headline" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "1" + "font" "uiHeadline" + "wrap" "0" + } + "troubleshooterLink" + { + "ControlName" "URLLabel" + "fieldName" "troubleshooterLink" + "xpos" "20" + "ypos" "168" + "wide" "410" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "URLText" "#Steam_TroubleshooterURL_CDKey" + } +} + \ No newline at end of file diff --git a/steam/cached/Receipt_CDKey_RateLimited.res b/steam/cached/Receipt_CDKey_RateLimited.res new file mode 100644 index 0000000..247f7ff --- /dev/null +++ b/steam/cached/Receipt_CDKey_RateLimited.res @@ -0,0 +1,62 @@ +"steam/cached/Receipt_CDKey_RateLimited.res" +{ + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "20" + "ypos" "52" + "wide" "344" + "tall" "116" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_Subscription_RateLimitedCDKey" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "20" + "ypos" "20" + "wide" "344" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_Subscription_RateLimitedCDKey_Headline" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "1" + "font" "uiHeadline" + "wrap" "0" + } + "troubleshooterLink" + { + "ControlName" "URLLabel" + "fieldName" "troubleshooterLink" + "xpos" "20" + "ypos" "168" + "wide" "410" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "URLText" "#Steam_TroubleshooterURL_CDKey" + } +} diff --git a/steam/cached/Receipt_CDKey_Rejected.res b/steam/cached/Receipt_CDKey_Rejected.res new file mode 100644 index 0000000..db66435 Binary files /dev/null and b/steam/cached/Receipt_CDKey_Rejected.res differ diff --git a/steam/cached/Receipt_CDKey_Success.res b/steam/cached/Receipt_CDKey_Success.res new file mode 100644 index 0000000..148f633 --- /dev/null +++ b/steam/cached/Receipt_CDKey_Success.res @@ -0,0 +1,93 @@ +"steam/cached/Receipt_CDKey_Success.res" +{ + "PurchaseSubBillingInfoReview" + { + "ControlName" "WizardSubPanel" + "fieldName" "PurchaseSubBillingInfoReview" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionSuccess_CDKey" + "textAlignment" "north-west" + "wrap" "1" + } + "Headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "420" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionSuccess_CDKey_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "PrintReceipt" + { + "ControlName" "Button" + "fieldName" "PrintReceipt" + "xpos" "164" + "ypos" "240" + "wide" "116" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionPrintReceipt" + "textAlignment" "west" + "wrap" "0" + "Command" "print" + "Default" "1" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "15" + "ypos" "120" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_Contact_Support.res b/steam/cached/Receipt_Contact_Support.res new file mode 100644 index 0000000..f10a88b --- /dev/null +++ b/steam/cached/Receipt_Contact_Support.res @@ -0,0 +1,77 @@ +"steam/cached/Receipt_Contact_Support.res" +{ + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "20" + "ypos" "52" + "wide" "344" + "tall" "120" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_Subscription_ContactSupportCart" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + "Headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "20" + "ypos" "20" + "wide" "344" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_Subscription_ContactSupport_Headline" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "1" + "font" "uiHeadline" + "wrap" "0" + } + "troubleshooterLink" + { + "ControlName" "URLLabel" + "fieldName" "troubleshooterLink" + "xpos" "16" + "ypos" "276" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=294" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "16" + "ypos" "178" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} + \ No newline at end of file diff --git a/steam/cached/Receipt_HardwarePromo_AlreadyPurchased.res b/steam/cached/Receipt_HardwarePromo_AlreadyPurchased.res new file mode 100644 index 0000000..1a8dfe1 Binary files /dev/null and b/steam/cached/Receipt_HardwarePromo_AlreadyPurchased.res differ diff --git a/steam/cached/Receipt_HardwarePromo_Success.res b/steam/cached/Receipt_HardwarePromo_Success.res new file mode 100644 index 0000000..5f4d8e3 --- /dev/null +++ b/steam/cached/Receipt_HardwarePromo_Success.res @@ -0,0 +1,93 @@ +"steam/cached/Receipt_HardwarePromo_Success.res" +{ + "RegisterHardwarePromo" + { + "ControlName" "CRegisterHardwarePromo" + "fieldName" "RegisterHardwarePromo" + "xpos" "8" + "ypos" "28" + "wide" "416" + "tall" "362" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "ProgressBar1" + { + "ControlName" "ProgressBar" + "fieldName" "ProgressBar1" + "xpos" "48" + "ypos" "155" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "progress" "0.010000" + "variable" "progress" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "20" + "ypos" "50" + "wide" "344" + "tall" "86" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionSuccess_HardwarePromo" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "20" + "ypos" "20" + "wide" "352" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionSuccess_HardwarePromo_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "140" + "wide" "344" + "tall" "86" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionSuccess_HardwarePromo2" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/steam/cached/Receipt_HardwarePromo_Used.res b/steam/cached/Receipt_HardwarePromo_Used.res new file mode 100644 index 0000000..fb3f22a Binary files /dev/null and b/steam/cached/Receipt_HardwarePromo_Used.res differ diff --git a/steam/cached/Receipt_PayPal_Declined.res b/steam/cached/Receipt_PayPal_Declined.res new file mode 100644 index 0000000..88f337e --- /dev/null +++ b/steam/cached/Receipt_PayPal_Declined.res @@ -0,0 +1,90 @@ +"steam/cached/Receipt_PayPal_Declined.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "130" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionCancelled_PayPalDeclinedCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "13" + "wide" "420" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionCancelled_PayPalDeclined_Headline" + "textAlignment" "west" + "font" "UIheadline" + "wrap" "0" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "19" + "ypos" "291" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_CCDeclined_SupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=294" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "18" + "ypos" "186" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_PayPal_InvalidShippingAddress.res b/steam/cached/Receipt_PayPal_InvalidShippingAddress.res new file mode 100644 index 0000000..fa97fc5 --- /dev/null +++ b/steam/cached/Receipt_PayPal_InvalidShippingAddress.res @@ -0,0 +1,90 @@ +"steam/cached/Receipt_PayPal_InvalidShippingAddress.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "128" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionCancelled_PayPalDeclined_InvalidShippingAddressCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "352" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionCancelled_PayPalDeclined_Headline" + "textAlignment" "west" + "font" "UIheadline" + "wrap" "0" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "16" + "ypos" "276" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_PayPalDeclined_SupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=546" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "16" + "ypos" "178" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_PayPal_Preorder.res b/steam/cached/Receipt_PayPal_Preorder.res new file mode 100644 index 0000000..898dc34 --- /dev/null +++ b/steam/cached/Receipt_PayPal_Preorder.res @@ -0,0 +1,132 @@ +"steam/cached/Receipt_PayPal_Preorder.res" +{ + "PurchaseSubBillingInfoReview" + { + "ControlName" "CPurchaseSubBillingInfoReview" + "fieldName" "PurchaseSubBillingInfoReview" + "xpos" "8" + "ypos" "48" + "wide" "416" + "tall" "342" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "OrderSummary" + { + "ControlName" "RichText" + "fieldName" "OrderSummary" + "xpos" "11" + "ypos" "69" + "wide" "394" + "tall" "261" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "maxchars" "-1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "20" + "ypos" "52" + "wide" "344" + "tall" "86" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Subscription_Preorder_PreProcess_PayPal" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "20" + "ypos" "20" + "wide" "352" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "LabelBright" + "labelText" "#Steam_Subscription_Preorder_PreProcess_PayPal_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "PriceTotal" + { + "ControlName" "Label" + "fieldName" "PriceTotal" + "xpos" "164" + "ypos" "224" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%PriceTotal%" + "textAlignment" "west" + "wrap" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "164" + "ypos" "276" + "wide" "116" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionPrintReceipt" + "textAlignment" "west" + "wrap" "0" + "Command" "print" + "Default" "1" + "selected" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "20" + "ypos" "224" + "wide" "109" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "LabelDull" + "labelText" "#Steam_SubscriptionPriceTotal" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/Receipt_PayPal_Success.res b/steam/cached/Receipt_PayPal_Success.res new file mode 100644 index 0000000..3971a4f --- /dev/null +++ b/steam/cached/Receipt_PayPal_Success.res @@ -0,0 +1,166 @@ +"steam/cached/Receipt_PayPal_Success.res" +{ + "PurchaseSubBillingInfoReview" + { + "ControlName" "WizardSubPanel" + "fieldName" "PurchaseSubBillingInfoReview" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "424" + "tall" "86" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionSuccessCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "424" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionSuccess_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "PriceTotal" + { + "ControlName" "Label" + "fieldName" "PriceTotal" + "xpos" "220" + "ypos" "240" + "wide" "205" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%PriceTotal%" + "textAlignment" "west" + "wrap" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "220" + "ypos" "291" + "wide" "120" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionPrintReceipt" + "textAlignment" "west" + "wrap" "0" + "Command" "print" + "Default" "1" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "16" + "ypos" "240" + "wide" "205" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionPriceTotal" + "textAlignment" "west" + "wrap" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "16" + "ypos" "262" + "wide" "205" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionConfirmation" + "textAlignment" "west" + "wrap" "0" + } + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "220" + "ypos" "262" + "wide" "205" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%ConfirmationCode%" + "textAlignment" "west" + "wrap" "0" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "15" + "ypos" "137" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_PayPal_Success_WithShipping.res b/steam/cached/Receipt_PayPal_Success_WithShipping.res new file mode 100644 index 0000000..322fa5c --- /dev/null +++ b/steam/cached/Receipt_PayPal_Success_WithShipping.res @@ -0,0 +1,165 @@ +"steam/cached/Receipt_PayPal_Success_WithShipping.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "10" + "ypos" "40" + "wide" "456" + "tall" "316" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "20" + "ypos" "28" + "wide" "420" + "tall" "100" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Subscription_Success_WithShippingCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "20" + "ypos" "6" + "wide" "352" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_Subscription_Success_WithShipping_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "PriceTotal" + { + "ControlName" "Label" + "fieldName" "PriceTotal" + "xpos" "220" + "ypos" "240" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%PriceTotal%" + "textAlignment" "west" + "wrap" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "220" + "ypos" "291" + "wide" "124" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionPrintReceipt" + "textAlignment" "west" + "wrap" "0" + "Command" "print" + "Default" "1" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "20" + "ypos" "240" + "wide" "109" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionPriceTotal" + "textAlignment" "west" + "wrap" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "20" + "ypos" "262" + "wide" "140" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionConfirmation" + "textAlignment" "west" + "wrap" "0" + } + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "220" + "ypos" "262" + "wide" "220" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%ConfirmationCode%" + "textAlignment" "west" + "wrap" "0" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "20" + "ypos" "137" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_PayPal_UseOtherFundingSource.res b/steam/cached/Receipt_PayPal_UseOtherFundingSource.res new file mode 100644 index 0000000..4465bb8 --- /dev/null +++ b/steam/cached/Receipt_PayPal_UseOtherFundingSource.res @@ -0,0 +1,90 @@ +"steam/cached/Receipt_PayPal_UseOtherFundingSource.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "136" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionCancelled_PayPalDeclined_UseOtherFundingSourceCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "352" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionCancelled_PayPalDeclined_Headline" + "textAlignment" "west" + "font" "UIheadline" + "wrap" "0" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "16" + "ypos" "276" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_PayPalDeclined_SupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=546" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "16" + "ypos" "178" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_PayPal_UseOtherPaymentMethod.res b/steam/cached/Receipt_PayPal_UseOtherPaymentMethod.res new file mode 100644 index 0000000..43974af --- /dev/null +++ b/steam/cached/Receipt_PayPal_UseOtherPaymentMethod.res @@ -0,0 +1,90 @@ +"steam/cached/Receipt_PayPal_UseOtherPaymentMethod.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "128" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionCancelled_PayPalDeclined_UseOtherPaymentMethodCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "352" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionCancelled_PayPalDeclined_Headline" + "textAlignment" "west" + "font" "UIheadline" + "wrap" "0" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "16" + "ypos" "276" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_PayPalDeclined_SupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://support.steampowered.com/cgi-bin/steampowered.cfg/php/enduser/std_adp.php?p_faqid=546" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "16" + "ypos" "178" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_PreorderCancelled.res b/steam/cached/Receipt_PreorderCancelled.res new file mode 100644 index 0000000..c40f7be --- /dev/null +++ b/steam/cached/Receipt_PreorderCancelled.res @@ -0,0 +1,78 @@ +"steam/cached/Receipt_PreorderCancelled.res" +{ + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "88" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_PreorderCancelled" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "344" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_PreorderCancelled_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "16" + "ypos" "164" + "wide" "108" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SubscriptionConfirmation" + "textAlignment" "west" + "wrap" "0" + } + "ConfCode" + { + "ControlName" "Label" + "fieldName" "ConfCode" + "xpos" "136" + "ypos" "164" + "wide" "220" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#var_%ConfirmationCode%" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/Receipt_Purchase_AccountNotVerified.res b/steam/cached/Receipt_Purchase_AccountNotVerified.res new file mode 100644 index 0000000..37b771d --- /dev/null +++ b/steam/cached/Receipt_Purchase_AccountNotVerified.res @@ -0,0 +1,90 @@ +"steam/cached/Receipt_Purchase_AccountNotVerified.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "128" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionCancelled_PuchaseDeclined_AcctNotVerifiedCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "352" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionCancelled_PayPalDeclined_Headline" + "textAlignment" "west" + "font" "UIheadline" + "wrap" "0" + } + "Label2" + { + "ControlName" "URLLabel" + "fieldName" "Label2" + "xpos" "16" + "ypos" "276" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "#Steam_TroubleshooterURL_VfyAcct" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "16" + "ypos" "178" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_Purchase_ContactProviderSupport.res b/steam/cached/Receipt_Purchase_ContactProviderSupport.res new file mode 100644 index 0000000..15d34f0 --- /dev/null +++ b/steam/cached/Receipt_Purchase_ContactProviderSupport.res @@ -0,0 +1,71 @@ +"steam/cached/Receipt_Purchase_ContactProviderSupport.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "128" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionCancelled_PuchaseDeclined_ContactProviderCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "352" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionCancelled_PayPalDeclined_Headline" + "textAlignment" "west" + "font" "UIheadline" + "wrap" "0" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "16" + "ypos" "178" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_Purchase_Refunded.res b/steam/cached/Receipt_Purchase_Refunded.res new file mode 100644 index 0000000..b9f512b --- /dev/null +++ b/steam/cached/Receipt_Purchase_Refunded.res @@ -0,0 +1,71 @@ +"steam/cached/Receipt_Purchase_Refunded.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "20" + "ypos" "52" + "wide" "410" + "tall" "80" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Subscription_RefundedCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "20" + "ypos" "20" + "wide" "344" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_Subscription_Refunded_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "20" + "ypos" "133" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_Restricted_Country.res b/steam/cached/Receipt_Restricted_Country.res new file mode 100644 index 0000000..0e426a5 --- /dev/null +++ b/steam/cached/Receipt_Restricted_Country.res @@ -0,0 +1,89 @@ +"steam/cached/Receipt_Restricted_Country.res" +{ + "ReceiptPage" + { + "ControlName" "CReceiptSubPage" + "fieldName" "ReceiptPage" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "180" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Subscription_RestrictedCountryCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "13" + "wide" "420" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_Subscription_RestrictedCountry_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "troubleshooterLink" + { + "ControlName" "URLLabel" + "fieldName" "TroubleshooterLink" + "xpos" "20" + "ypos" "352" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "wrap" "0" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "16" + "ypos" "224" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_Server_Failure.res b/steam/cached/Receipt_Server_Failure.res new file mode 100644 index 0000000..fd4af9e --- /dev/null +++ b/steam/cached/Receipt_Server_Failure.res @@ -0,0 +1,74 @@ +"steam/cached/Receipt_Server_Failure.res" +{ + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "132" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionCancelled_ServerFailedCart" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "344" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionCancelled_ServerFailed_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "troubleshooterLink" + { + "ControlName" "Label" + "fieldName" "TroubleshooterLink" + "xpos" "20" + "ypos" "172" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "wrap" "0" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "15" + "ypos" "180" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/Receipt_Server_RegionNotSupported.res b/steam/cached/Receipt_Server_RegionNotSupported.res new file mode 100644 index 0000000..1029ac1 --- /dev/null +++ b/steam/cached/Receipt_Server_RegionNotSupported.res @@ -0,0 +1,77 @@ +"steam/cached/Receipt_Server_RegionNotSupported.res" +{ + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "20" + "ypos" "52" + "wide" "344" + "tall" "120" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_SubscriptionCancelled_RegionNotSupportedCart" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + "Headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "20" + "ypos" "20" + "wide" "344" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_SubscriptionCancelled_RegionNotSupported_Headline" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "1" + "font" "uiHeadline" + "wrap" "0" + } + "troubleshooterLink" + { + "ControlName" "Label" + "fieldName" "TroubleshooterLink" + "xpos" "20" + "ypos" "172" + "wide" "410" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "LineItemsList" + { + "ControlName" "ListPanel" + "fieldName" "LineItemsList" + "xpos" "16" + "ypos" "178" + "wide" "420" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} + \ No newline at end of file diff --git a/steam/cached/Receipt_Server_Timeout.res b/steam/cached/Receipt_Server_Timeout.res new file mode 100644 index 0000000..4b3ff54 --- /dev/null +++ b/steam/cached/Receipt_Server_Timeout.res @@ -0,0 +1,59 @@ +"steam/cached/Receipt_Server_Timeout.res" +{ + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "150" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionFailure_Timeout_CantPlay" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "344" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionFailure_Timeout_CantPlay_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "20" + "ypos" "188" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/Receipt_Server_Timeout_BFS.res b/steam/cached/Receipt_Server_Timeout_BFS.res new file mode 100644 index 0000000..8565bbd --- /dev/null +++ b/steam/cached/Receipt_Server_Timeout_BFS.res @@ -0,0 +1,59 @@ +"steam/cached/Receipt_Server_Timeout_BFS.res" +{ + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "16" + "ypos" "44" + "wide" "420" + "tall" "128" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SubscriptionFailure_Timeout" + "textAlignment" "north-west" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "16" + "ypos" "18" + "wide" "344" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#Steam_SubscriptionFailure_Timeout_Headline" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "20" + "ypos" "188" + "wide" "410" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/Receipt_Server_Timeout_Steam3.res b/steam/cached/Receipt_Server_Timeout_Steam3.res new file mode 100644 index 0000000..baccd28 Binary files /dev/null and b/steam/cached/Receipt_Server_Timeout_Steam3.res differ diff --git a/steam/cached/RegisterHardwarePromo.res b/steam/cached/RegisterHardwarePromo.res new file mode 100644 index 0000000..08236b8 --- /dev/null +++ b/steam/cached/RegisterHardwarePromo.res @@ -0,0 +1,55 @@ +"Steam/Cached/RegisterHardwarePromo.res" +{ + "RegisterHardwarePromo" + { + "ControlName" "CRegisterHardwarePromo" + "fieldName" "RegisterHardwarePromo" + "xpos" "8" + "ypos" "28" + "wide" "416" + "tall" "362" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "ProgressBar1" + { + "ControlName" "ProgressBar" + "fieldName" "ProgressBar1" + "xpos" "48" + "ypos" "155" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "progress" "0.2" + "variable" "progress" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "48" + "ypos" "64" + "wide" "220" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Working_HardwarePromo" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/RegisterSubEnterCDKey.res b/steam/cached/RegisterSubEnterCDKey.res new file mode 100644 index 0000000..f954afc Binary files /dev/null and b/steam/cached/RegisterSubEnterCDKey.res differ diff --git a/steam/cached/RegisterSubEnterCDKey_RetailInstall.res b/steam/cached/RegisterSubEnterCDKey_RetailInstall.res new file mode 100644 index 0000000..7afba4c --- /dev/null +++ b/steam/cached/RegisterSubEnterCDKey_RetailInstall.res @@ -0,0 +1,248 @@ +"steam/cached/RegisterSubEnterCDKey_RetailInstall.res" +{ + "RegisterSubEnterCDKey" + { + "ControlName" "CRegisterSubEnterCDKey" + "fieldName" "RegisterSubEnterCDKey" + "xpos" "8" + "ypos" "48" + "wide" "416" + "tall" "342" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "CDKeyEntry" + { + "ControlName" "TextEntry" + "fieldName" "CDKeyEntry" + "xpos" "24" + "ypos" "150" + "wide" "296" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "ValveKeyEntry0" + { + "ControlName" "TextEntry" + "fieldName" "ValveKeyEntry0" + "xpos" "16" + "ypos" "150" + "wide" "70" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "5" + "NumericInputOnly" "0" + "unicode" "0" + } + "ValveKeyEntry1" + { + "ControlName" "TextEntry" + "fieldName" "ValveKeyEntry1" + "xpos" "96" + "ypos" "150" + "wide" "70" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "5" + "NumericInputOnly" "0" + "unicode" "0" + } + "ValveKeyEntry2" + { + "ControlName" "TextEntry" + "fieldName" "ValveKeyEntry2" + "xpos" "176" + "ypos" "150" + "wide" "70" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "5" + "NumericInputOnly" "0" + "unicode" "0" + } + "ValveKeyEntry3" + { + "ControlName" "TextEntry" + "fieldName" "ValveKeyEntry3" + "xpos" "256" + "ypos" "150" + "wide" "70" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "5" + "NumericInputOnly" "0" + "unicode" "0" + } + "ValveKeyEntry4" + { + "ControlName" "TextEntry" + "fieldName" "ValveKeyEntry4" + "xpos" "336" + "ypos" "150" + "wide" "70" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "5" + "NumericInputOnly" "0" + "unicode" "0" + } + "infolabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "28" + "wide" "380" + "tall" "95" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RegisterCDKey_InfoRetail" + "textAlignment" "north-west" + "wrap" "1" + } + "m_pDashLabel0" + { + "ControlName" "Label" + "fieldName" "m_pDashLabel0" + "xpos" "325" + "ypos" "150" + "wide" "12" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "-" + "textAlignment" "center" + "wrap" "0" + } + "m_pDashLabel1" + { + "ControlName" "Label" + "fieldName" "m_pDashLabel1" + "xpos" "86" + "ypos" "149" + "wide" "12" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "-" + "textAlignment" "center" + "wrap" "0" + } + "m_pDashLabel2" + { + "ControlName" "Label" + "fieldName" "m_pDashLabel2" + "xpos" "246" + "ypos" "151" + "wide" "12" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "-" + "textAlignment" "center" + "wrap" "0" + } + "m_pDashLabel3" + { + "ControlName" "Label" + "fieldName" "m_pDashLabel3" + "xpos" "166" + "ypos" "150" + "wide" "12" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "-" + "textAlignment" "center" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "24" + "ypos" "124" + "wide" "128" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_CDKeyLabel" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/RegisterSubEnterCDKey_RetailInstall_3x5.res b/steam/cached/RegisterSubEnterCDKey_RetailInstall_3x5.res new file mode 100644 index 0000000..3cc6364 --- /dev/null +++ b/steam/cached/RegisterSubEnterCDKey_RetailInstall_3x5.res @@ -0,0 +1,172 @@ +"steam/cached/RegisterSubEnterCDKey_RetailInstall.res" +{ + "RegisterSubEnterCDKey" + { + "ControlName" "CRegisterSubEnterCDKey" + "fieldName" "RegisterSubEnterCDKey" + "xpos" "8" + "ypos" "48" + "wide" "416" + "tall" "342" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "CDKeyEntry" + { + "ControlName" "TextEntry" + "fieldName" "CDKeyEntry" + "xpos" "24" + "ypos" "150" + "wide" "296" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "ValveKeyEntry0" + { + "ControlName" "TextEntry" + "fieldName" "ValveKeyEntry0" + "xpos" "24" + "ypos" "150" + "wide" "70" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "5" + "NumericInputOnly" "0" + "unicode" "0" + } + "ValveKeyEntry1" + { + "ControlName" "TextEntry" + "fieldName" "ValveKeyEntry1" + "xpos" "104" + "ypos" "150" + "wide" "70" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "5" + "NumericInputOnly" "0" + "unicode" "0" + } + "ValveKeyEntry2" + { + "ControlName" "TextEntry" + "fieldName" "ValveKeyEntry2" + "xpos" "184" + "ypos" "150" + "wide" "70" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "5" + "NumericInputOnly" "0" + "unicode" "0" + } + "infolabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "28" + "wide" "380" + "tall" "95" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RegisterCDKey_InfoRetail" + "textAlignment" "north-west" + "wrap" "1" + } + "m_pDashLabel0" + { + "ControlName" "Label" + "fieldName" "m_pDashLabel0" + "xpos" "94" + "ypos" "150" + "wide" "12" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "-" + "textAlignment" "center" + "wrap" "0" + } + "m_pDashLabel1" + { + "ControlName" "Label" + "fieldName" "m_pDashLabel1" + "xpos" "174" + "ypos" "150" + "wide" "12" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "-" + "textAlignment" "center" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "24" + "ypos" "124" + "wide" "128" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_CDKeyLabel" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/RetailInstallLockedDialog.res b/steam/cached/RetailInstallLockedDialog.res new file mode 100644 index 0000000..1530a33 --- /dev/null +++ b/steam/cached/RetailInstallLockedDialog.res @@ -0,0 +1,77 @@ +"steam/cached/RetailInstallLockedDialog.res" +{ + "RetailInstallLockedDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "RetailInstallLockedDialog" + "xpos" "604" + "ypos" "465" + "wide" "420" + "tall" "242" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_RetailInstallLocked_Title" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "12" + "ypos" "50" + "wide" "390" + "tall" "92" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RetailInstallLocked_Info" + "textAlignment" "north-west" + "wrap" "1" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "311" + "ypos" "199" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#vgui_ok" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "1" + } + "WebLinkURL" + { + "ControlName" "URLLabel" + "fieldName" "WebLinkURL" + "xpos" "13" + "ypos" "155" + "wide" "390" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RetailInstallLocked_LinkText" + "textAlignment" "north-west" + "wrap" "0" + "URLText" "http://www.steampowered.com/index.php?area=news" + } +} diff --git a/steam/cached/SendGuestPassEnterDetailsSubPanel.res b/steam/cached/SendGuestPassEnterDetailsSubPanel.res new file mode 100644 index 0000000..75431ae --- /dev/null +++ b/steam/cached/SendGuestPassEnterDetailsSubPanel.res @@ -0,0 +1,152 @@ +"steam/cached/SendGuestPassEnterDetailsSubPanel.res" +{ + "SendGuestPassEnterDetailsSubPanel" + { + "ControlName" "CSendGuestPassEnterDetailsSubPanel" + "fieldName" "SendGuestPassEnterDetailsSubPanel" + "xpos" "8" + "ypos" "28" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "EmailAddressEntry" + { + "ControlName" "TextEntry" + "fieldName" "EmailAddressEntry" + "xpos" "16" + "ypos" "112" + "wide" "430" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "128" + "NumericInputOnly" "0" + "unicode" "0" + } + "FriendsList" + { + "ControlName" "ListPanel" + "fieldName" "FriendsList" + "xpos" "16" + "ypos" "219" + "wide" "430" + "tall" "282" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "RowHeight" "32" + style="ListPanel" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "16" + "ypos" "10" + "wide" "418" + "tall" "50" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SendGuestPass_SendInfo" + "textAlignment" "north-west" + "wrap" "1" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "16" + "ypos" "197" + "wide" "420" + "tall" "22" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SendGuestPass_SendDirectLabel" + "textAlignment" "north-west" + "wrap" "1" + } + "EmailRadio" + { + "ControlName" "RadioButton" + "fieldName" "EmailRadio" + "xpos" "16" + "ypos" "63" + "wide" "400" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_SendGuestPass_EmailRadio" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "1" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "16" + "ypos" "87" + "wide" "400" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SendGuestPass_EmailAddressLabel" + "textAlignment" "west" + "associate" "EmailAddressEntry" + "wrap" "0" + } + "SendDirectRadio" + { + "ControlName" "RadioButton" + "fieldName" "SendDirectRadio" + "xpos" "16" + "ypos" "169" + "wide" "400" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_SendGuestPass_SendDirectRadio" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "2" + } +} diff --git a/steam/cached/SendGuestPassResultSubPanel.res b/steam/cached/SendGuestPassResultSubPanel.res new file mode 100644 index 0000000..3aafd7b --- /dev/null +++ b/steam/cached/SendGuestPassResultSubPanel.res @@ -0,0 +1,58 @@ +"steam/cached/SendGuestPassResultSubPanel.res" +{ + "SendGuestPassResultSubPanel" + { + "ControlName" "CSendGuestPassResultSubPanel" + "fieldName" "SendGuestPassResultSubPanel" + "xpos" "10" + "ypos" "30" + "wide" "460" + "tall" "289" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "60" + "wide" "384" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SendGuestPass_InvitingFriend" + "textAlignment" "north-west" + "wrap" "1" + } + "HeadingLabel" + { + "ControlName" "Label" + "fieldName" "HeadingLabel" + "xpos" "24" + "ypos" "24" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "font" "uiHeadline" + "labelText" "#Steam_SendGuestPass_InvitingFriendHeadline" + "appearance" "LabelBright" + } + +} diff --git a/steam/cached/SendGuestPassResultSubPanel_failure.res b/steam/cached/SendGuestPassResultSubPanel_failure.res new file mode 100644 index 0000000..db1be72 --- /dev/null +++ b/steam/cached/SendGuestPassResultSubPanel_failure.res @@ -0,0 +1,57 @@ +"steam/cached/SendGuestPassResultSubPanel_failure.res" +{ + "SendGuestPassResultSubPanel" + { + "ControlName" "CSendGuestPassResultSubPanel" + "fieldName" "SendGuestPassResultSubPanel" + "xpos" "8" + "ypos" "48" + "wide" "464" + "tall" "264" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "60" + "wide" "384" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SendGuestPass_DefaultInviteError" + "textAlignment" "north-west" + "wrap" "1" + } + "HeadingLabel" + { + "ControlName" "Label" + "fieldName" "HeadingLabel" + "xpos" "24" + "ypos" "24" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "font" "uiHeadline" + "appearance" "LabelBright" + } +} diff --git a/steam/cached/SendGuestPassResultSubPanel_success.res b/steam/cached/SendGuestPassResultSubPanel_success.res new file mode 100644 index 0000000..195ec7c --- /dev/null +++ b/steam/cached/SendGuestPassResultSubPanel_success.res @@ -0,0 +1,59 @@ +"steam/cached/SendGuestPassResultSubPanel_success.res" +{ + "AddFriendResultSubPanel" + { + "ControlName" "CSendGuestPassResultSubPanel" + "fieldName" "SendGuestPassResultSubPanel" + "xpos" "8" + "ypos" "48" + "wide" "464" + "tall" "264" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "24" + "ypos" "60" + "wide" "384" + "tall" "90" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SendGuestPass_InvitationSent" + "textAlignment" "north-west" + "wrap" "1" + } + "HeadingLabel" + { + "ControlName" "Label" + "fieldName" "HeadingLabel" + "xpos" "24" + "ypos" "24" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SendGuestPass_InvitationSentHeadline" + "textAlignment" "west" + "wrap" "0" + "font" "uiHeadline" + "appearance" "LabelBright" + } + +} diff --git a/steam/cached/SettingsSubFriends.res b/steam/cached/SettingsSubFriends.res new file mode 100644 index 0000000..0f37e47 --- /dev/null +++ b/steam/cached/SettingsSubFriends.res @@ -0,0 +1,585 @@ +"steam/cached/SettingsSubFriends.res" +{ + + styles{ + + } + + layout{ + + region {name=hidden width=0 height=0} + + place { control="Label1" margin-top=20 margin-left=20 region=hidden} //avatar + place { control="Label2" x=70 y=15 width=304 height=24 region=hidden} //profile name + place { control="URLLabel2" region=hidden } //change (avatar) + + place { control="ImageAvatar" margin-top=20 margin-left=20 width=32 height=32 } + place { control="ImageAvatarOverlay" margin-top=16 margin-left=16 width=40 height=40 } + place { control="NameEntry" start=ImageAvatar dir=right y=4 x=15} + place { control="URLLabel1" start=NameEntry dir=right align=right margin-right=35 height=24 } //view my steam community profile + + place { control="Divider1" start=ImageAvatarOverlay dir=down margin-top=15 width=max margin-right=20 } + + place { control=AutoSignIntoFriendsCheck,ShowTimeInChatLogCheck,AlwaysNewChatCheck start=Divider1 dir=down margin-top=15} + place { control="Divider2" start=AlwaysNewChatCheck dir=down margin-top=15 width=max margin-right=20 } + + place { control="Label3" start=Divider2 dir=down margin-top=15 } //notifications and sounds + + place { control="Label4" start=Label3 dir=down margin-top=15 } //when any friend joins a game + place { control="JoinGameNotifyCheck,JoinGamePlaySoundCheck" start=Label4 dir=down margin-top=4} + + place { control="Label5" start=JoinGamePlaySoundCheck dir=down margin-top=15 } //when any friend comes online + place { control="FriendOnlineNotifyCheck,FriendOnlinePlaySoundCheck" start=Label5 dir=down margin-top=4} + + place { control="LabelGroupEvents" start=FriendOnlinePlaySoundCheck dir=down margin-top=15 } //for group events and announcements + place { control="EventsAndAnnouncementsNotifyCheck,EventsAndAnnouncementsPlaySoundCheck" start=LabelGroupEvents dir=down margin-top=4 } + + place { control="Label6" start=Label3 dir=down margin-top=15 x=275 } //when I recieve a message + place { control="ReceiveMessageNotifyCheck,ReceiveMessagePlaySoundCheck" start=Label6 dir=down margin-top=4} + + place { control="Label7" start=ReceiveMessagePlaySoundCheck dir=down margin-top=15 } //flash window when i receive a message + place { control="FlashModeAlways,FlashModeMinimized,FlashModeNever" start=Label7 dir=down margin-top=4 } + } + + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "23" + "ypos" "41" + "wide" "32" + "tall" "32" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "ImageAvatarOverlay" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatarOverlay" + "xpos" "19" + "ypos" "37" + "wide" "40" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "15" + "wide" "100" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_Avatar" + "textAlignment" "west" + "font" "UiBold" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "70" + "ypos" "15" + "wide" "304" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_Nickname" + "textAlignment" "west" + "associate" "NameEntry" + "font" "UiBold" + "wrap" "0" + } + "NameEntry" + { + "ControlName" "TextEntry" + "fieldName" "NameEntry" + "xpos" "70" + "ypos" "43" + "wide" "185" + "tall" "25" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "32" + "NumericInputOnly" "0" + "unicode" "1" + } + "Divider1" + { + "ControlName" "Divider" + "fieldName" "Divider1" + "xpos" "20" + "ypos" "109" + "wide" "440" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "AutoSignIntoFriendsCheck" + { + "ControlName" "CheckButton" + "fieldName" "AutoSignIntoFriendsCheck" + "xpos" "17" + "ypos" "117" + "wide" "424" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Friends_AutoSignIntoFriendsOnStartup" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "ShowTimeInChatLogCheck" + { + "ControlName" "CheckButton" + "fieldName" "ShowTimeInChatLogCheck" + "xpos" "17" + "ypos" "138" + "wide" "424" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_ShowTimeInChatLog" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "AutoTabbedChatCheck" + { + "ControlName" "CheckButton" + "fieldName" "AlwaysNewChatCheck" + "xpos" "17" + "ypos" "159" + "wide" "424" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_AlwaysNewChatCheck" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "Divider2" + { + "ControlName" "Divider" + "fieldName" "Divider2" + "xpos" "20" + "ypos" "191" + "wide" "440" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "20" + "ypos" "205" + "wide" "424" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_NotificationsAndSounds" + "textAlignment" "west" + "font" "UiBold" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "20" + "ypos" "237" + "wide" "215" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_WhenFriendJoinsGame" + "textAlignment" "west" + "wrap" "0" + } + "JoinGameNotifyCheck" + { + "ControlName" "CheckButton" + "fieldName" "JoinGameNotifyCheck" + "xpos" "25" + "ypos" "259" + "wide" "202" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Friends_DisplayNotification" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "JoinGamePlaySoundCheck" + { + "ControlName" "CheckButton" + "fieldName" "JoinGamePlaySoundCheck" + "xpos" "25" + "ypos" "282" + "wide" "202" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#Friends_PlayASound" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "20" + "ypos" "315" + "wide" "202" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_WhenFriendComesOnline" + "textAlignment" "west" + "wrap" "0" + } + "FriendOnlineNotifyCheck" + { + "ControlName" "CheckButton" + "fieldName" "FriendOnlineNotifyCheck" + "xpos" "25" + "ypos" "339" + "wide" "202" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#Friends_DisplayNotification" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "FriendOnlinePlaySoundCheck" + { + "ControlName" "CheckButton" + "fieldName" "FriendOnlinePlaySoundCheck" + "xpos" "25" + "ypos" "360" + "wide" "202" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "6" + "paintbackground" "1" + "labelText" "#Friends_PlayASound" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "LabelGroupEvents" + { + "ControlName" "Label" + "fieldName" "LabelGroupEvents" + "xpos" "20" + "ypos" "390" + "wide" "202" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_WhenGroupEventsOrAnnouncementsHappen" + "textAlignment" "west" + "wrap" "0" + } + "EventsAndAnnouncementsNotifyCheck" + { + "ControlName" "CheckButton" + "fieldName" "EventsAndAnnouncementsNotifyCheck" + "xpos" "25" + "ypos" "409" + "wide" "202" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#Friends_DisplayNotification" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "EventsAndAnnouncementsPlaySoundCheck" + { + "ControlName" "CheckButton" + "fieldName" "EventsAndAnnouncementsPlaySoundCheck" + "xpos" "25" + "ypos" "430" + "wide" "202" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "6" + "paintbackground" "1" + "labelText" "#Friends_PlayASound" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "282" + "ypos" "237" + "wide" "252" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_WhenReceiveMessage" + "textAlignment" "west" + "wrap" "0" + } + "ReceiveMessageNotifyCheck" + { + "ControlName" "CheckButton" + "fieldName" "ReceiveMessageNotifyCheck" + "xpos" "290" + "ypos" "259" + "wide" "230" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "7" + "paintbackground" "1" + "labelText" "#Friends_DisplayNotification" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "ReceiveMessagePlaySoundCheck" + { + "ControlName" "CheckButton" + "fieldName" "ReceiveMessagePlaySoundCheck" + "xpos" "290" + "ypos" "281" + "wide" "230" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "8" + "paintbackground" "1" + "labelText" "#Friends_PlayASound" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "70" + "ypos" "84" + "wide" "324" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_ViewSteamCommunityProfile" + "textAlignment" "west" + "wrap" "0" + "URLText" "steam://url/SteamIDMyProfile" + } + "URLLabel2" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel2" + "xpos" "20" + "ypos" "84" + "wide" "100" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_ChangeAvatar" + "textAlignment" "west" + "wrap" "0" + "URLText" "steam://url/SteamIDEditPage" + } + + "Label7" + { + "ControlName" "Label" + "fieldName" "Label7" + "xpos" "282" + "ypos" "315" + "wide" "252" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_FlashWindow" + "textAlignment" "west" + "wrap" "0" + } + "FlashModeAlways" + { + "ControlName" "RadioButton" + "fieldName" "FlashModeAlways" + "xpos" "290" + "ypos" "339" + "wide" "252" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_FlashWindowAlways" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "0" + } + "FlashModeMinimized" + { + "ControlName" "RadioButton" + "fieldName" "FlashModeMinimized" + "xpos" "290" + "ypos" "360" + "wide" "252" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_FlashWindowMinimized" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "0" + } + "FlashModeNever" + { + "ControlName" "RadioButton" + "fieldName" "FlashModeNever" + "xpos" "290" + "ypos" "381" + "wide" "252" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_FlashWindowNever" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "0" + } +} diff --git a/steam/cached/SettingsSubInterface.res b/steam/cached/SettingsSubInterface.res new file mode 100644 index 0000000..b3bdc90 --- /dev/null +++ b/steam/cached/SettingsSubInterface.res @@ -0,0 +1,407 @@ +"steam/cached/SettingsSubInterface.res" +{ + styles{ + + } + + layout{ + place { controls=Label4,LanguageCombo,TranslationLabel dir=down margin-top=20 margin-left=20 spacing=8} + place { controls=Divider1 start=TranslationLabel dir=down margin-top=15 width=max margin-right=20} + + place { controls=Label1 start=Divider1 dir=down margin-top=15 width=max margin-right=20} + place { controls=FavoriteWindowCombo start=Label1 dir=down margin-top=8 spacing=4} + + place { controls=Divider3 start=FavoriteWindowCombo dir=down margin-top=15 width=max margin-right=20} + place { controls=Label3,SkinCombo start=Divider3 dir=down margin-top=15 spacing=4} + + place { controls=DPIScalingCheck,AutoLaunchCheck,BigPictureModeCheck,UrlBarCheck,DWriteCheck,H264HWAccelCheck start=SkinCombo dir=down margin-top=8 spacing=0} + place [$WINDOWS] { controls=Divider2 start=H264HWAccelCheck dir=down margin-top=15 width=max margin-right=20} + place [!$WINDOWS] { controls=Divider2 start=UrlBarCheck dir=down margin-top=15 width=max margin-right=20} + + place { controls=NotifyAvailableGamesCheck start=Divider2 dir=down width=max margin-right=20 margin-top=15} + place { controls=SetJumpListOptionsButton start=NotifyAvailableGamesCheck dir=down margin-top=10} + } + + "LanguageCombo" + { + "ControlName" "ComboBox" + "fieldName" "LanguageCombo" + "xpos" "20" + "ypos" "43" + "wide" "235" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "TranslationLabel" + { + "ControlName" "URLLabel" + "fieldName" "TranslationLabel" + "xpos" "20" + "ypos" "70" + "wide" "436" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_HelpUsTranslate" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://translation.steampowered.com" + } + "Divider1" + { + "ControlName" "Divider" + "fieldName" "Divider1" + "xpos" "20" + "ypos" "101" + "wide" "440" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Label1" [$WINDOWS] + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "114" + "wide" "402" + "tall" "30" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#TrackerUI_FavoriteWindowLabel_Windows" + "textAlignment" "north-west" + "wrap" "1" + } + "Label1" [!$WINDOWS] + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "114" + "wide" "402" + "tall" "30" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#TrackerUI_FavoriteWindowLabel" + "textAlignment" "north-west" + "wrap" "1" + } + "FavoriteWindowCombo" + { + "ControlName" "ComboBox" + "fieldName" "FavoriteWindowCombo" + "xpos" "20" + "ypos" "145" + "wide" "235" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "Divider3" + { + "ControlName" "Divider" + "fieldName" "Divider3" + "xpos" "20" + "ypos" "180" + "wide" "440" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "20" + "ypos" "187" + "wide" "416" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_SelectSkinToUse" + "textAlignment" "west" + "associate" "SkinCombo" + "wrap" "0" + } + "SkinCombo" + { + "ControlName" "ComboBox" + "fieldName" "SkinCombo" + "xpos" "20" + "ypos" "209" + "wide" "235" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "DPIScalingCheck" [$WINDOWS] + { + "ControlName" "CheckButton" + "fieldName" "DPIScalingCheck" + "xpos" "17" + "ypos" "241" + "wide" "430" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#Steam_DPIScaling_Option_Windows" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "DPIScalingCheck" [$LINUX] + { + "ControlName" "CheckButton" + "fieldName" "DPIScalingCheck" + "xpos" "17" + "ypos" "241" + "wide" "430" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#Steam_DPIScaling_Option" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "AutoLaunchCheck" + { + "ControlName" "CheckButton" + "fieldName" "AutoLaunchCheck" + "xpos" "17" + "ypos" "265" + "wide" "430" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#Steam_LaunchSteamOnStartup_Option" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "BigPictureModeCheck" + { + "ControlName" "CheckButton" + "fieldName" "BigPictureModeCheck" + "xpos" "17" + "ypos" "289" + "wide" "430" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "6" + "paintbackground" "1" + "labelText" "#Steam_BPMOnStartup_Option" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "UrlBarCheck" + { + "ControlName" "CheckButton" + "fieldName" "UrlBarCheck" + "xpos" "17" + "ypos" "313" + "wide" "430" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "7" + "paintbackground" "1" + "labelText" "#Steam_ShowUrlBar_Option" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "DWriteCheck" [$WINDOWS] + { + "ControlName" "CheckButton" + "fieldName" "DWriteCheck" + "xpos" "17" + "ypos" "337" + "wide" "430" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "8" + "paintbackground" "1" + "labelText" "#Steam_UseDirectWrite_Option" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "H264HWAccelCheck" [$WINDOWS] + { + "ControlName" "CheckButton" + "fieldName" "H264HWAccelCheck" + "xpos" "17" + "ypos" "361" + "wide" "430" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "9" + "paintbackground" "1" + "labelText" "#Steam_UseH264HWAccel_Option" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "Divider2" + { + "ControlName" "Divider" + "fieldName" "Divider2" + "xpos" "20" + "ypos" "392" + "wide" "440" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "NotifyAvailableGamesCheck" + { + "ControlName" "CheckButton" + "fieldName" "NotifyAvailableGamesCheck" + "xpos" "17" + "ypos" "406" + "wide" "430" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "10" + "paintbackground" "1" + "labelText" "#Steam_Settings_NotifyMeWithSteamInstantMessages" + "textAlignment" "north-west" + "wrap" "1" + "Default" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "20" + "ypos" "15" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_LanguageSelect" + "textAlignment" "west" + "associate" "LanguageCombo" + "wrap" "0" + } + + "SetJumplistOptionsButton" + { + "ControlName" "Button" + "fieldName" "SetJumpListOptionsButton" + "xpos" "20" + "ypos" "454" + "wide" "235" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "11" + "paintbackground" "1" + "labelText" "#Steam_SetJumplistOptions" + "textAlignment" "west" + "wrap" "0" + "Command" "SetJumpListOptions" + "Default" "0" + "selected" "0" + } +} diff --git a/steam/cached/SettingsSubOverlay.res b/steam/cached/SettingsSubOverlay.res new file mode 100644 index 0000000..ac16475 --- /dev/null +++ b/steam/cached/SettingsSubOverlay.res @@ -0,0 +1,247 @@ +"steam/cached/SettingsSubOverlay.res" +{ //No longer used? + styles{ + + } + + "EnableOverlayCheck" + { + "ControlName" "CheckButton" + "fieldName" "EnableOverlayCheck" + "xpos" "17" + "ypos" "87" + "wide" "340" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Overlay_SettingsEnable" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "HotKeySelector" + { + "ControlName" "HotKeyEntry" + "fieldName" "HotKeySelector" + "xpos" "20" + "ypos" "143" + "wide" "156" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "TextEntry" + } + "ScreenshotHotKeySelector" + { + "ControlName" "HotKeyEntry" + "fieldName" "ScreenshotHotKeySelector" + "xpos" "20" + "ypos" "195" + "wide" "156" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "TextEntry" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "20" + "ypos" "20" + "wide" "400" + "tall" "54" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Overlay_SettingsDescription" + "textAlignment" "north-west" + "wrap" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "118" + "wide" "380" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_SettingsHotKeyLabel" + "textAlignment" "west" + "wrap" "0" + } + "ScreenshotLabel" + { + "ControlName" "Label" + "fieldName" "ScreenshotLabel" + "xpos" "20" + "ypos" "171" + "wide" "380" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_SettingsScreenshotHotKeyLabel" + "textAlignment" "west" + "wrap" "0" + } + "ScreenshotActionLabel" + { + "ControlName" "Label" + "fieldName" "ScreenshotActionLabel" + "xpos" "20" + "ypos" "223" + "wide" "215" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_SettingsScreenshotActionLabel" + "textAlignment" "west" + "wrap" "0" + } + "ScreenshotNotifyCheck" + { + "ControlName" "CheckButton" + "fieldName" "ScreenshotNotifyCheck" + "xpos" "40" + "ypos" "248" + "wide" "202" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Friends_DisplayNotification" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "ScreenshotPlaySoundCheck" + { + "ControlName" "CheckButton" + "fieldName" "ScreenshotPlaySoundCheck" + "xpos" "40" + "ypos" "269" + "wide" "202" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#Friends_PlayASound" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "ScreenshotSaveUncompressedCheck" + { + "ControlName" "CheckButton" + "fieldName" "ScreenshotSaveUncompressedCheck" + "xpos" "40" + "ypos" "290" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#Overlay_SaveUncompressed" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + + "SetScreenshotFolderButton" + { + "ControlName" "Button" + "fieldName" "SetScreenshotFolderButton" + "labelText" "#Overlay_SetScreenshotFolder" + "xpos" "42" + "ypos" "313" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "6" + "paintbackground" "1" + "wrap" "0" + "Default" "0" + "command" "SetScreenshotFolder" + } + + + "OverlayHomePageLabel" + { + "ControlName" "Label" + "fieldName" "OverlayHomePageLabel" + "xpos" "20" + "ypos" "341" + "wide" "215" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_SettingsHomepageLabel" + "textAlignment" "west" + "wrap" "0" + } + "OverlayHomePage" + { + "ControlName" "TextEntry" + "fieldName" "OverlayHomePage" + "xpos" "20" + "ypos" "371" + "wide" "202" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "unicode" "1" + "Default" "0" + } +} diff --git a/steam/cached/SettingsSubVoice.res b/steam/cached/SettingsSubVoice.res new file mode 100644 index 0000000..e86a804 --- /dev/null +++ b/steam/cached/SettingsSubVoice.res @@ -0,0 +1,391 @@ +"steam/cached/SettingsSubVoice.res" +{ + styles{ + + } + + layout{ + place { control=Label1 dir=down margin-top=20 margin-left=20} + place { control=DeviceName start=Label1 dir=down margin-top=8 width=max margin-right=20 end-right=ChangeDeviceButton} + place { control=ChangeDeviceButton start=DeviceName dir=right align=right margin-right=20 } + place { control=ReinitAudio start=DeviceName dir=down margin-top=15 width=235} + place { control=RepairAudio start=ReinitAudio dir=right width=max margin-left=20} + + place { control=Divider1 start=ReinitAudio dir=down margin-top=40 width=max margin-right=20} + + place { control=MicrophoneLabel,MicrophoneVolume start=Divider1 dir=down margin-top=15 spacing=4 width=235} + place { control=SpeakerLabel,SpeakerVolume start=MicrophoneVolume dir=down margin-top=15 spacing=4 width=235} + + place { control=TestMicrophone start=Divider1 dir=down margin-top=25 width=235 align=right margin-right=20} + place { control=MicMeter,MicBoost start=TestMicrophone dir=down margin-top=15 spacing=0} + place { control=MicMeter2 start=TestMicrophone dir=down margin-top=15 } //Actual volume meter + + place { control=Divider2 start=SpeakerVolume dir=down margin-top=15 width=max margin-right=20} + + place { control=WhenActiveLabel start=Divider2 dir=down margin-top=15} + place { control=TransmitMethodRadioButton1,TransmitMethodRadioButton2 start=WhenActiveLabel dir=down margin-top=4 spacing=5 height=24} + place { control=PushToTalkKeyEntry start=TransmitMethodRadioButton2 dir=down margin-top=4 x=28} + } + + "SettingsSubVoice" + { + "ControlName" "CSettingsSubVoice" + "fieldName" "SettingsSubVoice" + "xpos" "0" + "ypos" "8" + "wide" "504" + "tall" "460" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "MicMeter" + { + "ControlName" "ImagePanel" + "fieldName" "MicMeter" + "xpos" "283" + "ypos" "218" + "wide" "160" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "resource/mic_meter_dead" + "gradientVertical" "0" + "scaleImage" "0" + } + "MicMeter2" + { + "ControlName" "ImagePanel" + "fieldName" "MicMeter2" + "xpos" "283" + "ypos" "218" + "wide" "160" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "resource/mic_meter_live" + "gradientVertical" "0" + "scaling" "none" + "horizontal-align" "left" + } + "SpeakerLabel" + { + "ControlName" "Label" + "fieldName" "SpeakerLabel" + "xpos" "20" + "ypos" "222" + "wide" "156" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_VoiceReceiveVolume" + "textAlignment" "west" + "wrap" "0" + } + "SpeakerVolume" + { + "ControlName" "Slider" + "fieldName" "SpeakerVolume" + "xpos" "20" + "ypos" "246" + "wide" "164" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + } + "MicrophoneLabel" + { + "ControlName" "Label" + "fieldName" "MicrophoneLabel" + "xpos" "20" + "ypos" "162" + "wide" "156" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_VoiceMicVolume" + "textAlignment" "west" + "wrap" "0" + } + "MicrophoneVolume" + { + "ControlName" "Slider" + "fieldName" "MicrophoneVolume" + "xpos" "20" + "ypos" "186" + "wide" "164" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "MicBoost" + { + "ControlName" "CheckButton" + "fieldName" "MicBoost" + "xpos" "280" + "ypos" "246" + "wide" "200" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "visible" "0" [$OSX] + "enabled" "0" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#Steam_VoiceMicGain" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "TestMicrophone" + { + "ControlName" "Button" + "fieldName" "TestMicrophone" + "xpos" "283" + "ypos" "184" + "wide" "235" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Steam_TestMicButton" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "ReinitAudio" + { + "ControlName" "Button" + "fieldName" "ReinitAudio" + "xpos" "20" + "ypos" "98" + "wide" "156" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "visible" "0" [$OSX] + "enabled" "1" + "tabPosition" "8" + "paintbackground" "1" + "labelText" "#Steam_RepairAudioButton" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "ChangeDeviceButton" + { + "ControlName" "Button" + "fieldName" "ChangeDeviceButton" + "xpos" "283" + "ypos" "43" + "wide" "235" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "7" + "paintbackground" "1" + "labelText" "#Friends_Voice_ChangeDevice" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "PushToTalkKeyEntry" + { + "ControlName" "HotKeyEntry" + "fieldName" "PushToTalkKeyEntry" + "xpos" "48" + "ypos" "387" + "wide" "207" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "6" + "paintbackground" "1" + "appearance" "TextEntry" + "group" "pushtotalk" + } + "TransmitMethodRadioButton1" + { + "ControlName" "RadioButton" + "fieldName" "TransmitMethodRadioButton1" + "xpos" "20" + "ypos" "338" + "wide" "380" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#Friends_Voice_AutoTransmit" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "1" + "group" "pushtotalk" + } + "TransmitMethodRadioButton2" + { + "ControlName" "RadioButton" + "fieldName" "TransmitMethodRadioButton2" + "xpos" "20" + "ypos" "361" + "wide" "380" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#Friends_Voice_PushToTalk" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "2" + "group" "pushtotalk" + } + "DeviceName" + { + "ControlName" "TextEntry" + "fieldName" "DeviceName" + "xpos" "20" + "ypos" "43" + "wide" "235" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "Divider2" + { + "ControlName" "Divider" + "fieldName" "Divider2" + "xpos" "20" + "ypos" "302" + "wide" "440" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "RepairAudio" [$WIN32] + { + "ControlName" "Label" + "fieldName" "RepairAudio" + "xpos" "189" + "ypos" "97" + "wide" "296" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RepairAudioDescription" + "textAlignment" "north-west" + "wrap" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "15" + "wide" "328" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_Voice_MicrophoneDeviceLabel" + "textAlignment" "west" + "wrap" "0" + } + + "Divider1" + { + "ControlName" "Divider" + "fieldName" "Divider1" + "xpos" "20" + "ypos" "148" + "wide" "440" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "WhenActiveLabel" + { + "ControlName" "Label" + "fieldName" "WhenActiveLabel" + "xpos" "20" + "ypos" "315" + "wide" "400" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Friends_Voice_WhenActive" + "textAlignment" "west" + "wrap" "0" + "group" "pushtotalk" + } +} diff --git a/steam/cached/SpecialOffersDialog.res b/steam/cached/SpecialOffersDialog.res new file mode 100644 index 0000000..29efec6 --- /dev/null +++ b/steam/cached/SpecialOffersDialog.res @@ -0,0 +1,96 @@ +"Steam/SpecialOffersDialog.res" +{ + "SpecialOffersDialog" + { + "ControlName" "CSpecialOffersDialog" + "fieldName" "SpecialOffersDialog" + "xpos" "465" + "ypos" "335" + "wide" "544" + "tall" "424" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + } + "HackImage" + { + "ControlName" "ImagePanel" + "fieldName" "HackImage" + "xpos" "272" + "ypos" "296" + "wide" "256" + "tall" "80" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "image" "steam/steam_specialoffers_hack_4" + } + "HackImage1" + { + "ControlName" "ImagePanel" + "fieldName" "HackImage1" + "xpos" "16" + "ypos" "40" + "wide" "256" + "tall" "256" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "image" "steam/steam_specialoffers_hack_1" + } + "HackImage2" + { + "ControlName" "ImagePanel" + "fieldName" "HackImage2" + "xpos" "272" + "ypos" "40" + "wide" "256" + "tall" "256" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "image" "steam/steam_specialoffers_hack_2" + } + "HackImage3" + { + "ControlName" "ImagePanel" + "fieldName" "HackImage3" + "xpos" "16" + "ypos" "296" + "wide" "256" + "tall" "80" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "image" "steam/steam_specialoffers_hack_3" + } + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "458" + "ypos" "380" + "wide" "64" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_SpecialOffersDialog_Close" + "textAlignment" "west" + "dulltext" "0" + "command" "Close" + "default" "0" + } +} diff --git a/steam/cached/SteamGuardNotifyNewMachinesCompromised.layout b/steam/cached/SteamGuardNotifyNewMachinesCompromised.layout new file mode 100644 index 0000000..72b8d05 --- /dev/null +++ b/steam/cached/SteamGuardNotifyNewMachinesCompromised.layout @@ -0,0 +1,59 @@ +"steam/cached/SteamGuardNotifyNewMachinesCompromised.layout" +{ + controls + { + SteamGuardNotifyNewMachinesCompromisedDialog + { + title "#SteamUI_SteamGuardCompromised_Title" + wide "500" + tall "360" + } + + PanicButton + { + ControlName "Button" + labelText "#SteamUI_SteamGuardCompromised_ChangePasswordButton" + Command "ChangePasswordNow" + } + + Explain + { + ControlName "Label" + labelText "#SteamUI_SteamGuardCompromised_Explain" + wrap "1" + } + + ExplainActions + { + ControlName "Label" + labelText "#SteamUI_SteamGuardCompromised_ExplainActions" + wrap "1" + } + + ExplainPasswords + { + ControlName "Label" + labelText "#SteamUI_SteamGuardCompromised_ExplainPasswords" + wrap "1" + } + + } + + styles + { + Button + { + minimum-width=80 + } + } + + layout + { + region { name="bottomrow" align=bottom height=36 } + place { control="PanicButton" region=bottomrow align=right spacing=8 margin-right=30 } + place { control=Explain x=20 y=44 width=460 margin-right=20 height=80 } + place { control=ExplainActions x=20 y=120 width=380 margin-left=20 height=120 } + place { control=ExplainPasswords region=bottomrow width=280 align=left margin-left=20 height=34 } + } +} + diff --git a/steam/cached/SteamGuardNotifyNewMachinesDialog.layout b/steam/cached/SteamGuardNotifyNewMachinesDialog.layout new file mode 100644 index 0000000..07244e6 --- /dev/null +++ b/steam/cached/SteamGuardNotifyNewMachinesDialog.layout @@ -0,0 +1,76 @@ +"steam/cached/SteamGuardNotifyNewMachinesDialog.layout" +{ + controls + { + SteamGuardNotifyNewMachinesDialog + { + title "#SteamUI_SteamGuardNotifyNewMachinesTitle" + wide "500" + tall "360" + } + + CloseButton + { + ControlName "Button" + labelText "#SteamUI_SteamGuardNotifyNewMachines_CloseButton" + Command "Close" + } + + PanicButton + { + ControlName "Button" + labelText "#SteamUI_SteamGuardNotifyNewMachines_PanicButton" + Command "Panic" + } + + Explain + { + ControlName "Label" + labelText "#SteamUI_SteamGuardNotifyNewMachinesDetails" + wrap "1" + } + + Details + { + ControlName "RichText" + labelText "" + wrap "1" + } + + ExplainButtons + { + ControlName "Label" + labelText "#SteamUI_SteamGuardNotifyNewMachinesExplainButtons" + wrap "1" + } + + support_infolink + { + ControlName "URLLabel" + labelText "#SteamUI_SteamGuardNotifyNewMachines_info_link" + "urltext" "#SteamUI_SteamGuardNotifyNewMachines_info_url" + style=soft + } + + } + + styles + { + Button + { + minimum-width=80 + } + } + + layout + { + place { control=support_infolink region=bottomrow align=left spacing=8 margin-left=24 } + region { name="bottomrow" align=bottom height=36 } + place { control="PanicButton" region=bottomrow align=right spacing=8 margin-right=150 } + place { control="CloseButton" region=bottomrow align=right spacing=8 margin-right=24 } + place { control=Explain x=20 y=34 width=460 margin-right=20 height=60 } + place { control=Details x=20 y=100 width=460 margin-right=20 height=120 } + place { control=ExplainButtons x=20 y=240 width=460 margin-right=20 height=60 } + } +} + diff --git a/steam/cached/SteamIDProfilePage.res b/steam/cached/SteamIDProfilePage.res new file mode 100644 index 0000000..6a8898e --- /dev/null +++ b/steam/cached/SteamIDProfilePage.res @@ -0,0 +1,257 @@ +"steam/cached/SteamIDProfilePage.res" +{ + "SteamIDProfilePage" + { + "ControlName" "CSteamIDProfilePage" + "fieldName" "SteamIDProfilePage" + "xpos" "0" + "ypos" "28" + "wide" "897" + "tall" "815" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "HTML" + { + "ControlName" "HTML" + "fieldName" "HTML" + "xpos" "0" + "ypos" "43" + "wide" "895" + "tall" "772" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "PageLoadThrobber" + { + "ControlName" "ImagePanel" + "fieldName" "PageLoadThrobber" + "xpos" "864" + "ypos" "10" + "wide" "20" + "tall" "20" + "AutoResize" "0" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/rampDown_4" + "gradientVertical" "0" + "scaleImage" "0" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "12" + "ypos" "771" + "wide" "512" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RegisterProductCode" + "textAlignment" "west" + "wrap" "0" + "URLText" "steam://open/registerproduct/" + } + "Back" + { + "ControlName" "Button" + "fieldName" "Back" + "xpos" "12" + "ypos" "14" + "wide" "16" + "tall" "16" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "borderset" "icon_button_back" + "textAlignment" "west" + "wrap" "0" + "Command" "StoreBack" + "Default" "0" + "selected" "0" + } + "Forward" + { + "ControlName" "Button" + "fieldName" "Forward" + "xpos" "42" + "ypos" "14" + "wide" "16" + "tall" "16" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "borderset" "icon_button_forward" + "textAlignment" "west" + "wrap" "0" + "Command" "StoreForward" + "Default" "0" + "selected" "0" + } + "Home" + { + "ControlName" "Button" + "fieldName" "Home" + "xpos" "132" + "ypos" "14" + "wide" "16" + "tall" "16" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "borderset" "icon_button_home" + "textAlignment" "north-west" + "wrap" "0" + "Command" "StoreHome" + "Default" "0" + "selected" "0" + } + "Reload" + { + "ControlName" "Button" + "fieldName" "Reload" + "xpos" "72" + "ypos" "14" + "wide" "16" + "tall" "16" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "borderset" "icon_button_reload" + "textAlignment" "north-west" + "wrap" "0" + "Command" "Refresh" + "Default" "0" + "selected" "0" + } + "Stop" + { + "ControlName" "Button" + "fieldName" "Stop" + "xpos" "102" + "ypos" "14" + "wide" "16" + "tall" "16" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "borderset" "icon_button_stop" + "textAlignment" "west" + "wrap" "0" + "Command" "HTMLStop" + "Default" "0" + "selected" "0" + } + "textSize" + { + "ControlName" "ComboBox" + "fieldName" "textSize" + "xpos" "720" + "ypos" "10" + "wide" "88" + "tall" "24" + "AutoResize" "0" + "PinCorner" "1" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + "labelText" "Text size: Normal" + "textAlignment" "north-west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "textSizeLabel" + { + "ControlName" "Label" + "fieldName" "textSizeLabel" + "xpos" "668" + "ypos" "10" + "wide" "88" + "tall" "24" + "AutoResize" "0" + "PinCorner" "1" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_WebBrowser_TextSize" + "textAlignment" "west" + "wrap" "0" + } + "Loading" + { + "ControlName" "Label" + "fieldName" "Loading" + "xpos" "341" + "ypos" "221" + "zpos" "-1" + "wide" "210" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_WebBrowser_Loading" + "textAlignment" "west" + "wrap" "0" + } + "URLBar" + { + "ControlName" "TextEntry" + "fieldName" "URLBar" + "xpos" "162" + "ypos" "10" + "wide" "630" + "tall" "24" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } +} diff --git a/steam/cached/StorefrontDialog.res b/steam/cached/StorefrontDialog.res new file mode 100644 index 0000000..daf294c Binary files /dev/null and b/steam/cached/StorefrontDialog.res differ diff --git a/steam/cached/SubChangeContactEmailComplete.res b/steam/cached/SubChangeContactEmailComplete.res new file mode 100644 index 0000000..7c77a8f --- /dev/null +++ b/steam/cached/SubChangeContactEmailComplete.res @@ -0,0 +1,41 @@ +"steam/cached/SubChangeEmailComplete.res" +{ + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "32" + "ypos" "28" + "wide" "290" + "tall" "200" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ChangeContactEmailWizard_Changed" + "textAlignment" "center" + "wrap" "1" + "dulltext" "0" + "brighttext" "0" + } + "InfoLabel2" + { + "ControlName" "Label" + "fieldName" "InfoLabel2" + "xpos" "32" + "ypos" "80" + "wide" "290" + "tall" "200" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ChangeContactEmailWizard_Contact" + "textAlignment" "center" + "wrap" "1" + "dulltext" "0" + "brighttext" "0" + } +} diff --git a/steam/cached/SubChangeContactEmailIntro.res b/steam/cached/SubChangeContactEmailIntro.res new file mode 100644 index 0000000..0e28b8e --- /dev/null +++ b/steam/cached/SubChangeContactEmailIntro.res @@ -0,0 +1,155 @@ +"steam/cached/SubChangeContactEmailIntro.res" +{ + "SubChangeContactEmailIntro" + { + "ControlName" "CSubChangeContactEmailIntro" + "fieldName" "SubChangeContactEmailIntro" + "xpos" "5" + "ypos" "29" + "wide" "370" + "tall" "303" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "OldEntry" + { + "ControlName" "TextEntry" + "fieldName" "OldEntry" + "xpos" "24" + "ypos" "100" + "wide" "256" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "1" + "editable" "1" + "maxchars" "32" + "NumericInputOnly" "0" + "unicode" "0" + } + "EmailAddressEntry" + { + "ControlName" "TextEntry" + "fieldName" "EmailAddressEntry" + "xpos" "24" + "ypos" "162" + "wide" "256" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "OldEntryLabel" + { + "ControlName" "Label" + "fieldName" "OldEntryLabel" + "xpos" "24" + "ypos" "76" + "wide" "330" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ChangeSecretQuestionPassword" + "textAlignment" "west" + "associate" "OldEntry" + "wrap" "0" + } + "EmailAddressEntryLabel" + { + "ControlName" "Label" + "fieldName" "EmailAddressEntryLabel" + "xpos" "24" + "ypos" "138" + "wide" "330" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ChangeContactEmailWizardAddressEntry" + "textAlignment" "west" + "associate" "EmailAddressEntry" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "ChangeContactEmailLabel" + { + "ControlName" "Label" + "fieldName" "ChangeContactEmailLabel" + "xpos" "24" + "ypos" "28" + "wide" "320" + "tall" "50" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ChangeContactEmailWizardAbout" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "SMSInfoLabel" + { + "ControlName" "Label" + "fieldName" "SMSInfoLabel" + "xpos" "24" + "ypos" "208" + "wide" "326" + "tall" "36" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_WeMaySMSYou" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + + "HelpChangeEmailURL" + { + "ControlName" "URLLabel" + "fieldName" "HelpChangeEmailURL" + "labelText" "#Steam_ChangeCred_ForgotPassword" + "URLText" "Steam://url/HelpChangeEmailForgotPassword/" + "xpos" "24" + "ypos" "260" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "north-west" + "wrap" "0" + } +} + \ No newline at end of file diff --git a/steam/cached/SubChangeContactEmailValidated.res b/steam/cached/SubChangeContactEmailValidated.res new file mode 100644 index 0000000..6f0013f --- /dev/null +++ b/steam/cached/SubChangeContactEmailValidated.res @@ -0,0 +1,159 @@ +"steam/cached/SubChangeContactEmailValidated.res" +{ + "CodeEntry" + { + "ControlName" "TextEntry" + "fieldName" "CodeEntry" + "xpos" "24" + "ypos" "96" + "wide" "247" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "32" + "NumericInputOnly" "0" + "unicode" "0" + } + "CodeEntryLabel" + { + "ControlName" "Label" + "fieldName" "CodeEntryLabel" + "xpos" "28" + "ypos" "28" + "wide" "300" + "tall" "96" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "labelText" "#Steam_ChangeContactEmailWizard_NotChangedYet" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + + "TwoFactorCodeEntry" + { + "ControlName" "TextEntry" + "fieldName" "TwoFactorCodeEntry" + "xpos" "24" + "ypos" "208" + "wide" "247" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "2" + "textHidden" "0" + "editable" "1" + "maxchars" "32" + "NumericInputOnly" "0" + "unicode" "0" + } + "TwoFactorCodeEntryLabel" + { + "ControlName" "Label" + "fieldName" "TwoFactorCodeEntryLabel" + "xpos" "28" + "ypos" "168" + "wide" "300" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "4" + "labelText" "#Steam_ChangeCred_EnterTwoFactorCode" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + + "TwoFactorCodeHelpUrl" + { + "ControlName" "URLLabel" + "fieldName" "TwoFactorCodeHelpUrl" + "labelText" "#Steam_ChangeCred_LostTwoFactor" + "URLText" "Steam://url/HelpChangeEmailLostTwoFactor/" + "xpos" "24" + "ypos" "260" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "north-west" + "wrap" "0" + } + + "SMSCodeEntry" + { + "ControlName" "TextEntry" + "fieldName" "SMSCodeEntry" + "xpos" "24" + "ypos" "208" + "wide" "247" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "2" + "textHidden" "0" + "editable" "1" + "maxchars" "32" + "NumericInputOnly" "0" + "unicode" "0" + } + "SMSCodeEntryLabel" + { + "ControlName" "Label" + "fieldName" "SMSCodeEntryLabel" + "xpos" "28" + "ypos" "168" + "wide" "320" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "4" + "labelText" "#Steam_ChangeEmail_EnterSMSCode" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + + "SMSCodeHelpUrl" + { + "ControlName" "URLLabel" + "fieldName" "SMSCodeHelpUrl" + "labelText" "#Steam_ChangeCred_LostPhone" + "URLText" "Steam://url/HelpChangeEmailLostPhone/" + "xpos" "24" + "ypos" "260" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "north-west" + "wrap" "0" + } +} diff --git a/steam/cached/SubChangePasswordChangePassword.res b/steam/cached/SubChangePasswordChangePassword.res new file mode 100644 index 0000000..0da4832 --- /dev/null +++ b/steam/cached/SubChangePasswordChangePassword.res @@ -0,0 +1,192 @@ +"steam/cached/SubChangePasswordChangePassword.res" +{ + "SubChangePasswordChangePassword" + { + "ControlName" "CSubChangePasswordChangePassword" + "fieldName" "SubChangePasswordChangePassword" + "xpos" "5" + "ypos" "29" + "wide" "370" + "tall" "251" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "OldEntry" + { + "ControlName" "TextEntry" + "fieldName" "OldEntry" + "xpos" "24" + "ypos" "52" + "wide" "247" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "1" + "editable" "1" + "maxchars" "32" + "NumericInputOnly" "0" + "unicode" "0" + } + "NewPasswordEntry" + { + "ControlName" "TextEntry" + "fieldName" "NewPasswordEntry" + "xpos" "24" + "ypos" "114" + "wide" "247" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "textHidden" "1" + "editable" "1" + "maxchars" "32" + "NumericInputOnly" "0" + "unicode" "0" + } + "NewPasswordEntry2" + { + "ControlName" "TextEntry" + "fieldName" "NewPasswordEntry2" + "xpos" "24" + "ypos" "176" + "wide" "247" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "textHidden" "1" + "editable" "1" + "maxchars" "32" + "NumericInputOnly" "0" + "unicode" "0" + } + "OldEntryLabel" + { + "ControlName" "Label" + "fieldName" "OldEntryLabel" + "xpos" "24" + "ypos" "28" + "wide" "340" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ChangePasswordOldPassword" + "textAlignment" "west" + "associate" "PasswordEntry" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "24" + "ypos" "90" + "wide" "240" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ChangePasswordNewPassword" + "textAlignment" "west" + "associate" "NewPasswordEntry" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "24" + "ypos" "152" + "wide" "252" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ChangePasswordConfirmNewPassword" + "textAlignment" "west" + "associate" "NewPasswordEntry2" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "StrengthMeterLabel" + { + "ControlName" "Label" + "fieldName" "StrengthMeterLabel" + "xpos" "24" + "ypos" "210" + "wide" "252" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_PasswordStrength" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + "StrengthMeter" + { + "ControlName" "ProgressBar" + "fieldName" "StrengthMeter" + "xpos" "24" + "ypos" "234" + "wide" "247" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "Progress" "0.000000" + } + + "LostTwoFactorURL" + { + "ControlName" "URLLabel" + "fieldName" "LostTwoFactorURL" + "labelText" "#Steam_ChangeCred_LostTwoFactor" + "URLText" "Steam://url/HelpChangePasswordLostTwoFactor" + "xpos" "24" + "ypos" "272" + "wide" "370" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "east" + "wrap" "1" + } +} + \ No newline at end of file diff --git a/steam/cached/SubChangePasswordComplete.res b/steam/cached/SubChangePasswordComplete.res new file mode 100644 index 0000000..7b31c90 --- /dev/null +++ b/steam/cached/SubChangePasswordComplete.res @@ -0,0 +1,22 @@ +"steam/cached/SubChangePasswordComplete.res" +{ + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "32" + "ypos" "28" + "wide" "290" + "tall" "200" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ChangePasswordSuccessful" + "textAlignment" "center" + "wrap" "1" + "dulltext" "0" + "brighttext" "0" + } +} diff --git a/steam/cached/SubPanelConvertCDKeyFinished.res b/steam/cached/SubPanelConvertCDKeyFinished.res new file mode 100644 index 0000000..6155d5c --- /dev/null +++ b/steam/cached/SubPanelConvertCDKeyFinished.res @@ -0,0 +1,21 @@ +"Steam/SubPanelConvertCDKeyFinished.res" +{ + "Unnamed dialog1" + { + "ControlName" "Label" + "fieldName" "Unnamed dialog1" + "xpos" "30" + "ypos" "30" + "wide" "440" + "tall" "96" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_AccessToAllValvesContent" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + } +} diff --git a/steam/cached/SubPanelConvertCDKeyIntro.res b/steam/cached/SubPanelConvertCDKeyIntro.res new file mode 100644 index 0000000..a7bafe9 --- /dev/null +++ b/steam/cached/SubPanelConvertCDKeyIntro.res @@ -0,0 +1,21 @@ +"Steam/SubPanelConvertCDKeyIntro.res" +{ + "Unnamed dialog1" + { + "ControlName" "Label" + "fieldName" "Unnamed dialog1" + "xpos" "30" + "ypos" "30" + "wide" "440" + "tall" "62" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "This wizard will one day convert your HL CD Key into a steam subscription.\nPress Next to continue." + "textAlignment" "west" + "dulltext" "1" + "brighttext" "0" + } +} diff --git a/steam/cached/SystemInfoPage.res b/steam/cached/SystemInfoPage.res new file mode 100644 index 0000000..b45ff37 --- /dev/null +++ b/steam/cached/SystemInfoPage.res @@ -0,0 +1,110 @@ +"Steam/Cached/SystemInfoPage.res" +{ + "ValveSurveySummarizeData" + { + "ControlName" "WizardSubPanel" + "fieldName" "ValveSurveySummarizeData" + "xpos" "8" + "ypos" "48" + "wide" "424" + "tall" "359" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "ValveSurveySummaryText" + { + "ControlName" "RichText" + "fieldName" "ValveSurveySummaryText" + "xpos" "10" + "ypos" "48" + "wide" "404" + "tall" "240" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "maxchars" "-1" + "ScrollBar" "1" + } + "ValveSurveyProgressBar" + { + "ControlName" "ProgressBar" + "fieldName" "ValveSurveyProgressBar" + "xpos" "142" + "ypos" "289" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "progress" "0.000000" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "321" + "ypos" "324" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "11" + "ypos" "6" + "wide" "396" + "tall" "40" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#steam_systeminfo_info" + "textAlignment" "west" + "wrap" "1" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "11" + "ypos" "290" + "wide" "396" + "tall" "24" + "AutoResize" "1" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#steam_systeminfo_surveylink" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://www.steampowered.com/status/survey.html" + } +} diff --git a/steam/cached/SystemRequirementsDialog.res b/steam/cached/SystemRequirementsDialog.res new file mode 100644 index 0000000..177d06d --- /dev/null +++ b/steam/cached/SystemRequirementsDialog.res @@ -0,0 +1,437 @@ +"steam/cached/SystemRequirementsDialog.res" +{ + "SystemRequirementsDialog" + { + "ControlName" "CSystemRequirementsDialog" + "fieldName" "SystemRequirementsDialog" + "xpos" "674" + "ypos" "347" + "wide" "572" + "tall" "476" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#SteamUI_PerfWarningTitle" + } + "CPULabel" + { + "ControlName" "Label" + "fieldName" "CPULabel" + "xpos" "312" + "ypos" "208" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "3.2 Ghz" + "textAlignment" "west" + "font" "DefaultSmallBold" + "wrap" "0" + } + "RAMLabel" + { + "ControlName" "Label" + "fieldName" "RAMLabel" + "xpos" "312" + "ypos" "226" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "2.0 GB" + "textAlignment" "west" + "font" "DefaultSmallBold" + "wrap" "0" + } + "VideoCardLabel" + { + "ControlName" "Label" + "fieldName" "VideoCardLabel" + "xpos" "312" + "ypos" "244" + "wide" "164" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "NVIDIA GeForce 6800 GT" + "textAlignment" "west" + "font" "DefaultSmallBold" + "wrap" "0" + } + "LaunchButton" + { + "ControlName" "Button" + "fieldName" "LaunchButton" + "xpos" "112" + "ypos" "384" + "wide" "256" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_RunGameAnyway" + "textAlignment" "west" + "wrap" "0" + "Command" "LaunchGame" + "Default" "1" + "selected" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "116" + "ypos" "58" + "wide" "440" + "tall" "55" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#SteamUI_PerfWarning" + "textAlignment" "north-west" + "font" "UiHeadline" + "wrap" "1" + } + "ExtraInfo" + { + "ControlName" "Label" + "fieldName" "ExtraInfo" + "xpos" "116" + "ypos" "114" + "wide" "432" + "tall" "70" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "" + "textAlignment" "north-west" + "wrap" "1" + } + "ImagePanel2" + { + "ControlName" "ImagePanel" + "fieldName" "ImagePanel2" + "xpos" "21" + "ypos" "184" + "zpos" "-1" + "wide" "530" + "tall" "91" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "ButtonBorder" + "fillcolor" "DarkClayBG" + "gradientVertical" "0" + "scaleImage" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "116" + "ypos" "189" + "wide" "172" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#SteamUI_PerfWarningRecommended" + "textAlignment" "west" + "font" "DefaultSmallBold" + "wrap" "0" + } + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "312" + "ypos" "189" + "wide" "172" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "#SteamUI_PerfWarningYourSystem" + "textAlignment" "west" + "font" "DefaultSmallBold" + "wrap" "0" + } + "Label5" + { + "ControlName" "Label" + "fieldName" "Label5" + "xpos" "24" + "ypos" "208" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "CPU" + "textAlignment" "east" + "font" "DefaultSmallBold" + "wrap" "0" + } + "Label6" + { + "ControlName" "Label" + "fieldName" "Label6" + "xpos" "24" + "ypos" "226" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "RAM" + "textAlignment" "east" + "font" "DefaultSmallBold" + "wrap" "0" + } + "Label7" + { + "ControlName" "Label" + "fieldName" "Label7" + "xpos" "24" + "ypos" "244" + "wide" "80" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "Video Card" + "textAlignment" "east" + "font" "DefaultSmallBold" + "wrap" "0" + } + "Label8" + { + "ControlName" "Label" + "fieldName" "Label8" + "xpos" "116" + "ypos" "284" + "wide" "432" + "tall" "53" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_PerfWarningBuyStuff" + "textAlignment" "north-west" + "wrap" "1" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "116" + "ypos" "340" + "wide" "433" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#SteamUI_PerfWarningLink" + "textAlignment" "north-west" + "font" "DefaultUnderline" + "wrap" "1" + "URLText" "http://steampowered.com/amazon/" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "456" + "ypos" "432" + "wide" "96" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#vgui_Cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + "selected" "0" + } + "Button3" + { + "ControlName" "Button" + "fieldName" "Button3" + "xpos" "116" + "ypos" "418" + "wide" "256" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_PerfWarningVideo" + "textAlignment" "west" + "wrap" "0" + "Command" "PlayVideo" + "Default" "0" + "selected" "0" + } + "ReqCPULabel" + { + "ControlName" "Label" + "fieldName" "ReqCPULabel" + "xpos" "116" + "ypos" "208" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "100.0 Ghz" + "textAlignment" "west" + "font" "DefaultSmallBold" + "wrap" "0" + } + "ReqRAMLabel" + { + "ControlName" "Label" + "fieldName" "ReqRAMLabel" + "xpos" "116" + "ypos" "226" + "wide" "64" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "1 GB" + "textAlignment" "west" + "font" "DefaultSmallBold" + "wrap" "0" + } + "ReqVideoLabel" + { + "ControlName" "Label" + "fieldName" "ReqVideoLabel" + "xpos" "116" + "ypos" "244" + "wide" "164" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "DirectX 9 capable" + "labelText" "3D Accelerated" [$OSX] + "textAlignment" "west" + "font" "DefaultSmallBold" + "wrap" "0" + } + "ImagePanel1" + { + "ControlName" "ImagePanel" + "fieldName" "ImagePanel1" + "xpos" "52" + "ypos" "47" + "wide" "59" + "tall" "59" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "resource/icon_warning" + "gradientVertical" "0" + "scaleImage" "0" + } + "DontShowAgainCheck" + { + "ControlName" "CheckButton" + "fieldName" "DontShowAgainCheck" + "xpos" "37" + "ypos" "432" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_SuppressOutdated" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } +} diff --git a/steam/cached/UpdateNewsDialog.res b/steam/cached/UpdateNewsDialog.res new file mode 100644 index 0000000..6ff3eb5 --- /dev/null +++ b/steam/cached/UpdateNewsDialog.res @@ -0,0 +1,119 @@ +"steam/cached/UpdateNewsDialog.res" +{ + layout { + region {name=bottom width=max height=44 align=bottom } + place {control="HTMLSellPage" x=0 y=32 width=max height=max margin-bottom=44} + place {control="PrevButton, NextButton, CloseButton" region=bottom y=10 align=right spacing=10 width=84 height=24 margin-right=15} + } + "ProductMarketingDialog" + { + "ControlName" "CProductMarketingDialog" + "fieldName" "ProductMarketingDialog" + "xpos" "610" + "ypos" "519" + "wide" "708" + "tall" "844" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_UpdateNewsMultiple_Title" + } + "HTMLSellPage" + { + "ControlName" "HTML" + "fieldName" "HTMLSellPage" + "xpos" "8" + "ypos" "48" + "wide" "692" + "tall" "731" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "NextButton" + { + "ControlName" "Button" + "fieldName" "NextButton" + "xpos" "513" + "ypos" "786" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#vgui_next" + "textAlignment" "west" + "wrap" "0" + "Default" "1" + "selected" "0" + } + "PrevButton" + { + "ControlName" "Button" + "fieldName" "PrevButton" + "xpos" "419" + "ypos" "786" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "0" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#vgui_back" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "BgRect" + { + "ControlName" "ImagePanel" + "fieldName" "BgRect" + "xpos" "12" + "ypos" "52" + "zpos" "-1" + "wide" "624" + "tall" "536" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "PropertySheetBorder" + "gradientVertical" "0" + "scaleImage" "0" + } + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "608" + "ypos" "786" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } +} diff --git a/steam/cached/ValveSurveyControllerCradle.res b/steam/cached/ValveSurveyControllerCradle.res new file mode 100644 index 0000000..1ed303e --- /dev/null +++ b/steam/cached/ValveSurveyControllerCradle.res @@ -0,0 +1,119 @@ +"Steam/Cached/ValveSurveyControllerCradle.res" +{ + "ValveSurveyControllerCradle" + { + "ControlName" "CSurveyControllerCradle" + "fieldName" "ValveSurveyControllerCradle" + "xpos" "8" + "ypos" "48" + "wide" "424" + "tall" "324" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "8" + "wide" "360" + "tall" "111" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ValveSurvey_ControllerCradleLabel" + "textAlignment" "north-west" + "wrap" "1" + } + "CradleImage" + { + "ControlName" "ImagePanel" + "fieldName" "CradleImage" + "xpos" "40" + "ypos" "40" + "wide" "350" + "tall" "222" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "1" + "image" "resource/controller_cradle" + } + "SurveyControllerCradleDontKnow" + { + "ControlName" "RadioButton" + "fieldName" "SurveyControllerCradleDontKnow" + "xpos" "42" + "ypos" "263" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_ValveSurvey_ControllerCradleDontKnow" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "1" + "SubTabPosition" "1" + } + "SurveyControllerCradleYes" + { + "ControlName" "RadioButton" + "fieldName" "SurveyControllerCradleYes" + "xpos" "42" + "ypos" "287" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_ValveSurvey_ControllerCradleYes" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "2" + } + "SurveyControllerCradleNo" + { + "ControlName" "RadioButton" + "fieldName" "SurveyControllerCradleNo" + "xpos" "42" + "ypos" "311" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_ValveSurvey_ControllerCradleNo" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "3" + } +} diff --git a/steam/cached/ValveSurveyInternetConnection.res b/steam/cached/ValveSurveyInternetConnection.res new file mode 100644 index 0000000..070b205 --- /dev/null +++ b/steam/cached/ValveSurveyInternetConnection.res @@ -0,0 +1,227 @@ +"Steam/Cached/ValveSurveyInternetConnection.res" +{ + "ValveSurveyInternetConnection" + { + "ControlName" "CSurveyInternetConnection" + "fieldName" "ValveSurveyInternetConnection" + "xpos" "8" + "ypos" "48" + "wide" "424" + "tall" "324" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "SurveyInternetConnectionDontKnow" + { + "ControlName" "RadioButton" + "fieldName" "SurveyInternetConnectionDontKnow" + "xpos" "42" + "ypos" "133" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_ValveSurvey_InternetDontKnow" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "1" + "SubTabPosition" "1" + } + "SurveyInternetConnection33600" + { + "ControlName" "RadioButton" + "fieldName" "SurveyInternetConnection33600" + "xpos" "42" + "ypos" "153" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_Modem_33_6k" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "2" + } + "SurveyInternetConnection56000" + { + "ControlName" "RadioButton" + "fieldName" "SurveyInternetConnection56000" + "xpos" "42" + "ypos" "173" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_Modem_56k" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "3" + } + "SurveyInternetConnectionISDN" + { + "ControlName" "RadioButton" + "fieldName" "SurveyInternetConnectionISDN" + "xpos" "42" + "ypos" "193" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_ISDN_112k" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "4" + } + "SurveyInternetConnectionDSL256" + { + "ControlName" "RadioButton" + "fieldName" "SurveyInternetConnectionDSL256" + "xpos" "42" + "ypos" "213" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_DSL_256k" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "5" + } + "SurveyInternetConnectionDSL768" + { + "ControlName" "RadioButton" + "fieldName" "SurveyInternetConnectionDSL768" + "xpos" "42" + "ypos" "233" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_DSL_768k" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "6" + } + "SurveyInternetConnectionT1" + { + "ControlName" "RadioButton" + "fieldName" "SurveyInternetConnectionT1" + "xpos" "42" + "ypos" "253" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_T1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "7" + } + "SurveyInternetConnectionCABLEDSL2048" + { + "ControlName" "RadioButton" + "fieldName" "SurveyInternetConnectionCABLEDSL2048" + "xpos" "42" + "ypos" "273" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_CABLEDSL_2M" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "8" + } + "SurveyInternetConnectionLAN" + { + "ControlName" "RadioButton" + "fieldName" "SurveyInternetConnectionLAN" + "xpos" "42" + "ypos" "293" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_LAN" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "9" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "24" + "wide" "360" + "tall" "111" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ValveSurvey_InternetLabel" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/steam/cached/ValveSurveyMicrophone.res b/steam/cached/ValveSurveyMicrophone.res new file mode 100644 index 0000000..687b65d --- /dev/null +++ b/steam/cached/ValveSurveyMicrophone.res @@ -0,0 +1,101 @@ +"Steam/Cached/ValveSurveyMicrophone.res" +{ + "ValveSurveyMicrophone" + { + "ControlName" "CSurveyMicrophone" + "fieldName" "ValveSurveyMicrophone" + "xpos" "8" + "ypos" "48" + "wide" "424" + "tall" "324" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "SurveyMicrophoneDontKnow" + { + "ControlName" "RadioButton" + "fieldName" "SurveyMicrophoneDontKnow" + "xpos" "42" + "ypos" "133" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_ValveSurvey_MicrophoneDontKnow" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "1" + "SubTabPosition" "1" + } + "SurveyMicrophoneYes" + { + "ControlName" "RadioButton" + "fieldName" "SurveyMicrophoneYes" + "xpos" "42" + "ypos" "157" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_ValveSurvey_MicrophoneYes" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "2" + } + "SurveyMicrophoneNo" + { + "ControlName" "RadioButton" + "fieldName" "SurveyMicrophoneNo" + "xpos" "42" + "ypos" "181" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_ValveSurvey_MicrophoneNo" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + "SubTabPosition" "3" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "24" + "wide" "360" + "tall" "111" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ValveSurvey_MicrophoneLabel" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/steam/cached/ValveSurveyOverview.res b/steam/cached/ValveSurveyOverview.res new file mode 100644 index 0000000..567a825 Binary files /dev/null and b/steam/cached/ValveSurveyOverview.res differ diff --git a/steam/cached/ValveSurveyResults.res b/steam/cached/ValveSurveyResults.res new file mode 100644 index 0000000..9de2516 Binary files /dev/null and b/steam/cached/ValveSurveyResults.res differ diff --git a/steam/cached/ValveSurveySummarizeData.res b/steam/cached/ValveSurveySummarizeData.res new file mode 100644 index 0000000..34cfa1a --- /dev/null +++ b/steam/cached/ValveSurveySummarizeData.res @@ -0,0 +1,58 @@ +"Steam/Cached/ValveSurveySummarizeData.res" +{ + "ValveSurveySummarizeData" + { + "ControlName" "WizardSubPanel" + "fieldName" "ValveSurveySummarizeData" + "xpos" "8" + "ypos" "48" + "wide" "424" + "tall" "324" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "ValveSurveySummaryText" + { + "ControlName" "RichText" + "fieldName" "ValveSurveySummaryText" + "xpos" "24" + "ypos" "108" + "wide" "391" + "tall" "172" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "10" + "wide" "395" + "tall" "98" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ValveSurvey_SummaryLabel" + "textAlignment" "north-west" + "wrap" "1" + } +} diff --git a/steam/cached/aboutdialog.res b/steam/cached/aboutdialog.res new file mode 100644 index 0000000..c8ecc38 --- /dev/null +++ b/steam/cached/aboutdialog.res @@ -0,0 +1,164 @@ +"steam/cached/aboutdialog.res" +{ + "AboutDialog" + { + "ControlName" "CAboutDialog" + "fieldName" "AboutDialog" + "xpos" "611" + "ypos" "173" + "wide" "1000" + "tall" "734" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_About_Title" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "62" + "wide" "256" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_About_Build" + "textAlignment" "west" + "wrap" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "748" + "ypos" "713" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + "selected" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "24" + "ypos" "38" + "wide" "256" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_About_Info" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "24" + "ypos" "86" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_About_InterfaceVer" + "textAlignment" "west" + "wrap" "0" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "25" + "ypos" "138" + "wide" "296" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_SteamPoweredURL" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://www.steampowered.com" + } + "GreyStrip" + { + "ControlName" "ImagePanel" + "fieldName" "GreyStrip" + "xpos" "22" + "ypos" "160" + "zpos" "-1" + "wide" "312" + "tall" "1" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "fillcolor" "SecBG" + "gradientVertical" "0" + "scaleImage" "0" + } + + "Label4" + { + "ControlName" "Label" + "fieldName" "Label4" + "xpos" "24" + "ypos" "110" + "wide" "303" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_PackageVersion" + "textAlignment" "west" + "wrap" "0" + } + + styles + { + CAboutDialog + { + minimum-height=535 + render_bg + { + 0="image_scale(x0,y0,x1,y1,graphics\JackMyth\About)" + } + } + } +} diff --git a/steam/cached/accountsettingswebdialog.layout b/steam/cached/accountsettingswebdialog.layout new file mode 100644 index 0000000..44819d1 --- /dev/null +++ b/steam/cached/accountsettingswebdialog.layout @@ -0,0 +1,16 @@ +"steam/cached/accountsettingswebdialog.layout" +{ + controls + { + AccountSettingsWebDialog { title="#steam_accountsettings_title" wide=864 tall=764 } + } + + styles + { + } + + layout + { + place { controls="HTML" width=max height=max margin=12 margin-top=32 } + } +} diff --git a/steam/cached/appdownloadpanel_completed.res b/steam/cached/appdownloadpanel_completed.res new file mode 100644 index 0000000..726f86e --- /dev/null +++ b/steam/cached/appdownloadpanel_completed.res @@ -0,0 +1,170 @@ +"steam/cached/appdownloadpanel.res" +{ + "appdownloadpanel" + { + "ControlName" "CAppDownloadPanel" + "fieldName" "appdownloadpanel" + "xpos" "0" + "ypos" "0" + "wide" "800" + "tall" "100" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "bgimage1" + { + "controlname" "ImagePanel" + "filedName" "bgimage1" + "xpos" "0" + "ypos" "0" + "wide" "800" + "tall" "100" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "zpos" "-1" + "fillcolor" "black" + } + + // top row + + "namelabel" + { + "ControlName" "Label" + "fieldName" "namelabel" + "xpos" "16" + "ypos" "6" + "wide" "160" + "tall" "24" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%name_upper%" + "textAlignment" "north-west" + "flow_right" "readylabel" + } + "readylabel" + { + "ControlName" "Label" + "fieldName" "readylabel" + "xpos" "4" + "ypos" "6" + "wide" "160" + "tall" "24" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#steam_downloads_ready" + "textAlignment" "north-west" + } + + // second row + + "gameimage" + { + "controlname" "ImagePanel" + "filedName" "gameimage" + "xpos" "10" + "ypos" "32" + "wide" "184" + "tall" "69" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "fillcolor" "24 140 24 255" + } + "downloadcompletelabel" + { + "ControlName" "Label" + "fieldName" "downloadcompletelabel" + "xpos" "200" + "ypos" "32" + "wide" "160" + "tall" "24" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#steam_downloads_downloadcompleted" + "textAlignment" "north-west" + "flow_right" "downloadcompletefield" + } + "downloadcompletefield" + { + "ControlName" "Label" + "fieldName" "downloadcompletefield" + "xpos" "4" + "ypos" "40" + "wide" "160" + "tall" "24" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%time_completed%" + "textAlignment" "north-west" + } + + // bottom row + + "sessiontotallabel" + { + "ControlName" "Label" + "fieldName" "sessiontotallabel" + "xpos" "200" + "ypos" "60" + "wide" "160" + "tall" "24" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#steam_downloads_sessiontotal" + "textAlignment" "north-west" + "flow_right" "sessiontotalfield" + } + "sessiontotalfield" + { + "ControlName" "Label" + "fieldName" "sessiontotalfield" + "xpos" "4" + "ypos" "40" + "wide" "160" + "tall" "24" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "%total_downloaded%" + "textAlignment" "north-west" + } + + + + // right pane - hidden + "graphpanel" + { + "ControlName" "GraphPanel" + "fieldName" "graphpanel" + "xpos" "500" + "ypos" "40" + "wide" "288" + "tall" "80" + "autoresize" "1" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} diff --git a/steam/cached/asyncnotificationsrequesteddialog.res b/steam/cached/asyncnotificationsrequesteddialog.res new file mode 100644 index 0000000..b983142 --- /dev/null +++ b/steam/cached/asyncnotificationsrequesteddialog.res @@ -0,0 +1,96 @@ +"public/AsyncNotificatoinsRequestedDialog.res" +{ + "AsyncNotificatoinsRequestedDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "AsyncNotificatoinsRequestedDialog" + "xpos" "277" + "ypos" "250" + "wide" "385" + "tall" "145" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Overlay_AsyncNotificatoinsRequestedDialog_Title" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "168" + "ypos" "95" + "wide" "128" + "tall" "24" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_AsyncNotificatoinsRequestedDialog_Allow" + "textAlignment" "west" + "wrap" "0" + "Default" "1" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "305" + "ypos" "95" + "wide" "65" + "tall" "24" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_AsyncNotificatoinsRequestedDialog_Disallow" + "textAlignment" "west" + "wrap" "0" + "Default" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "60" + "ypos" "32" + "wide" "300" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_AsyncNotificatoinsRequestedDialog_Desc" + "textAlignment" "north-west" + "font" "HeadlineLarge" + "wrap" "1" + } + "TurnIcon" + { + "ControlName" "ImagePanel" + "fieldName" "TurnIcon" + "xpos" "12" + "ypos" "37" + "wide" "33" + "tall" "28" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "steam/cached/turn_icon_large" + "gradientVertical" "0" + "scaleImage" "0" + } + +} diff --git a/steam/cached/backuprestoregamespage.res b/steam/cached/backuprestoregamespage.res new file mode 100644 index 0000000..ceea9bc --- /dev/null +++ b/steam/cached/backuprestoregamespage.res @@ -0,0 +1,134 @@ +"steam/cached/BackupRestoreGamesPage.res" +{ + "BackupRestoreGamesPage" + { + "ControlName" "CBackupRestoreGamesPage" + "fieldName" "BackupRestoreGamesPage" + "xpos" "8" + "ypos" "48" + "wide" "388" + "tall" "300" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "DirectoryLabel" + { + "ControlName" "TextEntry" + "fieldName" "DirectoryLabel" + "xpos" "24" + "ypos" "114" + "wide" "336" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "24" + "ypos" "145" + "wide" "140" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ChangeDirectory" + "textAlignment" "west" + "wrap" "0" + "Command" "Browse" + "Default" "1" + "selected" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "90" + "wide" "340" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RestoreDirectory" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "24" + "ypos" "24" + "wide" "340" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ChooseRestoreDirectory_Info" + "textAlignment" "north-west" + "wrap" "1" + } + "RestoreGameLabel" + { + "ControlName" "Label" + "fieldName" "RestoreGameLabel" + "xpos" "164" + "ypos" "190" + "wide" "190" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelBright" + "labelText" "" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "24" + "ypos" "190" + "wide" "140" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RestoreGameFound" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/backupstartpage.res b/steam/cached/backupstartpage.res new file mode 100644 index 0000000..7dbfd94 --- /dev/null +++ b/steam/cached/backupstartpage.res @@ -0,0 +1,83 @@ +"steam/cached/BackupStartPage.res" +{ + "BackupStartPage" + { + "ControlName" "CBackupStartPage" + "fieldName" "BackupStartPage" + "xpos" "8" + "ypos" "24" + "wide" "388" + "tall" "300" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "RadioButtonBackup" + { + "ControlName" "RadioButton" + "fieldName" "RadioButtonBackup" + "xpos" "28" + "ypos" "48" + "wide" "332" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "selected" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_BackupChooseBackup" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "2" + } + + "RadioButtonRestore" + { + "ControlName" "RadioButton" + "fieldName" "RadioButtonRestore" + "xpos" "28" + "ypos" "72" + "wide" "332" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "selected" "0" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_BackupChooseRestore" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "SubTabPosition" "1" + } + + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "0" + "wide" "320" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "0" + "labelText" "#Steam_BackupStartText" + "textAlignment" "west" + // "associate" "SizeCombo" + "wrap" "0" + } +} diff --git a/steam/cached/cdkeyreceipthtml.res b/steam/cached/cdkeyreceipthtml.res new file mode 100644 index 0000000..4692a6f --- /dev/null +++ b/steam/cached/cdkeyreceipthtml.res @@ -0,0 +1,37 @@ +"Steam/cached/cdkeyreciepthtml.res" +{ + "cdkeyreciepthtml" + { + "ControlName" "cdkeyreciepthtml" + "fieldName" "cdkeyreciepthtml" + "xpos" "1088" + "ypos" "700" + "wide" "384" + "tall" "172" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#steam_printing" + } + + "ReceiptHTML" + { + "ControlName" "ReceiptHTML" + "fieldName" "HTML" + "xpos" "24" + "ypos" "52" + "wide" "340" + "tall" "120" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + } +} diff --git a/steam/cached/charityquestiondialog.layout b/steam/cached/charityquestiondialog.layout new file mode 100644 index 0000000..8ff44d7 --- /dev/null +++ b/steam/cached/charityquestiondialog.layout @@ -0,0 +1,112 @@ +"steam/cached/charityquestiondialog.layout" +{ + controls + { + charityquestiondialog { title="#charity_title" wide=500 tall=600 } + + bgimage { controlname=ImagePanel style="bgimagestyle" zpos=-2 } + + headerimage {controlname=ImagePanel image="steam/cached/giving_header" zpos=-1 } + headerovertext { controlname=Label labelText="#charity_imagetext" style=headertextstyle zpos=0 } + headertext {controlname=Label labelText="#charity_header" wrap=1 zpos=1 } + headerchoice {controlname=Label labelText="#charity_choice" wrap=0 style=choicestyle } + radio1 {controlname=RadioButton labelText="#charity_asia" wrap=0 tabposition=1 subtabposition=1 } + radio2 {controlname=RadioButton labelText="#charity_schools" wrap=0 tabposition=1 subtabposition=2 } + radio3 {controlname=RadioButton labelText="#charity_read" wrap=0 tabposition=1 subtabposition=3 } + radio4 {controlname=RadioButton labelText="#charity_scholarship" wrap=0 tabposition=1 subtabposition=4 } + detailstext {controlname=Label labelText="" wrap=1 } + footertext {controlname=Label labelText="#charity_footer" wrap=1 } + footerlink {controlname=URLLabel labelText="#charity_footer_link" URLText="#charity_footer_link" wrap=0 } + + launchbutton { controlname=Button labelText="#charity_launchgame" command="OK" style=launchbuttonstyle tabposition=2 } + BottomDivider { controlname=divider } + } + + styles + { + bgimagestyle + { + bgcolor=none + render {} + render_bg + { + 0="gradient( x0 + 1, y0 + 1, x1 - 1, y1 - 1, none, propertysheetbg )" + } + } + + choicestyle + { + font-size=22 + textcolor=text + } + + headertextstyle + { + textcolor=white + font-style="outerglow" + font-size=36 + font-outerglow-offset=2 + font-outerglow-color=dialogbg + font-outerglow-filtersize=5 + } + + launchbuttonstyle + { + padding-left=4 + padding-right=24 + } + + RadioButton + { + font-family=basefont + font-size=18 + font-weight=400 + textcolor="Label" + render_bg {} + image="graphics/RadUnselStd" + bgcolor=none + } + + RadioButton:selected + { + render_bg {} + image="graphics/radSelStd" + } + + RadioButton:focus + { + textcolor="Texthover" + bgcolor=none + image="graphics/radSelFocus" + } + + RadioButton:selected:focus + { + textcolor="Texthover" + bgcolor=none + image="graphics/radSelFocus" + } + + } + + layout + { + place { controls="bgimage" width=max height=max margin=10 margin-bottom=50 margin-top=24 } + + place { controls="headerovertext" margin-top=50 margin-left=30 } + + place { margin=20 margin-top=30 dir=down spacing=4 controls="headerimage" width=max } + + place { margin=40 margin-top=120 margin-right=80 dir=down spacing=4 controls="headertext,headerchoice,radio1,radio2,radio3,radio4" width=max } + + place { margin=68 margin-top=355 margin-right=70 dir=down spacing=4 controls="detailstext" width=max } + + place { margin=40 margin-bottom=65 margin-right=75 dir=down controls="footertext,footerlink" align=bottom width=max } + + region { name="buttonrow" align=bottom width=max height=40 } + + place { margin=35 controls="BottomDivider" y=450 width=max } + + place { controls="launchbutton" region="buttonrow" align=right margin-right=10 height=24 } + } +} diff --git a/steam/cached/chatroom_locked.tga b/steam/cached/chatroom_locked.tga new file mode 100644 index 0000000..a7b011f Binary files /dev/null and b/steam/cached/chatroom_locked.tga differ diff --git a/steam/cached/chatroom_speaking.tga b/steam/cached/chatroom_speaking.tga new file mode 100644 index 0000000..f3800e3 Binary files /dev/null and b/steam/cached/chatroom_speaking.tga differ diff --git a/steam/cached/chatroom_speakingdata.tga b/steam/cached/chatroom_speakingdata.tga new file mode 100644 index 0000000..460696c Binary files /dev/null and b/steam/cached/chatroom_speakingdata.tga differ diff --git a/steam/cached/chatroom_unlocked.tga b/steam/cached/chatroom_unlocked.tga new file mode 100644 index 0000000..03a9830 Binary files /dev/null and b/steam/cached/chatroom_unlocked.tga differ diff --git a/steam/cached/cloudsyncwarningdialog.res b/steam/cached/cloudsyncwarningdialog.res new file mode 100644 index 0000000..d9d4cbb --- /dev/null +++ b/steam/cached/cloudsyncwarningdialog.res @@ -0,0 +1,119 @@ +"steam/cached/cloudsyncwarningdialog.res" +{ + "CloudSyncWarningDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "CloudSyncWarningDialog" + "xpos" "1022" + "ypos" "621" + "wide" "516" + "tall" "298" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#SteamUI_JoinDialog_CloudSyncFailed_Title" + } + "ContinueButton" + { + "ControlName" "Button" + "fieldName" "ContinueButton" + "xpos" "64" + "ypos" "210" + "wide" "249" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_JoinDialog_PlayGame_Btn" + "textAlignment" "west" + "wrap" "0" + "Command" "" + "Default" "0" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "331" + "ypos" "210" + "wide" "110" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#vgui_cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "" + "Default" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "65" + "ypos" "36" + "wide" "437" + "tall" "40" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "ListPanelSectionHeader" + "labelText" "#SteamUI_JoinDialog_CloudSyncFailed_Text" + "textAlignment" "west" + "font" "UIBold" + "wrap" "1" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "66" + "ypos" "110" + "wide" "375" + "tall" "80" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_JoinDialog_CloudSyncFailed_Detail" + "textAlignment" "north-west" + "wrap" "1" + } + "ImagePanel1" + { + "ControlName" "ImagePanel" + "fieldName" "ImagePanel1" + "xpos" "3" + "ypos" "27" + "wide" "59" + "tall" "59" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "resource/icon_warning" + "fillcolor" "" + "gradientStart" "" + "gradientEnd" "" + "gradientVertical" "0" + "scaleImage" "0" + } +} diff --git a/steam/cached/contentmanagmentdialog.res b/steam/cached/contentmanagmentdialog.res new file mode 100644 index 0000000..162d1e5 --- /dev/null +++ b/steam/cached/contentmanagmentdialog.res @@ -0,0 +1,97 @@ +"steam/cached/contentmanagmentdialog.res" +{ + "contentmanagmentdialog" + { + "ControlName" "CContentManagmentDialog" + "fieldName" "ContentManagmentDialog" + "xpos" "794" + "ypos" "447" + "wide" "640" + "tall" "200" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#SteamUI_ContentMgr_Title" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "10" + "ypos" "36" + "wide" "645" + "tall" "30" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ContentMgr_Text" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + "InstallFoldersList" + { + "ControlName" "ListPanel" + "fieldName" "InstallFoldersList" + "xpos" "10" + "ypos" "64" + "wide" "620" + "tall" "120" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + + "AddFolderButton" + { + "ControlName" "Button" + "fieldName" "AddFolderButton" + "labelText" "#SteamUI_ContentMgr_AddInstallFolder" + "xpos" "10" + "ypos" "200" + "wide" "160" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "command" "AddInstallFolder" + } + + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "512" + "ypos" "200" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } +} diff --git a/steam/cached/convertcontentdialog.res b/steam/cached/convertcontentdialog.res new file mode 100644 index 0000000..787b2dc --- /dev/null +++ b/steam/cached/convertcontentdialog.res @@ -0,0 +1,115 @@ +"steam/cached/convertcontentdialog.res" +{ + "ConvertContentDialog" + { + "ControlName" "CConvertContentDialog" + "fieldName" "ConvertContentDialog" + "wide" "400" + "tall" "200" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + "title" "#Steam_Convert_Content_Dialog_Title" + } + + "TextLabel" + { + "ControlName" "Label" + "fieldName" "TextLabel" + "xpos" "12" + "ypos" "36" + "wide" "380" + "tall" "64" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Steam_Convert_Content_Text" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + + "StateLabel" + { + "ControlName" "Label" + "fieldName" "StateLabel" + "xpos" "50" + "ypos" "95" + "wide" "300" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Steam_Convert_Content_State" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + + + "Throbber" + { + "ControlName" "ThrobberImagePanel" + "fieldName" "Throbber" + "xpos" "20" + "ypos" "90" + "wide" "20" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "180" + "ypos" "165" + "wide" "98" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Steam_Convert_Content_Cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "Cancel" + "Default" "0" + } + + "OkButton" + { + "ControlName" "Button" + "fieldName" "OkButton" + "xpos" "290" + "ypos" "165" + "wide" "98" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Steam_Convert_Content_Start" + "textAlignment" "west" + "wrap" "0" + "Command" "Convert" + "Default" "0" + } +} + \ No newline at end of file diff --git a/steam/cached/driverunknownpagedialog.res b/steam/cached/driverunknownpagedialog.res new file mode 100644 index 0000000..80a57fe Binary files /dev/null and b/steam/cached/driverunknownpagedialog.res differ diff --git a/steam/cached/driverunsupportedpagedialog.res b/steam/cached/driverunsupportedpagedialog.res new file mode 100644 index 0000000..9777a35 Binary files /dev/null and b/steam/cached/driverunsupportedpagedialog.res differ diff --git a/steam/cached/driverupdatepagedialog.res b/steam/cached/driverupdatepagedialog.res new file mode 100644 index 0000000..806833d --- /dev/null +++ b/steam/cached/driverupdatepagedialog.res @@ -0,0 +1,283 @@ +"steam/cached/DriverUpdatePageDialog.res" +{ + "DriverUpdatePageDialog" + { + "ControlName" "CDriverUpdatePageDialog" + "fieldName" "DriverUpdatePageDialog" + "xpos" "530" + "ypos" "411" + "wide" "540" + "tall" "350" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#SteamUI_DriverOutdated_Title" + } + "Info" + { + "ControlName" "Label" + "fieldName" "Info" + "xpos" "26" + "ypos" "50" + "wide" "467" + "tall" "84" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_DriverOutdated_Info" + "textAlignment" "north-west" + "wrap" "1" + } + "OS" + { + "ControlName" "Label" + "fieldName" "OS" + "xpos" "180" + "ypos" "158" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_OSVersionXP" + "textAlignment" "west" + "wrap" "0" + } + "DriverDesc" + { + "ControlName" "Label" + "fieldName" "DriverDesc" + "xpos" "180" + "ypos" "180" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "RADEON 9800 XT " + "textAlignment" "west" + "wrap" "0" + } + "DriverVersion" + { + "ControlName" "Label" + "fieldName" "DriverVersion" + "xpos" "180" + "ypos" "202" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "6.14.10.6553" + "textAlignment" "west" + "wrap" "0" + } + "InfoURL" + { + "ControlName" "URLLabel" + "fieldName" "InfoURL" + "xpos" "25" + "ypos" "237" + "wide" "298" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#SteamUI_OutdatedUrlLabel" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://www.steampowered.com/Steam/Messages/driver_update/index.php?game=240&l=english&vendorid=4098&deviceid=20042" + } + "Continue" + { + "ControlName" "Button" + "fieldName" "Continue" + "xpos" "256" + "ypos" "306" + "wide" "144" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#SteamUI_ContinueOutdated" + "textAlignment" "west" + "wrap" "0" + "Command" "Continue" + "Default" "0" + "selected" "0" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "406" + "ypos" "306" + "wide" "109" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#vgui_Cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "Cancel" + "Default" "0" + "selected" "0" + } + "UploadDetails" + { + "ControlName" "Button" + "fieldName" "UploadDetails" + "xpos" "20" + "ypos" "217" + "wide" "185" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_UnknownUpload" + "textAlignment" "west" + "wrap" "0" + "Command" "Upload" + "Default" "0" + "selected" "0" + } + "SuppressCheckbox" + { + "ControlName" "CheckButton" + "fieldName" "SuppressCheckbox" + "xpos" "21" + "ypos" "306" + "wide" "228" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#SteamUI_SuppressOutdated" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "26" + "ypos" "180" + "wide" "150" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_VidDriverDescription" + "textAlignment" "west" + "wrap" "0" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "26" + "ypos" "202" + "wide" "150" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_VidDriverVersion" + "textAlignment" "west" + "wrap" "0" + } + "DetailsLabel" + { + "ControlName" "Label" + "fieldName" "DetailsLabel" + "xpos" "26" + "ypos" "134" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "LabelDull" + "labelText" "#SteamUI_VidDriverDetailsLabel" + "textAlignment" "west" + "font" "uiHeadline" + "wrap" "0" + } + "Divider2" + { + "ControlName" "Divider" + "fieldName" "Divider2" + "xpos" "25" + "ypos" "288" + "wide" "488" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "OSVersion" + { + "ControlName" "Label" + "fieldName" "OSVersion" + "xpos" "26" + "ypos" "158" + "wide" "150" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_VidDriverOS" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/emailsubpanel.res b/steam/cached/emailsubpanel.res new file mode 100644 index 0000000..a122a54 --- /dev/null +++ b/steam/cached/emailsubpanel.res @@ -0,0 +1,109 @@ +"steam/cached/emailsubpanel.res" +{ + "EmailAddressPanel" + { + "ControlName" "CEmailSubPanel" + "fieldName" "EmailAddressPanel" + "xpos" "7" + "ypos" "30" + "wide" "460" + "tall" "516" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "agecheck" + { + "ControlName" "CheckButton" + "fieldName" "agecheck" + "xpos" "18" + "ypos" "260" + "wide" "355" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_AgeOver17" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "HTML" + { + "ControlName" "HTML" + "fieldName" "HTML" + "xpos" "24" + "ypos" "40" + "wide" "380" + "tall" "64" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "EmailMessage" + { + "ControlName" "Label" + "fieldName" "EmailMessage" + "xpos" "24" + "ypos" "124" + "wide" "380" + "tall" "88" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "center" + "wrap" "1" + } + "EmailAddress" + { + "ControlName" "TextEntry" + "fieldName" "EmailAddress" + "xpos" "24" + "ypos" "232" + "wide" "350" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "208" + "wide" "150" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_SendEmail" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/fav_addTo.tga b/steam/cached/fav_addTo.tga new file mode 100644 index 0000000..47d7d04 Binary files /dev/null and b/steam/cached/fav_addTo.tga differ diff --git a/steam/cached/fav_addTo_ovr.tga b/steam/cached/fav_addTo_ovr.tga new file mode 100644 index 0000000..fa6b170 Binary files /dev/null and b/steam/cached/fav_addTo_ovr.tga differ diff --git a/steam/cached/fav_remove.tga b/steam/cached/fav_remove.tga new file mode 100644 index 0000000..8c1bd78 Binary files /dev/null and b/steam/cached/fav_remove.tga differ diff --git a/steam/cached/fav_remove_ovr.tga b/steam/cached/fav_remove_ovr.tga new file mode 100644 index 0000000..fa6b170 Binary files /dev/null and b/steam/cached/fav_remove_ovr.tga differ diff --git a/steam/cached/game_details_header_blue.tga b/steam/cached/game_details_header_blue.tga new file mode 100644 index 0000000..4c43c93 Binary files /dev/null and b/steam/cached/game_details_header_blue.tga differ diff --git a/steam/cached/game_details_header_green.tga b/steam/cached/game_details_header_green.tga new file mode 100644 index 0000000..6710d96 Binary files /dev/null and b/steam/cached/game_details_header_green.tga differ diff --git a/steam/cached/game_details_header_mask.tga b/steam/cached/game_details_header_mask.tga new file mode 100644 index 0000000..572d740 Binary files /dev/null and b/steam/cached/game_details_header_mask.tga differ diff --git a/steam/cached/game_details_header_red.tga b/steam/cached/game_details_header_red.tga new file mode 100644 index 0000000..8428e7a Binary files /dev/null and b/steam/cached/game_details_header_red.tga differ diff --git a/steam/cached/gameproperties_betas.res b/steam/cached/gameproperties_betas.res new file mode 100644 index 0000000..2d464a2 --- /dev/null +++ b/steam/cached/gameproperties_betas.res @@ -0,0 +1,135 @@ +"steam/cached/gameproperties_betas.res" +{ + "GamePropertiesBetas" + { + "ControlName" "CSubGamePropertiesBetasPage" + "fieldName" "GamePropertiesBetas" + "xpos" "0" + "ypos" "28" + "wide" "500" + "tall" "298" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "20" + "wide" "400" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ChooseGameBeta" + "textAlignment" "west" + "associate" "UpdateCombo" + "wrap" "0" + } + "UpdateCombo" + { + "ControlName" "ComboBox" + "fieldName" "UpdateCombo" + "xpos" "24" + "ypos" "44" + "wide" "275" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "PasswordLabel" + { + "ControlName" "Label" + "fieldName" "PasswordLabel" + "xpos" "24" + "ypos" "88" + "wide" "400" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ContentBetaUnlockPrivate" + "textAlignment" "west" + "associate" "UpdateCombo" + "wrap" "0" + } + "PasswordEntry" + { + "ControlName" "TextEntry" + "fieldName" "PasswordEntry" + "xpos" "24" + "ypos" "112" + "wide" "275" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "1" + } + "CheckPasswordButton" + { + "ControlName" "Button" + "fieldName" "CheckPasswordButton" + "xpos" "324" + "ypos" "112" + "wide" "142" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Steam_ContentBetaCheckPassword" + "textAlignment" "west" + "wrap" "0" + "Command" "CheckPassword" + "Default" "0" + } + "BetaResultsLabel" + { + "ControlName" "Label" + "fieldName" "BetaResultsLabel" + "xpos" "24" + "ypos" "140" + "wide" "400" + "tall" "48" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "" + "textAlignment" "west" + "associate" "UpdateCombo" + "wrap" "1" + } +} diff --git a/steam/cached/gameproperties_dlc.res b/steam/cached/gameproperties_dlc.res new file mode 100644 index 0000000..d5fc923 --- /dev/null +++ b/steam/cached/gameproperties_dlc.res @@ -0,0 +1,70 @@ +"steam/cached/gameproperties_dlc.res" +{ + "GamePropertiesDLC" + { + "ControlName" "CSubGamePropertiesDLCPage" + "fieldName" "GamePropertiesDLC" + "xpos" "0" + "ypos" "28" + "wide" "500" + "tall" "298" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "ContentList" + { + "ControlName" "ListPanel" + "fieldName" "ContentList" + "xpos" "24" + "ypos" "90" + "wide" "512" + "tall" "170" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "appearance" "ListPanelBorder" + } + "StoreDLCURL" + { + "ControlName" "URLLabel" + "fieldName" "StoreDLCURL" + "xpos" "24" + "ypos" "266" + "wide" "338" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Game_FindDLC_URL" + "textAlignment" "west" + "wrap" "0" + } + "DescriptionLabel" + { + "ControlName" "Label" + "fieldName" "DescriptionLabel" + "xpos" "25" + "ypos" "20" + "wide" "450" + "tall" "72" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Game_DLC_Title" + "textAlignment" "west" + "wrap" "1" + } +} diff --git a/steam/cached/gameproperties_general.res b/steam/cached/gameproperties_general.res new file mode 100644 index 0000000..d05c3a9 --- /dev/null +++ b/steam/cached/gameproperties_general.res @@ -0,0 +1,264 @@ +"steam/cached/gameproperties_general.res" +{ + "GamePropertiesGeneral" + { + "ControlName" "CSubGamePropertiesGeneralPage" + "fieldName" "GamePropertiesGeneral" + "xpos" "0" + "ypos" "28" + "wide" "500" + "tall" "298" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "HomepageLabel" + { + "ControlName" "URLLabel" + "fieldName" "HomepageLabel" + "xpos" "148" + "ypos" "20" + "wide" "328" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_DeveloperUnknownThirdParty" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://www.half-life2.com" + } + "DeveloperLabel" + { + "ControlName" "URLLabel" + "fieldName" "DeveloperLabel" + "xpos" "148" + "ypos" "48" + "wide" "328" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_DeveloperUnknownThirdParty" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://www.half-life2.com" + } + "ManualLabel" + { + "ControlName" "URLLabel" + "fieldName" "ManualLabel" + "xpos" "148" + "ypos" "76" + "wide" "328" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Game_DefaultManual" + "textAlignment" "west" + "wrap" "0" + "URLText" "http://www.half-life2.com/manual/HL2_quickrefcard.pdf" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "20" + "wide" "122" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Game_Homepage" + "textAlignment" "west" + "wrap" "0" + } + "DeveloperLabelName" + { + "ControlName" "Label" + "fieldName" "DeveloperLabelName" + "xpos" "24" + "ypos" "48" + "wide" "122" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Game_Developer" + "textAlignment" "west" + "wrap" "0" + } + "ManualLabelName" + { + "ControlName" "Label" + "fieldName" "ManualLabelName" + "xpos" "24" + "ypos" "76" + "wide" "122" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_Game_Manual" + "textAlignment" "west" + "wrap" "0" + } + + "EnableOverlayCheck" + { + "ControlName" "CheckButton" + "fieldName" "EnableOverlayCheck" + "xpos" "24" + "ypos" "126" + "wide" "340" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Overlay_SettingsEnable" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + + "LaunchOptionsButton" + { + "ControlName" "Button" + "fieldName" "LaunchOptionsButton" + "xpos" "24" + "ypos" "158" + "wide" "256" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Steam_Game_SetLaunchOptions" + "textAlignment" "west" + "wrap" "0" + "Command" "SetLaunchOptions" + "Default" "0" + "selected" "0" + } + "CreateDesktopShortcutButton" + { + "ControlName" "Button" + "fieldName" "CreateDesktopShortcutButton" + "xpos" "24" + "ypos" "194" + "wide" "256" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Steam_Game_CreateDesktopShortcut" + "textAlignment" "west" + "wrap" "0" + "Command" "CreateDesktopShortcut" + "Default" "0" + "selected" "0" + } + "NoManualLabel" + { + "ControlName" "Label" + "fieldName" "NoManualLabel" + "xpos" "148" + "ypos" "76" + "wide" "220" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_Game_NoManual" + "textAlignment" "west" + "wrap" "0" + } + "Divider1" + { + "ControlName" "Divider" + "fieldName" "Divider1" + "xpos" "24" + "ypos" "112" + "wide" "450" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "ExternalSignupButton" + { + "ControlName" "Button" + "fieldName" "ExternalSignupButton" + "xpos" "24" + "ypos" "255" + "wide" "338" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ExternalSignupPropertiesButton" + "textAlignment" "west" + "wrap" "0" + "Command" "ExternalSignup" + "Default" "0" + } + "ExternalSignupLabel" + { + "ControlName" "Label" + "fieldName" "ExternalSignupLabel" + "xpos" "24" + "ypos" "231" + "wide" "336" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ExternalSignupPropertiesLabel" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/gameproperties_language.res b/steam/cached/gameproperties_language.res new file mode 100644 index 0000000..cf429fb --- /dev/null +++ b/steam/cached/gameproperties_language.res @@ -0,0 +1,57 @@ +"steam/cached/gameproperties_language.res" +{ + "GamePropertiesLocalLanguage" + { + "ControlName" "CSubGamePropertiesLanguagePage" + "fieldName" "GamePropertiesLocalLanguage" + "xpos" "0" + "ypos" "28" + "wide" "500" + "tall" "298" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "UpdateCombo" + { + "ControlName" "ComboBox" + "fieldName" "UpdateCombo" + "xpos" "24" + "ypos" "44" + "wide" "275" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "textHidden" "0" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + "320" + { + "ControlName" "Label" + "fieldName" "320" + "xpos" "24" + "ypos" "20" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ChooseGameLanguage" + "textAlignment" "west" + "associate" "UpdateCombo" + "wrap" "0" + } +} diff --git a/steam/cached/gameproperties_localfiles.res b/steam/cached/gameproperties_localfiles.res new file mode 100644 index 0000000..b12e9ca --- /dev/null +++ b/steam/cached/gameproperties_localfiles.res @@ -0,0 +1,168 @@ +"steam/cached/gameproperties_localfiles.res" +{ + layout{ + region { name=main margin=20 } + + place { controls=DiskUsageLabel region=main } + place { controls="OpenInstallFolder,MoveInstallFolder,BackupButton,DeleteButton,VerifyButton" dir=down region=main start=DiskUsageLabel spacing=5 width=320 margin-top=10 } + place { controls=BuildIDLabel region=main start=VerifyButton dir=down margin-top=10 } + } + + "GamePropertiesLocalFiles" + { + "ControlName" "CSubGamePropertiesLocalFilesPage" + "fieldName" "GamePropertiesLocalFiles" + "xpos" "0" + "ypos" "28" + "wide" "384" + "tall" "278" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + + "DiskUsageLabel" + { + "ControlName" "Label" + "fieldName" "DiskUsageLabel" + "xpos" "24" + "ypos" "20" + "wide" "272" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "" + "textAlignment" "west" + "wrap" "0" + } + + "BuildIDLabel" + { + "ControlName" "Label" + "fieldName" "BuildIDLabel" + "xpos" "24" + "ypos" "186" + "wide" "272" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_ContentBuildID" + "textAlignment" "west" + "wrap" "0" + } + + "BackupButton" + { + "ControlName" "Button" + "fieldName" "BackupButton" + "xpos" "24" + "ypos" "86" + "wide" "256" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Steam_BackupGameFiles" + "textAlignment" "west" + "wrap" "0" + "Command" "BackupGameFiles" + "Default" "0" + "selected" "0" + } + "DeleteButton" + { + "ControlName" "Button" + "fieldName" "DeleteButton" + "xpos" "24" + "ypos" "120" + "wide" "256" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Steam_DeleteLocalGameContent" + "textAlignment" "west" + "wrap" "0" + "Command" "DeleteGameFiles" + "Default" "0" + "selected" "0" + } + "VerifyButton" + { + "ControlName" "Button" + "fieldName" "VerifyButton" + "xpos" "24" + "ypos" "154" + "wide" "256" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "0" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Steam_Game_VerifyGameFiles" + "textAlignment" "west" + "wrap" "0" + "Command" "VerifyGameFiles" + "Default" "0" + "selected" "0" + } + "OpenInstallFolder" + { + "ControlName" "Button" + "fieldName" "OpenInstallFolder" + "xpos" "24" + "ypos" "54" + "wide" "256" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#Steam_GamePropertiesOpenFolder" + "textAlignment" "west" + "wrap" "0" + "Command" "OpenInstallFolder" + "Default" "0" + } + "MoveInstallFolder" + { + "ControlName" "Button" + "fieldName" "MoveInstallFolder" + "xpos" "24" + "ypos" "186" + "wide" "256" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#Steam_GamePropertiesMoveFolder" + "textAlignment" "west" + "wrap" "0" + "Command" "MoveInstallFolder" + "Default" "0" + } +} diff --git a/steam/cached/gameproperties_shortcuts.res b/steam/cached/gameproperties_shortcuts.res new file mode 100644 index 0000000..0d74231 --- /dev/null +++ b/steam/cached/gameproperties_shortcuts.res @@ -0,0 +1,231 @@ +"steam/cached/gameproperties_shortcuts.res" +{ + "GamePropertiesShortcut" + { + "ControlName" "CSubGamePropertiesShortcutPropertiesPage" + "fieldName" "GamePropertiesShortcut" + "xpos" "0" + "ypos" "28" + "wide" "384" + "tall" "278" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "10" + "ypos" "90" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ShortcutTarget" + "textAlignment" "west" + "wrap" "0" + } + "Label3" + { + "ControlName" "Label" + "fieldName" "Label3" + "xpos" "10" + "ypos" "155" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ShortcutStartIn" + "textAlignment" "west" + "wrap" "0" + } + "name" + { + "ControlName" "TextEntry" + "fieldName" "Name" + "xpos" "10" + "ypos" "60" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "1" + } + "Target" + { + "ControlName" "TextEntry" + "fieldName" "Target" + "xpos" "10" + "ypos" "120" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "1" + } + "StartIn" + { + "ControlName" "TextEntry" + "fieldName" "StartIn" + "xpos" "10" + "ypos" "184" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textHidden" "0" + "editable" "1" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "1" + } + "IconPlaceholder" + { + "ControlName" "Label" + "fieldName" "IconPlaceholder" + "xpos" "10" + "ypos" "15" + "wide" "32" + "tall" "32" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } + "FindTarget" + { + "ControlName" "Button" + "fieldName" "FindTarget" + "xpos" "12" + "ypos" "248" + "wide" "200" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_PickShortcutApp" + "textAlignment" "west" + "wrap" "0" + "Command" "ChooseApp" + "Default" "0" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "100" + "ypos" "12" + "wide" "120" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_PickShortcutChooseIcon" + "textAlignment" "west" + "wrap" "0" + "Command" "ChooseIcon" + "Default" "0" + } + "LaunchOptionsButton" + { + "ControlName" "Button" + "fieldName" "LaunchOptionsButton" + "xpos" "12" + "ypos" "284" + "wide" "200" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Steam_Game_SetLaunchOptions" + "textAlignment" "west" + "wrap" "0" + "Command" "SetLaunchOptions" + "Default" "0" + "selected" "0" + } + "EnableDesktopGameTheater" + { + "ControlName" "CheckButton" + "fieldName" "EnableDesktopGameTheater" + "xpos" "12" + "ypos" "218" + "wide" "400" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_SettingsDesktopGameTheaterCheck" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + "IsVRShortcut" + { + "ControlName" "CheckButton" + "fieldName" "IsVRShortcut" + "xpos" "12" + "ypos" "218" + "wide" "400" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_SettingsIsVRShortcut" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + } + +} diff --git a/steam/cached/gridview_dropshadow.tga b/steam/cached/gridview_dropshadow.tga new file mode 100644 index 0000000..d2515be Binary files /dev/null and b/steam/cached/gridview_dropshadow.tga differ diff --git a/steam/cached/gridview_mask.tga b/steam/cached/gridview_mask.tga new file mode 100644 index 0000000..9a3756a Binary files /dev/null and b/steam/cached/gridview_mask.tga differ diff --git a/steam/cached/gridview_placeholder_0.tga b/steam/cached/gridview_placeholder_0.tga new file mode 100644 index 0000000..46629c8 Binary files /dev/null and b/steam/cached/gridview_placeholder_0.tga differ diff --git a/steam/cached/gridview_placeholder_1.tga b/steam/cached/gridview_placeholder_1.tga new file mode 100644 index 0000000..a97cbd7 Binary files /dev/null and b/steam/cached/gridview_placeholder_1.tga differ diff --git a/steam/cached/gridview_placeholder_2.tga b/steam/cached/gridview_placeholder_2.tga new file mode 100644 index 0000000..f2a6ef5 Binary files /dev/null and b/steam/cached/gridview_placeholder_2.tga differ diff --git a/steam/cached/gridview_placeholder_3.tga b/steam/cached/gridview_placeholder_3.tga new file mode 100644 index 0000000..d020f18 Binary files /dev/null and b/steam/cached/gridview_placeholder_3.tga differ diff --git a/steam/cached/gridview_shadow.tga b/steam/cached/gridview_shadow.tga new file mode 100644 index 0000000..35c39ee Binary files /dev/null and b/steam/cached/gridview_shadow.tga differ diff --git a/steam/cached/icon_cloud_conflict.tga b/steam/cached/icon_cloud_conflict.tga new file mode 100644 index 0000000..b48d49f Binary files /dev/null and b/steam/cached/icon_cloud_conflict.tga differ diff --git a/steam/cached/icon_cloud_disabled.tga b/steam/cached/icon_cloud_disabled.tga new file mode 100644 index 0000000..9a4c304 Binary files /dev/null and b/steam/cached/icon_cloud_disabled.tga differ diff --git a/steam/cached/icon_cloud_dunno.tga b/steam/cached/icon_cloud_dunno.tga new file mode 100644 index 0000000..53c75f3 Binary files /dev/null and b/steam/cached/icon_cloud_dunno.tga differ diff --git a/steam/cached/icon_cloud_enabled.tga b/steam/cached/icon_cloud_enabled.tga new file mode 100644 index 0000000..7f917d1 Binary files /dev/null and b/steam/cached/icon_cloud_enabled.tga differ diff --git a/steam/cached/icon_cloud_enabled_dark_bg.tga b/steam/cached/icon_cloud_enabled_dark_bg.tga new file mode 100644 index 0000000..11dd66a Binary files /dev/null and b/steam/cached/icon_cloud_enabled_dark_bg.tga differ diff --git a/steam/cached/icon_cloud_outofsync.tga b/steam/cached/icon_cloud_outofsync.tga new file mode 100644 index 0000000..78a3205 Binary files /dev/null and b/steam/cached/icon_cloud_outofsync.tga differ diff --git a/steam/cached/icon_cloud_synced.tga b/steam/cached/icon_cloud_synced.tga new file mode 100644 index 0000000..765535b Binary files /dev/null and b/steam/cached/icon_cloud_synced.tga differ diff --git a/steam/cached/icon_cloud_syncing.tga b/steam/cached/icon_cloud_syncing.tga new file mode 100644 index 0000000..1e031b8 Binary files /dev/null and b/steam/cached/icon_cloud_syncing.tga differ diff --git a/steam/cached/icon_game_frame.tga b/steam/cached/icon_game_frame.tga new file mode 100644 index 0000000..65e6141 Binary files /dev/null and b/steam/cached/icon_game_frame.tga differ diff --git a/steam/cached/listview_icon_mask.tga b/steam/cached/listview_icon_mask.tga new file mode 100644 index 0000000..1a8d851 Binary files /dev/null and b/steam/cached/listview_icon_mask.tga differ diff --git a/steam/cached/listview_logo_mask.tga b/steam/cached/listview_logo_mask.tga new file mode 100644 index 0000000..4f7c0f5 Binary files /dev/null and b/steam/cached/listview_logo_mask.tga differ diff --git a/steam/cached/listview_placeholder0.tga b/steam/cached/listview_placeholder0.tga new file mode 100644 index 0000000..f4ddc30 Binary files /dev/null and b/steam/cached/listview_placeholder0.tga differ diff --git a/steam/cached/listview_placeholder1.tga b/steam/cached/listview_placeholder1.tga new file mode 100644 index 0000000..7a095e1 Binary files /dev/null and b/steam/cached/listview_placeholder1.tga differ diff --git a/steam/cached/listview_placeholder2.tga b/steam/cached/listview_placeholder2.tga new file mode 100644 index 0000000..caaa578 Binary files /dev/null and b/steam/cached/listview_placeholder2.tga differ diff --git a/steam/cached/listview_placeholder3.tga b/steam/cached/listview_placeholder3.tga new file mode 100644 index 0000000..02429b4 Binary files /dev/null and b/steam/cached/listview_placeholder3.tga differ diff --git a/steam/cached/loggedinelsewherenotification.res b/steam/cached/loggedinelsewherenotification.res new file mode 100644 index 0000000..73019c2 --- /dev/null +++ b/steam/cached/loggedinelsewherenotification.res @@ -0,0 +1,87 @@ +"steam/cached/LoggedInElsewhereNotification.res" +{ + "LoggedInElsewhere" + { + "ControlName" "CLoggedInElsewhereNotification" + "fieldName" "LoggedInElsewhere" + "xpos" "0" + "ypos" "0" + "wide" "240" + "tall" "100" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + style="Notification" + } + "ImageAvatar" + { + "ControlName" "ImagePanel" + "fieldName" "ImageAvatar" + "xpos" "10" + "ypos" "20" + "wide" "52" + "tall" "32" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "gradientVertical" "0" + "scaleImage" "1" + "image" "resource/steam_logo" + } + "LabelMessage" + { + "ControlName" "Label" + "fieldName" "LabelMessage" + "xpos" "70" + "ypos" "10" + "wide" "166" + "tall" "70" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_AccountAlreadyLoggedInNeedPassword" + "textAlignment" "north-west" + "wrap" "1" + "font" FriendsSmall + "textcolor" "NotificationBodyText" + } + "DarkenedRegion" + { + "controlname" "imagepanel" + "fieldname" "DarkenedRegion" + "xpos" "1" + "ypos" "74" + "wide" "238" + "tall" "23" + "fillcolor" "Black" + "zpos" "-1" + } + "LabelHotkey" + { + "ControlName" "Label" + "fieldName" "LabelHotkey" + "xpos" "0" + "ypos" "80" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_Splash_Hotkey" + "textAlignment" "center" + "wrap" "0" + style="label" + } +} diff --git a/steam/cached/logo.tga b/steam/cached/logo.tga new file mode 100644 index 0000000..19218f2 Binary files /dev/null and b/steam/cached/logo.tga differ diff --git a/steam/cached/managedeviceauthdialog.res b/steam/cached/managedeviceauthdialog.res new file mode 100644 index 0000000..1504ba4 --- /dev/null +++ b/steam/cached/managedeviceauthdialog.res @@ -0,0 +1,135 @@ +"steam/cached/managedeviceauthdialog.res" +{ + "ManageDeviceAuthDialog" + { + "ControlName" "CManageDeviceAuthDialog" + "fieldName" "ManageDeviceAuthDialog" + "xpos" "794" + "ypos" "447" + "wide" "512" + "tall" "520" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#SteamUI_ManageDeviceAuth_Title" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "10" + "ypos" "36" + "wide" "480" + "tall" "32" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_ManageDeviceAuth_Text" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + + "LocalDeviceTokensList" + { + "ControlName" "ListPanel" + "fieldName" "LocalDeviceTokensList" + "xpos" "10" + "ypos" "84" + "wide" "492" + "tall" "166" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + + "DeviceButton" + { + "ControlName" "Button" + "fieldName" "DeviceButton" + "labelText" "#SteamUI_ManageDeviceAuth_Authorize" + "xpos" "10" + "ypos" "265" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "command" "DeviceButtonPressed" + } + + "AuthorizedBorrowersList" + { + "ControlName" "ListPanel" + "fieldName" "AuthorizedBorrowersList" + "xpos" "10" + "ypos" "300" + "wide" "492" + "tall" "166" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + + "BorrowerButton" + { + "ControlName" "Button" + "fieldName" "BorrowerButton" + "labelText" "#SteamUI_ManageDeviceAuth_BorrowerButton" + "xpos" "10" + "ypos" "480" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "command" "BorrowerButtonPressed" + } + + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "408" + "ypos" "480" + "wide" "92" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } +} diff --git a/steam/cached/movelibrarydialog.res b/steam/cached/movelibrarydialog.res new file mode 100644 index 0000000..998e149 --- /dev/null +++ b/steam/cached/movelibrarydialog.res @@ -0,0 +1,150 @@ +"steam/cached/movelibrarydialog.res" +{ + "MoveLibraryFolderDialog" + { + "ControlName" "CMoveLibraryFolderDialog" + "fieldName" "MoveLibraryFolderDialog" + "wide" "452" + "tall" "200" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + "title" "#Steam_MoveAppFolder_Title" + } + + "MoveFolderInfo" + { + "ControlName" "Label" + "fieldName" "MoveFolderInfoLabel" + "xpos" "10" + "ypos" "32" + "wide" "440" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_MoveAppFolder_Info" + "textAlignment" "west" + "wrap" "0" + } + + "InstallFolderLabel" + { + "ControlName" "Label" + "fieldName" "InstallFolderLabel" + "xpos" "10" + "ypos" "52" + "wide" "440" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_MoveAppFolder_SelectFolder" + "textAlignment" "west" + "wrap" "0" + } + + "InstallFolderCombo" + { + "ControlName" "ComboBox" + "fieldName" "InstallFolderCombo" + "xpos" "10" + "ypos" "84" + "wide" "432" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "west" + "wrap" "0" + } + + "ProgressBar" + { + "ControlName" "ProgressBar" + "fieldName" "ProgressBar" + "xpos" "10" + "ypos" "120" + "wide" "432" + "tall" "24" + "AutoResize" "1" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "progress" "1.000000" + } + + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "10" + "ypos" "120" + "wide" "432" + "tall" "24" + "AutoResize" "1" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "progress" "1.000000" + } + + "MoveButton" + { + "ControlName" "Button" + "fieldName" "MoveButton" + "xpos" "10" + "ypos" "160" + "wide" "128" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#Steam_MoveAppFolder_Move" + "textAlignment" "west" + "wrap" "0" + "Command" "Move" + "Default" "0" + } + + "CloseButton" + { + "ControlName" "Button" + "fieldName" "CloseButton" + "xpos" "340" + "ypos" "160" + "wide" "96" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#Steam_MoveAppFolder_Close" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } +} + \ No newline at end of file diff --git a/steam/cached/needworkshoplegalagreementacceptance.res b/steam/cached/needworkshoplegalagreementacceptance.res new file mode 100644 index 0000000..cabf6ae --- /dev/null +++ b/steam/cached/needworkshoplegalagreementacceptance.res @@ -0,0 +1,58 @@ +"public/NeedWorkshopLegalAgreementAcceptance.res" +{ + "NeedWorkshopLegalAgreementAcceptanceDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "NeedWorkshopLegalAgreementAcceptanceDialog" + "xpos" "277" + "ypos" "250" + "wide" "400" + "tall" "208" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Overlay_Publish_NeedWorkshopLegalAgreementAcceptance_Title" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "288" + "ypos" "166" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_Publish_NeedWorkshopLegalAgreementAcceptance_ViewItem" + "textAlignment" "west" + "wrap" "0" + "Default" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "40" + "ypos" "80" + "wide" "300" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Overlay_Publish_NeedWorkshopLegalAgreementAcceptance_Desc" + "textAlignment" "north-west" + "font" "HeadlineLarge" + "wrap" "1" + } +} diff --git a/steam/cached/nobigpicture.res b/steam/cached/nobigpicture.res new file mode 100644 index 0000000..42f0236 --- /dev/null +++ b/steam/cached/nobigpicture.res @@ -0,0 +1,78 @@ +"public/NoBigPictureDialog.res" +{ + "NoBigPictureDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "NoBigPictureDialog" + "xpos" "1080" + "ypos" "631" + "wide" "400" + "tall" "208" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#NoBigPicture_Title" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "288" + "ypos" "166" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "40" + "ypos" "80" + "wide" "300" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#NoBigPicture_Explanation" + "textAlignment" "north-west" + "font" "HeadlineLarge" + "wrap" "1" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "40" + "ypos" "105" + "wide" "280" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#NoBigPicture_Anchor" + "textAlignment" "west" + "wrap" "0" + "URLText" "https://support.steampowered.com/kb_article.php?ref=3191-QDFX-7921" + } +} diff --git a/steam/cached/nobigpicturevista.res b/steam/cached/nobigpicturevista.res new file mode 100644 index 0000000..a71d13c --- /dev/null +++ b/steam/cached/nobigpicturevista.res @@ -0,0 +1,78 @@ +"public/NoBigPictureVistaDialog.res" +{ + "NoBigPictureVistaDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "NoBigPictureVistaDialog" + "xpos" "1080" + "ypos" "631" + "wide" "400" + "tall" "258" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#NoBigPictureVista_Title" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "288" + "ypos" "216" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "40" + "ypos" "80" + "wide" "300" + "tall" "60" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#NoBigPictureVista_Explanation" + "textAlignment" "north-west" + "font" "HeadlineLarge" + "wrap" "1" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "40" + "ypos" "155" + "wide" "280" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#NoBigPicture_Anchor" + "textAlignment" "west" + "wrap" "0" + "URLText" "https://support.steampowered.com/kb_article.php?ref=3191-QDFX-7921" + } +} diff --git a/steam/cached/nobigpicturewin8amd.res b/steam/cached/nobigpicturewin8amd.res new file mode 100644 index 0000000..405e1bf --- /dev/null +++ b/steam/cached/nobigpicturewin8amd.res @@ -0,0 +1,78 @@ +"public/NoBigPictureVistaDialog.res" +{ + "NoBigPictureWin8AMDDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "NoBigPictureWin8AMDDialog" + "xpos" "1080" + "ypos" "631" + "wide" "400" + "tall" "278" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#NoBigPictureWin8AMD_Title" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "288" + "ypos" "236" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#vgui_close" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "1" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "40" + "ypos" "80" + "wide" "300" + "tall" "80" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#NoBigPictureWin8AMD_Explanation" + "textAlignment" "north-west" + "font" "HeadlineLarge" + "wrap" "1" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "40" + "ypos" "175" + "wide" "280" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#NoBigPicture_Anchor" + "textAlignment" "west" + "wrap" "0" + "URLText" "https://support.steampowered.com/kb_article.php?ref=3191-QDFX-7921" + } +} diff --git a/steam/cached/publishcloudfilecompletionpage.res b/steam/cached/publishcloudfilecompletionpage.res new file mode 100644 index 0000000..d19db19 --- /dev/null +++ b/steam/cached/publishcloudfilecompletionpage.res @@ -0,0 +1,56 @@ +"steam/cached/PublishCloudFileCompletionPage.res" +{ + controls + { + PublishCloudFileCompletionPage + { + "ControlName" "CPublishCloudFileCompletionPage" + } + + LabelProgress + { + "ControlName" "Label" + "labelText" "#Steam_PublishFile_Progress" + "wrap" "1" + } + + LabelSuccess + { + "ControlName" "Label" + "labelText" "#Steam_PublishFile_Success" + "wrap" "1" + "visible" "0" + } + + LabelSuccess2 + { + "ControlName" "Label" + "labelText" "#Steam_PublishFile_Success" + "wrap" "1" + "visible" "0" + style="LabelSuccess2Style" + } + + LabelFailed + { + "ControlName" "Label" + "labelText" "#Steam_PublishFile_Failed" + "visible" "0" + } + } + + styles + { + LabelSuccess2Style + { + padding-top=10 + } + } + + layout + { + place { control="LabelProgress" x=20 y=20 margin-right=20 width=max } + place { control="LabelSuccess,LabelSuccess2" x=20 y=20 margin-right=20 width=max dir=down } + place { control="LabelFailed" x=20 y=20 margin-right=20 width=max } + } +} diff --git a/steam/cached/publishcloudfilestartpage.res b/steam/cached/publishcloudfilestartpage.res new file mode 100644 index 0000000..6a2befe --- /dev/null +++ b/steam/cached/publishcloudfilestartpage.res @@ -0,0 +1,86 @@ +"steam/cached/PublishCloudFileStartPage.res" +{ + controls + { + PublishCloudFileStartPage + { + "ControlName" "CPublishCloudFileStartPage" + } + + Label1 + { + "ControlName" "Label" + "labelText" "#Steam_PublishFile_Description" + } + + Label2 + { + "ControlName" "Label" + "labelText" "#Steam_PublishFile_TitleLabel" + style="TextEntryLabelStyle" + } + + TitleTextEntry + { + "ControlName" "TextEntry" + "editable" "1" + "maxchars" "128" + "NumericInputOnly" "0" + "unicode" "0" + } + + Label3 + { + "ControlName" "Label" + "labelText" "#Steam_PublishFile_DescriptionLabel" + style="TextEntryLabelStyle" + } + + DescriptionLabel + { + "ControlName" "TextEntry" + "editable" "1" + "maxchars" "256" + "NumericInputOnly" "0" + "unicode" "0" + } + + TargetAppLabel + { + "ControlName" "Label" + "labelText" "#Steam_PublishFile_TargetAppLabel" + style="TextEntryLabelStyle" + } + + TargetAppCombo + { + "ControlName" "ComboBox" + "AutoResize" "0" + "PinCorner" "0" + "wide" "400" + "visible" "1" + "enabled" "1" + "editable" "0" + "maxchars" "-1" + "NumericInputOnly" "0" + "unicode" "0" + } + } + + styles + { + TextEntryLabelStyle + { + minimum-width=100 + } + } + + layout + { + place { control="Label1" x=20 y=0 width=320 height=48 dir=right } + place { control="TargetAppLabel,TargetAppCombo" x=20 y=40 margin-right=10 height=24 dir=right } + place { control="Label2,TitleTextEntry" x=20 y=75 margin-right=10 height=24 width=max dir=right } + place { control="Label3" x=20 y=110 height=24 width=max dir=right } + place { control="DescriptionLabel" x=120 margin-right=10 y=110 height=96 width=max dir=right } + } +} diff --git a/steam/cached/receipt_cdkey_mustloginps3.res b/steam/cached/receipt_cdkey_mustloginps3.res new file mode 100644 index 0000000..f47ad2d --- /dev/null +++ b/steam/cached/receipt_cdkey_mustloginps3.res @@ -0,0 +1,43 @@ +"steam/cached/Receipt_CDKey_MustLoginPS3.res" +{ + "Details" + { + "ControlName" "Label" + "fieldName" "Details" + "xpos" "20" + "ypos" "52" + "wide" "360" + "tall" "300" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_SubscriptionCancelled_CDKey_MustLoginPS3" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + "headline" + { + "ControlName" "Label" + "fieldName" "Headline" + "xpos" "20" + "ypos" "20" + "wide" "344" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_SubscriptionCancelled_CDKey_MustLoginPS3_Headline" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "1" + "font" "uiHeadline" + "wrap" "0" + } +} + \ No newline at end of file diff --git a/steam/cached/regionrestrictiondialog.res b/steam/cached/regionrestrictiondialog.res new file mode 100644 index 0000000..6482e1b --- /dev/null +++ b/steam/cached/regionrestrictiondialog.res @@ -0,0 +1,77 @@ +"steam/cached/regionrestrictiondialog.res" +{ + "RegionRestrictionDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "RegionRestrictionDialog" + "xpos" "608" + "ypos" "466" + "wide" "384" + "tall" "240" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_RegionRestricted_Title" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "274" + "ypos" "190" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#vgui_ok" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "12" + "ypos" "54" + "wide" "340" + "tall" "102" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RegionRestrictedPurchase_Info" + "textAlignment" "north-west" + "wrap" "1" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "12" + "ypos" "160" + "wide" "356" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RegionRestricted_SupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "#Steam_RegionRestricted_SupportURL" + } +} diff --git a/steam/cached/regionrestrictiondialog_activation.res b/steam/cached/regionrestrictiondialog_activation.res new file mode 100644 index 0000000..d383d7b --- /dev/null +++ b/steam/cached/regionrestrictiondialog_activation.res @@ -0,0 +1,77 @@ +"steam/cached/regionrestrictiondialog_activation.res" +{ + "RegionRestrictionDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "RegionRestrictionDialog" + "xpos" "608" + "ypos" "466" + "wide" "384" + "tall" "240" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_RegionRestrictedCode_Title" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "274" + "ypos" "190" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#vgui_ok" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "12" + "ypos" "54" + "wide" "340" + "tall" "102" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RegionRestrictedCode_Info" + "textAlignment" "north-west" + "wrap" "1" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "12" + "ypos" "160" + "wide" "356" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RegionRestricted_SupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "#Steam_RegionRestrictedCode_SupportURL" + } +} diff --git a/steam/cached/regionrestrictiondialog_purchase.res b/steam/cached/regionrestrictiondialog_purchase.res new file mode 100644 index 0000000..fd66e74 --- /dev/null +++ b/steam/cached/regionrestrictiondialog_purchase.res @@ -0,0 +1,77 @@ +"steam/cached/regionrestrictiondialog.res" +{ + "RegionRestrictionDialog" + { + "ControlName" "SimpleDialog" + "fieldName" "RegionRestrictionDialog" + "xpos" "608" + "ypos" "466" + "wide" "384" + "tall" "240" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_RegionRestricted_Title" + } + "Button1" + { + "ControlName" "Button" + "fieldName" "Button1" + "xpos" "274" + "ypos" "190" + "wide" "84" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#vgui_ok" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "12" + "ypos" "54" + "wide" "340" + "tall" "102" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RegionRestricted_Info" + "textAlignment" "north-west" + "wrap" "1" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "12" + "ypos" "160" + "wide" "356" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RegionRestricted_SupportLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "#Steam_RegionRestrictedPurchase_SupportURL" + } +} diff --git a/steam/cached/registersubintro.res b/steam/cached/registersubintro.res new file mode 100644 index 0000000..a3a218f Binary files /dev/null and b/steam/cached/registersubintro.res differ diff --git a/steam/cached/registersublockeddown.res b/steam/cached/registersublockeddown.res new file mode 100644 index 0000000..af0cc25 Binary files /dev/null and b/steam/cached/registersublockeddown.res differ diff --git a/steam/cached/repairlibrarydialog.res b/steam/cached/repairlibrarydialog.res new file mode 100644 index 0000000..fc049b9 --- /dev/null +++ b/steam/cached/repairlibrarydialog.res @@ -0,0 +1,52 @@ +"steam/cached/repairlibrarydialog.res" +{ + "RepairLibraryFolderDialog" + { + "ControlName" "CRepairLibraryFolderDialog" + "fieldName" "RepairLibraryFolderDialog" + "wide" "320" + "tall" "72" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + "title" "#SteamUI_ContentMgr_Repair_Title" + } + + "RepairInfoLabel" + { + "ControlName" "Label" + "fieldName" "RepairInfoLabel" + "xpos" "12" + "ypos" "36" + "wide" "300" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#SteamUI_ContentMgr_Repair_Starting" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + "Throbber" + { + "ControlName" "ThrobberImagePanel" + "fieldName" "Throbber" + "xpos" "280" + "ypos" "36" + "wide" "20" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} + \ No newline at end of file diff --git a/steam/cached/setjumplistoptions.res b/steam/cached/setjumplistoptions.res new file mode 100644 index 0000000..9cf8f6a --- /dev/null +++ b/steam/cached/setjumplistoptions.res @@ -0,0 +1,424 @@ +"steam/cached/SetJumplistOptions.res" +{ + "SetJumpListOptions" + { + "ControlName" "CSetJumplistOptions" + "fieldName" "SetJumpListOptions" + "xpos" "494" + "ypos" "447" + "wide" "300" + "tall" "590" + "AutoResize" "0" + "PinCorner" "0" + "settitlebarvisible" "1" + "title" "#Steam_SetJumplistOptions" + } + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "20" + "ypos" "35" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_ShowOnlineStatusOptions" + "textAlignment" "north-west" + "wrap" "1" + } + "ShowOnlineStatus" + { + "ControlName" "CheckButton" + "fieldName" "ShowOnlineStatus" + "xpos" "30" + "ypos" "55" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "labelText" "#Friends_online" + "textAlignment" "west" + "wrap" "0" + } + "ShowAwayStatus" + { + "ControlName" "CheckButton" + "fieldName" "ShowAwayStatus" + "xpos" "30" + "ypos" "80" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Friends_away" + "textAlignment" "west" + "wrap" "0" + } + "ShowBusyStatus" + { + "ControlName" "CheckButton" + "fieldName" "ShowBusyStatus" + "xpos" "30" + "ypos" "105" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#Friends_busy" + "textAlignment" "west" + "wrap" "0" + } + "ShowAppearOfflineStatus" + { + "ControlName" "CheckButton" + "fieldName" "ShowAppearOfflineStatus" + "xpos" "30" + "ypos" "130" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "4" + "paintbackground" "1" + "labelText" "#Friends_offline" + "textAlignment" "west" + "wrap" "0" + } + "Divider1" + { + "ControlName" "Divider" + "fieldName" "Divider1" + "xpos" "20" + "ypos" "163" + "wide" "268" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "Label2" + { + "ControlName" "Label" + "fieldName" "Label2" + "xpos" "20" + "ypos" "175" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "appearance" "LabelDull" + "labelText" "#Steam_ShowDestinationOptions" + "textAlignment" "north-west" + "wrap" "1" + } + "ShowStore" + { + "ControlName" "CheckButton" + "fieldName" "ShowStore" + "xpos" "30" + "ypos" "195" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "5" + "paintbackground" "1" + "labelText" "#app_task_store" + "textAlignment" "west" + "wrap" "0" + } + "ShowMyGames" + { + "ControlName" "CheckButton" + "fieldName" "ShowMyGames" + "xpos" "30" + "ypos" "210" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "7" + "paintbackground" "1" + "labelText" "#app_task_games" + "textAlignment" "west" + "wrap" "0" + } + "ShowCommunity" + { + "ControlName" "CheckButton" + "fieldName" "ShowCommunity" + "xpos" "30" + "ypos" "235" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "6" + "paintbackground" "1" + "labelText" "#app_task_community" + "textAlignment" "west" + "wrap" "0" + } + "ShowFriendActivity" + { + "ControlName" "CheckButton" + "fieldName" "ShowFriendActivity" + "xpos" "30" + "ypos" "220" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "6" + "paintbackground" "1" + "labelText" "#app_task_friend_activity" + "textAlignment" "west" + "wrap" "0" + } + + "ShowServers" + { + "ControlName" "CheckButton" + "fieldName" "ShowServers" + "xpos" "30" + "ypos" "270" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "8" + "paintbackground" "1" + "labelText" "#app_task_servers" + "textAlignment" "west" + "wrap" "0" + } + + "ShowFriends" + { + "ControlName" "CheckButton" + "fieldName" "ShowFriends" + "xpos" "30" + "ypos" "370" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "11" + "paintbackground" "1" + "labelText" "#app_task_friends" + "textAlignment" "west" + "wrap" "0" + } + "ShowMusicPlayer" + { + "ControlName" "CheckButton" + "fieldName" "ShowMusicPlayer" + "xpos" "30" + "ypos" "345" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "12" + "paintbackground" "1" + "labelText" "#app_task_MusicPlayer" + "textAlignment" "west" + "wrap" "0" + } + "ShowScreenshots" + { + "ControlName" "CheckButton" + "fieldName" "ShowScreenshots" + "xpos" "30" + "ypos" "420" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "12" + "paintbackground" "1" + "labelText" "#app_task_screenshots" + "textAlignment" "west" + "wrap" "0" + } + + "ShowSettings" + { + "ControlName" "CheckButton" + "fieldName" "ShowSettings" + "xpos" "30" + "ypos" "320" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "10" + "paintbackground" "1" + "labelText" "#app_settings" + "textAlignment" "west" + "wrap" "0" + } + + "ShowBigPicture" + { + "ControlName" "CheckButton" + "fieldName" "ShowBigPicture" + "xpos" "30" + "ypos" "345" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "12" + "paintbackground" "1" + "labelText" "#app_task_BigPicture" + "textAlignment" "west" + "wrap" "0" + } + + "ShowVR" + { + "ControlName" "CheckButton" + "fieldName" "ShowVR" + "xpos" "30" + "ypos" "395" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "13" + "paintbackground" "1" + "labelText" "#app_task_steamvr" + "textAlignment" "west" + "wrap" "0" + } + "ShowExit" + { + "ControlName" "CheckButton" + "fieldName" "ShowExit" + "xpos" "30" + "ypos" "445" + "wide" "475" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "14" + "paintbackground" "1" + "labelText" "#app_task_exit_steam" + "textAlignment" "west" + "wrap" "0" + } + + "Divider2" + { + "ControlName" "Divider" + "fieldName" "Divider2" + "xpos" "20" + "ypos" "540" + "wide" "268" + "tall" "2" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "130" + "ypos" "553" + "wide" "75" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "13" + "paintbackground" "1" + "labelText" "#vgui_ok" + "textAlignment" "west" + "wrap" "0" + "Command" "OK" + "Default" "1" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "215" + "ypos" "553" + "wide" "75" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "14" + "paintbackground" "1" + "labelText" "#vgui_cancel" + "textAlignment" "west" + "wrap" "0" + "Command" "Close" + "Default" "0" + } + + layout + { + place { controls="ShowStore,ShowMyGames,ShowCommunity,ShowFriendActivity,ShowFriends,ShowMusicPlayer,ShowScreenshots,ShowServers,ShowSettings,ShowBigPicture,ShowVR, ShowExit" dir=down height=28 x=30 y=195 } + + } +} diff --git a/steam/cached/soundsystemselect.res b/steam/cached/soundsystemselect.res new file mode 100644 index 0000000..d5fd09d --- /dev/null +++ b/steam/cached/soundsystemselect.res @@ -0,0 +1,92 @@ +"steam/cached/SoundSystemSelect.res" +{ + "SoundSystemSelect" + { + "ControlName" "CSoundSystemSelect" + "fieldName" "SoundSystemSelect" + "xpos" "0" + "ypos" "0" + "wide" "400" + "tall" "310" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "title" "#FriendsUI_SoundSystemTitle" + } + "SelectLabel" + { + "ControlName" "Label" + "fieldName" "SelectLabel" + "xpos" "24" + "ypos" "30" + "wide" "300" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#FriendsUI_SelectSoundSystem" + "textAlignment" "west" + "wrap" "0" + } + "OKButton" + { + "ControlName" "Button" + "fieldName" "OKButton" + "xpos" "24" + "ypos" "270" + "wide" "110" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#vgui_OK" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "command" "Set" + } + "CancelButton" + { + "ControlName" "Button" + "fieldName" "CancelButton" + "xpos" "140" + "ypos" "270" + "wide" "110" + "tall" "24" + "AutoResize" "0" + "PinCorner" "3" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "labelText" "#vgui_Cancel" + "textAlignment" "west" + "wrap" "0" + "Default" "0" + "command" "Close" + } + "SoundOptions" + { + "ControlName" "ListPanel" + "fieldName" "SoundOptions" + "xpos" "24" + "ypos" "60" + "wide" "351" + "tall" "200" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } +} \ No newline at end of file diff --git a/steam/cached/steamrootdialog_small.res b/steam/cached/steamrootdialog_small.res new file mode 100644 index 0000000..2b6254f --- /dev/null +++ b/steam/cached/steamrootdialog_small.res @@ -0,0 +1,109 @@ +"steam/cached/steamrootdialog_small.res" +{ + "SteamRootDialog" + { + "ControlName" "CSteamRootDialog" + "fieldName" "SteamRootDialog" + "xpos" "1039" + "ypos" "396" + "wide" "640" + "tall" "690" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "settitlebarvisible" "1" + "title" "#Steam_Root_Title" + } + "PropertySheet" + { + "ControlName" "PropertySheet" + "fieldName" "PropertySheet" + "xpos" "8" + "ypos" "72" + "wide" "624" + "tall" "553" + "AutoResize" "3" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + } + "MenuBar" + { + "ControlName" "MenuBar" + "fieldName" "MenuBar" + "xpos" "2" + "ypos" "20" + "wide" "593" + "tall" "25" + "AutoResize" "1" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "6" + "paintbackground" "1" + } + "ButtonSupport" + { + "ControlName" "Button" + "fieldName" "ButtonSupport" + "xpos" "500" + "ypos" "632" + "wide" "72" + "tall" "44" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "icon_button_support" + "labelText" "#Steam_Support_Upper" + "textAlignment" "south" + "font" "defaultsmall" + "wrap" "0" + "Default" "0" + "selected" "0" + } + "GamesPage" + { + "ControlName" "CGamesPage" + "fieldName" "GamesPage" + "xpos" "1" + "ypos" "68" + "wide" "638" + "tall" "596" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "ButtonMini" + { + "ControlName" "Button" + "fieldName" "ButtonMini" + "xpos" "600" + "ypos" "35" + "wide" "35" + "tall" "18" + "AutoResize" "0" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "borderset" "icon_button_MiniMeExpand" + "labelText" "Button" + "textAlignment" "west" + "wrap" "0" + "Command" "togglemini" + "Default" "0" + "selected" "0" + } +} diff --git a/steam/cached/steamshutdowndialog.res b/steam/cached/steamshutdowndialog.res new file mode 100644 index 0000000..ef65d0d --- /dev/null +++ b/steam/cached/steamshutdowndialog.res @@ -0,0 +1,93 @@ +"steam/cached/steamshutdowndialog.res" +{ + "steamshutdowndialog" + { + "ControlName" "CSteamShutdownDialog" + "fieldName" "SteamShutdownDialog" + "wide" "320" + "tall" "128" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + "title" "#Steam_Shutdown_Dialog_Title" + } + + "InfoLabel" + { + "ControlName" "Label" + "fieldName" "InfoLabel" + "xpos" "20" + "ypos" "42" + "wide" "260" + "tall" "32" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Steam_Shutdown_Dialog_Text" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + "Throbber" + { + "ControlName" "ThrobberImagePanel" + "fieldName" "Throbber" + "xpos" "280" + "ypos" "36" + "wide" "20" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + + "ForceQuitButton" + { + "ControlName" "Button" + "fieldName" "ForceQuitButton" + "xpos" "40" + "ypos" "84" + "wide" "128" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#Steam_Shutdown_ForceQuit" + "textAlignment" "west" + "wrap" "0" + "Command" "ForceQuit" + "Default" "0" + } + "HideDialogButton" + { + "ControlName" "Button" + "fieldName" "HideDialogButton" + "xpos" "180" + "ypos" "84" + "wide" "128" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "labelText" "#vgui_OK" + "textAlignment" "west" + "wrap" "0" + "Command" "HideDialog" + "Default" "0" + } +} + \ No newline at end of file diff --git a/steam/cached/storepage.res b/steam/cached/storepage.res new file mode 100644 index 0000000..261ad10 --- /dev/null +++ b/steam/cached/storepage.res @@ -0,0 +1,194 @@ +"steam/cached/storepage.res" +{ + "StorePage" + { + "ControlName" "CStorePage" + "fieldName" "StorePage" + "xpos" "0" + "ypos" "28" + "wide" "897" + "tall" "815" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "HTML" + { + "ControlName" "HTML" + "fieldName" "HTML" + "xpos" "0" + "ypos" "43" + "wide" "895" + "tall" "772" + "AutoResize" "3" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } + "PageLoadThrobber" + { + "ControlName" "ImagePanel" + "fieldName" "PageLoadThrobber" + "xpos" "864" + "ypos" "10" + "wide" "20" + "tall" "20" + "AutoResize" "0" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "image" "graphics/rampDown_4" + "gradientVertical" "0" + "scaleImage" "0" + } + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "12" + "ypos" "771" + "wide" "512" + "tall" "24" + "AutoResize" "0" + "PinCorner" "2" + "visible" "0" + "enabled" "0" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RegisterProductCode" + "textAlignment" "west" + "wrap" "0" + "URLText" "steam://open/registerproduct/" + } + "Back" + { + "ControlName" "Button" + "fieldName" "Back" + "xpos" "12" + "ypos" "14" + "wide" "16" + "tall" "16" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "borderset" "icon_button_back" + "textAlignment" "west" + "wrap" "0" + "Command" "StoreBack" + "Default" "0" + "selected" "0" + } + "Forward" + { + "ControlName" "Button" + "fieldName" "Forward" + "xpos" "42" + "ypos" "14" + "wide" "16" + "tall" "16" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "borderset" "icon_button_forward" + "textAlignment" "west" + "wrap" "0" + "Command" "StoreForward" + "Default" "0" + "selected" "0" + } + "Home" + { + "ControlName" "Button" + "fieldName" "Home" + "xpos" "132" + "ypos" "14" + "wide" "16" + "tall" "16" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "paintbackground" "1" + "borderset" "icon_button_home" + "textAlignment" "north-west" + "wrap" "0" + "Command" "StoreHome" + "Default" "0" + "selected" "0" + } + "Reload" + { + "ControlName" "Button" + "fieldName" "Reload" + "xpos" "72" + "ypos" "14" + "wide" "16" + "tall" "16" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "paintbackground" "1" + "borderset" "icon_button_reload" + "textAlignment" "north-west" + "wrap" "0" + "Command" "Refresh" + "Default" "0" + "selected" "0" + } + "Stop" + { + "ControlName" "Button" + "fieldName" "Stop" + "xpos" "102" + "ypos" "14" + "wide" "16" + "tall" "16" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "3" + "paintbackground" "1" + "borderset" "icon_button_stop" + "textAlignment" "west" + "wrap" "0" + "Command" "HTMLStop" + "Default" "0" + "selected" "0" + } + "Loading" + { + "ControlName" "Label" + "fieldName" "Loading" + "xpos" "341" + "ypos" "221" + "zpos" "-1" + "wide" "210" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_WebBrowser_Loading" + "textAlignment" "west" + "wrap" "0" + } +} diff --git a/steam/cached/subchangepasswordenterpassword.res b/steam/cached/subchangepasswordenterpassword.res new file mode 100644 index 0000000..7f30eab --- /dev/null +++ b/steam/cached/subchangepasswordenterpassword.res @@ -0,0 +1,138 @@ +"steam/cached/SubChangePasswordEnterPassword.res" +{ + "SubChangePasswordEnterPassword" + { + "ControlName" "CSubChangePasswordEnterPassword" + "fieldName" "SubChangePasswordEnterPassword" + "xpos" "5" + "ypos" "29" + "wide" "390" + "tall" "251" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "PasswordEntry" + { + "ControlName" "TextEntry" + "fieldName" "PasswordEntry" + "xpos" "24" + "ypos" "52" + "wide" "247" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "textHidden" "1" + "editable" "1" + "maxchars" "32" + "NumericInputOnly" "0" + "unicode" "0" + style="TextEntryLarge" + } + "PasswordEntryLabel" + { + "ControlName" "Label" + "fieldName" "PasswordEntryLabel" + "xpos" "24" + "ypos" "28" + "wide" "240" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ChangeCred_EnterPassword" + "textAlignment" "west" + "associate" "PasswordEntry" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + } + + "EmailProgress" + { + "ControlName" "Label" + "fieldName" "EmailProgress" + "xpos" "24" + "ypos" "120" + "wide" "340" + "tall" "72" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ChangeCred_EmailCodeForPassword" + "textAlignment" "west" + "wrap" "1" + } + + "EmailAddress" + { + "ControlName" "Label" + "fieldName" "EmailAddress" + "xpos" "24" + "ypos" "160" + "wide" "340" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "textAlignment" "west" + "brighttext" "1" + "wrap" "1" + } + + "ForgotPasswordURL" + { + "ControlName" "URLLabel" + "fieldName" "ForgotPasswordURL" + "labelText" "#Steam_ChangeCred_ForgotPassword" + "URLText" "Steam://url/HelpChangePasswordForgotPassword/" + "xpos" "24" + "ypos" "200" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "east" + "wrap" "1" + } + + "LostEmailURL" + { + "ControlName" "URLLabel" + "fieldName" "LostEmailURL" + "labelText" "#Steam_ChangeCred_LostEmail" + "URLText" "Steam://url/HelpChangePasswordLostEmail" + "xpos" "24" + "ypos" "216" + "wide" "240" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "textAlignment" "east" + "wrap" "1" + } + + +} + \ No newline at end of file diff --git a/steam/cached/subchangepasswordintro.res b/steam/cached/subchangepasswordintro.res new file mode 100644 index 0000000..58f4d63 --- /dev/null +++ b/steam/cached/subchangepasswordintro.res @@ -0,0 +1,24 @@ +"steam/cached/SubChangePasswordintro.res" +{ + + "Label1" + { + "ControlName" "Label" + "fieldName" "Label1" + "xpos" "24" + "ypos" "32" + "wide" "330" + "tall" "200" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#Steam_ForceChangePassword" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } +} + \ No newline at end of file diff --git a/steam/cached/submanagesecuritychoosename.res b/steam/cached/submanagesecuritychoosename.res new file mode 100644 index 0000000..955c188 --- /dev/null +++ b/steam/cached/submanagesecuritychoosename.res @@ -0,0 +1,87 @@ +"steam/cached/sublockedaccountintro.res" +{ + "sublockedaccountintro" + { + "ControlName" "sublockedaccountintro" + "fieldName" "sublockedaccountintro" + "xpos" "5" + "ypos" "20" + "wide" "320" + "tall" "520" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "ManageSecurityDescription" + { + "ControlName" "Label" + "fieldName" "ManageSecurityDescription" + "xpos" "24" + "ypos" "24" + "wide" "320" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_ManageSecurity_ChooseName" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "MachineName" + { + "ControlName" "TextEntry" + "fieldName" "MachineName" + "xpos" "20" + "ypos" "80" + "wide" "300" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "2" + "textHidden" "0" + "editable" "1" + "maxchars" "64" + "NumericInputOnly" "0" + "unicode" "0" + "zpos" "3" + } + "MachineNameLabel" + { + "ControlName" "Label" + "fieldName" "MachineNameLabel" + "xpos" "160" + "ypos" "80" + "wide" "120" + "tall" "24" + "AutoResize" "1" + "PinCorner" "1" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_RecoverLocked_MachineNameLabel" + "textAlignment" "east" + "wrap" "0" + "zpos" "2" + "style" "friendlyname" + } + styles + { + friendlyname + { + font-size=14 + "font-style" "italic" + } + } +} + \ No newline at end of file diff --git a/steam/cached/submanagesecuritydone.res b/steam/cached/submanagesecuritydone.res new file mode 100644 index 0000000..40a5534 --- /dev/null +++ b/steam/cached/submanagesecuritydone.res @@ -0,0 +1,77 @@ +"steam/cached/submanagesecuritydone.res" +{ + "submanagesecuritydone" + { + "ControlName" "submanagesecuritydone" + "fieldName" "submanagesecuritydone" + "xpos" "5" + "ypos" "29" + "wide" "360" + "tall" "220" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "SecurityUpdateResult" + { + "ControlName" "Label" + "fieldName" "SecurityUpdateResult" + "xpos" "24" + "ypos" "24" + "wide" "320" + "tall" "72" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_ManageSecurity_DoNothing" + "textAlignment" "south-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "SecurityUpdateResult2" + { + "ControlName" "Label" + "fieldName" "SecurityUpdateResult2" + "xpos" "24" + "ypos" "84" + "wide" "320" + "tall" "72" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_ManageSecurity_DoNothing2" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "SupportURLLabel" + { + "ControlName" "URLLabel" + "fieldName" "SupportURLLabel" + "xpos" "24" + "ypos" "104" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_VisitSteamSupport" + "textAlignment" "north-west" + "wrap" "0" + "URLText" "https://support.steampowered.com/kb_article.php?ref=5151-RUAS-1543#noemail" + } +} + \ No newline at end of file diff --git a/steam/cached/submanagesecurityintro.res b/steam/cached/submanagesecurityintro.res new file mode 100644 index 0000000..c04c6bb --- /dev/null +++ b/steam/cached/submanagesecurityintro.res @@ -0,0 +1,177 @@ +"steam/cached/sublockedaccountintro.res" +{ + "sublockedaccountintro" + { + "ControlName" "sublockedaccountintro" + "fieldName" "sublockedaccountintro" + "xpos" "5" + "ypos" "20" + "wide" "320" + "tall" "520" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "ManageSecurityDescription" + { + "ControlName" "Label" + "fieldName" "ManageSecurityDescription" + "xpos" "24" + "ypos" "24" + "wide" "320" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_ManageSecurity_InfoLabel" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "ManageSecurityDescription2" + { + "ControlName" "Label" + "fieldName" "ManageSecurityDescription2" + "xpos" "24" + "ypos" "72" + "wide" "320" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_ManageSecurity_InfoLabel2" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "ManageSecurityDescription3" + { + "ControlName" "Label" + "fieldName" "ManageSecurityDescription3" + "xpos" "24" + "ypos" "120" + "wide" "320" + "tall" "72" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_ManageSecurity_InfoLabel3" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "ControlNothingRadio" + { + "ControlName" "RadioButton" + "fieldName" "ControlNothingRadio" + "xpos" "24" + "ypos" "200" + "wide" "330" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "labelText" "#SteamUI_ManageSecurity_NothingRadio" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + "SubTabPosition" "1" + } + "ControlUnlockRadio" + { + "ControlName" "RadioButton" + "fieldName" "ControlUnlockRadio" + "xpos" "24" + "ypos" "260" + "wide" "330" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "labelText" "#SteamUI_ManageSecurity_UnlockRadio" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + "SubTabPosition" "3" + } + "UnlockWarning" + { + "ControlName" "Label" + "fieldName" "UnlockWarning" + "xpos" "24" + "ypos" "300" + "wide" "320" + "tall" "72" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_ManageSecurity_UnlockWarning" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "ControlEnableOTPRadio" + { + "ControlName" "RadioButton" + "fieldName" "ControlEnableOTPRadio" + "xpos" "24" + "ypos" "290" + "wide" "330" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "labelText" "#SteamUI_ManageSecurity_EnableIPT" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + "SubTabPosition" "2" + } + "RemoveOtherComputersButton" + { + "ControlName" "CheckButton" + "fieldName" "RemoveOtherComputersButton" + "xpos" "36" + "ypos" "230" + "wide" "300" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#SteamUI_ManageSecurity_RemoveOtherComputersButton" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + } +} diff --git a/steam/cached/submanagesecuritylock.res b/steam/cached/submanagesecuritylock.res new file mode 100644 index 0000000..2e93bc7 --- /dev/null +++ b/steam/cached/submanagesecuritylock.res @@ -0,0 +1,79 @@ +"steam/cached/sublockedaccountlock.res" +{ + "sublockedaccountlock" + { + "ControlName" "sublockedaccountlock" + "fieldName" "sublockedaccountlock" + "xpos" "5" + "ypos" "20" + "wide" "320" + "tall" "520" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "ManageSecurityDescription" + { + "ControlName" "Label" + "fieldName" "ManageSecurityDescription" + "xpos" "24" + "ypos" "24" + "wide" "320" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_ManageSecurity_NotLockedInfo" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "ManageSecurityDescription2" + { + "ControlName" "Label" + "fieldName" "ManageSecurityDescription2" + "xpos" "24" + "ypos" "72" + "wide" "320" + "tall" "72" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_ManageSecurity_NotLockedInfo2" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "ControlLockCheck" + { + "ControlName" "CheckButton" + "fieldName" "ControlLockCheck" + "xpos" "24" + "ypos" "151" + "wide" "330" + "tall" "48" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_LockAccountButton" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + "Default" "0" + "SubTabPosition" "0" + } +} + \ No newline at end of file diff --git a/steam/cached/submanagesecurityunlock.res b/steam/cached/submanagesecurityunlock.res new file mode 100644 index 0000000..4967191 --- /dev/null +++ b/steam/cached/submanagesecurityunlock.res @@ -0,0 +1,61 @@ +"steam/cached/sublockedaccountunlock.res" +{ + "sublockedaccountunlock" + { + "ControlName" "sublockedaccountunlock" + "fieldName" "sublockedaccountunlock" + "xpos" "5" + "ypos" "20" + "wide" "320" + "tall" "520" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "ManageSecurityDescription" + { + "ControlName" "Label" + "fieldName" "ManageSecurityDescription" + "xpos" "24" + "ypos" "24" + "wide" "320" + "tall" "80" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_ManageSecurity_InfoLabel" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "ControlUnlockCheck" + { + "ControlName" "CheckButton" + "fieldName" "ControlUnlockCheck" + "xpos" "24" + "ypos" "151" + "wide" "330" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "labelText" "#SteamUI_ManageSecurity_UnlockRadio" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "wrap" "0" + "Default" "0" + "SubTabPosition" "1" + } + +} + \ No newline at end of file diff --git a/steam/cached/subvalidatecontactemaildone.res b/steam/cached/subvalidatecontactemaildone.res new file mode 100644 index 0000000..a51f3ea --- /dev/null +++ b/steam/cached/subvalidatecontactemaildone.res @@ -0,0 +1,77 @@ +"steam/cached/SubValidateContactEmailDone.res" +{ + "SubValidateContactEmailDone" + { + "ControlName" "CSubValidateContactEmailDone" + "fieldName" "SubValidateContactEmailDone" + "xpos" "5" + "ypos" "29" + "wide" "360" + "tall" "220" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + "HasBeenValidated" + { + "ControlName" "Label" + "fieldName" "HasBeenValidated" + "xpos" "24" + "ypos" "24" + "wide" "320" + "tall" "72" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "Working." + "textAlignment" "south-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "NotReceived" + { + "ControlName" "Label" + "fieldName" "NotReceived" + "xpos" "24" + "ypos" "84" + "wide" "320" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_ValidateEmailNotReceived" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + "SupportURLLabel" + { + "ControlName" "URLLabel" + "fieldName" "SupportURLLabel" + "xpos" "24" + "ypos" "104" + "wide" "320" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "0" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#SteamUI_VisitSteamSupport" + "textAlignment" "north-west" + "wrap" "0" + "URLText" "https://support.steampowered.com/kb_article.php?ref=5151-RUAS-1543#noemail" + } +} + \ No newline at end of file diff --git a/steam/cached/subvalidatecontactemailintro.res b/steam/cached/subvalidatecontactemailintro.res new file mode 100644 index 0000000..d8f36d5 --- /dev/null +++ b/steam/cached/subvalidatecontactemailintro.res @@ -0,0 +1,61 @@ +"steam/cached/SubValidateContactEmailIntro.res" +{ + "SubValidateContactEmailIntro" + { + "ControlName" "CSubValidateContactEmailIntro" + "fieldName" "SubValidateContactEmailIntro" + "xpos" "5" + "ypos" "20" + "wide" "320" + "tall" "300" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "1" + "WizardWide" "0" + "WizardTall" "0" + } + + "HasBeenValidated" + { + "ControlName" "Label" + "fieldName" "HasBeenValidated" + "xpos" "24" + "ypos" "24" + "wide" "320" + "tall" "80" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "#SteamUI_ValidateEmailDescription" + "textAlignment" "north-west" + "dulltext" "1" + "brighttext" "0" + "wrap" "1" + } + + "URLLabel1" + { + "ControlName" "URLLabel" + "fieldName" "URLLabel1" + "xpos" "25" + "ypos" "112" + "wide" "310" + "tall" "24" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + "labelText" "#Steam_TroubleshooterLink" + "textAlignment" "west" + "wrap" "0" + "URLText" "https://support.steampowered.com/kb_article.php?ref=5151-RUAS-1543" + } + +} + \ No newline at end of file diff --git a/steam/cached/tradedialog.layout b/steam/cached/tradedialog.layout new file mode 100644 index 0000000..243826d --- /dev/null +++ b/steam/cached/tradedialog.layout @@ -0,0 +1,16 @@ +"steam/cached/tradedialog.layout" +{ + controls + { + charityquestiondialog { title="#steam_tradedialog_title" wide=1164 tall=964 } + } + + styles + { + } + + layout + { + place { controls="HTML" width=max height=max margin=0 margin-top=32 } + } +} diff --git a/steam/cached/turn_icon_large.tga b/steam/cached/turn_icon_large.tga new file mode 100644 index 0000000..1d19e06 Binary files /dev/null and b/steam/cached/turn_icon_large.tga differ diff --git a/steam/cached/uninstallgamesdialog.res b/steam/cached/uninstallgamesdialog.res new file mode 100644 index 0000000..a58dba0 --- /dev/null +++ b/steam/cached/uninstallgamesdialog.res @@ -0,0 +1,52 @@ +"steam/cached/UninstallGamesDialog.res" +{ + "UninstallGamesDialog" + { + "ControlName" "CUninstallGamesDialog" + "fieldName" "UninstallGamesDialog" + "wide" "320" + "tall" "72" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "settitlebarvisible" "1" + "title" "#Steam_Uninstall_Games_Dialog_Title" + } + + "UninstallInfoLabel" + { + "ControlName" "Label" + "fieldName" "UninstallInfoLabel" + "xpos" "12" + "ypos" "36" + "wide" "300" + "tall" "24" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "#Steam_Uninstall_Games_Dialog_Text" + "textAlignment" "north-west" + "dulltext" "0" + "brighttext" "0" + "wrap" "1" + } + "Throbber" + { + "ControlName" "ThrobberImagePanel" + "fieldName" "Throbber" + "xpos" "280" + "ypos" "36" + "wide" "20" + "tall" "20" + "AutoResize" "0" + "PinCorner" "0" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "paintbackground" "1" + } +} + \ No newline at end of file diff --git a/steam/cached/windowscompat.res b/steam/cached/windowscompat.res new file mode 100644 index 0000000..8e02192 --- /dev/null +++ b/steam/cached/windowscompat.res @@ -0,0 +1,25 @@ +"public/windowscompat.res" +{ + controls + { + "WindowsCompatDialog" { ControlName="WindowsCompatDialog" fieldName="WindowsCompatDialog" wide="500" tall="240" AutoResize="0" visible="1" enabled="1" paintbackground="1" settitlebarvisible="1" title="#Steam_WindowsCompat_Title" } + + "Description" { ControlName="Label" fieldName="Description" wrap="1" } + "SupportLink" { ControlName="URLLabel" labeltext="#Steam_WindowsCompat_SupportLinkDesc" URLText="#Steam_WindowsCompat_SupportLink" style="rightcolumnlink" fieldName="SupportLink" } + "DontShowAgain" { ControlName="CheckButton" fieldName="DontShowAgain" } + + "ContinueBtn" { ControlName="Button" fieldName="ContinueBtn" labelText="#Steam_WindowsCompat_Continue" Command="ContinueSteam" Default="1" } + "CloseSteamBtn" { ControlName="Button" fieldName="CloseSteamBtn" labelText="#Steam_WindowsCompat_CloseSteam" Command="CloseSteam" Default="0" } + } + + layout + { + place { control="Description" margin-left=20 margin-right=20 margin-top=40 width=max } + place { start="Description" control="SupportLink" dir=down margin-right=20 margin-top=20 } + place { start="SupportLink" control="DontShowAgain" dir=down margin-right=20 margin-top=20 } + + place { control="CloseSteamBtn" align=bottom-right margin-right=20 margin-bottom=20 width=100 } + place { start="CloseSteamBtn" control="ContinueBtn" align=bottom-right margin-bottom=20 margin-right=140 width=100 } + + } +}