|
Last change
on this file since b978503 was 87b3ee2, checked in by dportnoy <dmp1488@…>, 13 years ago |
|
Created a simple gui for the client
|
-
Property mode
set to
100644
|
|
File size:
424 bytes
|
| Line | |
|---|
| 1 | #pragma once
|
|---|
| 2 |
|
|---|
| 3 | #include <string>
|
|---|
| 4 | #include <vector>
|
|---|
| 5 |
|
|---|
| 6 | #include <allegro5/allegro.h>
|
|---|
| 7 | #include <allegro5/allegro_font.h>
|
|---|
| 8 |
|
|---|
| 9 | using namespace std;
|
|---|
| 10 |
|
|---|
| 11 | class chat
|
|---|
| 12 | {
|
|---|
| 13 | private:
|
|---|
| 14 | vector<string> vctChat;
|
|---|
| 15 | string strPrompt;
|
|---|
| 16 | string strEnteredInput;
|
|---|
| 17 | public:
|
|---|
| 18 | chat(void);
|
|---|
| 19 | ~chat(void);
|
|---|
| 20 |
|
|---|
| 21 | string getInput();
|
|---|
| 22 |
|
|---|
| 23 | void draw(ALLEGRO_FONT *font, ALLEGRO_COLOR color);
|
|---|
| 24 | void addLine(string s);
|
|---|
| 25 |
|
|---|
| 26 | bool handleEvent(ALLEGRO_EVENT e);
|
|---|
| 27 | };
|
|---|
| 28 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.