00001 #ifndef PLOT_SCROLL_DATA_H 00002 #define PLOT_SCROLL_DATA_H 00003 00004 #include "Plot/PlotScrollBar.h" 00005 #include "Plot/PlotZoomer.h" 00006 00007 class PlotScrollData 00008 { 00009 //===================================================================================== 00010 // Constructors and destructor 00011 //===================================================================================== 00012 public: 00013 PlotScrollData(); 00014 ~PlotScrollData(); 00015 00016 //===================================================================================== 00017 // Members 00018 //===================================================================================== 00019 public: 00020 PlotScrollBar* m_scrollBar; 00021 PlotZoomer::ScrollBarPosition m_position; 00022 Qt::ScrollBarPolicy m_mode; 00023 }; 00024 00025 #endif