aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/others/irrlicht-1.8.1/source/Irrlicht/CGUIMessageBox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/others/irrlicht-1.8.1/source/Irrlicht/CGUIMessageBox.h')
-rw-r--r--src/others/irrlicht-1.8.1/source/Irrlicht/CGUIMessageBox.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/others/irrlicht-1.8.1/source/Irrlicht/CGUIMessageBox.h b/src/others/irrlicht-1.8.1/source/Irrlicht/CGUIMessageBox.h
new file mode 100644
index 0000000..6f632c5
--- /dev/null
+++ b/src/others/irrlicht-1.8.1/source/Irrlicht/CGUIMessageBox.h
@@ -0,0 +1,64 @@
1// Copyright (C) 2002-2012 Nikolaus Gebhardt
2// This file is part of the "Irrlicht Engine".
3// For conditions of distribution and use, see copyright notice in irrlicht.h
4
5#ifndef __C_GUI_MESSAGE_BOX_H_INCLUDED__
6#define __C_GUI_MESSAGE_BOX_H_INCLUDED__
7
8#include "IrrCompileConfig.h"
9#ifdef _IRR_COMPILE_WITH_GUI_
10
11#include "CGUIWindow.h"
12#include "IGUIStaticText.h"
13#include "IGUIImage.h"
14#include "irrArray.h"
15
16namespace irr
17{
18namespace gui
19{
20 class CGUIMessageBox : public CGUIWindow
21 {
22 public:
23
24 //! constructor
25 CGUIMessageBox(IGUIEnvironment* environment, const wchar_t* caption,
26 const wchar_t* text, s32 flag,
27 IGUIElement* parent, s32 id, core::rect<s32> rectangle, video::ITexture* image=0);
28
29 //! destructor
30 virtual ~CGUIMessageBox();
31
32 //! called if an event happened.
33 virtual bool OnEvent(const SEvent& event);
34
35 //! Writes attributes of the element.
36 virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options) const;
37
38 //! Reads attributes of the element
39 virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options);
40
41 private:
42
43 void refreshControls();
44 void setButton(IGUIButton*& button, bool isAvailable, const core::rect<s32> & btnRect, const wchar_t * text, IGUIElement*& focusMe);
45
46 IGUIButton* OkButton;
47 IGUIButton* CancelButton;
48 IGUIButton* YesButton;
49 IGUIButton* NoButton;
50 IGUIStaticText* StaticText;
51 IGUIImage * Icon;
52 video::ITexture * IconTexture;
53
54 s32 Flags;
55 core::stringw MessageText;
56 bool Pressed;
57 };
58
59} // end namespace gui
60} // end namespace irr
61
62#endif // _IRR_COMPILE_WITH_GUI_
63
64#endif