https://bugs.documentfoundation.org/show_bug.cgi?id=55848
--- Comment #18 from Alex Thurgood <[email protected]> --- (In reply to Heiko Tietze from comment #16) > Form controls are defined by the system and we cannot change the size > (neither this attribute is available in ODF). > Which is unfortunate because the macOS Cocoa API lets you define the size of a checkbox, e.g. : NSRect frame; frame.size.width = frame.size.height = 18; NSButton *myCheckBox = [[NSButton alloc] initWithFrame:frame]; [myCheckBox setButtonType:NSSwitchButton]; (https://copyprogramming.com/howto/how-to-determine-if-an-nsbutton-is-a-checkbox?utm_content=cmp-true) I imagine that similar definitions would hopefully exist for other UI toolkits. Unfortunately, neither XCheckbox.idl nor Checkbox.idl seem to include any interface definitions for setting the size of the checkbox control. -- You are receiving this mail because: You are the assignee for the bug.
