2017-03-10 23:51:39 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2017 Robin Gareus <robin@gareus.org>
|
|
|
|
|
*
|
2019-08-02 23:26:43 +02: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 23:51:39 +01: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 23:26:43 +02: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 23:51:39 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __gtkardour_stripable_colorpicker_h__
|
|
|
|
|
#define __gtkardour_stripable_colorpicker_h__
|
|
|
|
|
|
2023-02-16 10:59:41 -07:00
|
|
|
#include <memory>
|
|
|
|
|
|
2017-03-30 15:20:48 +02:00
|
|
|
#include <gtkmm/colorbutton.h>
|
2017-03-10 23:51:39 +01:00
|
|
|
#include <gtkmm/colorselection.h>
|
2017-03-30 15:20:48 +02:00
|
|
|
|
2017-03-10 23:51:39 +01:00
|
|
|
#include "ardour/stripable.h"
|
|
|
|
|
|
|
|
|
|
class StripableColorDialog : public Gtk::ColorSelectionDialog
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
StripableColorDialog ();
|
|
|
|
|
~StripableColorDialog ();
|
|
|
|
|
void reset ();
|
2023-02-16 16:33:28 -07:00
|
|
|
void popup (std::shared_ptr<ARDOUR::Stripable> s);
|
2017-03-30 15:20:48 +02:00
|
|
|
void popup (const std::string&, uint32_t);
|
|
|
|
|
sigc::signal<void, uint32_t> ColorChanged;
|
2017-03-10 23:51:39 +01:00
|
|
|
|
|
|
|
|
private:
|
2017-03-11 02:23:34 +01:00
|
|
|
void initialize_color_palette ();
|
2017-03-10 23:51:39 +01:00
|
|
|
void finish_color_edit (int response);
|
2017-03-14 17:03:14 +01:00
|
|
|
void color_changed ();
|
2017-03-10 23:51:39 +01:00
|
|
|
|
2023-02-16 16:33:28 -07:00
|
|
|
std::shared_ptr<ARDOUR::Stripable> _stripable;
|
2017-03-14 17:03:14 +01:00
|
|
|
ARDOUR::PresentationInfo::color_t _initial_color;
|
|
|
|
|
|
|
|
|
|
sigc::connection _color_changed_connection;
|
2017-03-11 02:23:34 +01: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 23:51:39 +01:00
|
|
|
};
|
|
|
|
|
|
2017-03-30 15:20:48 +02: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 23:51:39 +01:00
|
|
|
#endif
|