r1009: Move the dependencies to newer package names
[cinelerra_cv/mob.git] / cinelerra / cursor.h
blob010e1cace511cace0cf55b7378915a2114c0cdc2
1 #ifndef CURSOR_H
2 #define CURSOR_H
4 #include "guicast.h"
6 class Cursor_
8 public:
9 Cursor_(BC_SubWindow *canvas);
10 ~Cursor_();
12 int resize(int w, int h);
13 int show(int flash, long selectionstart, long selectionend, long zoom_sample, long viewstart, int vertical);
14 int hide(int flash);
15 int draw(int flash, long selectionstart, long selectionend, long zoom_sample, long viewstart, int vertical);
17 BC_SubWindow *canvas;
18 int vertical;
19 long selectionstart, selectionend, zoom_sample, viewstart;
22 #endif