|
1 |
| -<!-- This is a file that is overwritten in ImprovedUI for Action Resources in CC/Levelup Keyboard UI. Entries here are optional as the tooltip action resource will be used if no entry exists here --> |
| 1 | +<!-- This is a null file that will be overridden by ImprovedUI Assets. The same entries are still required here to populate on CC without ImprovedUI Assets. --> |
2 | 2 |
|
3 | 3 | <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
4 | 4 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
10 | 10 | xmlns:noesis="clr-namespace:NoesisGUIExtensions;assembly=Noesis.GUI.Extensions"
|
11 | 11 | mc:Ignorable="d">
|
12 | 12 |
|
13 |
| - <ResourceDictionary.MergedDictionaries> |
14 |
| - <!-- Revert to Action Resource icon when icon is missing --> |
15 |
| - <ResourceDictionary Source="../Library/IUI_ActionResourceIcons.xaml"/> |
16 |
| - </ResourceDictionary.MergedDictionaries> |
17 |
| - |
18 |
| - <!-- This is the icon that appears when the action resource is given during CC/level up --> |
19 |
| - <!-- The icon is slightly different, and is placed in a different folder --> |
| 13 | + <!-- Action Resource Decorative Icons--> |
20 | 14 | <BitmapImage x:Key="ActionPointIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/CC/icons_resources/ap_d.png" />
|
21 | 15 | <BitmapImage x:Key="BonusActionPointIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/CC/icons_resources/bap_d.png" />
|
22 | 16 | <BitmapImage x:Key="ReactionPointIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/CC/icons_resources/ico_mini_spellSlot_reaction_d.png" />
|
|
38 | 32 | <BitmapImage x:Key="WarPriestPointIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/CC/icons_resources/ico_classRes_warPriest.png" />
|
39 | 33 | <BitmapImage x:Key="FungalInfestationIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/CC/icons_resources/ico_classRes_FungalInfestationCharge.png" />
|
40 | 34 | <BitmapImage x:Key="LuckPointIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/CC/icons_resources/ico_classRes_luck.png" />
|
41 |
| - <!-- Custom icons from here --> |
42 |
| - <!-- <BitmapImage x:Key="ADIFFERENTUNIQUENAMEFORIMAGE" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/MODNAME/CC/icons_resources/NAMEOFDDSFILEFORTHEICON.png" /> --> |
43 |
| - <BitmapImage x:Key="PsiPointIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/CC/icons_resources/ico_classRes_psipoint.png" /> |
44 |
| - <BitmapImage x:Key="BladesongIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/Expansion/CC/icons_resources/ico_classRes_bladesong.png" /> |
45 |
| - <BitmapImage x:Key="BloodMaledictIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/BloodHunter/CC/icons_resources/ico_classRes_BloodMaledict.png" /> |
46 |
| - <BitmapImage x:Key="HybridTransformationIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/BloodHunter/CC/icons_resources/ico_classRes_HybridTransformation.png" /> |
47 |
| - <BitmapImage x:Key="WuJenSpellSlotIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/AlternateMonk/CC/icons_resources/ico_classRes_WuJenSpellSlot.png" /> |
48 |
| - <BitmapImage x:Key="MysticPsiPointsResourceIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/Mystic/CC/icons_resources/ico_classRes_PsiPointsResource.png" /> |
49 |
| - <BitmapImage x:Key="MysticPsionicMasteryResourceIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/Mystic/CC/icons_resources/ico_classRes_PsionicMasteryResource.png" /> |
50 |
| - <BitmapImage x:Key="SpellbaneDiceIcon" UriSource="pack://application:,,,/GustavNoesisGUI;component/Assets/Spellbreaker/CC/icons_resources/ico_classRes_SpellbaneDie_d.png" /> |
51 |
| - <!-- EDIT HERE --> |
52 | 35 |
|
53 |
| - <!-- Reference entries below --> |
54 |
| - <!-- Revert to Tooltip icon if CC icon is not defined here --> |
55 |
| - <Style TargetType="Image" x:Key="IUI_ActionResourceDecorativeIconDefault" BasedOn="{StaticResource IUI_ActionResourceTypeIdToSource}"> |
| 36 | + <Style TargetType="Image" x:Key="IUI_ActionResourceDecorativeIcon"> |
56 | 37 | <Style.Triggers>
|
57 | 38 | <DataTrigger Binding="{Binding TypeId}" Value="ActionPoint">
|
58 | 39 | <Setter Property="Source" Value="{StaticResource ActionPointIcon}"/>
|
|
119 | 100 | </DataTrigger>
|
120 | 101 | </Style.Triggers>
|
121 | 102 | </Style>
|
122 |
| - |
123 |
| - <!-- This is the section for custom icons now --> |
124 |
| - <Style TargetType="Image" x:Key="IUI_ActionResourceDecorativeIcon" BasedOn="{StaticResource IUI_ActionResourceDecorativeIconDefault}"> |
125 |
| - <Style.Triggers> |
126 |
| - <!--<DataTrigger Binding="{Binding TypeId}" Value="ACTIONRESOURCENAME"> |
127 |
| - <Setter Property="Source" Value="{StaticResource ADIFFERENTUNIQUENAMEFORIMAGE}"/> |
128 |
| - </DataTrigger>--> |
129 |
| - <DataTrigger Binding="{Binding TypeId}" Value="PsiPoint"> |
130 |
| - <Setter Property="Source" Value="{StaticResource PsiPointIcon}"/> |
131 |
| - </DataTrigger> |
132 |
| - <DataTrigger Binding="{Binding TypeId}" Value="BladesongCharge"> |
133 |
| - <Setter Property="Source" Value="{StaticResource BladesongIcon}"/> |
134 |
| - </DataTrigger> |
135 |
| - <DataTrigger Binding="{Binding TypeId}" Value="BloodMaledict"> |
136 |
| - <Setter Property="Source" Value="{StaticResource BloodMaledictIcon}"/> |
137 |
| - </DataTrigger> |
138 |
| - <DataTrigger Binding="{Binding TypeId}" Value="HybridTransformation"> |
139 |
| - <Setter Property="Source" Value="{StaticResource HybridTransformationIcon}"/> |
140 |
| - </DataTrigger> |
141 |
| - <DataTrigger Binding="{Binding TypeId}" Value="WuJenSpellSlot"> |
142 |
| - <Setter Property="Source" Value="{StaticResource WuJenSpellSlotIcon}"/> |
143 |
| - </DataTrigger> |
144 |
| - <DataTrigger Binding="{Binding TypeId}" Value="PsiPointsResource"> |
145 |
| - <Setter Property="Source" Value="{StaticResource MysticPsiPointsResourceIcon}"/> |
146 |
| - </DataTrigger> |
147 |
| - <DataTrigger Binding="{Binding TypeId}" Value="PsionicMasteryResource"> |
148 |
| - <Setter Property="Source" Value="{StaticResource MysticPsionicMasteryResourceIcon}"/> |
149 |
| - </DataTrigger> |
150 |
| - <DataTrigger Binding="{Binding TypeId}" Value="SpellbaneDie"> |
151 |
| - <Setter Property="Source" Value="{StaticResource SpellbaneDiceIcon}"/> |
152 |
| - </DataTrigger> |
153 |
| - <!-- EDIT HERE --> |
154 |
| - </Style.Triggers> |
155 |
| - </Style> |
156 | 103 | </ResourceDictionary>
|
0 commit comments