Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Aayush
purr-data
Commits
b05dec27
Commit
b05dec27
authored
Aug 23, 2016
by
Jonathan Wilkes
Browse files
fix ugly regression that came from patch for issue #105-- I accidentally broke all dialog windows
parent
c2313bfc
Changes
2
Hide whitespace changes
Inline
Side-by-side
pd/nw/index.js
View file @
b05dec27
...
...
@@ -313,8 +313,9 @@ function nw_create_window(cid, type, width, height, xpos, ypos, attr_array) {
// as a loaded canvas. If not, we assume it got closed before
// we were able to finish loading the browser window (e.g.,
// with a [vis 1, vis 0( message). In that case we kill the window.
if
(
new_win
===
pdgui
.
get_patchwin
(
cid
)
&&
pdgui
.
window_is_loaded
(
cid
))
{
if
((
new_win
===
pdgui
.
get_patchwin
(
cid
)
||
new_win
===
pdgui
.
get_dialogwin
(
cid
))
&&
pdgui
.
window_is_loading
(
cid
))
{
// initialize the window
new_win
.
eval
(
null
,
eval_string
);
}
else
{
...
...
pd/nw/pdgui.js
View file @
b05dec27
...
...
@@ -520,7 +520,7 @@ function gui_window_close(cid) {
}
// remove reference to the window from patchwin object
patchwin
[
cid
]
=
null
;
load
ed
[
cid
]
=
null
;
load
ing
[
cid
]
=
null
;
}
function
menu_k12_open_demos
()
{
...
...
@@ -887,7 +887,7 @@ var scroll = {},
font
=
{},
doscroll
=
{},
last_loaded
,
load
ed
=
{},
load
ing
=
{},
popup_menu
=
{};
var
patchwin
=
{};
// object filled with cid: [Window object] pairs
...
...
@@ -994,11 +994,19 @@ function gui_canvas_set_title(cid, name, args, dir, dirty_flag) {
patchwin
[
cid
].
title
=
title
;
}
function
window_is_load
ed
(
cid
)
{
return
(
load
ed
[
cid
]
===
1
)
;
function
window_is_load
ing
(
cid
)
{
return
load
ing
[
cid
];
}
exports
.
window_is_loaded
=
window_is_loaded
;
exports
.
window_is_loading
=
window_is_loading
;
// wrapper for nw_create_window
function
create_window
(
cid
,
type
,
width
,
height
,
xpos
,
ypos
,
attr_array
)
{
nw_create_window
(
cid
,
type
,
width
,
height
,
xpos
,
ypos
,
attr_array
);
// initialize variable to reflect that this window has been opened
loading
[
cid
]
=
true
;
// we call set_patchwin from the callback in pd_canvas
}
// create a new canvas
function
gui_canvas_new
(
cid
,
width
,
height
,
geometry
,
editmode
,
name
,
dir
,
dirty_flag
,
cargs
)
{
...
...
@@ -1041,7 +1049,7 @@ function gui_canvas_new(cid, width, height, geometry, editmode, name, dir, dirty
last_loaded
=
cid
;
// Not sure why resize and topmost are here-- but we'll pass them on for
// the time being...
nw_
create_window
(
cid
,
"
pd_canvas
"
,
width
,
height
,
create_window
(
cid
,
"
pd_canvas
"
,
width
,
height
,
xpos
,
ypos
,
{
menu_flag
:
menu_flag
,
resize
:
resize
[
cid
],
...
...
@@ -1053,9 +1061,6 @@ function gui_canvas_new(cid, width, height, geometry, editmode, name, dir, dirty
args
:
cargs
,
editmode
:
editmode
});
// initialize variable to reflect that this window has been opened
loaded
[
cid
]
=
1
;
// we call set_patchwin from the callback in pd_canvas
}
/* This gets sent to Pd to trigger each object on the canvas
...
...
@@ -3646,7 +3651,7 @@ function attr_array_to_object(attr_array) {
}
function
gui_gatom_dialog
(
did
,
attr_array
)
{
dialogwin
[
did
]
=
nw_
create_window
(
did
,
"
gatom
"
,
265
,
300
,
dialogwin
[
did
]
=
create_window
(
did
,
"
gatom
"
,
265
,
300
,
popup_coords
[
2
],
popup_coords
[
3
],
attr_array_to_object
(
attr_array
));
}
...
...
@@ -3664,7 +3669,7 @@ function gui_iemgui_dialog(did, attr_array) {
//for (var i = 0; i < attr_array.length; i++) {
// attr_array[i] = '"' + attr_array[i] + '"';
//}
nw_
create_window
(
did
,
"
iemgui
"
,
265
,
450
,
create_window
(
did
,
"
iemgui
"
,
265
,
450
,
popup_coords
[
2
],
popup_coords
[
3
],
attr_array_to_object
(
attr_array
));
}
...
...
@@ -3695,7 +3700,7 @@ function gui_array_new(did, count) {
array_outline
:
"
black
"
,
array_in_existing_graph
:
0
}];
dialogwin
[
did
]
=
nw_
create_window
(
did
,
"
canvas
"
,
265
,
340
,
20
,
20
,
dialogwin
[
did
]
=
create_window
(
did
,
"
canvas
"
,
265
,
340
,
20
,
20
,
attr_array
);
}
...
...
@@ -3710,7 +3715,7 @@ function gui_canvas_dialog(did, attr_arrays) {
}
}
}
dialogwin
[
did
]
=
nw_
create_window
(
did
,
"
canvas
"
,
300
,
100
,
dialogwin
[
did
]
=
create_window
(
did
,
"
canvas
"
,
300
,
100
,
popup_coords
[
2
],
popup_coords
[
3
],
attr_arrays
);
}
...
...
@@ -3724,7 +3729,7 @@ function gui_remove_gfxstub(did) {
function
gui_font_dialog
(
cid
,
gfxstub
,
font_size
)
{
var
attrs
=
{
canvas
:
cid
,
font_size
:
font_size
};
dialogwin
[
gfxstub
]
=
nw_
create_window
(
gfxstub
,
"
font
"
,
265
,
200
,
0
,
0
,
dialogwin
[
gfxstub
]
=
create_window
(
gfxstub
,
"
font
"
,
265
,
200
,
0
,
0
,
attrs
);
}
...
...
@@ -3738,7 +3743,7 @@ function gui_pd_dsp(state) {
function
open_prefs
()
{
if
(
!
dialogwin
[
"
prefs
"
])
{
nw_
create_window
(
"
prefs
"
,
"
prefs
"
,
300
,
420
,
0
,
0
,
null
);
create_window
(
"
prefs
"
,
"
prefs
"
,
300
,
420
,
0
,
0
,
null
);
}
}
...
...
@@ -3746,7 +3751,7 @@ exports.open_prefs = open_prefs;
function
open_search
()
{
if
(
!
dialogwin
[
"
search
"
])
{
nw_
create_window
(
"
search
"
,
"
search
"
,
300
,
400
,
20
,
20
,
null
);
create_window
(
"
search
"
,
"
search
"
,
300
,
400
,
20
,
20
,
null
);
}
}
...
...
Write
Preview
Supports
Markdown
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