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
111f0b1d
Commit
111f0b1d
authored
9 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
slightly larger windows for linux font problems
parent
2a519e9b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Fltk/clippingWindow.cpp
+1
-1
1 addition, 1 deletion
Fltk/clippingWindow.cpp
Fltk/optionWindow.cpp
+3
-2
3 additions, 2 deletions
Fltk/optionWindow.cpp
Fltk/pluginWindow.cpp
+1
-1
1 addition, 1 deletion
Fltk/pluginWindow.cpp
Fltk/visibilityWindow.cpp
+1
-1
1 addition, 1 deletion
Fltk/visibilityWindow.cpp
with
6 additions
and
5 deletions
Fltk/clippingWindow.cpp
+
1
−
1
View file @
111f0b1d
...
...
@@ -260,7 +260,7 @@ clippingWindow::clippingWindow(int deltaFontSize)
butt
[
0
]
=
new
Fl_Check_Button
(
L
+
WB
,
3
*
WB
+
6
*
BH
,
width
-
L
-
2
*
WB
,
BH
,
"Keep whole elements"
);
butt
[
1
]
=
new
Fl_Check_Button
(
L
+
WB
,
3
*
WB
+
7
*
BH
,
width
-
L
-
2
*
WB
,
BH
,
"Only draw
intersecting
volume layer"
);
(
L
+
WB
,
3
*
WB
+
7
*
BH
,
width
-
L
-
2
*
WB
,
BH
,
"Only draw volume layer"
);
butt
[
2
]
=
new
Fl_Check_Button
(
L
+
WB
,
3
*
WB
+
8
*
BH
,
width
-
L
-
2
*
WB
,
BH
,
"Cut only volume elements"
);
for
(
int
i
=
0
;
i
<
3
;
i
++
){
...
...
This diff is collapsed.
Click to expand it.
Fltk/optionWindow.cpp
+
3
−
2
View file @
111f0b1d
...
...
@@ -1327,7 +1327,7 @@ optionWindow::optionWindow(int deltaFontSize)
{
FL_NORMAL_SIZE
-=
deltaFontSize
;
int
width
=
3
4
*
FL_NORMAL_SIZE
+
WB
;
int
width
=
3
7
*
FL_NORMAL_SIZE
+
WB
;
int
height
=
12
*
BH
+
4
*
WB
;
int
L
=
7
*
FL_NORMAL_SIZE
;
...
...
@@ -1822,6 +1822,7 @@ optionWindow::optionWindow(int deltaFontSize)
while
(
GeneralOptions_Color
[
i
].
str
)
{
general
.
color
[
i
]
=
new
Fl_Button
(
L
+
2
*
WB
,
3
*
WB
+
(
6
+
i
)
*
BH
,
IW
,
BH
,
GeneralOptions_Color
[
i
].
str
);
general
.
color
[
i
]
->
align
(
FL_ALIGN_CENTER
|
FL_ALIGN_INSIDE
|
FL_ALIGN_CLIP
);
general
.
color
[
i
]
->
callback
(
color_cb
,
(
void
*
)
GeneralOptions_Color
[
i
].
function
);
i
++
;
}
...
...
@@ -2347,7 +2348,7 @@ optionWindow::optionWindow(int deltaFontSize)
mesh
.
value
[
3
]
->
callback
(
mesh_options_ok_cb
);
mesh
.
butt
[
4
]
=
new
Fl_Check_Button
(
L
+
2
*
WB
+
IW
+
WB
/
2
,
2
*
WB
+
11
*
BH
,
BW
,
BH
,
"Use incomplete elements"
);
(
L
+
2
*
WB
+
1.25
*
IW
,
2
*
WB
+
11
*
BH
,
BW
,
BH
,
"Use incomplete elements"
);
mesh
.
butt
[
4
]
->
type
(
FL_TOGGLE_BUTTON
);
mesh
.
butt
[
4
]
->
callback
(
mesh_options_ok_cb
);
...
...
This diff is collapsed.
Click to expand it.
Fltk/pluginWindow.cpp
+
1
−
1
View file @
111f0b1d
...
...
@@ -298,7 +298,7 @@ pluginWindow::pluginWindow(int deltaFontSize)
{
FL_NORMAL_SIZE
-=
deltaFontSize
;
int
width0
=
3
4
*
FL_NORMAL_SIZE
+
WB
;
int
width0
=
3
7
*
FL_NORMAL_SIZE
+
WB
;
int
height0
=
12
*
BH
+
4
*
WB
;
int
L1
=
13
*
FL_NORMAL_SIZE
,
L2
=
6
*
FL_NORMAL_SIZE
;
...
...
This diff is collapsed.
Click to expand it.
Fltk/visibilityWindow.cpp
+
1
−
1
View file @
111f0b1d
...
...
@@ -1146,7 +1146,7 @@ visibilityWindow::visibilityWindow(int deltaFontSize)
{
FL_NORMAL_SIZE
-=
deltaFontSize
;
int
CC
=
(
int
)(
1.1
*
BB
);
int
CC
=
(
int
)(
1.1
8
*
BB
);
static
int
cols
[
5
]
=
{
3
*
WB
,
CC
,
CC
,
2
*
CC
,
0
};
int
width
=
cols
[
0
]
+
cols
[
1
]
+
cols
[
2
]
+
cols
[
3
]
+
7
*
WB
;
...
...
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