~aleteoryx/muditaos

ref: 2cff347326ffc377a227b3a28faa009be8a6a1e0 muditaos/module-apps/application-messages/widgets/SMSInputWidget.hpp -rw-r--r-- 413 bytes
2cff3473 — Marcin Smoczyński [EGD-4002] audio: remove phone call recording (#794) 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include "Application.hpp"

#include "Text.hpp"
#include "Image.hpp"
#include <BoxLayout.hpp>

namespace gui
{

    class SMSInputWidget : public HBox
    {
        gui::Image *replyImage = nullptr;

      public:
        gui::Text *inputText = nullptr;

        SMSInputWidget(Item *parent, app::Application *application);
        virtual ~SMSInputWidget() = default;
    };

} /* namespace gui */