summaryrefslogtreecommitdiff
path: root/include/d/msg/d_msg_string.h
blob: ce9504ca690a6865f47c32289727d14f30a91010 (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
#ifndef D_MSG_D_MSG_STRING_H
#define D_MSG_D_MSG_STRING_H

#include "d/msg/d_msg_string_base.h"

class COutFont_c;
class JUTFont;

class dMsgString_c : public dMsgStringBase_c {
public:
    /* 80249C20 */ dMsgString_c();
    /* 80249CA0 */ dMsgString_c(u8);
    /* 80249D28 */ ~dMsgString_c();

    /* 80191B6C */ virtual f32 getString(u32, J2DTextBox*, J2DTextBox*, JUTFont*, COutFont_c*, u8);
    /* 801E1D10 */ virtual void getStringPage(u32, u8, u8, J2DTextBox*, J2DTextBox*, JUTFont*, COutFont_c*,
                                      u8);
    /* 80249DB4 */ virtual void resetStringLocal(J2DTextBox*);
    /* 80249DE4 */ virtual void drawOutFontLocal(J2DTextBox*, f32);
    /* 80249ED0 */ virtual void drawFontLocal(J2DTextBox*, u8, f32, f32, f32, f32, u32, u8);

    void drawOutFont(J2DTextBox* param_0, f32 param_1) {
        drawOutFontLocal(param_0, param_1);
    }

private:
    /* 0x24 */ COutFont_c* mpOutFont;
    /* 0x28 */ u8 field_0x28;
};

#endif /* D_MSG_D_MSG_STRING_H */