/*******************************************************************************/ /* Copyright (C) 2009 Jonathan Moore Liles */ /* */ /* 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; see the file COPYING. If not,write to the Free Software */ /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /*******************************************************************************/ #pragma once #include class Fl_Pack; class Fl_Flowpack; class Module; class Fl_Menu_Button; class Module_Parameter_Editor : public Fl_Double_Window { Module *_module; struct callback_data { Module_Parameter_Editor *base_widget; int port_number[3]; callback_data ( Module_Parameter_Editor *base_widget, int port_number ) { this->base_widget = base_widget; this->port_number[0] = port_number; this->port_number[1] = -1; } callback_data ( Module_Parameter_Editor *base_widget, int port_number1, int port_number2 ) { this->base_widget = base_widget; this->port_number[0] = port_number1; this->port_number[1] = port_number2; } }; static void cb_value_handle ( Fl_Widget *w, void *v ); static void cb_panner_value_handle ( Fl_Widget *w, void *v ); static void cb_mode_handle ( Fl_Widget *w, void *v ); static void cb_bound_handle ( Fl_Widget *w, void *v ); void set_value (int i, float value ); void bind_control ( int i ); void make_controls ( void ); Fl_Pack *main_pack; Fl_Flowpack *control_pack; Fl_Menu_Button *mode_choice; bool _resized; public: void handle_control_changed ( Module::Port *p ); Module_Parameter_Editor ( Module *module ); virtual ~Module_Parameter_Editor ( ); };