diff options
| author | RaysFire <[email protected]> | 2012-11-19 15:23:06 -0600 |
|---|---|---|
| committer | RaysFire <[email protected]> | 2012-11-19 15:23:06 -0600 |
| commit | 40be19c219a724ba3c0e08d7bffd496a318bf21e (patch) | |
| tree | e0774a018e733feb94d163e22555325178794ddc /resource/ui | |
| parent | 24ba186ca9e5ea18cd8bc46d60a28feb498811d1 (diff) | |
Removed background on notification messages
Diffstat (limited to 'resource/ui')
26 files changed, 564 insertions, 0 deletions
diff --git a/resource/ui/notifications/base_notification.res b/resource/ui/notifications/base_notification.res new file mode 100644 index 0000000..e68c261 --- /dev/null +++ b/resource/ui/notifications/base_notification.res @@ -0,0 +1,52 @@ +"Resource/UI/notifications/base_notification.res" +{ + "Notification_Background" + { + "ControlName" "CImagePanel" + "fieldName" "Notification_Background" + "xpos" "9999" + "ypos" "9999" + "zpos" "-1" + "wide" "0" + "tall" "0" + "autoResize" "0" + "pinCorner" "0" + "visible" "0" + "enabled" "0" + "image" "" + "scaleImage" "1" + } + + "Notification_Icon" + { + "ControlName" "CIconPanel" + "fieldName" "Notification_Icon" + "xpos" "7" + "ypos" "9" + "wide" "20" + "tall" "20" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "" + } + + "Notification_Label" + { + "ControlName" "CExLabel" + "fieldName" "Notification_Label" + "font" "Cerbetica16" + "xpos" "30" + "ypos" "9" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "" + "textAlignment" "West" + "dulltext" "0" + "brighttext" "0" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notification_manifest.txt b/resource/ui/notifications/notification_manifest.txt new file mode 100644 index 0000000..bafafd1 --- /dev/null +++ b/resource/ui/notifications/notification_manifest.txt @@ -0,0 +1,28 @@ +notification_manifest +{ + "file" "resource/UI/notifications/base_notification.res" + "file" "resource/UI/notifications/notify_enemy_flag_captured_blue.res" + "file" "resource/UI/notifications/notify_enemy_flag_captured_red.res" + "file" "resource/UI/notifications/notify_enemy_flag_dropped_blue.res" + "file" "resource/UI/notifications/notify_enemy_flag_dropped_red.res" + "file" "resource/UI/notifications/notify_enemy_flag_returned_blue.res" + "file" "resource/UI/notifications/notify_enemy_flag_returned_red.res" + "file" "resource/UI/notifications/notify_enemy_flag_taken_blue.res" + "file" "resource/UI/notifications/notify_enemy_flag_taken_red.res" + "file" "resource/UI/notifications/notify_no_invuln_with_flag_blue.res" + "file" "resource/UI/notifications/notify_no_invuln_with_flag_red.res" + "file" "resource/UI/notifications/notify_no_tele_with_flag_blue.res" + "file" "resource/UI/notifications/notify_no_tele_with_flag_red.res" + "file" "resource/UI/notifications/notify_special.res" + "file" "resource/UI/notifications/notify_touching_enemy_ctf_cap_blue.res" + "file" "resource/UI/notifications/notify_touching_enemy_ctf_cap_red.res" + "file" "resource/UI/notifications/notify_your_flag_captured_blue.res" + "file" "resource/UI/notifications/notify_your_flag_captured_red.res" + "file" "resource/UI/notifications/notify_your_flag_dropped_blue.res" + "file" "resource/UI/notifications/notify_your_flag_dropped_red.res" + "file" "resource/UI/notifications/notify_your_flag_returned_blue.res" + "file" "resource/UI/notifications/notify_your_flag_returned_red.res" + "file" "resource/UI/notifications/notify_your_flag_taken_blue.res" + "file" "resource/UI/notifications/notify_your_flag_taken_red.res" + "file" "resource/UI/notifications/notify_golden_wrench.res" +} diff --git a/resource/ui/notifications/notify_enemy_flag_captured_blue.res b/resource/ui/notifications/notify_enemy_flag_captured_blue.res new file mode 100644 index 0000000..6184b3a --- /dev/null +++ b/resource/ui/notifications/notify_enemy_flag_captured_blue.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_enemy_flag_captured_blue.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_red_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_home" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_PlayerTeamCapture" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_enemy_flag_captured_red.res b/resource/ui/notifications/notify_enemy_flag_captured_red.res new file mode 100644 index 0000000..f4573dc --- /dev/null +++ b/resource/ui/notifications/notify_enemy_flag_captured_red.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_enemy_flag_captured_red.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_blue_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_home" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_PlayerTeamCapture" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_enemy_flag_dropped_blue.res b/resource/ui/notifications/notify_enemy_flag_dropped_blue.res new file mode 100644 index 0000000..fa19944 --- /dev/null +++ b/resource/ui/notifications/notify_enemy_flag_dropped_blue.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_enemy_flag_dropped_blue.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_red_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_dropped" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_PlayerTeamDrop" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_enemy_flag_dropped_red.res b/resource/ui/notifications/notify_enemy_flag_dropped_red.res new file mode 100644 index 0000000..6e572d2 --- /dev/null +++ b/resource/ui/notifications/notify_enemy_flag_dropped_red.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_enemy_flag_dropped_red.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_blue_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_dropped" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_PlayerTeamDrop" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_enemy_flag_returned_blue.res b/resource/ui/notifications/notify_enemy_flag_returned_blue.res new file mode 100644 index 0000000..ab92f06 --- /dev/null +++ b/resource/ui/notifications/notify_enemy_flag_returned_blue.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_enemy_flag_returned_blue.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_red_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_home" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_OtherTeamReset" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_enemy_flag_returned_red.res b/resource/ui/notifications/notify_enemy_flag_returned_red.res new file mode 100644 index 0000000..0e585a6 --- /dev/null +++ b/resource/ui/notifications/notify_enemy_flag_returned_red.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_enemy_flag_returned_red.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_blue_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_home" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_OtherTeamReset" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_enemy_flag_taken_blue.res b/resource/ui/notifications/notify_enemy_flag_taken_blue.res new file mode 100644 index 0000000..cfa0ff7 --- /dev/null +++ b/resource/ui/notifications/notify_enemy_flag_taken_blue.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_enemy_flag_taken_blue.res" +{ + "Notification_Background" + { + "image" "" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_moving" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_PlayerTeamPickup" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_enemy_flag_taken_red.res b/resource/ui/notifications/notify_enemy_flag_taken_red.res new file mode 100644 index 0000000..fddbd3a --- /dev/null +++ b/resource/ui/notifications/notify_enemy_flag_taken_red.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_enemy_flag_taken_red.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_blue_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_moving" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_PlayerTeamPickup" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_golden_wrench.res b/resource/ui/notifications/notify_golden_wrench.res new file mode 100644 index 0000000..7cc6e62 --- /dev/null +++ b/resource/ui/notifications/notify_golden_wrench.res @@ -0,0 +1,52 @@ +"Resource/UI/notifications/notify_golden_wrench.res" +{ + "Notification_Background" + { + "ControlName" "CImagePanel" + "fieldName" "Notification_Background" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "140" + "tall" "44" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "image" "../hud/notification_black" + "scaleImage" "1" + } + + "Notification_Icon" + { + "ControlName" "CIconPanel" + "fieldName" "Notification_Icon" + "xpos" "7" + "ypos" "12" + "wide" "36" + "tall" "12" + "visible" "1" + "enabled" "1" + "scaleImage" "1" + "icon" "ico_notify_golden_wrench" + } + + "Notification_Label" + { + "ControlName" "CExLabel" + "fieldName" "Notification_Label" + "font" "Default" + "xpos" "30" + "ypos" "9" + "wide" "200" + "tall" "20" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "labelText" "60 seconds until gates open" + "textAlignment" "West" + "dulltext" "0" + "brighttext" "0" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_no_invuln_with_flag_blue.res b/resource/ui/notifications/notify_no_invuln_with_flag_blue.res new file mode 100644 index 0000000..a7ff65d --- /dev/null +++ b/resource/ui/notifications/notify_no_invuln_with_flag_blue.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_no_invuln_with_flag_blue.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_blue_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_moving" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_No_Invuln" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_no_invuln_with_flag_red.res b/resource/ui/notifications/notify_no_invuln_with_flag_red.res new file mode 100644 index 0000000..d131848 --- /dev/null +++ b/resource/ui/notifications/notify_no_invuln_with_flag_red.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_no_invuln_with_flag_red.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_red_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_moving" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_No_Invuln" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_no_tele_with_flag_blue.res b/resource/ui/notifications/notify_no_tele_with_flag_blue.res new file mode 100644 index 0000000..75ba974 --- /dev/null +++ b/resource/ui/notifications/notify_no_tele_with_flag_blue.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_no_tele_with_flag_blue.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_blue_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_moving" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_No_Tele" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_no_tele_with_flag_red.res b/resource/ui/notifications/notify_no_tele_with_flag_red.res new file mode 100644 index 0000000..9820208 --- /dev/null +++ b/resource/ui/notifications/notify_no_tele_with_flag_red.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_no_tele_with_flag_red.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_red_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_moving" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_No_Tele" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_special.res b/resource/ui/notifications/notify_special.res new file mode 100644 index 0000000..1c02efd --- /dev/null +++ b/resource/ui/notifications/notify_special.res @@ -0,0 +1,14 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_special.res" +{ + "Notification_Icon" + { + "icon" "ico_notify_sixty_seconds" + } + + "Notification_Label" + { + "labelText" "You are on fire" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_touching_enemy_ctf_cap_blue.res b/resource/ui/notifications/notify_touching_enemy_ctf_cap_blue.res new file mode 100644 index 0000000..f56dbeb --- /dev/null +++ b/resource/ui/notifications/notify_touching_enemy_ctf_cap_blue.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_touching_enemy_ctf_cap_blue.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_blue_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_moving" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_Wrong_Goal" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_touching_enemy_ctf_cap_red.res b/resource/ui/notifications/notify_touching_enemy_ctf_cap_red.res new file mode 100644 index 0000000..ecf9b9c --- /dev/null +++ b/resource/ui/notifications/notify_touching_enemy_ctf_cap_red.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_touching_enemy_ctf_cap_red.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_red_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_moving" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_Wrong_Goal" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_captured_blue.res b/resource/ui/notifications/notify_your_flag_captured_blue.res new file mode 100644 index 0000000..7157af9 --- /dev/null +++ b/resource/ui/notifications/notify_your_flag_captured_blue.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_your_flag_taken_blue.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_blue_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_home" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_OtherTeamCapture" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_captured_red.res b/resource/ui/notifications/notify_your_flag_captured_red.res new file mode 100644 index 0000000..bce86ae --- /dev/null +++ b/resource/ui/notifications/notify_your_flag_captured_red.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_your_flag_captured_red.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_red_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_home" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_OtherTeamCapture" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_dropped_blue.res b/resource/ui/notifications/notify_your_flag_dropped_blue.res new file mode 100644 index 0000000..b4d39d5 --- /dev/null +++ b/resource/ui/notifications/notify_your_flag_dropped_blue.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_your_flag_dropped_blue.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_blue_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_dropped" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_OtherTeamDrop" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_dropped_red.res b/resource/ui/notifications/notify_your_flag_dropped_red.res new file mode 100644 index 0000000..e76eb43 --- /dev/null +++ b/resource/ui/notifications/notify_your_flag_dropped_red.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_your_flag_dropped_red.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_red_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_dropped" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_OtherTeamDrop" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_returned_blue.res b/resource/ui/notifications/notify_your_flag_returned_blue.res new file mode 100644 index 0000000..c717254 --- /dev/null +++ b/resource/ui/notifications/notify_your_flag_returned_blue.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_your_flag_returned_blue.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_blue_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_home" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_PlayerTeamReset" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_returned_red.res b/resource/ui/notifications/notify_your_flag_returned_red.res new file mode 100644 index 0000000..3c53bac --- /dev/null +++ b/resource/ui/notifications/notify_your_flag_returned_red.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_your_flag_returned_red.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_red_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_home" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_PlayerTeamReset" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_taken_blue.res b/resource/ui/notifications/notify_your_flag_taken_blue.res new file mode 100644 index 0000000..8c0ede5 --- /dev/null +++ b/resource/ui/notifications/notify_your_flag_taken_blue.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_your_flag_taken_blue.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_blue_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_moving" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_OtherTeamPickup" + } +}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_taken_red.res b/resource/ui/notifications/notify_your_flag_taken_red.res new file mode 100644 index 0000000..5cb0861 --- /dev/null +++ b/resource/ui/notifications/notify_your_flag_taken_red.res @@ -0,0 +1,19 @@ +#base "base_notification.res" + +"Resource/UI/notifications/notify_your_flag_taken_red.res" +{ + "Notification_Background" + { + "image" "../hud/score_panel_red_bg" + } + + "Notification_Icon" + { + "icon" "ico_notify_flag_moving" + } + + "Notification_Label" + { + "labelText" "#TF_CTF_OtherTeamPickup" + } +}
\ No newline at end of file |
