2017-03-10 17:51:39 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
2019-08-02 17:26:43 -04: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.
|
2017-03-10 17:51:39 -05:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2019-08-02 17:26:43 -04:00
|
|
|
* 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.
|
2017-03-10 17:51:39 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __gtkardour_stripable_colorpicker_h__
|
|
|
|
#define __gtkardour_stripable_colorpicker_h__
|
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
2017-03-30 09:20:48 -04:00
|
|
|
#include <gtkmm/colorbutton.h>
|
2017-03-10 17:51:39 -05:00
|
|
|
#include <gtkmm/colorselection.h>
|
2017-03-30 09:20:48 -04:00
|
|
|
|
2017-03-10 17:51:39 -05:00
|
|
|
#include "ardour/stripable.h"
|
|
|
|
|
|
|
|
class StripableColorDialog : public Gtk::ColorSelectionDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
StripableColorDialog ();
|
|
|
|
~StripableColorDialog ();
|
|
|
|
void reset ();
|
|
|
|
void popup (boost::shared_ptr<ARDOUR::Stripable> s);
|
2017-03-30 09:20:48 -04:00
|
|
|
void popup (const std::string&, uint32_t);
|
|
|
|
sigc::signal<void, uint32_t> ColorChanged;
|
2017-03-10 17:51:39 -05:00
|
|
|
|
|
|
|
private:
|
2017-03-10 20:23:34 -05:00
|
|
|
void initialize_color_palette ();
|
2017-03-10 17:51:39 -05:00
|
|
|
void finish_color_edit (int response);
|
2017-03-14 12:03:14 -04:00
|
|
|
void color_changed ();
|
2017-03-10 17:51:39 -05:00
|
|
|
|
|
|
|
boost::shared_ptr<ARDOUR::Stripable> _stripable;
|
2017-03-14 12:03:14 -04:00
|
|
|
ARDOUR::PresentationInfo::color_t _initial_color;
|
|
|
|
|
|
|
|
sigc::connection _color_changed_connection;
|
2017-03-10 20:23:34 -05:00
|
|
|
|
|
|
|
|
|
|
|
static bool palette_initialized;
|
|
|
|
static void palette_changed_hook (const Glib::RefPtr<Gdk::Screen>&, const Gdk::ArrayHandle_Color&);
|
|
|
|
static Gtk::ColorSelection::SlotChangePaletteHook gtk_palette_changed_hook;
|
2017-03-10 17:51:39 -05:00
|
|
|
};
|
|
|
|
|
2017-03-30 09:20:48 -04:00
|
|
|
class ArdourColorButton : public Gtk::ColorButton
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ArdourColorButton ();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void on_clicked();
|
|
|
|
void color_selected (uint32_t color);
|
|
|
|
|
|
|
|
private:
|
|
|
|
StripableColorDialog _color_picker;
|
|
|
|
};
|
|
|
|
|
2017-03-10 17:51:39 -05:00
|
|
|
#endif
|