Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.0 / cinelerra / tracking.h
diff --git a/cinelerra-5.0/cinelerra/tracking.h b/cinelerra-5.0/cinelerra/tracking.h
deleted file mode 100644 (file)
index f5d7ad7..0000000
+++ /dev/null
@@ -1,96 +0,0 @@
-
-/*
- * CINELERRA
- * Copyright (C) 1997-2014 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 TRACKING_H
-#define TRACKING_H
-
-#include <sys/time.h>
-#include <sys/types.h>
-#include <unistd.h>
-
-#include "condition.inc"
-#include "mwindow.inc"
-#include "mwindowgui.inc"
-#include "playbackengine.inc"
-#include "thread.h"
-#include "bctimer.h"
-
-class Tracking : public Thread
-{
-public:
-       Tracking(MWindow *mwindow);
-       virtual ~Tracking();
-
-       void create_objects();
-       virtual int start_playback(double new_position);
-       virtual int stop_playback();
-
-// Called by the tracker to get the current position
-       virtual PlaybackEngine* get_playback_engine();
-       virtual double get_tracking_position();
-// Update position displayed
-       virtual void update_tracker(double position);
-// Update meters
-       virtual void update_meters(int64_t position);
-       virtual void stop_meters();
-//     int get_pixel(double position);
-
-// Erase cursor if it's visible.  Called by start_playback
-// Draw new cursor at last_position if invisible
-       virtual void draw();
-
-
-
-       void run();
-
-// Values to return from playback_engine to update_meter .
-// Use ArrayList to simplify module counting
-       ArrayList<double> module_levels;
-       int state;
-
-
-
-
-
-
-
-
-
-
-       void show_playback_cursor(int64_t position);
-       int view_follows_playback;
-// Delay until startup
-       Condition *startup_lock;
-       MWindow *mwindow;
-       MWindowGUI *gui;
-       double last_position;
-       int follow_loop;
-       int64_t current_offset;
-       int reverse;
-       int double_speed;
-       Timer timer;
-// Pixel of last drawn cursor
-       int pixel;
-// Cursor is visible
-       int visible;
-};
-
-#endif