Simple SFML GUI  0.2a
DialogInfo.hpp
1 /*
2  * DialogInfo.hpp
3  *
4  * Created on: 02.06.2017
5  * Author: jakub
6  */
7 
8 #ifndef SSG_DIALOGINFO_HPP_
9 #define SSG_DIALOGINFO_HPP_
10 
11 #include "HaveBackground.hpp"
12 #include "HaveFont.hpp"
13 #include "HaveText.hpp"
14 
15 #include "Button.hpp"
16 #include "TextLabel.hpp"
17 #include "HaveMargin.hpp"
18 
19 #include "Dialog.hpp"
20 
21 class DialogInfo : public Dialog {
22 public:
23  DialogInfo(const sf::String& info="", const sf::String& name="");
24  std::shared_ptr<Button>& getButton();
25 
26 protected:
27  std::shared_ptr<Button> button;
28 };
29 
30 #endif /* SSG_DIALOGINFO_HPP_ */
Definition: Dialog.hpp:9
Definition: DialogInfo.hpp:21