;+ ; ; Name: SCROLLB ; ; Purpose: Scrolls the current window backwards ; ; Inputs: The info structure from the main gui ; ; ;$LastChangedBy: aaflores $ ;$LastChangedDate: 2009-07-13 18:18:58 -0700 (Mon, 13 Jul 2009) $ ;$LastChangedRevision: 6427 $ ;$URL: svn+ssh://thmsvn@ambrosia.ssl.berkeley.edu/repos/thmsoc/tags/tdas_8_00/idl/themis/thm_ui_new/utilities/thm_ui_main_funcs/thm_ui_scrollb.pro $ ;- pro thm_ui_scrollb,info compile_opt idl2 dataNames = info.loadedData->GetAll() IF Is_Num(dataNames) THEN BEGIN info.statusBar->Update, 'The scroll backward function is not available until data has been loaded.' ENDIF ELSE BEGIN thm_ui_scroll, info.windowStorage, info.drawObject, 1 info.drawObject->Update, info.windowStorage, info.loadedData info.drawObject->Draw info.scrollbar->update info.statusBar->Update, 'The active window has been scrolled backward.' info.historyWin->Update, 'Active window has been scrolled backward.' ENDELSE end