8083235171a7227233b561a87d4950a3640ef232 tdreszer Thu Nov 11 09:57:45 2010 -0800 Added support for pennantIcon as requested by b0b. First use flagging hg18 to hg19 liftOver tracks. diff --git src/hg/inc/hui.h src/hg/inc/hui.h index 5a891e5..3e76cd2 100644 --- src/hg/inc/hui.h +++ src/hg/inc/hui.h @@ -1156,16 +1156,19 @@ // Four State checkboxes can be checked/unchecked by enable/disabled // NOTE: fourState is not a bitmap because it is manipulated in javascript and int seemed easier at the time #define FOUR_STATE_UNCHECKED 0 #define FOUR_STATE_CHECKED 1 #define FOUR_STATE_CHECKED_DISABLED -1 #define fourStateChecked(fourState) ((fourState) == FOUR_STATE_CHECKED || (fourState) == FOUR_STATE_CHECKED_DISABLED) #define fourStateEnabled(fourState) ((fourState) >= FOUR_STATE_UNCHECKED) #define fourStateVisible(fourState) ((fourState) == FOUR_STATE_CHECKED) int subtrackFourStateChecked(struct trackDb *subtrack, struct cart *cart); /* Returns the four state checked state of the subtrack */ void subtrackFourStateCheckedSet(struct trackDb *subtrack, struct cart *cart,boolean checked, boolean enabled); /* Sets the fourState Checked in the cart and updates cached state */ +boolean hPrintPennantIcon(struct trackDb *tdb); +// Returns TRUE and prints out the "pennantIcon" when found. Example: ENCODE tracks in hgTracks config list. + #endif /* HUI_H */