Bookmarks (issue 92) are now functional in Save/Load screens
git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@656 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
15
files.c
15
files.c
@@ -713,6 +713,21 @@ short Calculer_decalage_click_dans_fileselector(void)
|
||||
return Decalage_calcule;
|
||||
}
|
||||
|
||||
void Afficher_bookmark(struct Fenetre_Bouton_dropdown * Bouton, int Numero_bookmark)
|
||||
{
|
||||
if (Config.Bookmark_directory[Numero_bookmark])
|
||||
{
|
||||
int Taille;
|
||||
Print_dans_fenetre_limite(Bouton->Pos_X+3+10,Bouton->Pos_Y+2,Config.Bookmark_label[Numero_bookmark],8,CM_Noir,CM_Clair);
|
||||
Taille=strlen(Config.Bookmark_label[Numero_bookmark]);
|
||||
if (Taille<8)
|
||||
Block(Fenetre_Pos_X+(Menu_Facteur_X*(Bouton->Pos_X+3+10+Taille*8)),Fenetre_Pos_Y+(Menu_Facteur_Y*(Bouton->Pos_Y+2)),Menu_Facteur_X*(8-Taille)*8,Menu_Facteur_Y*8,CM_Clair);
|
||||
}
|
||||
else
|
||||
Print_dans_fenetre(Bouton->Pos_X+3+10,Bouton->Pos_Y+2,"--------",CM_Fonce,CM_Clair);
|
||||
}
|
||||
|
||||
|
||||
void for_each_file(const char * Nom_repertoire, void Callback(const char *))
|
||||
{
|
||||
// Pour scan de répertoire
|
||||
|
||||
Reference in New Issue
Block a user