-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextbox.h
62 lines (61 loc) · 2.13 KB
/
Textbox.h
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
54
55
56
57
58
59
60
61
62
#include<SFML/Graphics.hpp>
class TextBox {
private:
sf::RectangleShape outerRect;
sf::RectangleShape innerRect;
sf::RectangleShape blinker;
sf::Text numText;
sf::String getPinp;
sf::String txtInp;
sf::Clock clock;
sf::Time time;
//sf::Cursor cursor;
unsigned int textSize;
unsigned int focusChar;
float charWidth;
float thickness;
float posX;
float posY;
float height;
float width;
bool focus;
bool needDelete;
bool gotInput;
bool changed;
public:
class Text {
private:
sf::Text text;
public:
Text(sf::String, float, float, sf::Font&); //constructior, first parameter is text string, second is x position, third y position.
sf::Text get(); //returns the drawable sf::Text class
void setText(sf::String); //update the text
void setPosition(float, float); //update text position
void setSize(unsigned int); //update text size
};
TextBox(sf::Font&, sf::Font&); //constructor
TextBox(float, float, float, float, float, sf::Font&); //first two parameter for size, second two for position and the last one for thickness.
void draw(sf::RenderWindow&); //it'll go to the main event loop, after event handler, it draws in the window.
bool handleEvent(sf::Event&); //handles text input and press enter evernt. place it inside pollEvent loop inside the main event loop.
sf::String getCurrentText(); //get what is written in the text box right now
sf::String getInput(); //updates last text after pressing enter.
void setText(sf::String);
int append(sf::String, bool);
void popText(int);
public:
void setSize(float, float); //update box size first parameter for x, second for y.
void setPosition(float, float); //update (x,y) position of top-left corner
void setBorder(float); //update border thickness.
void setFocused(bool);
sf::Vector2f getPosition();
sf::Vector2f getSize();
void recover();
bool checkDelete();
bool checkInput();
void setNum(int);
bool isChanged();
bool insert(sf::Event& event);
int getfocusChar();
private:
Text inpText;
};