Gets the margin between buttons The margin may vary between platforms, as specified by their guidelinesreturnMargin if(Constants.isOSX) return (smallOSXControl) ? 10 : 12; else if(Constants.isWindows) return 6; else return 6; // this is gnome's
Gets the margin between buttons
The margin may vary between platforms, as specified by their guidelines
if(Constants.isOSX) return (smallOSXControl) ? 10 : 12; else if(Constants.isWindows) return 6; else return 6; // this is gnome's
Gets the minimum height of a button in a dialog (usually for alerts) The size may vary between platforms, as specified by their guidelinesreturnHeight return 20;
Gets the minimum height of a button in a dialog (usually for alerts)
The size may vary between platforms, as specified by their guidelines
return 20;
Gets the minimum width of a button in a dialog (usually for alerts) The size may vary between platforms, as specified by their guidelinesreturnWidth if(Constants.isOSX) return 90; else return 70;
Gets the minimum width of a button in a dialog (usually for alerts)
if(Constants.isOSX) return 90; else return 70;