Mercurial > mm7
annotate GUI/UI/UICharacter.h @ 2573:0c67be4ec900
DrawTextureIndexed renamed to DrawTextureTransparentColorKey
Changing more class Texture to class Image.
author | a.parshin |
---|---|
date | Sat, 05 Mar 2016 16:25:53 +0200 |
parents | fed97f15d1e1 |
children | dd36326a9994 |
rev | line source |
---|---|
2501 | 1 #pragma once |
2547 | 2 #include "GUI/GUIWindow.h" |
3 | |
4 struct GUIWindow_CharacterRecord : public GUIWindow | |
5 { | |
6 GUIWindow_CharacterRecord(unsigned int uActiveCharacter, enum CURRENT_SCREEN screen); | |
7 virtual ~GUIWindow_CharacterRecord() {} | |
8 | |
9 virtual void Update(); | |
10 | |
11 void ShowStatsTab(); | |
12 void ShowSkillsTab(); | |
13 void ShowInventoryTab(); | |
14 void ShowAwardsTab(); | |
15 void ToggleRingsOverlay(); | |
16 | |
17 protected: | |
18 void CharacterUI_StatsTab_Draw(struct Player *); | |
19 void CharacterUI_SkillsTab_Draw(struct Player *); | |
20 void CharacterUI_AwardsTab_Draw(struct Player *); | |
21 | |
22 void CharacterUI_SkillsTab_CreateButtons(); | |
2573
0c67be4ec900
DrawTextureIndexed renamed to DrawTextureTransparentColorKey
a.parshin
parents:
2547
diff
changeset
|
23 }; |
0c67be4ec900
DrawTextureIndexed renamed to DrawTextureTransparentColorKey
a.parshin
parents:
2547
diff
changeset
|
24 |
0c67be4ec900
DrawTextureIndexed renamed to DrawTextureTransparentColorKey
a.parshin
parents:
2547
diff
changeset
|
25 |
0c67be4ec900
DrawTextureIndexed renamed to DrawTextureTransparentColorKey
a.parshin
parents:
2547
diff
changeset
|
26 |
0c67be4ec900
DrawTextureIndexed renamed to DrawTextureTransparentColorKey
a.parshin
parents:
2547
diff
changeset
|
27 extern class Image *ui_character_skills_background; |
0c67be4ec900
DrawTextureIndexed renamed to DrawTextureTransparentColorKey
a.parshin
parents:
2547
diff
changeset
|
28 extern class Image *ui_character_awards_background; |
0c67be4ec900
DrawTextureIndexed renamed to DrawTextureTransparentColorKey
a.parshin
parents:
2547
diff
changeset
|
29 extern class Image *ui_character_stats_background; |
0c67be4ec900
DrawTextureIndexed renamed to DrawTextureTransparentColorKey
a.parshin
parents:
2547
diff
changeset
|
30 extern class Image *ui_character_inventory_background; |
0c67be4ec900
DrawTextureIndexed renamed to DrawTextureTransparentColorKey
a.parshin
parents:
2547
diff
changeset
|
31 extern class Image *ui_character_inventory_background_strip; |
0c67be4ec900
DrawTextureIndexed renamed to DrawTextureTransparentColorKey
a.parshin
parents:
2547
diff
changeset
|
32 extern class Image *ui_character_inventory_paperdoll_background; |