00001 #ifndef VTIMEBAR_H 00002 #define VTIMEBAR_H 00003 00004 00005 #include "timebar.h" 00006 #include "vwindowgui.inc" 00007 00008 class VTimeBar : public TimeBar 00009 { 00010 public: 00011 VTimeBar(MWindow *mwindow, 00012 VWindowGUI *gui, 00013 int x, 00014 int y, 00015 int w, 00016 int h); 00017 00018 int resize_event(); 00019 EDL* get_edl(); 00020 void draw_time(); 00021 void update_preview(); 00022 void select_label(double position); 00023 00024 00025 VWindowGUI *gui; 00026 }; 00027 00028 00029 #endif
1.5.5