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

post.nb_views

parent a3ccda30
No related branches found
No related tags found
No related merge requests found
/* $Id: Context.h,v 1.21 2000-12-20 10:40:49 geuzaine Exp $ */ /* $Id: Context.h,v 1.22 2000-12-21 10:41:01 geuzaine Exp $ */
#ifndef _CONTEXT_H_ #ifndef _CONTEXT_H_
#define _CONTEXT_H_ #define _CONTEXT_H_
...@@ -135,7 +135,7 @@ class Context_T { ...@@ -135,7 +135,7 @@ class Context_T {
struct{ struct{
int draw, scales, link ; int draw, scales, link ;
int initial_visibility, initial_nbiso, initial_intervals ; int initial_visibility, initial_nbiso, initial_intervals ;
long anim_delay ; long anim_delay, nb_views ;
}post; }post;
/* print options */ /* print options */
......
/* $Id: Options.h,v 1.10 2000-12-21 10:19:56 geuzaine Exp $ */ /* $Id: Options.h,v 1.11 2000-12-21 10:41:02 geuzaine Exp $ */
#ifndef _OPTIONS_H_ #ifndef _OPTIONS_H_
#define _OPTIONS_H_ #define _OPTIONS_H_
...@@ -190,6 +190,7 @@ StringXNumber PostProcessingOptions_Number[] = { ...@@ -190,6 +190,7 @@ StringXNumber PostProcessingOptions_Number[] = {
{ "IntervalsMode" , GMSH_INT, (void*)&CTX.post.initial_intervals , DRAW_POST_ISO }, { "IntervalsMode" , GMSH_INT, (void*)&CTX.post.initial_intervals , DRAW_POST_ISO },
{ "IntervalsNumber" , GMSH_INT, (void*)&CTX.post.initial_nbiso , 15. }, { "IntervalsNumber" , GMSH_INT, (void*)&CTX.post.initial_nbiso , 15. },
{ "AnimationDelay" , GMSH_INT, (void*)&CTX.post.anim_delay , 0. }, { "AnimationDelay" , GMSH_INT, (void*)&CTX.post.anim_delay , 0. },
{ "NbViews" , GMSH_INT, (void*)&CTX.post.nb_views , 0. },
{ NULL , GMSH_DOUBLE, NULL , 0. } { NULL , GMSH_DOUBLE, NULL , 0. }
} ; } ;
......
/* $Id: Views.cpp,v 1.18 2000-12-18 09:03:51 geuzaine Exp $ */ /* $Id: Views.cpp,v 1.19 2000-12-21 10:41:02 geuzaine Exp $ */
#include "Gmsh.h" #include "Gmsh.h"
#include "Views.h" #include "Views.h"
...@@ -254,6 +254,7 @@ void EndView(int AddInUI, int Number, char *FileName, char *Name, ...@@ -254,6 +254,7 @@ void EndView(int AddInUI, int Number, char *FileName, char *Name,
if(!Number){ if(!Number){
ActualView->Num = ++ActualViewNum; ActualView->Num = ++ActualViewNum;
List_Add(Post_ViewList,ActualView); List_Add(Post_ViewList,ActualView);
CTX.post.nb_views = List_Nbr(Post_ViewList);
if(AddInUI) if(AddInUI)
AddViewInUI(List_Nbr(Post_ViewList), ActualView->Name, ActualView->Num); AddViewInUI(List_Nbr(Post_ViewList), ActualView->Name, ActualView->Num);
} }
...@@ -276,6 +277,7 @@ bool FreeView(int num){ ...@@ -276,6 +277,7 @@ bool FreeView(int num){
v = (Post_View*)List_Pointer(Post_ViewList, num); v = (Post_View*)List_Pointer(Post_ViewList, num);
FreeView(v); FreeView(v);
List_Suppress(Post_ViewList, v, fcmpPostViewNum); List_Suppress(Post_ViewList, v, fcmpPostViewNum);
CTX.post.nb_views = List_Nbr(Post_ViewList);
Msg(INFOS, "View %d deleted (%d views left)",num, List_Nbr(Post_ViewList)); Msg(INFOS, "View %d deleted (%d views left)",num, List_Nbr(Post_ViewList));
return true; return true;
......
/* $Id: CbContext.cpp,v 1.8 2000-12-13 13:57:00 geuzaine Exp $ */ /* $Id: CbContext.cpp,v 1.9 2000-12-21 10:41:03 geuzaine Exp $ */
#include "Gmsh.h" #include "Gmsh.h"
#include "GmshUI.h" #include "GmshUI.h"
...@@ -633,6 +633,8 @@ void RemoveViewCb(Widget w, XtPointer client_data, XtPointer call_data){ ...@@ -633,6 +633,8 @@ void RemoveViewCb(Widget w, XtPointer client_data, XtPointer call_data){
if(!List_Suppress(Post_ViewList, v, fcmpPostViewNum)) if(!List_Suppress(Post_ViewList, v, fcmpPostViewNum))
Msg(ERROR, "Could Not Suppress View from List"); Msg(ERROR, "Could Not Suppress View from List");
CTX.post.nb_views = List_Nbr(Post_ViewList);
if(actual_global_context == CONTEXT_POST) if(actual_global_context == CONTEXT_POST)
ActualizeContextCb(NULL,(XtPointer)actual_global_context,NULL); ActualizeContextCb(NULL,(XtPointer)actual_global_context,NULL);
......
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