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:
19
struct.h
19
struct.h
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user