Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git] / cinelerra / trackscroll.h
blob4e9b2910c7148f070978181318eceb98c55a9f34
1 #ifndef TRACKSCROLL_H
2 #define TRACKSCROLL_H
5 #include "guicast.h"
6 #include "mwindow.inc"
7 #include "mwindowgui.inc"
9 class TrackScroll : public BC_ScrollBar
11 public:
12 TrackScroll(MWindow *mwindow, MWindowGUI *gui, int x, int y, int h);
13 ~TrackScroll();
15 int create_objects(int top, int bottom);
16 int resize_event();
17 int flip_vertical(int top, int bottom);
18 int update(); // reflect new track view
19 long get_distance();
20 int handle_event();
22 MWindowGUI *gui;
23 MWindow *mwindow;
24 long old_position;
27 #endif
29 // Local Variables:
30 // mode: C++
31 // c-file-style: "linux"
32 // End: