CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes
CmsShowHelpPopup Class Reference

#include <Fireworks/Core/interface/CmsShowHelpPopup.h>

Inheritance diagram for CmsShowHelpPopup:

Public Member Functions

void CloseWindow () override
 
 CmsShowHelpPopup (const std::string &filename, const std::string &windowname, const TGWindow *p=nullptr, UInt_t w=1, UInt_t h=1)
 
 ~CmsShowHelpPopup () override
 

Protected Attributes

TGHtml * m_helpHtml
 

Detailed Description

Description: <one line="" class="" summary>="">

Usage: <usage>

Definition at line 29 of file CmsShowHelpPopup.h.

Constructor & Destructor Documentation

CmsShowHelpPopup::CmsShowHelpPopup ( const std::string &  filename,
const std::string &  windowname,
const TGWindow *  p = nullptr,
UInt_t  w = 1,
UInt_t  h = 1 
)

Definition at line 10 of file CmsShowHelpPopup.cc.

References corrVsCorr::filename, m_helpHtml, fireworks::setPath(), and RecoTauValidation_cfi::text.

13  : TGTransientFrame(gClient->GetDefaultRoot(), p, w, h),
14  m_helpHtml(new TGHtml(this, w, h))
15 {
16  AddFrame(m_helpHtml, new TGLayoutHints(kLHintsTop | kLHintsLeft |
17  kLHintsExpandX | kLHintsExpandY));
18  SetWindowName(windowname.c_str());
19 
20  TString dirPath = "data/";
21  fireworks::setPath(dirPath);
22  m_helpHtml->SetBaseUri(dirPath.Data());
23  // printf("%s ... %s\n", m_helpHtml->GetBaseUri(), dirPath.Data());
24 
25  TGText text;
26  TString filePath = dirPath + filename;
27  text.Load(filePath.Data());
28 
29  m_helpHtml->ParseText((char *)text.AsString().Data());
30 
31  MapSubwindows();
32  m_helpHtml->Layout();
33 }
const double w
Definition: UKUtility.cc:23
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
void setPath(TString &v)
Definition: fwPaths.cc:15
CmsShowHelpPopup::~CmsShowHelpPopup ( )
override

Definition at line 35 of file CmsShowHelpPopup.cc.

References m_helpHtml.

36 {
37  delete m_helpHtml;
38 }

Member Function Documentation

void CmsShowHelpPopup::CloseWindow ( )
inlineoverride

Definition at line 35 of file CmsShowHelpPopup.h.

35 { UnmapWindow(); }

Member Data Documentation

TGHtml* CmsShowHelpPopup::m_helpHtml
protected

Definition at line 39 of file CmsShowHelpPopup.h.

Referenced by CmsShowHelpPopup(), and ~CmsShowHelpPopup().