2020-02-20 07:12:36 -05:00
|
|
|
/*
|
2021-06-13 10:32:18 -04:00
|
|
|
* Copyright (C) 2020 Luciano Iam <oss@lucianoiam.com>
|
2020-02-20 07:12:36 -05:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2020-02-23 10:13:22 -05:00
|
|
|
#ifndef _ardour_surface_websockets_component_h_
|
|
|
|
#define _ardour_surface_websockets_component_h_
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-04-18 06:39:18 -04:00
|
|
|
#include "control_protocol/basic_ui.h"
|
|
|
|
|
2020-02-20 07:12:36 -05:00
|
|
|
#include <glibmm.h>
|
|
|
|
|
|
|
|
#include "ardour/session.h"
|
|
|
|
#include "pbd/event_loop.h"
|
|
|
|
|
2020-02-23 10:03:59 -05:00
|
|
|
namespace ArdourSurface
|
|
|
|
{
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-08-30 15:15:07 -04:00
|
|
|
class ArdourWebsockets;
|
2020-05-30 13:08:27 -04:00
|
|
|
class ArdourMixer;
|
|
|
|
class ArdourTransport;
|
2020-02-20 07:12:36 -05:00
|
|
|
class WebsocketsServer;
|
|
|
|
class WebsocketsDispatcher;
|
|
|
|
|
|
|
|
class SurfaceComponent
|
|
|
|
{
|
2020-02-23 10:03:59 -05:00
|
|
|
public:
|
|
|
|
SurfaceComponent (ArdourSurface::ArdourWebsockets& surface)
|
|
|
|
: _surface (surface){};
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-02-23 10:03:59 -05:00
|
|
|
virtual ~SurfaceComponent (){};
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-02-23 10:03:59 -05:00
|
|
|
virtual int start ()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
virtual int stop ()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-04-18 06:39:18 -04:00
|
|
|
BasicUI& basic_ui () const;
|
2021-06-13 17:49:13 -04:00
|
|
|
virtual PBD::EventLoop* event_loop () const;
|
2020-02-23 10:03:59 -05:00
|
|
|
Glib::RefPtr<Glib::MainLoop> main_loop () const;
|
|
|
|
ARDOUR::Session& session () const;
|
2020-08-29 16:41:47 -04:00
|
|
|
ArdourMixer& mixer () const;
|
2020-05-30 13:08:27 -04:00
|
|
|
ArdourTransport& transport () const;
|
2020-02-23 10:03:59 -05:00
|
|
|
WebsocketsServer& server () const;
|
|
|
|
WebsocketsDispatcher& dispatcher () const;
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-02-23 10:03:59 -05:00
|
|
|
protected:
|
|
|
|
ArdourSurface::ArdourWebsockets& _surface;
|
2020-02-20 07:12:36 -05:00
|
|
|
};
|
|
|
|
|
2020-08-30 15:15:07 -04:00
|
|
|
} // namespace ArdourSurface
|
|
|
|
|
2020-04-09 09:49:06 -04:00
|
|
|
#endif // _ardour_surface_websockets_component_h_
|