1 2 3 4 5 6 7 8 9 10 11 12
#pragma once #include <gtkmm/button.h> namespace dchat { class ImageButton : public Gtk::Button { public: ImageButton(const char *filepath, const char *text); }; }