Skip to content
Snippets Groups Projects
Commit 8aff473c authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

Set View.ShowTime=2 to show the time value even if the view contains a single
time step..
parent 00b6532f
No related branches found
No related tags found
No related merge requests found
...@@ -965,7 +965,7 @@ StringXNumber ViewOptions_Number[] = { ...@@ -965,7 +965,7 @@ StringXNumber ViewOptions_Number[] = {
{ F|O, "ShowScale" , opt_view_show_scale , 1. , { F|O, "ShowScale" , opt_view_show_scale , 1. ,
"Show value scale?" }, "Show value scale?" },
{ F|O, "ShowTime" , opt_view_show_time , 1. , { F|O, "ShowTime" , opt_view_show_time , 1. ,
"Show time value (or time step) if NbTimeStep > 1?" }, "Show time value (or time step number) in the scale? (1=only if NbTimeStep>1, 2=always)" },
{ F|O, "SmoothNormals" , opt_view_smooth_normals , 0. , { F|O, "SmoothNormals" , opt_view_smooth_normals , 0. ,
"Smooth the normals?" }, "Smooth the normals?" },
{ F|O, "TensorType" , opt_view_tensor_type , 0. , { F|O, "TensorType" , opt_view_tensor_type , 0. ,
......
// $Id: Graph2D.cpp,v 1.28 2003-03-21 00:52:39 geuzaine Exp $ // $Id: Graph2D.cpp,v 1.29 2003-11-28 19:15:29 geuzaine Exp $
// //
// Copyright (C) 1997-2003 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2003 C. Geuzaine, J.-F. Remacle
// //
...@@ -202,9 +202,10 @@ static void Draw_Graph2D(Post_View * v, ...@@ -202,9 +202,10 @@ static void Draw_Graph2D(Post_View * v,
if(v->ShowScale) { if(v->ShowScale) {
glColor4ubv((GLubyte *) & CTX.color.text); glColor4ubv((GLubyte *) & CTX.color.text);
if(v->Type == DRAW_POST_2D_SPACE && List_Nbr(v->Time) > 1 && v->ShowTime) if(v->Type == DRAW_POST_2D_SPACE &&
sprintf(label, "%s (%g)", v->Name, ((v->ShowTime == 1 && List_Nbr(v->Time) > 1) ||
*(double *)List_Pointer(v->Time, v->TimeStep)); (v->ShowTime == 2 && List_Nbr(v->Time) > 0)))
sprintf(label, "%s (%g)", v->Name, *(double *)List_Pointer(v->Time, v->TimeStep));
else else
sprintf(label, "%s", v->Name); sprintf(label, "%s", v->Name);
glRasterPos2d(xtop - gl_width(label) / 2., ytop + 1.5 * font_h); glRasterPos2d(xtop - gl_width(label) / 2., ytop + 1.5 * font_h);
......
// $Id: Scale.cpp,v 1.35 2003-03-21 00:52:39 geuzaine Exp $ // $Id: Scale.cpp,v 1.36 2003-11-28 19:15:29 geuzaine Exp $
// //
// Copyright (C) 1997-2003 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2003 C. Geuzaine, J.-F. Remacle
// //
...@@ -189,9 +189,9 @@ void draw_scale(Post_View * v, ...@@ -189,9 +189,9 @@ void draw_scale(Post_View * v,
// the label // the label
glRasterPos2d(cv_xmin, ymin - 2 * font_h); glRasterPos2d(cv_xmin, ymin - 2 * font_h);
if(List_Nbr(v->Time) > 1 && v->ShowTime) if((v->ShowTime == 1 && List_Nbr(v->Time) > 1) ||
sprintf(label, "%s (%g)", v->Name, (v->ShowTime == 2 && List_Nbr(v->Time) > 0))
*(double *)List_Pointer(v->Time, v->TimeStep)); sprintf(label, "%s (%g)", v->Name, *(double *)List_Pointer(v->Time, v->TimeStep));
else else
sprintf(label, "%s", v->Name); sprintf(label, "%s", v->Name);
Draw_String(label); Draw_String(label);
......
...@@ -45,7 +45,7 @@ Default value: @code{1}@* ...@@ -45,7 +45,7 @@ Default value: @code{1}@*
Saved in: @code{General.OptionsFileName} Saved in: @code{General.OptionsFileName}
@item General.AppleMenuBar @item General.AppleMenuBar
Use Apple-style menu bar?@* Use Apple-style menu bar on Mac OS X?@*
Default value: @code{0}@* Default value: @code{0}@*
Saved in: @code{General.SessionFileName} Saved in: @code{General.SessionFileName}
......
...@@ -6,9 +6,11 @@ Saved in: @code{General.OptionsFileName} ...@@ -6,9 +6,11 @@ Saved in: @code{General.OptionsFileName}
@item Solver.Help0 @item Solver.Help0
Help string for solver 0@* Help string for solver 0@*
Default value: @code{"A General environment for the treatment of Discrete Default value: @code{"A General environment for the treatment of
Problems. Copyright (C) 1997-2003 Patrick Dular and Christophe Discrete Problems.
Geuzaine. Visit http://www.geuz.org/getdp/ for more info"}@* Copyright (C) 1997-2003
Patrick Dular and Christophe Geuzaine.
Visit http://www.geuz.org/getdp/ for more info"}@*
Saved in: @code{General.OptionsFileName} Saved in: @code{General.OptionsFileName}
@item Solver.Executable0 @item Solver.Executable0
......
...@@ -260,7 +260,7 @@ Default value: @code{1}@* ...@@ -260,7 +260,7 @@ Default value: @code{1}@*
Saved in: @code{General.OptionsFileName} Saved in: @code{General.OptionsFileName}
@item View.ShowTime @item View.ShowTime
Show time value (or time step) if NbTimeStep > 1?@* Show time value (or time step number) in the scale? (1=only if NbTimeStep>1, 2=always)@*
Default value: @code{1}@* Default value: @code{1}@*
Saved in: @code{General.OptionsFileName} Saved in: @code{General.OptionsFileName}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment