Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
7e56e5d0
Commit
7e56e5d0
authored
24 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
post.nb_views
parent
a3ccda30
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Common/Context.h
+2
-2
2 additions, 2 deletions
Common/Context.h
Common/Options.h
+2
-1
2 additions, 1 deletion
Common/Options.h
Common/Views.cpp
+3
-1
3 additions, 1 deletion
Common/Views.cpp
Unix/CbContext.cpp
+3
-1
3 additions, 1 deletion
Unix/CbContext.cpp
with
10 additions
and
5 deletions
Common/Context.h
+
2
−
2
View file @
7e56e5d0
/* $Id: Context.h,v 1.2
1
2000-12-2
0
10:4
0:49
geuzaine Exp $ */
/* $Id: Context.h,v 1.2
2
2000-12-2
1
10:4
1: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 */
...
...
This diff is collapsed.
Click to expand it.
Common/Options.h
+
2
−
1
View file @
7e56e5d0
/* $Id: Options.h,v 1.1
0
2000-12-21 10:
19:56
geuzaine Exp $ */
/* $Id: Options.h,v 1.1
1
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
.
}
}
;
}
;
...
...
This diff is collapsed.
Click to expand it.
Common/Views.cpp
+
3
−
1
View file @
7e56e5d0
/* $Id: Views.cpp,v 1.1
8
2000-12-
18 09:03:51
geuzaine Exp $ */
/* $Id: Views.cpp,v 1.1
9
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
;
...
...
This diff is collapsed.
Click to expand it.
Unix/CbContext.cpp
+
3
−
1
View file @
7e56e5d0
/* $Id: CbContext.cpp,v 1.
8
2000-12-
13 13:57
:0
0
geuzaine Exp $ */
/* $Id: CbContext.cpp,v 1.
9
2000-12-
21 10:41
:0
3
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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment