7 #include "bcwindowbase.h"
12 class ViewPopup : public BC_Popup {
16 int button_press_event();
17 void draw_vframe(VFrame *frame);
19 ViewPopup(VIconThread *vt, VFrame *frame, int x, int y, int w, int h);
24 unsigned char *img_data;
27 VIFrame(int ww, int hh, int vcmdl) {
28 int size = BC_CModels::calculate_datasize(ww, hh, -1, vcmdl);
29 img_data = new unsigned char[size];
30 vfrm = new VFrame(img_data, -1, ww, hh, vcmdl, -1);
32 ~VIFrame() { delete vfrm; delete [] img_data; }
34 operator VFrame *() { return vfrm; }
40 int vw, vh, in_use, hidden;
41 ArrayList<VIFrame *> images;
43 double cycle_start, age, frame_rate;
45 int64_t vframes() { return images.size(); }
46 void reset() { seq_no = 0; cycle_start = 0; age = 0; }
47 void reset(double rate) { reset(); frame_rate = rate; }
48 void clear_images() { images.remove_all_objects(); }
50 virtual int64_t set_seq_no(int64_t no) { return seq_no = no; }
51 virtual VFrame *frame() { return *images[seq_no]; }
52 virtual int get_vx() { return 0; }
53 virtual int get_vy() { return 0; }
55 void add_image(VFrame *frm, int ww, int hh, int vcmdl);
56 void draw_vframe(BC_WindowBase *wdw, int x, int y);
57 void dump(const char *dir);
59 VIcon(int vw=VICON_WIDTH, int vh=VICON_HEIGHT, double rate=VICON_RATE);
63 class VIconThread : public Thread
66 int done, interrupted;
71 VIcon *viewing, *vicon;
73 int img_dirty, win_dirty;
76 ArrayList<VIcon *>t_heap;
78 void add_vicon(VIcon *vicon);
79 int del_vicon(VIcon *&vicon);
82 int draw(VIcon *vicon);
88 void remove_vicon(int i);
89 int keypress_event(int key);
90 void set_view_popup(VIcon *vicon);
92 ViewPopup *new_view_window(VFrame *frame);
93 virtual bool visible(VIcon *vicon, int x, int y);
94 virtual void drawing_started() {}
95 virtual void drawing_stopped() {}
97 VIconThread(BC_WindowBase *wdw, int vw=4*VICON_WIDTH, int vh=4*VICON_HEIGHT);