LMMS
Loading...
Searching...
No Matches
preset_gui.h
Go to the documentation of this file.
1/* Calf DSP Library
2 * GUI functions for preset management.
3 * Copyright (C) 2007 Krzysztof Foltman
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18 */
19#ifndef __CALF_PRESET_GUI_H
20#define __CALF_PRESET_GUI_H
21
22
23#include <calf/giface.h>
24#include <calf/gui.h>
25
26namespace calf_plugins {
27
29{
31 GtkWidget *store_preset_dlg;
32
34 virtual void store_preset();
35 virtual void activate_preset(int preset, bool builtin);
36 virtual ~gui_preset_access() {}
37
38 static void on_dlg_destroy_window(GtkWindow *window, gpointer data);
39};
40
41};
42
43#endif
Definition gui.h:142
JSAMPIMAGE data
Definition jpeglib.h:945
Definition benchmark.cpp:53
gui_preset_access(plugin_gui *_gui)
Definition preset_gui.cpp:41
virtual void store_preset()
Definition preset_gui.cpp:47
virtual ~gui_preset_access()
Definition preset_gui.h:36
virtual void activate_preset(int preset, bool builtin)
Definition preset_gui.cpp:124
GtkWidget * store_preset_dlg
Definition preset_gui.h:31
static void on_dlg_destroy_window(GtkWindow *window, gpointer data)
Definition preset_gui.cpp:134
plugin_gui * gui
Definition preset_gui.h:30
Definition giface.h:795