added some first features

This commit is contained in:
nemu 2008-04-02 07:29:48 +00:00
parent 62fd115a76
commit 26a1b444fe
2 changed files with 9 additions and 11 deletions

View File

@ -41,18 +41,9 @@ short term:
* implement table based theory functions (LF stuff)
static GKT LF **DONE** 08-03-12
* check midas keyboard routines for the usability
system.c
while (ss_kbhit()) {
ch = ss_getchar(0);
if (ch == -1)
ch = getchar();
if (ch == '!')
status = RPC_SHUTDOWN;
}
* do I need to cleanup AddText() objects from TPaveText etc myself? **CHECK**
* something is strange with the coordinate system in TPaveText! **CHECK**
---------------------
intermediate term:

View File

@ -362,6 +362,13 @@ void PMusrCanvas::UpdateParamTheoryPad()
fParameterTheoryPad->AddText(0.03, ypos, str.Data());
}
// add functions --------------------------------------------------------
ypos -= 0.025;
for (unsigned int i=1; i<fFunctionList.size(); i++) {
ypos -= 0.025;
fParameterTheoryPad->AddText(0.03, ypos, fFunctionList[i].fLine.Data());
}
fParameterTheoryPad->Draw();
fMainCanvas->cd();
fMainCanvas->Update();