494ba676944a710a244db32fdc74f8ba01ff5148 tdreszer Thu Sep 9 10:40:02 2010 -0700 Cleaned up a lot of obsolete ifdefs, now that dragReorder and flatTracks are on the RR diff --git src/hg/hgTracks/imageV2.c src/hg/hgTracks/imageV2.c index d44d657..b1c0469 100644 --- src/hg/hgTracks/imageV2.c +++ src/hg/hgTracks/imageV2.c @@ -20,7 +20,6 @@ //struct mapSet *curMap = NULL; // Make this global for now to avoid huge rewrite //struct mapItem *curMapItem = NULL; // Make this global for now to avoid huge rewrite -#ifdef FLAT_TRACK_LIST ///////////////////////// // FLAT TRACKS // A simplistic way of flattening the track list before building the image @@ -103,7 +102,6 @@ freeMem(flatTrack); } } -#endif//def FLAT_TRACK_LIST ///////////////////////// // JSON support. Eventually the whole imgTbl could be written out as JSON @@ -773,11 +771,7 @@ } else { -#ifdef IMAGEv2_DRAG_REORDER imgTrack->reorderable = TRUE; -#else//ifndef IMAGEv2_DRAG_REORDER - imgTrack->reorderable = FALSE; -#endif//ndef IMAGEv2_DRAG_REORDER if(order == IMG_ANYORDER) { if(imgTrack->order <= 0) @@ -1273,22 +1267,9 @@ //} void imgBoxTracksNormalizeOrder(struct imgBox *imgBox) -/* This routine sorts the imgTracks then forces tight ordering, so new tracks wil go to the end */ +/* This routine sorts the imgTracks */ { -#ifdef IMAGEv2_DRAG_REORDER slSort(&(imgBox->imgTracks), imgTrackOrderCmp); -#ifndef FLAT_TRACK_LIST -struct imgTrack *imgTrack = NULL; -int lastOrder = 0; -for (imgTrack = imgBox->imgTracks; imgTrack != NULL; imgTrack = imgTrack->next ) - { - if(imgTrack->reorderable) - imgTrack->order = ++lastOrder; - } -#endif//ndef FLAT_TRACK_LIST -#else//ifndef IMAGEv2_DRAG_REORDER -slReverse(&(imgBox->imgTracks)); -#endif//ndef IMAGEv2_DRAG_REORDER } void imgBoxShow(struct dyString **dy,struct imgBox *imgBox,int indent) @@ -1639,14 +1620,10 @@ // imgBoxShow(NULL,imgBox,0); hPrintf("<!---------------vvv IMAGEv2 vvv---------------->\n"); -#ifdef IMAGEv2_DRAG_REORDER jsIncludeFile("jquery.tablednd.js", NULL); -#endif//def IMAGEv2_DRAG_REORDER hPrintf("<style type='text/css'>\n"); hPrintf("div.dragZoom {cursor: text;}\n"); -//#ifndef FLAT_TRACK_LIST hPrintf("img.button {position:relative; border:0;}\n"); -//#endif//ndef FLAT_TRACK_LIST hPrintf("img.sliceImg {position:relative; border:0;}\n"); hPrintf("div.sliceDiv {overflow:hidden;}\n"); if(imgBox->bgImg) @@ -1681,9 +1658,7 @@ hPrintf("<TABLE id='imgTbl' border=0 cellspacing=0 cellpadding=0 BGCOLOR='%s'",COLOR_WHITE);//COLOR_RED); // RED to help find bugs hPrintf(" width=%d",imgBox->showPortal?(imgBox->portalWidth+imgBox->sideLabelWidth):imgBox->width); -#ifdef IMAGEv2_DRAG_REORDER hPrintf(" class='tableWithDragAndDrop'"); -#endif//def IMAGEv2_DRAG_REORDER hPrintf(" style='border:1px solid blue;border-collapse:separate;'>\n"); #if defined(CONTEXT_MENU) || defined(TRACK_SEARCH)