summaryrefslogtreecommitdiff
path: root/Layout/Layout.h
blob: 5b254589719861a6050bf0cddeb2067c5d5a0600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef __LAYOUT_H__
#define __LAYOUT_H__

#include "DOGS102.h"
#include <string>

class Label {
    public:
        Label(uint8_t col, uint8_t row, std::string value);

        uint8_t _col;
        uint8_t _row;
        std::string _value;
};

class Field {
    public:
        Field(uint8_t col, uint8_t row, uint8_t maxSize);

        uint8_t _col;
        uint8_t _row;
        uint8_t _maxSize;
};

class Image {
    public:
        Image(uint8_t col, uint8_t row, const uint8_t* bmp);

        uint8_t _col;
        uint8_t _row;
        const uint8_t* _bmp;
};

class Layout {
    public:
        Layout(DOGS102* lcd);
        ~Layout();

        virtual void display() = 0;
        
    protected:
        void clear();
        void startUpdate();
        void endUpdate();
        bool writeField(uint8_t col, uint8_t row, std::string field, bool apply = false);
        bool writeField(uint8_t col, uint8_t row, const char* field, size_t size, bool apply = false);
        bool writeImage(uint8_t col, uint8_t row, const uint8_t* bmp, bool apply = false);

    private:
        DOGS102* _lcd;
};

#endif