GUI/Maximum window dimensions: Difference between revisions

Content added Content deleted
m (elided an omit.)
Line 467: Line 467:
Insets: java.awt.Insets[top=0,left=0,bottom=30,right=0]
Insets: java.awt.Insets[top=0,left=0,bottom=30,right=0]
Max available: java.awt.Dimension[width=1920,height=1050]</pre>
Max available: java.awt.Dimension[width=1920,height=1050]</pre>

=={{header|julia}}==
Uses the Gtk library.
<lang julia>
win = GtkWindow("hello", 100, 100)
fullscreen(win)
sleep(10)
println(width(win), " ", height(win))
destroy(win)
</lang>
{{output}} <pre>
1920 1080
</pre>



=={{header|Kotlin}}==
=={{header|Kotlin}}==