Go to the documentation of this file.00001
00002 #ifndef Fireworks_Core_CmsShowHelpPopup_h
00003 #define Fireworks_Core_CmsShowHelpPopup_h
00004
00005
00006
00007
00016
00017
00018
00019
00020
00021
00022
00023 #include "GuiTypes.h"
00024 #include "TGFrame.h"
00025 #include <string>
00026
00027
00028 class TGHtml;
00029
00030 class CmsShowHelpPopup : public TGTransientFrame {
00031 public:
00032 CmsShowHelpPopup (const std::string &filename,
00033 const std::string &windowname, const TGWindow* p = 0,
00034 UInt_t w = 1, UInt_t h = 1);
00035 virtual ~CmsShowHelpPopup();
00036 virtual void CloseWindow() { UnmapWindow(); }
00037
00038 static std::string helpFileName (const std::string &);
00039
00040 protected:
00041 TGHtml *m_helpHtml;
00042 };
00043
00044
00045 #endif