From bbbd8ee1cf469d9716871e933b281bb0757e589b Mon Sep 17 00:00:00 2001 From: Bertrand Bellenot <Bertrand.Bellenot@cern.ch> Date: Mon, 16 Nov 2009 16:48:49 +0000 Subject: [PATCH] Form Matevz: Create name-frame in new virtual function CreateNameFrame() to allow sub-classes to override the default look or add new functionality. git-svn-id: http://root.cern.ch/svn/root/trunk@31206 27541ba8-7e3a-0410-8455-c3a389f83636 --- gui/ged/inc/TGedEditor.h | 2 ++ gui/ged/src/TGedEditor.cxx | 10 +++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/gui/ged/inc/TGedEditor.h b/gui/ged/inc/TGedEditor.h index 5d51df2b477..a9e2a6e64b1 100644 --- a/gui/ged/inc/TGedEditor.h +++ b/gui/ged/inc/TGedEditor.h @@ -72,6 +72,8 @@ protected: void ConfigureGedFrames(Bool_t objChaged); + virtual TGedFrame* CreateNameFrame(const TGWindow* parent, const char* tab_name); + static TGedEditor *fgFrameCreator; public: diff --git a/gui/ged/src/TGedEditor.cxx b/gui/ged/src/TGedEditor.cxx index 65fb5c66200..f631f5d05f6 100644 --- a/gui/ged/src/TGedEditor.cxx +++ b/gui/ged/src/TGedEditor.cxx @@ -214,7 +214,7 @@ TGedTabInfo* TGedEditor::GetEditorTabInfo(const char* name) fTab->RemoveFrame(te); // create a title frame for each tab - TGedNameFrame* nf = new TGedNameFrame(tc); + TGedFrame* nf = CreateNameFrame(tc, name); nf->SetGedEditor(this); nf->SetModelClass(0); tc->AddFrame(nf, nf->GetLayoutHints()); @@ -648,6 +648,14 @@ void TGedEditor::ConfigureGedFrames(Bool_t objChanged) fTabContainer->Layout(); } +//______________________________________________________________________________ +TGedFrame* TGedEditor::CreateNameFrame(const TGWindow* parent, const char* /*tab_name*/) +{ + // Virtual function for creation of top name-frame in each tab. + + return new TGedNameFrame(parent); +} + //______________________________________________________________________________ void TGedEditor::PrintFrameStat() { -- GitLab