repair selected_to_clipboard bug
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / zoombar.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef ZOOMBAR_H
23 #define ZOOMBAR_H
24
25 #include "guicast.h"
26 #include "mwindow.inc"
27 #include "mwindowgui.inc"
28 #include "zoombar.inc"
29 #include "zoompanel.h"
30
31
32 class ZoomBar : public BC_SubWindow
33 {
34 public:
35         ZoomBar(MWindow *mwindow, MWindowGUI *gui);
36         ~ZoomBar();
37
38         void create_objects();
39         void resize_event();
40         int draw();
41         int resize_event(int w, int h);
42         void redraw_time_dependancies();
43         int update();          // redraw the current values
44         void update_autozoom();
45         int update_clocks();
46         int update_playback(int64_t new_position);       // update the playback position
47         int set_selection(int which_one);
48         void update_formatting(BC_TextBox *dst);
49
50         MWindow *mwindow;
51         MWindowGUI *gui;
52         SampleZoomPanel *sample_zoom;
53         AmpZoomPanel *amp_zoom;
54         TrackZoomPanel *track_zoom;
55         AutoZoom *auto_zoom;
56         AutoTypeMenu *auto_type;
57         ZoomTextBox *auto_zoom_text;
58
59         LengthTextBox *length_value;
60         FromTextBox *from_value;
61         ToTextBox *to_value;
62         TitleBarAlpha *title_alpha;
63         char string[256], string2[256];
64 };
65
66 class SampleZoomPanel : public ZoomPanel
67 {
68 public:
69         SampleZoomPanel(MWindow *mwindow, ZoomBar *zoombar, int x, int y);
70         int handle_event();
71         MWindow *mwindow;
72         ZoomBar *zoombar;
73 };
74
75 class AmpZoomPanel : public ZoomPanel
76 {
77 public:
78         AmpZoomPanel(MWindow *mwindow, ZoomBar *zoombar, int x, int y);
79         int handle_event();
80         MWindow *mwindow;
81         ZoomBar *zoombar;
82 };
83
84 class TrackZoomPanel : public ZoomPanel
85 {
86 public:
87         TrackZoomPanel(MWindow *mwindow, ZoomBar *zoombar, int x, int y);
88         int handle_event();
89         MWindow *mwindow;
90         ZoomBar *zoombar;
91 };
92
93 class AutoZoom : public BC_Tumbler
94 {
95 public:
96         AutoZoom(MWindow *mwindow, ZoomBar *zoombar, int x, int y, int changemax);
97         int handle_up_event();
98         int handle_down_event();
99         MWindow *mwindow;
100         ZoomBar *zoombar;
101         int changemax;
102 };
103
104
105 class AutoTypeMenu : public BC_PopupMenu
106 {
107 public:
108         AutoTypeMenu(MWindow *mwindow, ZoomBar *zoombar,
109                      int x, int y, int wid);
110         void create_objects();
111         static const char* to_text(int shape);
112         static int from_text(char *text);
113         int handle_event();
114         MWindow *mwindow;
115         ZoomBar *zoombar;
116 };
117
118
119 class ZoomTextBox : public BC_TextBox
120 {
121 public:
122         ZoomTextBox(MWindow *mwindow, ZoomBar *zoombar, int x, int y, const char *text);
123         int button_press_event();
124         int handle_event();
125         MWindow *mwindow;
126         ZoomBar *zoombar;
127 };
128
129
130 class FromTextBox : public BC_TextBox
131 {
132 public:
133         FromTextBox(MWindow *mwindow, ZoomBar *zoombar, int x, int y);
134         int handle_event();
135         int update_position(double new_position);
136         char string[256], string2[256];
137         MWindow *mwindow;
138         ZoomBar *zoombar;
139 };
140
141
142 class LengthTextBox : public BC_TextBox
143 {
144 public:
145         LengthTextBox(MWindow *mwindow, ZoomBar *zoombar, int x, int y);
146         int handle_event();
147         int update_position(double new_position);
148         char string[256], string2[256];
149         MWindow *mwindow;
150         ZoomBar *zoombar;
151 };
152
153 class ToTextBox : public BC_TextBox
154 {
155 public:
156         ToTextBox(MWindow *mwindow, ZoomBar *zoombar, int x, int y);
157         int handle_event();
158         int update_position(double new_position);
159         char string[256], string2[256];
160         MWindow *mwindow;
161         ZoomBar *zoombar;
162 };
163
164 class TitleBarAlpha : public BC_FSlider
165 {
166 public:
167         TitleBarAlpha(MWindow *mwindow, ZoomBar *zoombar, int x, int y);
168         int handle_event();
169         MWindow *mwindow;
170         ZoomBar *zoombar;
171 };
172
173 #endif