Settings JSON Format

The ui settings file contains the ui configurations in json format. User can change this file to reflect the changes in the ui. As of now only toolbar configuration has been added. JSON schema for the settings file.

Toolbar Configuration JSON Format

Toolbar configuration is stored in the following format.

{
    "toolbar": {
        "tabs": [
            {
                "label": "Tab1",
                "groups": [
                    {
                        "label": "Group1",
                        "width": 3,
                        "buttons": [ "Button1", "Button2"]
                    },
                    {
                        "label": "Group2",
                        "width": 3,
                        "buttons": [ "Button3" ]
                    }
                ]
            }
        ]
    }
}