Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
purr-data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonathan Wilkes
purr-data
Commits
6b4713c2
Commit
6b4713c2
authored
9 years ago
by
Jonathan Wilkes
Browse files
Options
Downloads
Patches
Plain Diff
remove unnecessary sys_vgui calls from g_numbox.c
parent
d869d271
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pd/src/g_numbox.c
+14
-11
14 additions, 11 deletions
pd/src/g_numbox.c
with
14 additions
and
11 deletions
pd/src/g_numbox.c
+
14
−
11
View file @
6b4713c2
...
@@ -185,12 +185,15 @@ static void my_numbox_draw_new(t_my_numbox *x, t_glist *glist)
...
@@ -185,12 +185,15 @@ static void my_numbox_draw_new(t_my_numbox *x, t_glist *glist)
x2
-
x1
,
x2
-
x1
,
y2
-
y1
,
y2
-
y1
,
glist_istoplevel
(
canvas
));
glist_istoplevel
(
canvas
));
/* Not sure when it is necessary to hide the frame... */
/* Not sure when it is necessary to hide the frame... perhaps for
k12? */
if
(
!
x
->
x_hide_frame
||
x
->
x_hide_frame
==
2
)
if
(
!
x
->
x_hide_frame
||
x
->
x_hide_frame
==
2
)
sys_vgui
(
".x%lx.c create polyline %d %d %d %d %d %d -stroke #%6.6x "
{
"-tags {%lxBASE2 x%lx text iemgui}
\n
"
,
//sys_vgui(".x%lx.c create polyline %d %d %d %d %d %d -stroke #%6.6x "
canvas
,
x1
,
y1
,
x1
+
half
,
y1
+
half
,
x1
,
y2
,
// "-tags {%lxBASE2 x%lx text iemgui}\n",
x
->
x_gui
.
x_fcol
,
x
,
x
);
// canvas, x1, y1, x1 + half, y1 + half, x1, y2,
// x->x_gui.x_fcol, x, x);
}
my_numbox_ftoa
(
x
);
my_numbox_ftoa
(
x
);
//sys_vgui(".x%lx.c create text %d %d -text {%s} -anchor w "
//sys_vgui(".x%lx.c create text %d %d -text {%s} -anchor w "
// "-font %s -fill #%6.6x -tags {%lxNUMBER x%lx noscroll text iemgui}\n",
// "-font %s -fill #%6.6x -tags {%lxNUMBER x%lx noscroll text iemgui}\n",
...
@@ -273,12 +276,12 @@ static void my_numbox_draw_select(t_my_numbox *x, t_glist *glist)
...
@@ -273,12 +276,12 @@ static void my_numbox_draw_select(t_my_numbox *x, t_glist *glist)
char
bcol
[
8
];
sprintf
(
bcol
,
"#%6.6x"
,
x
->
x_gui
.
x_bcol
);
char
bcol
[
8
];
sprintf
(
bcol
,
"#%6.6x"
,
x
->
x_gui
.
x_bcol
);
// The logic in these sys_vgui calls is being taken care
// The logic in these sys_vgui calls is being taken care
// of in the gui now...
// of in the gui now...
sys_vgui
(
".x%lx.c itemconfigure %lxBASE1 -stroke %s
\n
"
,
canvas
,
x
,
//
sys_vgui(".x%lx.c itemconfigure %lxBASE1 -stroke %s\n", canvas, x,
issel
?
selection_color
:
x
->
x_hide_frame
<=
1
?
"$pd_colors(iemgui_border)"
:
bcol
);
//
issel ? selection_color : x->x_hide_frame <= 1 ? "$pd_colors(iemgui_border)" : bcol);
sys_vgui
(
".x%lx.c itemconfigure %lxBASE2 -stroke %s
\n
"
,
canvas
,
x
,
//
sys_vgui(".x%lx.c itemconfigure %lxBASE2 -stroke %s\n", canvas, x,
issel
?
selection_color
:
fcol
);
//
issel ? selection_color : fcol);
sys_vgui
(
".x%lx.c itemconfigure %lxNUMBER -fill %s
\n
"
,
canvas
,
x
,
//
sys_vgui(".x%lx.c itemconfigure %lxNUMBER -fill %s\n", canvas, x,
issel
?
selection_color
:
fcol
);
//
issel ? selection_color : fcol);
if
(
issel
)
if
(
issel
)
scalehandle_draw_select2
(
&
x
->
x_gui
);
scalehandle_draw_select2
(
&
x
->
x_gui
);
else
else
...
...
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