2012-06-06 11:47:09 +00:00
|
|
|
/*
|
2019-08-02 23:26:43 +02:00
|
|
|
* Copyright (C) 2015-2017 Robin Gareus <robin@gareus.org>
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2012-06-06 11:47:09 +00:00
|
|
|
|
2024-09-25 18:38:59 -06:00
|
|
|
#pragma once
|
2015-12-08 08:08:19 +10:00
|
|
|
|
2025-02-01 15:15:02 +01:00
|
|
|
#include <ytkmm/spinbutton.h>
|
2012-06-06 11:47:09 +00:00
|
|
|
#include "panner_editor.h"
|
|
|
|
|
|
|
|
|
|
class MonoPanner;
|
|
|
|
|
|
|
|
|
|
/** Editor dialog for the mono panner */
|
|
|
|
|
class MonoPannerEditor : public PannerEditor
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
MonoPannerEditor (MonoPanner *);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void panner_going_away ();
|
|
|
|
|
void update_editor ();
|
|
|
|
|
void left_changed ();
|
|
|
|
|
void right_changed ();
|
2015-10-05 16:17:49 +02:00
|
|
|
|
2012-06-06 11:47:09 +00:00
|
|
|
MonoPanner* _panner;
|
|
|
|
|
Gtk::SpinButton _left;
|
|
|
|
|
Gtk::SpinButton _right;
|
|
|
|
|
bool _ignore_changes;
|
|
|
|
|
|
|
|
|
|
PBD::ScopedConnectionList _connections;
|
|
|
|
|
};
|
2015-12-08 08:08:19 +10:00
|
|
|
|