13
0
livetrax/libs/surfaces/websockets/component.h

71 lines
1.9 KiB
C
Raw Normal View History

2020-02-20 07:12:36 -05: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
#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"
namespace ArdourSurface
{
2020-02-20 07:12:36 -05:00
class ArdourWebsockets;
class ArdourMixer;
class ArdourTransport;
2020-02-20 07:12:36 -05:00
class WebsocketsServer;
class WebsocketsDispatcher;
class SurfaceComponent
{
public:
SurfaceComponent (ArdourSurface::ArdourWebsockets& surface)
: _surface (surface){};
2020-02-20 07:12:36 -05:00
virtual ~SurfaceComponent (){};
2020-02-20 07:12:36 -05:00
virtual int start ()
{
return 0;
}
virtual int stop ()
{
return 0;
}
2020-02-20 07:12:36 -05:00
BasicUI& basic_ui () const;
virtual PBD::EventLoop* event_loop () const;
Glib::RefPtr<Glib::MainLoop> main_loop () const;
ARDOUR::Session& session () const;
2020-08-29 16:41:47 -04:00
ArdourMixer& mixer () const;
ArdourTransport& transport () const;
WebsocketsServer& server () const;
WebsocketsDispatcher& dispatcher () const;
2020-02-20 07:12:36 -05:00
protected:
ArdourSurface::ArdourWebsockets& _surface;
2020-02-20 07:12:36 -05:00
};
} // namespace ArdourSurface
#endif // _ardour_surface_websockets_component_h_