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