|
Last change
on this file since 6d21bd was 6d21bd, checked in by Tillmann Crueger <crueger@…>, 16 years ago |
|
Added Basis for creating globally accessible and compatible UIElements
- Added Factories for UIElements that can be chosen at programm startup
- Added Dialogs that can be used to query values
|
-
Property mode
set to
100644
|
|
File size:
383 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * TextDialog.hpp
|
|---|
| 3 | *
|
|---|
| 4 | * Created on: Jan 5, 2010
|
|---|
| 5 | * Author: crueger
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | #ifndef TEXTDIALOG_HPP_
|
|---|
| 9 | #define TEXTDIALOG_HPP_
|
|---|
| 10 |
|
|---|
| 11 | #include "UIElements/Dialog.hpp"
|
|---|
| 12 |
|
|---|
| 13 | class TextDialog : public Dialog
|
|---|
| 14 | {
|
|---|
| 15 | public:
|
|---|
| 16 | TextDialog();
|
|---|
| 17 | virtual ~TextDialog();
|
|---|
| 18 |
|
|---|
| 19 | virtual void handleInt(std::string,int *);
|
|---|
| 20 | virtual void handleString(std::string,std::string *);
|
|---|
| 21 | };
|
|---|
| 22 |
|
|---|
| 23 | #endif /* TEXTDIALOG_HPP_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.