~ubuntu-branches/ubuntu/lucid/synfigstudio/lucid

« back to all changes in this revision

Viewing changes to src/gtkmm/dock_timetrack.h

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Zacchiroli
  • Date: 2010-01-26 11:20:50 UTC
  • mfrom: (1.1.5 upstream) (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100126112050-e43u17c5zpc5hse4
Tags: 0.62.00-1
* QA upload
* Properly orphan the package (set Maintainer to QA, empty Uploaders)
* New upstream release
* Bump build-dep on (lib)synfig to most recent version
* Bump standards-version to 3.8.3, no changes needed
* Change section of the "-dbg" package to debug, thanks lintian

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*!     \file dock_timetrack.h
3
3
**      \brief Template Header
4
4
**
5
 
**      $Id: dock_timetrack.h 336 2007-03-16 00:39:42Z dooglus $
 
5
**      $Id$
6
6
**
7
7
**      \legal
8
8
**      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
 
9
**  Copyright (c) 2009 Carlos López
9
10
**
10
11
**      This package is free software; you can redistribute it and/or
11
12
**      modify it under the terms of the GNU General Public License as
40
41
 
41
42
namespace studio {
42
43
class Widget_Timeslider;
 
44
class Widget_Keyframe_List;
43
45
 
44
46
class Dock_Timetrack : public Dock_CanvasSpecific
45
47
{
46
48
        Gtk::HScrollbar* hscrollbar_;
47
49
        Gtk::VScrollbar* vscrollbar_;
48
50
        Widget_Timeslider* widget_timeslider_;
 
51
        Widget_Keyframe_List* widget_kf_list_;
49
52
        Gtk::Table* table_;
50
53
 
51
54
protected:
59
62
 
60
63
        Dock_Timetrack();
61
64
        ~Dock_Timetrack();
62
 
}; // END of Dock_Keyframes
 
65
}; // END of Dock_Timetrack
63
66
 
64
67
}; // END of namespace studio
65
68