/* * CINELERRA * Copyright (C) 1997-2014 Adam Williams * * 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 #include #include #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 module_levels; int state; void show_playback_cursor(int64_t position); int view_follows_playback; // Delay until startup Condition *startup_lock; MWindow *mwindow; double last_position; Timer timer; }; #endif