r1006: configure: Use libx264_pic instead of libx264 if available.
[cinelerra_cv/mob.git] / cinelerra / statusbar.h
blob277264a1506bff4f42fe695acd40c26d730b9638
1 #ifndef STATUSBAR_H
2 #define STATUSBAR_H
4 #include "guicast.h"
5 #include "mwindow.inc"
6 #include "mwindowgui.inc"
8 class StatusBarCancel;
10 class StatusBar : public BC_SubWindow
12 public:
13 StatusBar(MWindow *mwindow, MWindowGUI *gui);
14 ~StatusBar();
16 void set_message(char *text);
17 void default_message();
18 int create_objects();
19 void resize_event();
21 MWindow *mwindow;
22 MWindowGUI *gui;
23 BC_ProgressBar *main_progress;
24 StatusBarCancel *main_progress_cancel;
25 BC_Title *status_text;
28 class StatusBarCancel : public BC_Button
30 public:
31 StatusBarCancel(MWindow *mwindow, int x, int y);
33 int handle_event();
35 MWindow *mwindow;
38 #endif