From 8194798645517e7c54296ba47ded09a67cf71805 Mon Sep 17 00:00:00 2001 From: Gergo Mocsi Date: Tue, 30 Jul 2013 13:01:43 +0200 Subject: GSOC work, config entry to store options Created a config file to store configuration for the feature. NOTE: it gives a runtime error, so it is temporary disabled. Change-Id: I7103bdfad43bb5760165430a57d93a90a7e5dc7e --- officecfg/Configuration_officecfg.mk | 1 + officecfg/files.mk | 1 + .../data/org/openoffice/Office/BasicIDE.xcu | 38 ++++++++++++++ .../schema/org/openoffice/Office/BasicIDE.xcs | 61 ++++++++++++++++++++++ 4 files changed, 101 insertions(+) create mode 100644 officecfg/registry/data/org/openoffice/Office/BasicIDE.xcu create mode 100644 officecfg/registry/schema/org/openoffice/Office/BasicIDE.xcs (limited to 'officecfg') diff --git a/officecfg/Configuration_officecfg.mk b/officecfg/Configuration_officecfg.mk index 89579778b959..cb27ffcc0a52 100644 --- a/officecfg/Configuration_officecfg.mk +++ b/officecfg/Configuration_officecfg.mk @@ -32,6 +32,7 @@ $(eval $(call gb_Configuration_add_datas,registry,officecfg/registry/data,\ org/openoffice/FirstStartWizard.xcu \ org/openoffice/Interaction.xcu \ org/openoffice/Office/Calc.xcu \ + org/openoffice/Office/BasicIDE.xcu \ org/openoffice/Office/Canvas.xcu \ org/openoffice/Office/Compatibility.xcu \ org/openoffice/Office/ExtensionDependencies.xcu \ diff --git a/officecfg/files.mk b/officecfg/files.mk index 3fbbfa0f0887..3110805deeab 100644 --- a/officecfg/files.mk +++ b/officecfg/files.mk @@ -13,6 +13,7 @@ officecfg_XCSFILES := \ LDAP \ Office/Accelerators \ Office/Addons \ + Office/BasicIDE \ Office/Calc \ Office/CalcAddIns \ Office/Canvas \ diff --git a/officecfg/registry/data/org/openoffice/Office/BasicIDE.xcu b/officecfg/registry/data/org/openoffice/Office/BasicIDE.xcu new file mode 100644 index 000000000000..283d8043da90 --- /dev/null +++ b/officecfg/registry/data/org/openoffice/Office/BasicIDE.xcu @@ -0,0 +1,38 @@ + + + + + + + false + + + false + + + false + + + false + + + false + + + diff --git a/officecfg/registry/schema/org/openoffice/Office/BasicIDE.xcs b/officecfg/registry/schema/org/openoffice/Office/BasicIDE.xcs new file mode 100644 index 000000000000..1cce64415e26 --- /dev/null +++ b/officecfg/registry/schema/org/openoffice/Office/BasicIDE.xcs @@ -0,0 +1,61 @@ + + + + + + Contains configuration for the BASIC IDE. + + + + + Autocomplete function configuration. + + + + Sets the code completition on/off. Default is false. + + false + + + + Sets the autoclose parenthesis on/off. Default is false. + + false + + + + Sets the autoclose double quotes on/off. Default is false. + + false + + + + Sets the autoclose procedures on/off. Default is false. + + false + + + + Sets the auto correct spelling on/off. Default is false. + + false + + + + -- cgit