00001 #ifndef ENTETE_H 00002 #define ENTETE_H 00003 #include <QAction> 00004 #include <QList> 00005 #include <QString> 00006 00007 const int MAX_NOMBRE_WIDGET_LISTE = 10; 00008 const int TAILLE_IMAGE_LARGEUR = 40; 00009 const int TAILLE_IMAGE_LONGUEUR = 40; 00010 00011 struct WidgetListe 00012 { 00013 QAction* mon_action; 00014 QString chemin_image; 00015 QList<int>* ligne_fiche; 00016 QString texte; 00017 }; 00018 00019 00020 #endif // ENTETE_H