Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
guiWithCLING.C File Reference

Detailed Description

A simple example of entering CLING commands and having the CLING output in a ROOT GUI application window.

An editable combo box is used as a CLING prompt, a text view widget displays the command output.

#include <iostream>
#include <TApplication.h>
#include <TRint.h>
#include <TROOT.h>
#include <TSystem.h>
#include <TGTextEntry.h>
#include <TGTextView.h>
#include <TGClient.h>
#include <TGButton.h>
#include <TGFrame.h>
#include <TGLayout.h>
#include <TGWindow.h>
#include <TGLabel.h>
#include <TString.h>
#include <TGComboBox.h>
#include <Getline.h>
class IDList {
private:
Int_t fID; //create widget Id(s)
public:
IDList() : fID(0) {}
~IDList() {}
Int_t GetUnID(void) { return ++fID; }
};
class MyApplication : public TGMainFrame {
private:
TGTextButton *fExit;
IDList fIDs;
TGComboBox *fComboCmd; // CLING command combobox
TGTextBuffer *fCommandBuf; // text buffer in use
TGTextEntry *fCommand; // text entry for CLING commands
TGTextView *fTextView; // display CLING output
TString fName; // name of temp created file
public:
MyApplication(const TGWindow *p, UInt_t w, UInt_t h);
~MyApplication() override;
void DoExit();
void DoEnteredCommand();
ClassDefOverride(MyApplication, 0)
};
MyApplication::MyApplication(const TGWindow *p, UInt_t w, UInt_t h)
{
SetCleanup(kDeepCleanup);
Connect("CloseWindow()", "MyApplication", this, "DoExit()");
DontCallClose();
TGHorizontalFrame *fHL2 = new TGHorizontalFrame(this, 70, 100);
AddFrame(fHL2, new TGLayoutHints(kLHintsNormal, 5, 5, 5, 5));
TGLabel *fInlabel = new TGLabel(fHL2, "CLING Prompt:");
fHL2->AddFrame(fInlabel, new TGLayoutHints(kLHintsCenterY));
TGLabel *fOutlabel = new TGLabel(this, "Output Window:");
AddFrame(fOutlabel);
fCommandBuf = new TGTextBuffer(256);
fComboCmd = new TGComboBox(fHL2, "", fIDs.GetUnID());
fCommand = fComboCmd->GetTextEntry();
fComboCmd->Resize(450, fCommand->GetDefaultHeight());
fHL2->AddFrame(fComboCmd, new TGLayoutHints(kLHintsCenterY | kLHintsExpandX, 20,0,0,0));
TString hist(Form("%s/.root_hist", gSystem->UnixPathName(gSystem->HomeDirectory())));
FILE *fhist = fopen(hist.Data(), "rt");
if (fhist) {
char histline[256];
while (fgets(histline, 256, fhist)) {
histline[strlen(histline)-1] = 0; // remove trailing "\n"
fComboCmd->InsertEntry(histline, 0, -1);
}
fclose(fhist);
}
Pixel_t backpxl;
gClient->GetColorByName("#c0c0c0", backpxl);
fTextView = new TGTextView(this, 500, 94, fIDs.GetUnID(), kFixedWidth | kFixedHeight);
fTextView->SetBackground(backpxl);
AddFrame(fTextView, new TGLayoutHints(kLHintsExpandX));
TGHorizontalFrame *fHL3 = new TGHorizontalFrame(this, 70, 150, kFixedWidth);
fExit = new TGTextButton(fHL3, "&Exit", fIDs.GetUnID());
fExit->Connect("Clicked()", "MyApplication", this, "DoExit()");
AddFrame(fHL3, new TGLayoutHints(kLHintsCenterX | kLHintsCenterY, 1, 1, 1, 1));
SetWindowName("GUI with CLING Input/Output");
Resize(GetDefaultSize());
MapWindow();
fCommand->Connect("ReturnPressed()", "MyApplication", this, "DoEnteredCommand()");
fName = Form("%soutput.log", gSystem->WorkingDirectory());
};
MyApplication::~MyApplication()
{
// Destructor.
Cleanup();
}
void MyApplication::DoExit()
{
// Close application window.
gSystem->Unlink(fName.Data());
}
void MyApplication::DoEnteredCommand()
{
// Execute the CLING command after the ENTER key was pressed.
const char *command = fCommand->GetTitle();
TString prompt;
if (strlen(command)) {
// form temporary file path
prompt = ((TRint*)gROOT->GetApplication())->GetPrompt();
FILE *cintout = fopen(fName.Data(), "a+t");
if (cintout) {
fputs(Form("%s%s\n",prompt.Data(), command), cintout);
fclose(cintout);
}
gSystem->RedirectOutput(fName.Data(), "a");
gROOT->ProcessLine(command);
fComboCmd->InsertEntry(command, 0, fIDs.GetUnID());
Gl_histadd((char *)command);
fTextView->LoadFile(fName.Data());
if (fTextView->ReturnLineCount() > 10)
fTextView->SetVsbPosition(fTextView->ReturnLineCount());
fCommand->Clear();
} else {
printf("No command entered\n");
}
fTextView->ShowBottom();
}
void guiWithCLING()
{
new MyApplication(gClient->GetRoot(),600,300);
}
@ kFixedWidth
Definition GuiTypes.h:387
@ kFixedHeight
Definition GuiTypes.h:389
ULong_t Pixel_t
Pixel value.
Definition GuiTypes.h:40
#define h(i)
Definition RSha256.hxx:106
int Int_t
Definition RtypesCore.h:45
unsigned int UInt_t
Definition RtypesCore.h:46
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
R__EXTERN TApplication * gApplication
#define gClient
Definition TGClient.h:156
@ kDeepCleanup
Definition TGFrame.h:42
@ kLHintsCenterY
Definition TGLayout.h:28
@ kLHintsNormal
Definition TGLayout.h:32
@ kLHintsCenterX
Definition TGLayout.h:25
@ kLHintsExpandX
Definition TGLayout.h:30
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize MapSubwindows
#define gROOT
Definition TROOT.h:406
char * Form(const char *fmt,...)
Formats a string in a circular formatting buffer.
Definition TString.cxx:2489
R__EXTERN TSystem * gSystem
Definition TSystem.h:555
virtual void Terminate(Int_t status=0)
Terminate the application by call TSystem::Exit() unless application has been told to return from Run...
A combobox (also known as a drop down listbox) allows the selection of one item out of a list of item...
Definition TGComboBox.h:47
virtual void AddFrame(TGFrame *f, TGLayoutHints *l=nullptr)
Add frame to the composite frame using the specified layout hints.
Definition TGFrame.cxx:1117
A composite frame that layout their children in horizontal way.
Definition TGFrame.h:385
This class handles GUI labels.
Definition TGLabel.h:24
This class describes layout hints used by the layout classes.
Definition TGLayout.h:50
Defines top level windows that interact with the system Window Manager.
Definition TGFrame.h:397
A text buffer is used in several widgets, like TGTextEntry, TGFileDialog, etc.
Yield an action as soon as it is clicked.
Definition TGButton.h:142
A TGTextEntry is a one line text input widget.
Definition TGTextEntry.h:24
A TGTextView is a text viewer widget.
Definition TGTextView.h:22
ROOT GUI Window base class.
Definition TGWindow.h:23
TString fName
name of the window used in SavePrimitive()
Definition TGWindow.h:30
Definition TRint.h:31
Basic string class.
Definition TString.h:139
const char * Data() const
Definition TString.h:376
virtual Int_t RedirectOutput(const char *name, const char *mode="a", RedirectHandle_t *h=nullptr)
Redirect standard output (stdout, stderr) to the specified file.
Definition TSystem.cxx:1715
virtual const char * UnixPathName(const char *unixpathname)
Convert from a local pathname to a Unix pathname.
Definition TSystem.cxx:1063
virtual const char * WorkingDirectory()
Return working directory.
Definition TSystem.cxx:871
virtual const char * HomeDirectory(const char *userName=nullptr)
Return the user's home directory.
Definition TSystem.cxx:887
virtual int Unlink(const char *name)
Unlink, i.e.
Definition TSystem.cxx:1381
Author
Ilka Antcheva 06/07/2007

Definition in file guiWithCLING.C.