Started implementing dropdown lists. Rough but functional, currently used in Save/Load for choosing file format.

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@644 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Yves Rizoud
2009-02-20 01:56:43 +00:00
parent d323b545ce
commit 714521b5bf
9 changed files with 226 additions and 30 deletions

View File

@@ -109,6 +109,25 @@ struct Fenetre_Bouton_special
struct Fenetre_Bouton_special * Next;
};
struct Bouton_dropdown_choix
{
short Numero;
const char * Libelle;
struct Bouton_dropdown_choix * Next;
};
struct Fenetre_Bouton_dropdown
{
short Numero;
word Pos_X;
word Pos_Y;
word Largeur;
word Hauteur;
byte AfficheChoix;
struct Bouton_dropdown_choix * Premier_choix;
struct Fenetre_Bouton_dropdown * Next;
};
struct T_Drive
{