e19ee3ea7321255582381b70affa42a281441665 galt Tue Oct 28 10:06:09 2025 -0700 fix broken build for Max diff --git src/hg/inc/hui.h src/hg/inc/hui.h index ece35ee3118..29706bb1eed 100644 --- src/hg/inc/hui.h +++ src/hg/inc/hui.h @@ -1566,30 +1566,33 @@ * check hgFixed.trackVersion, meta data and trackDb 'dataVersion'. */ void labelMakeCheckBox(struct cart *cart, struct trackDb *tdb, char *sym, char *desc, boolean defaultOn); /* add a checkbox for the user to select a component of a label (e.g. ID, name, other info). * NOTE: This does not have a track name argument, so the correct tdb must be passed in: * if setting is at composite level, then pass in composite tdb, likewise for view. */ int defaultFieldLocation(char *field); /* Sometimes we get bigBed filters with field names that are not in the AS file. * Try to guess what the user means. */ void printInfoIconSvg(); /* Print just info icon (i) as svg to stdout */ +void printInfoIconColor(char *mouseover, char *color); +/* Print info icon (i) with explanatory text on mouseover, with color */ + void printInfoIcon(char *mouseover); /* Print info icon (i) with explanatory text on mouseover * Uses jquery icon set, with style customized to GB in jquery-ui.css */ void printRelatedTracks(char *database, struct hash *trackHash, struct trackDb *tdb, struct cart *cart); /* Maybe print a "related track" section */ struct trackDb *snp125FetchGeneTracks(char *database, struct cart *cart); /* Get a list of genePred tracks. */ struct trackDb *tdbOrAncestorByName(struct trackDb *tdb, char *name); /* For reasons Angie cannot fathom, if a composite or view is passed to cfgByCfgType then * cfgByCfgType passes a leaf subtrack to its callees like bigDbSnpCfgUi. That is why we * see so many calls to isNameAtParentLevel, which returns true if the tdb was originally * at the composite or view level, which we can only tell by comparing with the original track name.