Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
nerrons
purr-data
Commits
fad0bf91
Commit
fad0bf91
authored
May 17, 2011
by
Ivica Bukvic
Committed by
Hans-Christoph Steiner
Nov 02, 2011
Browse files
Pd-0.42.5-extended-l2ork-dev-20110517.tar.bz2
parent
7d5fb35b
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/g_hslider.c
View file @
fad0bf91
...
...
@@ -318,6 +318,9 @@ static void hslider_draw_select(t_hslider* x,t_glist* glist)
}
}
void
hslider_check_minmax
(
t_hslider
*
x
,
double
min
,
double
max
);
void
hslider_check_width
(
t_hslider
*
x
,
int
w
);
static
void
hslider__clickhook
(
t_scalehandle
*
sh
,
t_floatarg
f
,
t_floatarg
xxx
,
t_floatarg
yyy
)
{
...
...
@@ -361,6 +364,9 @@ static void hslider__clickhook(t_scalehandle *sh, t_floatarg f, t_floatarg xxx,
sys_vgui
(
".gfxstub%lx.dim.h_ent insert 0 %d
\n
"
,
properties
,
x
->
x_gui
.
x_h
);
}
hslider_check_width
(
x
,
x
->
x_gui
.
x_w
);
hslider_check_minmax
(
x
,
x
->
x_min
,
x
->
x_max
);
if
(
glist_isvisible
(
x
->
x_gui
.
x_glist
))
{
sys_vgui
(
".x%x.c delete %s
\n
"
,
x
->
x_gui
.
x_glist
,
sh
->
h_outlinetag
);
...
...
src/g_text.c
View file @
fad0bf91
...
...
@@ -183,6 +183,7 @@ void canvas_howputnew(t_canvas *x, int *connectp, int *xpixp, int *ypixp,
else
if
(
!
g
->
g_next
)
indx
=
nobj
-
1
;
}
x
->
gl_editor
->
e_onmotion
=
MA_NONE
;
sys_vgui
(
"pdtk_canvas_getscroll .x%lx.c
\n
"
,
x
);
}
else
...
...
src/g_vslider.c
View file @
fad0bf91
...
...
@@ -309,6 +309,9 @@ static void vslider_draw_select(t_vslider *x, t_glist *glist)
}
}
void
vslider_check_minmax
(
t_vslider
*
x
,
double
min
,
double
max
);
void
vslider_check_height
(
t_vslider
*
x
,
int
w
);
static
void
vslider__clickhook
(
t_scalehandle
*
sh
,
t_floatarg
f
,
t_floatarg
xxx
,
t_floatarg
yyy
)
{
...
...
@@ -343,6 +346,9 @@ static void vslider__clickhook(t_scalehandle *sh, t_floatarg f, t_floatarg xxx,
canvas_dirty
(
x
->
x_gui
.
x_glist
,
1
);
}
vslider_check_height
(
x
,
x
->
x_gui
.
x_h
);
vslider_check_minmax
(
x
,
x
->
x_min
,
x
->
x_max
);
int
properties
=
gfxstub_haveproperties
((
void
*
)
x
);
if
(
properties
)
{
...
...
src/m_pd.h
View file @
fad0bf91
...
...
@@ -11,7 +11,7 @@ extern "C" {
#define PD_MAJOR_VERSION 0
#define PD_MINOR_VERSION 42
#define PD_BUGFIX_VERSION 5
#define PD_TEST_VERSION "extended-l2ork-20110
42
7"
#define PD_TEST_VERSION "extended-l2ork-20110
51
7"
/* old name for "MSW" flag -- we have to take it for the sake of many old
"nmakefiles" for externs, which will define NT and not MSW */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment