User Tools

Site Tools


Sidebar

Introduction

* Home

Documentation & help

LibreCAD Community

Help on DokuWiki

Temporary shorcuts

dev:v3:settings_json

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" ]
                    }
                ]
            }
        ]
    }
}
dev/v3/settings_json.txt · Last modified: 2020/07/31 05:50 by jedi18