2008-02-21 11:01:25 +01:00
|
|
|
|
|
|
|
/*******************************************************************************/
|
|
|
|
/* Copyright (C) 2008 Jonathan Moore Liles */
|
|
|
|
/* */
|
|
|
|
/* 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; see the file COPYING. If not,write to the Free Software */
|
|
|
|
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Track.H"
|
2008-02-22 11:22:22 +01:00
|
|
|
#include "Loggable.H"
|
2008-02-21 11:01:25 +01:00
|
|
|
|
2008-02-21 11:39:13 +01:00
|
|
|
#include <algorithm>
|
|
|
|
using namespace std;
|
|
|
|
|
2008-02-21 11:01:25 +01:00
|
|
|
/* Base class for virtual widget on a track */
|
2008-02-22 11:22:22 +01:00
|
|
|
class Track_Widget : public Loggable
|
2008-02-21 11:01:25 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
Track *_track; /* track this region belongs to */
|
|
|
|
|
|
|
|
nframes_t _offset; /* where on the timeline */
|
|
|
|
nframes_t _start; /* first sample from clip */
|
|
|
|
nframes_t _end; /* last sample from clip */
|
|
|
|
|
|
|
|
bool _selected;
|
|
|
|
|
|
|
|
Fl_Color _color; /* color of waveform */
|
|
|
|
Fl_Color _box_color; /* color of background (box) */
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
Track_Widget ( )
|
|
|
|
{
|
|
|
|
_track = NULL;
|
|
|
|
|
|
|
|
_offset = _start = _end = 0;
|
|
|
|
|
|
|
|
_selected = false;
|
|
|
|
}
|
|
|
|
|
2008-02-27 21:04:17 +01:00
|
|
|
virtual ~Track_Widget ( )
|
|
|
|
{
|
|
|
|
redraw();
|
|
|
|
_track->remove( this );
|
|
|
|
}
|
|
|
|
|
2008-02-21 11:01:25 +01:00
|
|
|
Fl_Group * parent ( void ) const { return _track; }
|
|
|
|
|
2008-02-21 17:20:36 +01:00
|
|
|
int scroll_x ( void ) const { return timeline->ts_to_x( timeline->xoffset ); }
|
|
|
|
nframes_t scroll_ts ( void ) const { return timeline->xoffset; }
|
2008-02-21 11:01:25 +01:00
|
|
|
|
|
|
|
int y ( void ) const { return _track->y(); }
|
|
|
|
int h ( void ) const { return _track->h(); }
|
|
|
|
|
2008-02-29 03:47:29 +01:00
|
|
|
int x ( void ) const { return _offset < timeline->xoffset ? _track->x() - 1 : min( 32767, _track->x() + timeline->ts_to_x( _offset - timeline->xoffset ) ); }
|
2008-02-21 11:01:25 +01:00
|
|
|
virtual int w ( void ) const
|
|
|
|
{
|
2008-02-21 17:20:36 +01:00
|
|
|
int tx = timeline->ts_to_x( _offset );
|
2008-02-21 11:01:25 +01:00
|
|
|
|
|
|
|
int rw;
|
|
|
|
if ( tx < scroll_x() )
|
|
|
|
rw = abs_w() - (scroll_x() - tx);
|
|
|
|
else
|
|
|
|
rw = abs_w();
|
|
|
|
|
|
|
|
return min( rw, _track->w() );
|
|
|
|
}
|
|
|
|
|
2008-02-22 20:56:07 +01:00
|
|
|
int abs_x ( void ) const { return timeline->ts_to_x( _offset ); }
|
2008-02-21 17:20:36 +01:00
|
|
|
virtual int abs_w ( void ) const { return timeline->ts_to_x( _end - _start ); }
|
2008-02-21 11:01:25 +01:00
|
|
|
|
|
|
|
Fl_Color color ( void ) { return _color; }
|
|
|
|
Fl_Color box_color ( void ) { return _box_color; }
|
|
|
|
|
|
|
|
Track * track ( void ) const { return _track; }
|
|
|
|
void track ( Track *t ) { _track = t; }
|
|
|
|
|
|
|
|
nframes_t offset ( void ) const { return _offset; }
|
|
|
|
void offset ( nframes_t o ) { _offset = o; }
|
|
|
|
|
|
|
|
void end ( nframes_t v ) { _end = v; }
|
|
|
|
nframes_t end ( void ) const { return _end; }
|
|
|
|
void start ( nframes_t v ) { _start = v; }
|
|
|
|
nframes_t start ( void ) const { return _start; }
|
|
|
|
|
|
|
|
virtual nframes_t length ( void ) const { return _end - _start; }
|
|
|
|
|
|
|
|
virtual Fl_Boxtype box ( void ) const { return FL_UP_BOX; }
|
2008-02-22 09:51:22 +01:00
|
|
|
virtual Fl_Align align ( void ) const { return (Fl_Align)0; }
|
2008-02-21 11:01:25 +01:00
|
|
|
|
2008-02-22 09:51:22 +01:00
|
|
|
virtual void
|
2008-02-21 19:31:15 +01:00
|
|
|
redraw ( void )
|
|
|
|
{
|
2008-02-22 09:51:22 +01:00
|
|
|
if ( ! (align() & FL_ALIGN_INSIDE) )
|
|
|
|
{
|
|
|
|
// FIXME: to better..
|
|
|
|
_track->redraw();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
_track->damage( FL_DAMAGE_EXPOSE, x(), y(), w(), h() );
|
2008-02-21 19:31:15 +01:00
|
|
|
}
|
2008-02-21 11:01:25 +01:00
|
|
|
|
2008-02-21 19:31:15 +01:00
|
|
|
/* just draw a simple box */
|
2008-02-21 11:01:25 +01:00
|
|
|
virtual void
|
|
|
|
draw_box ( int X, int Y, int W, int H )
|
|
|
|
{
|
2008-02-21 11:45:50 +01:00
|
|
|
fl_draw_box( box(), x(), y(), w(), h(), _box_color );
|
2008-02-21 11:01:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void
|
|
|
|
draw ( int X, int Y, int W, int H )
|
|
|
|
{
|
|
|
|
draw_box( X, Y, W, H );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-29 03:02:40 +01:00
|
|
|
/* virtual void */
|
|
|
|
/* dump ( void ) */
|
|
|
|
/* { */
|
|
|
|
/* printf( "Unknown %p %lu %lu %lu\n", this, _offset, _start, _end ); */
|
|
|
|
/* } */
|
2008-02-22 10:44:09 +01:00
|
|
|
|
2008-02-21 11:01:25 +01:00
|
|
|
virtual void
|
|
|
|
draw_label ( const char *label, Fl_Align align )
|
|
|
|
{
|
|
|
|
int X, Y;
|
|
|
|
|
|
|
|
X = x();
|
|
|
|
Y = y();
|
|
|
|
|
|
|
|
/* FIXME: why do we have to to this here? why doesn't Fl_Lable::draw take care of this stuff? */
|
|
|
|
if ( ! (align & FL_ALIGN_INSIDE) )
|
|
|
|
{
|
|
|
|
if ( align & FL_ALIGN_RIGHT )
|
|
|
|
{
|
|
|
|
X += w();
|
|
|
|
align = (Fl_Align)((align & ~FL_ALIGN_RIGHT) | FL_ALIGN_LEFT);
|
|
|
|
}
|
|
|
|
if ( align & FL_ALIGN_BOTTOM )
|
|
|
|
{
|
|
|
|
Y += h();
|
|
|
|
align = (Fl_Align)((align & ~FL_ALIGN_BOTTOM) | FL_ALIGN_TOP);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fl_font( FL_HELVETICA, 14 ); */
|
|
|
|
/* fl_color( FL_BLACK ); */
|
|
|
|
/* fl_draw( label, X + 2, Y + 2, w(), h(), align ); */
|
|
|
|
/* fl_color( FL_WHITE ); */
|
|
|
|
/* fl_draw( label, X, Y, w(), h(), align ); */
|
|
|
|
|
|
|
|
/* for some reasone FL_SHADOW_LABLE doesn't always use
|
|
|
|
* black for the shadow color...so we can't rely on it. */
|
|
|
|
|
|
|
|
Fl_Label lab;
|
|
|
|
|
|
|
|
lab.color = FL_WHITE;
|
|
|
|
lab.type = FL_SHADOW_LABEL;
|
|
|
|
lab.value = label;
|
|
|
|
lab.font = FL_HELVETICA;
|
|
|
|
lab.size = 14;
|
|
|
|
|
|
|
|
int W = w();
|
|
|
|
int H = h();
|
|
|
|
|
|
|
|
if ( align & FL_ALIGN_INSIDE )
|
|
|
|
{
|
|
|
|
X += Fl::box_dx( box() );
|
|
|
|
Y += Fl::box_dy( box() );
|
|
|
|
W -= Fl::box_dw( box() );
|
|
|
|
H -= Fl::box_dh( box() );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( align & FL_ALIGN_CLIP ) fl_push_clip( X, Y, W, H );
|
|
|
|
|
|
|
|
int dx = 0;
|
|
|
|
|
2008-02-22 09:51:22 +01:00
|
|
|
if ( abs_x() < scroll_x() )
|
|
|
|
dx = min( 32767, scroll_x() - abs_x() );
|
2008-02-21 11:01:25 +01:00
|
|
|
|
|
|
|
lab.draw( X - dx, Y, W, H, align );
|
|
|
|
|
|
|
|
if ( align & FL_ALIGN_CLIP ) fl_pop_clip();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* base hanlde just does basic dragging */
|
|
|
|
virtual int
|
|
|
|
handle ( int m )
|
|
|
|
{
|
|
|
|
static int ox, oy;
|
2008-02-24 14:28:55 +01:00
|
|
|
static bool dragging = false;
|
2008-02-21 11:01:25 +01:00
|
|
|
|
|
|
|
int X = Fl::event_x();
|
|
|
|
int Y = Fl::event_y();
|
|
|
|
|
2008-02-24 14:28:55 +01:00
|
|
|
Logger _log( this );
|
|
|
|
|
2008-02-21 11:01:25 +01:00
|
|
|
switch ( m )
|
|
|
|
{
|
2008-02-24 08:42:41 +01:00
|
|
|
case FL_ENTER:
|
|
|
|
fl_cursor( FL_CURSOR_HAND );
|
|
|
|
return 1;
|
|
|
|
case FL_LEAVE:
|
|
|
|
fl_cursor( FL_CURSOR_DEFAULT );
|
|
|
|
return 1;
|
2008-02-21 11:01:25 +01:00
|
|
|
case FL_PUSH:
|
|
|
|
{
|
|
|
|
ox = x() - X;
|
|
|
|
oy = y() - Y;
|
|
|
|
|
|
|
|
if ( Fl::event_state() & FL_CTRL &&
|
|
|
|
Fl::event_button() == 3 )
|
|
|
|
{
|
2008-02-28 12:55:09 +01:00
|
|
|
// log_destroy();
|
2008-02-22 11:22:22 +01:00
|
|
|
|
2008-02-22 05:53:39 +01:00
|
|
|
redraw();
|
2008-02-21 11:01:25 +01:00
|
|
|
_track->queue_delete( this );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
case FL_RELEASE:
|
2008-02-24 14:28:55 +01:00
|
|
|
if ( dragging )
|
|
|
|
_log.release();
|
|
|
|
dragging = false;
|
2008-02-21 11:01:25 +01:00
|
|
|
fl_cursor( FL_CURSOR_DEFAULT );
|
|
|
|
return 1;
|
|
|
|
case FL_DRAG:
|
|
|
|
{
|
2008-02-24 14:28:55 +01:00
|
|
|
if ( ! dragging )
|
|
|
|
{
|
|
|
|
dragging = true;
|
|
|
|
_log.hold();
|
|
|
|
}
|
|
|
|
|
2008-02-21 19:31:15 +01:00
|
|
|
redraw();
|
|
|
|
|
2008-02-29 03:02:40 +01:00
|
|
|
if ( timeline->ts_to_x( timeline->xoffset ) + ox + X > _track->x() )
|
2008-02-21 11:01:25 +01:00
|
|
|
{
|
2008-02-29 03:02:40 +01:00
|
|
|
int nx = (ox + X) - _track->x();
|
2008-02-21 11:01:25 +01:00
|
|
|
|
2008-02-21 17:20:36 +01:00
|
|
|
_offset = timeline->x_to_ts( nx ) + timeline->xoffset;
|
2008-02-21 11:01:25 +01:00
|
|
|
|
|
|
|
_track->snap( this );
|
|
|
|
}
|
|
|
|
|
2008-02-21 19:31:15 +01:00
|
|
|
// _track->redraw();
|
2008-02-21 11:01:25 +01:00
|
|
|
fl_cursor( FL_CURSOR_MOVE );
|
|
|
|
|
|
|
|
|
|
|
|
if ( X >= _track->x() + _track->w() ||
|
|
|
|
X <= _track->x() )
|
|
|
|
{
|
|
|
|
/* this drag needs to scroll */
|
|
|
|
|
2008-02-21 17:20:36 +01:00
|
|
|
nframes_t pos = timeline->xoffset;
|
2008-02-21 11:01:25 +01:00
|
|
|
|
2008-02-21 17:20:36 +01:00
|
|
|
nframes_t d = timeline->x_to_ts( 100 );
|
2008-02-21 11:01:25 +01:00
|
|
|
|
|
|
|
if ( X <= _track->x() )
|
|
|
|
{
|
|
|
|
|
|
|
|
if ( pos > d )
|
|
|
|
pos -= d;
|
|
|
|
else
|
|
|
|
pos = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pos += d;
|
|
|
|
|
2008-02-21 19:31:15 +01:00
|
|
|
timeline->position( timeline->ts_to_x( pos ) );
|
2008-02-28 19:34:10 +01:00
|
|
|
_track->redraw();
|
|
|
|
// timeline->redraw();
|
2008-02-21 11:01:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
operator< ( const Track_Widget & rhs )
|
|
|
|
{
|
|
|
|
return _offset < rhs._offset;
|
|
|
|
}
|
|
|
|
};
|