Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.0 / cinelerra / zoompanel.h
diff --git a/cinelerra-5.0/cinelerra/zoompanel.h b/cinelerra-5.0/cinelerra/zoompanel.h
deleted file mode 100644 (file)
index cfa964c..0000000
+++ /dev/null
@@ -1,132 +0,0 @@
-
-/*
- * CINELERRA
- * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
- * 
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- * 
- */
-
-#ifndef ZOOMPANEL_H
-#define ZOOMPANEL_H
-
-
-#include "guicast.h"
-#include "mwindow.inc"
-
-class ZoomPopup;
-class ZoomTumbler;
-
-#define ZOOM_PERCENTAGE 0
-#define ZOOM_FLOAT 1
-#define ZOOM_TIME 2
-#define ZOOM_LONG 3
-
-class ZoomHash
-{
-public:
-       ZoomHash(double value, char *text);
-       ~ZoomHash();
-
-       double value;
-       char *text;
-} ;
-
-class ZoomPanel
-{
-public:
-       ZoomPanel(MWindow *mwindow, 
-               BC_WindowBase *subwindow, 
-               double value, 
-               int x, 
-               int y, 
-               int w, 
-               double min = 1,
-               double max = 131072,
-               int zoom_type = ZOOM_PERCENTAGE);
-       ZoomPanel(MWindow *mwindow, 
-               BC_WindowBase *subwindow, 
-               double value, 
-               int x, 
-               int y, 
-               int w, 
-               double *user_table,
-               int user_size,
-               int zoom_type = ZOOM_PERCENTAGE);
-       ~ZoomPanel();
-
-       virtual int handle_event() { return 1; };
-       int get_w();
-       void calculate_menu();
-       static int calculate_w(int menu_w);
-       void update_menu();
-       void create_objects();
-       double get_value();
-       char* get_text();
-       void set_text(const char *text);
-       char* value_to_text(double value, int use_table = 1);
-       double text_to_zoom(char *text, int use_table = 1);
-       void update(double value);
-       void update(const char *value);
-       void reposition_window(int x, int y);
-// Set images to be used
-       void set_menu_images(VFrame **data);
-       void set_tumbler_images(VFrame **data);
-
-       MWindow *mwindow;
-       BC_WindowBase *subwindow;
-       int x;
-       int y;
-       int w;
-       double value;
-
-       ZoomPopup *zoom_text;
-       ZoomTumbler *zoom_tumbler;
-       char string[BCTEXTLEN];
-       double min, max;
-       double *user_table;
-       int user_size;
-       int zoom_type;
-       ArrayList<ZoomHash*> zoom_table;
-       VFrame **menu_images;
-       VFrame **tumbler_images;
-};
-
-class ZoomPopup : public BC_PopupMenu
-{
-public:
-       ZoomPopup(MWindow *mwindow, ZoomPanel *panel, int x, int y);
-       ~ZoomPopup();
-
-       int handle_event();
-
-       ZoomPanel *panel;
-       MWindow *mwindow;
-};
-
-class ZoomTumbler : public BC_Tumbler
-{
-public:
-       ZoomTumbler(MWindow *mwindow, ZoomPanel *panel, int x, int y);
-       ~ZoomTumbler();
-       
-       int handle_up_event();
-       int handle_down_event();
-       
-       ZoomPanel *panel;
-       MWindow *mwindow;
-};
-
-#endif