Make Analyzer UI require instance-access
[calf.git] / src / calf / gtk_session_env.h
blobbb2285e4d5cfa2da473cc79783ddab9e743f6401
1 /* Calf DSP Library Utility Application - calfjackhost
2 * GTK+ implementation of session_environment_iface.
4 * Copyright (C) 2007-2011 Krzysztof Foltman
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 * 02110-1301, USA.
22 #include <calf/gui.h>
24 namespace calf_plugins
27 class gtk_session_environment: public session_environment_iface
29 public:
30 virtual void init_gui(int &argc, char **&argv);
31 virtual void start_gui_loop();
32 virtual void quit_gui_loop();
33 virtual main_window_iface *create_main_window();
34 ~gtk_session_environment();