37 #define STRDUP(str) ((str) != NULL ? (strcpy((char*)malloc((unsigned)strlen(str) + 1), str)) : (char*)NULL)
38 #define STRDEL(str) {if((str)!=NULL) {free(str);str=NULL;}}
88 (
"Add a non-checkable icon to the Icon toolbar.");
90 (
"If the Icon parameter is set to \"user_icon\", you should provide the icon file in xpm format, otherwise you have to choose one of the candidate icons");
92 (
"A command given without parameters will display a window that will allow one to choose the parameters (if needed) for this command.");
94 (
"E.g: /gui/addIcon \"Change background color\" user_icon /vis/viewer/set/background ../Images/background.xpm");
96 (
"Special cases for the Icon parameter:");
98 (
" - open: Open an open-file-selector that can run the Command with File as argument.");
100 (
" - save: Open a save-file-selector that can run the Command with File as argument.");
102 (
" - move/rotate/pick/zoom_in/zoom_out: Theses icons are radio-button icons that can change cursor action.");
104 (
" - wireframe/solid/hidden_line_removal/hidden_line_and_surface_removal: These icons are radio-button icons that can change drawing style.");
106 (
" - perspective/ortho: These icons are radio-button icons that can change projection style.");
115 (
"open save move rotate pick zoom_in zoom_out wireframe solid hidden_line_removal hidden_line_and_surface_removal perspective ortho user_icon");
150 if(
GetValues(newValue,paramn,params)==
true) {
154 session->
AddButton((
const char*)params[0],(
const char*)params[1],(
const char*)params[2]);
156 session->
AddIcon((
const char*)params[0],(
const char*)params[1],(
const char*)params[2],(
const char*)params[3]);
159 }
else if(command==
sys) {
160 int rc =
system((
const char*)params[0]);
173 if(value==NULL)
return false;
174 char* tok = strtok(value,
" ");
175 for(
int i=0; i<paramn;i++ ) {
181 if( token(0)==
'"' ) {
182 while( token(token.length()-1) !=
'"' ) {
183 tok = strtok(NULL,
" ");
184 if( (tok==NULL) || (*tok==
'\0')) {
199 tok = strtok(NULL,
" ");
void SetGuidance(const char *aGuidance)
G4UIdirectory * interactorDirectory
system("rm -rf microbeam.root")
virtual void DefaultIcons(bool)
static G4bool ConvertToBool(const char *st)
G4InteractorMessenger(G4VInteractiveSession *session)
void SetParameter(G4UIparameter *const newParameter)
void SetDefaultValue(const char *theDefaultValue)
G4VInteractiveSession * session
const XML_Char int const XML_Char * value
const char * data() const
G4String strip(G4int strip_Type=trailing, char c=' ')
static G4bool GetValues(G4String, int, G4String *)
G4int GetParameterEntries() const
virtual ~G4InteractorMessenger()
virtual void AddButton(const char *, const char *, const char *)
void SetParameterCandidates(const char *theString)
virtual void AddMenu(const char *, const char *)
G4UIcommand * defaultIcons
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual void AddIcon(const char *, const char *, const char *, const char *)