Horizon
src
widgets
color_box.hpp
1
#pragma once
2
#include <gtkmm.h>
3
#include "common/common.hpp"
4
5
namespace
horizon {
6
class
ColorBox :
public
Gtk::DrawingArea {
7
public
:
8
ColorBox();
9
void
set_color(
const
Color &c);
10
11
private
:
12
Color color;
13
};
14
}
// namespace horizon
Generated by
1.8.20