#include "../include/ImageButton.hpp" #include namespace dchat { ImageButton::ImageButton(const char *filepath, const char *text) { if(text) set_label(text); Gtk::Image *image = Gtk::manage(new Gtk::Image(filepath)); set_always_show_image(true); set_image(*image); get_style_context()->add_class("image-button"); } }