00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef __AWINOPTIONS_H__
00012 #define __AWINOPTIONS_H__
00013
00014 #include "Mod_Aeternis_Client/Mod_Aeternis_ClientDll.h"
00015 #include "Interface/Win.h"
00016 #include "Interface/Button.h"
00017
00018
00019 class MOD_AETERNIS_CLIENT_API KAWinOptions : public KWin
00020 {
00021 protected:
00022 KSHADER m_BackGround;
00023 KButton* m_pButtonLanguage;
00024 KButton* m_pButtonVideo;
00025 KButton* m_pButtonSound;
00026 KButton* m_pButtonControllers;
00027 KButton* m_pButtonBack;
00028
00029 public:
00030 KAWinOptions( KWin* pFather, KFPt& Pos, KFPt& Size, KInterface* pInterface );
00031 ~KAWinOptions();
00032
00033 virtual void Display();
00034 virtual void Manage();
00035
00036
00037 virtual void Load();
00038 virtual void Unload();
00039 };
00040
00041 #endif __AWINOPTIONS_H__