2009-11-12 05:47:05 +00:00
|
|
|
/*
|
2019-08-02 23:26:43 +02:00
|
|
|
* Copyright (C) 2009 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
|
* Copyright (C) 2010-2011 Carl Hetherington <carl@carlh.net>
|
|
|
|
|
* Copyright (C) 2017 Robin Gareus <robin@gareus.org>
|
|
|
|
|
*
|
|
|
|
|
* 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.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
*/
|
2009-11-12 05:47:05 +00:00
|
|
|
|
2024-09-25 18:38:59 -06:00
|
|
|
#pragma once
|
2009-11-12 05:47:05 +00:00
|
|
|
|
2017-02-14 17:15:16 +01:00
|
|
|
#include "pbd/xml++.h"
|
|
|
|
|
|
2025-02-01 15:15:02 +01:00
|
|
|
#include <ytkmm/scrolledwindow.h>
|
2010-07-19 21:47:07 +00:00
|
|
|
#include "ardour/session_handle.h"
|
2009-11-12 05:47:05 +00:00
|
|
|
#include "editor_component.h"
|
|
|
|
|
|
|
|
|
|
class LocationUI;
|
|
|
|
|
|
|
|
|
|
namespace Gtk {
|
|
|
|
|
class Widget;
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-19 21:47:07 +00:00
|
|
|
class EditorLocations : public EditorComponent, public ARDOUR::SessionHandlePtr
|
2009-11-12 05:47:05 +00:00
|
|
|
{
|
2017-07-01 21:11:14 +02:00
|
|
|
public:
|
2009-11-12 05:47:05 +00:00
|
|
|
EditorLocations (Editor *);
|
|
|
|
|
|
2009-12-17 18:24:23 +00:00
|
|
|
void set_session (ARDOUR::Session *);
|
2009-11-12 05:47:05 +00:00
|
|
|
|
|
|
|
|
Gtk::Widget& widget ();
|
2017-02-14 17:15:16 +01:00
|
|
|
XMLNode & get_state () const;
|
|
|
|
|
int set_state (const XMLNode&);
|
2009-11-12 05:47:05 +00:00
|
|
|
|
2017-07-01 21:11:14 +02:00
|
|
|
private:
|
2011-01-03 18:53:46 +00:00
|
|
|
Gtk::ScrolledWindow _scroller;
|
|
|
|
|
LocationUI* _locations;
|
2009-11-12 05:47:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|