aboutsummaryrefslogtreecommitdiff
path: root/include/ImageButton.hpp
blob: 16b08401a4147bdf1aba7eba06f701d8c9a6e864 (plain)
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);
    };
}