Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

GUI Preferences - <guiprefs>

This <guiprefs> element allows you to set the layout and behavior of the GUI when the installer runs. This information will not have any effect on the command-line installers that will be available in future versions of IzPack.The attributes that can be specified are:

Attribute Name

Description

Default Value

resizable

Indicates whether the window size can be changed or not.

no

width

Sets the initial window width in pixels.

600

height

Sets the initial window height in pixels.

480

...

Code Block
languagehtml/xml
<guiprefs width="640" height="480" resizable="no">
   ...
   <modifier key="doNotShowPackSizeColumn" value="true"/>
   <modifier key="doNotShowRequiredSize" value="yestrue"/>
   ...
 </guiprefs>

The PacksPanel will not show the column with the sizes of each pack, but will show the total required space.

...