aboutsummaryrefslogtreecommitdiff
path: root/include/ChatMessage.hpp
blob: 0547557b3a448749f274084905f7c9d4d04a8380 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <gtkmm/grid.h>
#include <gtkmm/label.h>

namespace dchat
{
    class ChatMessage : public Gtk::Grid
    {
    public:
        ChatMessage(const Glib::ustring &username, const Glib::ustring &text);
        
        Gtk::Label username;
        Gtk::Label text;
    };
}