// @(#)root/gui:$Name: $:$Id: TRootHelpDialog.cxx,v 1.4 2000/07/11 10:16:11 rdm Exp $
// Author: Fons Rademakers 24/02/98
/*************************************************************************
* Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
//////////////////////////////////////////////////////////////////////////
// //
// TRootHelpDialog //
// //
// A TRootHelpDialog is used to display help text (or any text in a //
// dialog window). There is on OK button to popdown the dialog. //
// //
//////////////////////////////////////////////////////////////////////////
#include "TRootHelpDialog.h"
#include "TGButton.h"
#include "TGTextView.h"
ClassImp(TRootHelpDialog)
//______________________________________________________________________________
TRootHelpDialog::TRootHelpDialog(const TGWindow *main,
const char *title, UInt_t w, UInt_t h) :
TGTransientFrame(gClient->GetRoot(), main, w, h)
{
// Create a help text dialog.
fView = new TGTextView(this, w, h, kSunkenFrame | kDoubleBorder);
fL1 = new TGLayoutHints(kLHintsExpandX | kLHintsExpandY, 3, 3, 3, 3);
AddFrame(fView, fL1);
fOK = new TGTextButton(this, " &OK ");
fL2 = new TGLayoutHints(kLHintsBottom | kLHintsCenterX, 0, 0, 5, 5);
AddFrame(fOK, fL2);
SetWindowName(title);
SetIconName(title);
MapSubwindows();
Resize(GetDefaultSize());
// position relative to the parent's window
Window_t wdum;
int ax, ay;
gVirtualX->TranslateCoordinates(main->GetId(), GetParent()->GetId(),
((TGFrame *) main)->GetWidth() - (fWidth >> 1),
(((TGFrame *) main)->GetHeight() - fHeight) >> 1,
ax, ay, wdum);
Move(ax, ay);
SetWMPosition(ax, ay);
}
//______________________________________________________________________________
TRootHelpDialog::~TRootHelpDialog()
{
// Delete help text dialog.
delete fView;
delete fOK;
delete fL1;
delete fL2;
}
//______________________________________________________________________________
void TRootHelpDialog::Popup()
{
// Show help dialog.
MapWindow();
}
//______________________________________________________________________________
void TRootHelpDialog::SetText(const char *helpText)
{
// Set help text from helpText buffer in TGTextView.
fView->LoadBuffer(helpText);
}
//______________________________________________________________________________
void TRootHelpDialog::AddText(const char *helpText)
{
// Add help text from helpText buffer to already existing text in TGTextView.
TGText tt;
tt.LoadBuffer(helpText);
fView->AddText(&tt);
}
//______________________________________________________________________________
void TRootHelpDialog::CloseWindow()
{
// Called when closed via window manager action.
delete this;
}
//______________________________________________________________________________
Bool_t TRootHelpDialog::ProcessMessage(Long_t msg, Long_t, Long_t)
{
// Process OK button.
switch (GET_MSG(msg)) {
case kC_COMMAND:
switch (GET_SUBMSG(msg)) {
case kCM_BUTTON:
// Only one button and one action...
delete this;
break;
default:
break;
}
default:
break;
}
return kTRUE;
}
ROOT page - Class index - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.