In the toolbar tab of the Customize dialog, we need to display in the function lists the type of toolbar control that will appear in the toolbar. Is the control a button, split button, group button, input field (combobox, spinbox) or drop down list. How it appears in MS Office - attachment 113721 [details]
There is currently no way to know in advance what kind of control will it be. So we'll need to implement a way to store this property for commands, and then go through all commands and set it.
Maxim: Thanks for the info. As the majority of them will be regular buttons, we just need to tag the ones that aren't. :D Any suggestions on what the attribute name should be called in sfx.sdi and whether we should have a single attribute value to indicate the type (e.g. 'SplitButton;') or whether it should be an attribute/value sequence (e.g. 'ControlType = Split,' ).
(In reply to Yousuf Philips (jay) from comment #2) > Any suggestions on what the attribute name should be called in sfx.sdi I would avoid adding new stuff to sdi files in general, esp. as some components (like chart or base) don't use sdi files at all. Maybe put it somewhere under officecfg, need to think more about it.