Skip to content

Commit 0981bfb

Browse files
author
Alexander Matveev
committedNov 10, 2022
8296156: [macos] Resize DMG windows and background to fit additional DMG contents
Reviewed-by: asemenyuk
1 parent 93fed9b commit 0981bfb

File tree

1 file changed

+28
-3
lines changed
  • src/jdk.jpackage/macosx/classes/jdk/jpackage/internal/resources

1 file changed

+28
-3
lines changed
 

‎src/jdk.jpackage/macosx/classes/jdk/jpackage/internal/resources/DMGsetup.scpt

+28-3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ tell application "Finder"
2121

2222
set allTheFiles to the name of every item of theWindow
2323
set xpos to 120
24+
set ypos to 290
25+
set i to 1
26+
set j to 0
2427
repeat with theFile in allTheFiles
2528
set theFilePath to POSIX path of theFile
2629
set appFilePath to POSIX path of "/DEPLOY_TARGET"
@@ -31,12 +34,34 @@ tell application "Finder"
3134
-- Position application or runtime
3235
set position of item theFile of theWindow to {120, 130}
3336
else
34-
-- Position all other items in a second row.
35-
set position of item theFile of theWindow to {xpos, 290}
36-
set xpos to xpos + 150
37+
-- Position all other items in rows by 3 item
38+
set position of item theFile of theWindow to {xpos, ypos}
39+
set xpos to xpos + 135
40+
if (i mod 3) is equal to 0
41+
set i to 1
42+
set ypos to ypos + 150
43+
set xpos to 120
44+
else
45+
set i to i + 1
46+
end if
47+
set j to j + 1
3748
end if
3849
end repeat
3950

51+
-- Reduce icon size to 96 if we have additional content
52+
if j is not equal to 0
53+
set icon size of theViewOptions to 96
54+
end if
55+
56+
-- Resize window to fit 1 or 2 extra raws with additional content
57+
-- 6 additional content will be displayed to user without scrolling
58+
-- for anything more then 6 scrolling will be required
59+
if j is greater than 0 and j is less than or equal to 3
60+
set the bounds of theWindow to {400, 100, 920, 525}
61+
end if
62+
if j is greater than 3
63+
set the bounds of theWindow to {400, 100, 920, 673}
64+
end if
4065

4166
update theDisk without registering applications
4267
delay 5

0 commit comments

Comments
 (0)
Please sign in to comment.