[Libreoffice-commits] core.git: officecfg/registry sc/source

2023-12-05 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Calc.xcs |   44 ---
 sc/source/core/tool/viewopti.cxx |   34 +--
 2 files changed, 4 insertions(+), 74 deletions(-)

New commits:
commit 464d5f1265bd3ed2eff0c809152b8ccb53b785df
Author: Gabor Kelemen 
AuthorDate: Thu Nov 30 23:06:37 2023 +0100
Commit: Gabor Kelemen 
CommitDate: Tue Dec 5 12:41:09 2023 +0100

[API CHANGE] Drop unused XAxis/YAxis config groups

from Calc grid options. Spotted while researching for tdf#158473

last mention of ther getters was commented out in 2001 by:
commit a4e5d2cb47275e91834e41a9d51f1bf11ec409b1

Change-Id: Iffc7b5c4fb50352ad7063fc911039707a20dca4d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160169
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
index e1fe88dfa1d9..d54b092eca66 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
@@ -780,50 +780,6 @@
   
   true
 
-
-  
-  
-  
-Defines the horizontal distance between the single grid 
points in 1/100th millimeters.
-X axis
-  
-  
-
-  Specifies the distance that is used with locales that use 
the metric system.
-  
-
-1000
-  
-  
-
-  Specifies the distance that is used with locales that 
don't use the metric system.
-  
-
-1270
-  
-
-
-  
-  
-  
-Defines the vertical distance between the single grid points 
in 1/100th millimeters.
-Y axis
-  
-  
-
-  Specifies the distance that is used with locales that use 
the metric system.
-  
-
-1000
-  
-  
-
-  Specifies the distance that is used with locales that 
don't use the metric system.
-  
-
-1270
-  
-
   
   
 
diff --git a/sc/source/core/tool/viewopti.cxx b/sc/source/core/tool/viewopti.cxx
index 41394ded9a16..39e2e6e0e762 100644
--- a/sc/source/core/tool/viewopti.cxx
+++ b/sc/source/core/tool/viewopti.cxx
@@ -46,15 +46,11 @@ void ScGridOptions::SetDefaults()
 {
 nFldDrawX = 1000;   // 1cm
 nFldDrawY = 1000;
-nFldSnapX = 1000;
-nFldSnapY = 1000;
 }
 else
 {
 nFldDrawX = 1270;   // 0,5"
 nFldDrawY = 1270;
-nFldSnapX = 1270;
-nFldSnapY = 1270;
 }
 nFldDivisionX = 1;
 nFldDivisionY = 1;
@@ -66,8 +62,6 @@ bool ScGridOptions::operator==( const ScGridOptions& rCpy ) 
const
 && nFldDivisionX== rCpy.nFldDivisionX
 && nFldDrawY== rCpy.nFldDrawY
 && nFldDivisionY== rCpy.nFldDivisionY
-&& nFldSnapX== rCpy.nFldSnapX
-&& nFldSnapY== rCpy.nFldSnapY
 && bUseGridsnap == rCpy.bUseGridsnap
 && bSynchronize == rCpy.bSynchronize
 && bGridVisible == rCpy.bGridVisible
@@ -156,8 +150,6 @@ std::unique_ptr 
ScViewOptions::CreateGridItem() const
 pItem->SetFieldDivisionX  ( aGridOpt.GetFieldDivisionX() );
 pItem->SetFieldDrawY  ( aGridOpt.GetFieldDrawY() );
 pItem->SetFieldDivisionY  ( aGridOpt.GetFieldDivisionY() );
-pItem->SetFieldSnapX  ( aGridOpt.GetFieldSnapX() );
-pItem->SetFieldSnapY  ( aGridOpt.GetFieldSnapY() );
 pItem->SetUseGridSnap   ( aGridOpt.GetUseGridSnap() );
 pItem->SetSynchronize   ( aGridOpt.GetSynchronize() );
 pItem->SetGridVisible   ( aGridOpt.GetGridVisible() );
@@ -227,12 +219,10 @@ constexpr OUStringLiteral CFGPATH_GRID = 
u"Office.Calc/Grid";
 #define SCGRIDOPT_RESOLU_Y  1
 #define SCGRIDOPT_SUBDIV_X  2
 #define SCGRIDOPT_SUBDIV_Y  3
-#define SCGRIDOPT_OPTION_X  4
-#define SCGRIDOPT_OPTION_Y  5
-#define SCGRIDOPT_SNAPTOGRID6
-#define SCGRIDOPT_SYNCHRON  7
-#define SCGRIDOPT_VISIBLE   8
-#define SCGRIDOPT_SIZETOGRID9
+#define SCGRIDOPT_SNAPTOGRID4
+#define SCGRIDOPT_SYNCHRON  5
+#define SCGRIDOPT_VISIBLE   6
+#define SCGRIDOPT_SIZETOGRID7
 
 Sequence ScViewCfg::GetLayoutPropertyNames()
 {
@@ -273,10 +263,6 @@ Sequence ScViewCfg::GetGridPropertyNames()
: OUString("Resolution/YAxis/NonMetric")),   // 
SCGRIDOPT_RESOLU_Y
  "Subdivision/XAxis",   // 
SCGRIDOPT_SUBDIV_X
  "Subdivision/YAxis",   // 
SCGRIDOPT_SUBDIV_Y
-(bIsMetric ? 

[Libreoffice-commits] core.git: officecfg/registry sc/source sc/uiconfig

2023-12-04 Thread Sahil Gautam (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Calc.xcs |1 
 sc/source/ui/inc/tpview.hxx  |1 
 sc/source/ui/optdlg/tpview.cxx   |   12 +++
 sc/uiconfig/scalc/ui/tpviewpage.ui   |   25 +--
 4 files changed, 36 insertions(+), 3 deletions(-)

New commits:
commit a4d11d07fbace142cba82c30ecb09ff99b9bbb6f
Author: Sahil Gautam 
AuthorDate: Mon Nov 13 00:22:11 2023 +0530
Commit: Mike Kaganski 
CommitDate: Mon Dec 4 16:22:54 2023 +0100

tdf#33201 Checkbox Implementation for Col/row Highlight

Change-Id: I32aca7128a3f01be9fd5a7150243f8fd4e82f626
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159001
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 
Reviewed-by: Mike Kaganski 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
index aa58fc81a9a7..e1fe88dfa1d9 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
@@ -122,6 +122,7 @@
   false
 
 
+  
   
 Indicates whether the column/row highlight has been enabled 
or not.
 Column/row highlighting
diff --git a/sc/source/ui/inc/tpview.hxx b/sc/source/ui/inc/tpview.hxx
index 65aed43031d8..72f3b7668732 100644
--- a/sc/source/ui/inc/tpview.hxx
+++ b/sc/source/ui/inc/tpview.hxx
@@ -37,6 +37,7 @@ class ScTpContentOptions : public SfxTabPage
 std::unique_ptr m_xAnnotCB;
 std::unique_ptr m_xFormulaMarkCB;
 std::unique_ptr m_xValueCB;
+std::unique_ptr m_xColRowHighCB;
 std::unique_ptr m_xAnchorCB;
 std::unique_ptr m_xRangeFindCB;
 
diff --git a/sc/source/ui/optdlg/tpview.cxx b/sc/source/ui/optdlg/tpview.cxx
index a31bc5d417fc..4b8595899f04 100644
--- a/sc/source/ui/optdlg/tpview.cxx
+++ b/sc/source/ui/optdlg/tpview.cxx
@@ -19,6 +19,7 @@
 
 #undef SC_DLLIMPLEMENTATION
 
+#include 
 #include 
 #include 
 #include 
@@ -42,6 +43,7 @@ ScTpContentOptions::ScTpContentOptions(weld::Container* 
pPage, weld::DialogContr
 , m_xAnnotCB(m_xBuilder->weld_check_button("annot"))
 , m_xFormulaMarkCB(m_xBuilder->weld_check_button("formulamark"))
 , m_xValueCB(m_xBuilder->weld_check_button("value"))
+, m_xColRowHighCB(m_xBuilder->weld_check_button("colrowhigh"))
 , m_xAnchorCB(m_xBuilder->weld_check_button("anchor"))
 , m_xRangeFindCB(m_xBuilder->weld_check_button("rangefind"))
 , m_xObjGrfLB(m_xBuilder->weld_combo_box("objgrf"))
@@ -71,6 +73,7 @@ ScTpContentOptions::ScTpContentOptions(weld::Container* 
pPage, weld::DialogContr
 m_xAnnotCB->set_accessible_description(ScResId(STR_A11Y_DESC_ANNOT));
 m_xFormulaMarkCB->connect_toggled(aCBHdl);
 m_xValueCB->connect_toggled(aCBHdl);
+m_xColRowHighCB->connect_toggled(aCBHdl);
 m_xAnchorCB->connect_toggled(aCBHdl);
 
 m_xVScrollCB->connect_toggled(aCBHdl);
@@ -156,6 +159,13 @@ boolScTpContentOptions::FillItemSet( SfxItemSet* 
rCoreSet )
 rCoreSet->Put(SfxBoolItem(SID_SC_OPT_SYNCZOOM, 
m_xSyncZoomCB->get_active()));
 bRet = true;
 }
+if (m_xColRowHighCB->get_state_changed_from_saved())
+{
+auto pChange(comphelper::ConfigurationChanges::create());
+
officecfg::Office::Calc::Content::Display::ColumnRowHighlighting::set(m_xColRowHighCB->get_active(),
 pChange);
+pChange->commit();
+bRet = true;
+}
 
 return bRet;
 }
@@ -171,6 +181,7 @@ voidScTpContentOptions::Reset( const SfxItemSet* 
rCoreSet )
 m_xAnnotCB   ->set_active(m_xLocalOptions->GetOption(VOPT_NOTES));
 
m_xFormulaMarkCB->set_active(m_xLocalOptions->GetOption(VOPT_FORMULAS_MARKS));
 m_xValueCB   ->set_active(m_xLocalOptions->GetOption(VOPT_SYNTAX));
+
m_xColRowHighCB->set_active(officecfg::Office::Calc::Content::Display::ColumnRowHighlighting::get());
 m_xAnchorCB  ->set_active(m_xLocalOptions->GetOption(VOPT_ANCHOR));
 
 m_xObjGrfLB  ->set_active( 
static_cast(m_xLocalOptions->GetObjMode(VOBJ_TYPE_OLE)) );
@@ -206,6 +217,7 @@ voidScTpContentOptions::Reset( const SfxItemSet* 
rCoreSet )
 m_xAnnotCB->save_state();
 m_xFormulaMarkCB->save_state();
 m_xValueCB->save_state();
+m_xColRowHighCB->save_state();
 m_xAnchorCB->save_state();
 m_xObjGrfLB->save_value();
 m_xDiagramLB->save_value();
diff --git a/sc/uiconfig/scalc/ui/tpviewpage.ui 
b/sc/uiconfig/scalc/ui/tpviewpage.ui
index b96283d18b69..df87f8e27b3a 100644
--- a/sc/uiconfig/scalc/ui/tpviewpage.ui
+++ b/sc/uiconfig/scalc/ui/tpviewpage.ui
@@ -20,7 +20,7 @@
 0
 none
 
-  
+  
   
 True
 False
@@ -127,7 +127,7 @@
   
   
 0
-5
+6
   
 
 
@@ -146,7 

[Libreoffice-commits] core.git: officecfg/registry

2023-11-24 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/PresenterScreen.xcs |5 
-
 1 file changed, 5 deletions(-)

New commits:
commit 14d97973b29c837583bc464b32c8e8b80eaa3642
Author: Gabor Kelemen 
AuthorDate: Thu Nov 16 12:02:14 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Fri Nov 24 16:00:01 2023 +0100

[API CHANGE] Drop unused SelectedFileName config key

does not seem to be in use ever since 2008:
commit 57f7f259df5c81e6d6425d12cdcdbabeeedc74a2

Change-Id: I749039650568b55be3554846914fe23586661562
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159631
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git 
a/officecfg/registry/schema/org/openoffice/Office/PresenterScreen.xcs 
b/officecfg/registry/schema/org/openoffice/Office/PresenterScreen.xcs
index 1dde3f5f35e1..6c744a215dee 100644
--- a/officecfg/registry/schema/org/openoffice/Office/PresenterScreen.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/PresenterScreen.xcs
@@ -57,11 +57,6 @@
   Relative file name to the bitmap for the icon in disabled 
state.
 
   
-  
-
-  Relative file name to the bitmap for the icon in disabled 
state.
-
-  
   
 
   The file name of the mask bitmap. Use red for pixel outside of


[Libreoffice-commits] core.git: officecfg/registry

2023-11-24 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Writer.xcs |   26 -
 1 file changed, 26 deletions(-)

New commits:
commit 88487227f96112f9f0f75111ed58b74a739cb272
Author: Gabor Kelemen 
AuthorDate: Sat Nov 18 01:32:12 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Fri Nov 24 15:59:30 2023 +0100

[API CHANGE] Drop unused Compatibility config group from Writer

These don't seem to be used ever since 2002
commit 72cbd26315bf935a0d6e2c9ffcdbea7d2ada07fb
 #99152# transition to new cfg format

Compatibility configuration keys are in their own Compatibility.xcs

Change-Id: I5da34a82dc4713f97e8d91a9c2a861be13a1a07b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159635
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
index 002707b394a3..61054ae8eca9 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
@@ -3823,32 +3823,6 @@
 
   
 
-
-  
-Contains various compatibility settings.
-  
-  
-
-  Contains settings for MS Word compatibility.
-
-
-  
-  
-Specifies whether spacing between paragraphs and tables are 
added to ensure the compatibility to MS Word documents.
-Add spacing between paragraphs and tables
-  
-  false
-
-
-  
-  
-Specifies whether paragraph and table spacing are added to 
the start of pages to ensure compatibility with MS Word documents.
-Add paragraph and table spacing to start of pages
-  
-  false
-
-  
-
 
   
 Contains settings for 'Auto Text', and 'Auto 
Correct/AutoFormat'.


[Libreoffice-commits] core.git: officecfg/registry

2023-11-24 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Impress.xcs |   30 
 1 file changed, 30 deletions(-)

New commits:
commit 8765bd9f23bfff5736c6fa48b4e7217449ce17ec
Author: Gabor Kelemen 
AuthorDate: Sat Nov 18 00:20:28 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Fri Nov 24 15:59:10 2023 +0100

[API CHANGE] Drop unused Impress config keys

TimeBetweenHighPriorityRequests
TimeBetweenLowPriorityRequests
TimeBetweenRequestsDuringShow

last mention of them was removed in 2017 by:
commit 98c4cd372bf0e9d4b5b129405f5af4562d8a0f64

Change-Id: I3eab5c82a8313f1f88bb0f6c0c759d4f26a23e49
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159634
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
index 88166cc197ef..bf65b1b9e411 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
@@ -1478,36 +1478,6 @@
 
 ResolutionReduction
   
-  
-
-  
-Time in milliseconds to wait between processing
-preview creation requests with high priority.
-  
-  Time Between High Priority Requests
-
-10
-  
-  
-
-  
-Time in milliseconds to wait between processing
-preview creation requests with low priority.
-  
-  Time Between Low Priority Requests
-
-100
-  
-  
-
-  
-Time in milliseconds to wait between processing
-preview creation requests when show is running.
-  
-  Time Between Requests During Show
-
-1000
-  
 
   
 


[Libreoffice-commits] core.git: officecfg/registry

2023-11-24 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Writer.xcs |  217 -
 1 file changed, 217 deletions(-)

New commits:
commit 41b3bd1412a463ada1fd8168d0d7822d4f477029
Author: Gabor Kelemen 
AuthorDate: Tue Nov 21 01:14:08 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Fri Nov 24 15:56:57 2023 +0100

[API CHANGE] Drop unused Writer config groups

AgendaType
AlignmentType
FileType
IntElementType
PositionType
PositionXYType
SizeType
StyleType
TextElementType

last mention of them was removed in 2004 by:
commit ab57c5bf40fc2b84ba3d0fd37c6e71907f8b8619

Change-Id: I506b255c887677465b829a36f94a51cb8ea9b4b2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159806
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
index 19d12f0e7451..002707b394a3 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
@@ -23,223 +23,6 @@
   
   
   
-
-  
-Specifies the settings for a single agenda entry.
-  
-  
-
-  Specifies the name of the person who is responsible for the 
topic.
-  Responsible
-
-  
-  
-
-  Specifies the title for each agenda topic.
-  Agenda topic
-
-  
-  
-
-  Specifies the duration of each topic [UNIT=Minute].
-  Duration
-
-  
-
-
-  
-Determines the default template style.
-  
-  
-
-  Specifies the default template style.
-  Style - Modern/Classic/Decorative
-
-
-  
-
-  Modern
-
-  
-  
-
-  Classic
-
-  
-  
-
-  Decorative
-
-  
-
-  
-
-
-  
-Contains settings for the width and the height of an object or 
element.
-  
-  
-
-  Specifies the width. [UNIT=1/100 mm]
-  
-
-  
-  
-
-  Specifies the height. [UNIT=1/100 mm]
-  
-
-  
-
-
-  
-Contains settings for the position of an object or an 
element.
-  
-  
-
-  Specifies the left distance of the object [UNIT=1/100 
mm]
-
-  
-  
-
-  Specifies the right distance of the object [UNIT=1/100 
mm].
-
-  
-  
-
-  Specifies the top distance of the object [UNIT=1/100 mm]
-
-  
-  
-
-  Specifies the bottom distance of the object [UNIT=1/100 
mm].
-
-  
-
-
-  
-Contains settings for aligning an object or an element.
-  
-  
-
-  Specifies alignment enumeration values.
-
-
-  
-
-  Zero
-
-  
-  
-
-  Top Left
-
-  
-  
-
-  Top Center
-
-  
-  
-
-  Top Right
-
-  
-  
-
-  Bottom Left
-
-  
-  
-
-  Bottom Right
-
-  
-  
-
-  Center
-
-  
-  
-
-  Right Margin
-
-  
-  
-
-  Left Margin
-
-  
-
-  
-
-
-  
-Contains a text information together with a visibility 
information.
-  
-  
-
-  Determines whether the element is visible.
-
-  
-  
-
-  Contains the text content.
-
-  
-
-
-  
-Contains a date or time information together with a visibility 
information.
-  
-  
-
-  Determines whether the element is visible or not.
-
-  
-  
-
-  Contains the date or time value.
-
-  
-
-
-  
-Contains information about a linked file, i.e. an image 
file.
-  
-  
-
-  Contains the file name as URL.
-
-  
-  
-
-  Contains the name of the import filter to load the file.
-
-  
-  
-
-  Determines whether the file is embedded or linked.
-
-  
-
-
-  
-Contains settings for defining a position with x and y 
coordinates.
-  
-  
-
-  Specifies the X-value. [UNIT=1/100 mm]
-  
-
-  
-  
-
-  Specifies the Y-value. [UNIT=1/100 mm]
-   

[Libreoffice-commits] core.git: officecfg/registry

2023-11-24 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Common.xcu   |3 ---
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |8 
 2 files changed, 11 deletions(-)

New commits:
commit 2a14f1c5c1486e436c7851f6909faa4a7afb8f2d
Author: Gabor Kelemen 
AuthorDate: Mon Nov 20 23:01:14 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Fri Nov 24 15:56:09 2023 +0100

[API CHANGE] Drop unused VerticalCallOut config key

last mention of it was removed in 2021 by:
commit d8fec570c21c5e45ba593ee96cc1ba5d45d77fc8

Change-Id: I8951b23d057badc7e1c6eb8472c4e9d7a63a3579
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159804
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/data/org/openoffice/Office/Common.xcu 
b/officecfg/registry/data/org/openoffice/Office/Common.xcu
index 0ab83f6654ba..de1eae2ce767 100644
--- a/officecfg/registry/data/org/openoffice/Office/Common.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Common.xcu
@@ -69,9 +69,6 @@
   
 true
   
-  
-true
-  
   
 true
   
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index cf44d4bb3b1c..bf760476afa3 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -6134,14 +6134,6 @@
   
   false
 
-
-  
-  
-Specifies whether vertical call out objects are available
-(true) or not (false).
-  
-  false
-
   
   
 


[Libreoffice-commits] core.git: officecfg/registry

2023-11-20 Thread Gökay Şatır (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |   14 
+-
 1 file changed, 13 insertions(+), 1 deletion(-)

New commits:
commit 4b81692f8f3236082f9ac989e4e21c8119ff6e64
Author: Gökay Şatır 
AuthorDate: Thu Oct 5 09:20:53 2023 +0300
Commit: Caolán McNamara 
CommitDate: Mon Nov 20 13:06:48 2023 +0100

Writer: Update German language shortcuts

Replacements (if any) are shown with indentation:

* CTRL + SHIFT + C: Copy format.
* CTRL + SPACE: Reset attributes.
   * ALT + SHIFT + F: Focus to find bar.

Signed-off-by: Gökay Şatır 
Change-Id: If1067a3aac7c4f2f246153a7ea6cf251c39cffb3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157578
Tested-by: Jenkins CollaboraOffice 
(cherry picked from commit eeb685b0f12911c696abbf847a22bd3bcc00fc2c)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159688
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index 15aa53f3be58..156dde567262 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -6246,6 +6246,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:SubScript
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:FormatPaintbrush
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -6564,6 +6570,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:UpdateInputFields
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+vnd.sun.star.findbar:FocusToFindbar
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -6888,7 +6900,7 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
-vnd.sun.star.findbar:FocusToFindbar
+.uno:ResetAttributes
   
 
 


[Libreoffice-commits] core.git: officecfg/registry

2023-11-19 Thread Gökay Şatır (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |   65 
--
 1 file changed, 58 insertions(+), 7 deletions(-)

New commits:
commit 3bd3c41bc930406ec3d995a45a7f7060d572bbd0
Author: Gökay Şatır 
AuthorDate: Wed Sep 27 13:01:46 2023 +0300
Commit: Caolán McNamara 
CommitDate: Sun Nov 19 22:28:43 2023 +0100

German keybindings:

Changes (2 indentations for the replacements of currents):

* CTRL + 1 / 2 / 5 for paragraph spacing 1, 2 and 1.5.
* CTRL + + for superscript.
   * CTRL + SHIFT + + for CalculateSel.
* CTRL + D for font dialog.
   * CTRL + SHIFT + D for double underline.
* F12 for save-as.
   * ALT + F12 for default numbering.
* F5 for GoToPage.
   * CTRL + F for navigator.
  * CTRL + SPACE for search.
* Removed CTRL + H for superscript.
   * Defaults to find and replace now.
* CTRL + SHIFT + K for italic.
   * CTRL + K for hyperlink dialog.
* CTRL + SHIFT + L for default bullet.
* CTRL + * for control codes.
   * CTRL + ALT + * for execute macro field.
* CTRL + SHIFT + Q for small caps.
* CTRL + T for subscript.

for general compatibility.

Signed-off-by: Gökay Şatır 
Change-Id: I181e2d7828bc3f53092db4f880ee1715ae262d02
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157308
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
(cherry picked from commit 4137596ca58e927977ffe354f60c296f5771d28b)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159687
Tested-by: Caolán McNamara 
Reviewed-by: Caolán McNamara 

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index a8555409dddb..15aa53f3be58 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -6083,12 +6083,14 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for 
some emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:StyleApply?Style:string=Heading 
1FamilyName:string=ParagraphStyles
+.uno:SpacePara1
   
 
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:StyleApply?Style:string=Heading 
2FamilyName:string=ParagraphStyles
+.uno:SpacePara2
   
 
 
@@ -6107,6 +6109,7 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:StyleApply?Style:string=Heading 
5FamilyName:string=ParagraphStyles
+.uno:SpacePara15
   
 
 
@@ -6151,6 +6154,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:CalculateSel
+.uno:SuperScript
+  
+
+
+  
+.uno:CalculateSel
   
 
 
@@ -6302,12 +6311,14 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for 
some emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:UnderlineDouble
+.uno:FontDialog
   
 
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:ParaRightToLeft
+.uno:UnderlineDouble
   
 
 
@@ -6387,6 +6398,7 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:DefaultNumbering
+.uno:SaveAs
   
 
 
@@ -6401,6 +6413,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:DefaultBullet
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:DefaultNumbering
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -6453,6 +6471,7 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:Navigator
+.uno:GotoPage
   
 
 
@@ -6559,6 +6578,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:RepeatSearch
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:Navigator
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -6592,12 +6617,6 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:StartOfDocumentSel
   
 
-
-  
-I10N SHORTCUTS - NO 
TRANSLATE
-.uno:SuperScript
-  
-
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -6638,12 +6657,14 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under 

[Libreoffice-commits] core.git: officecfg/registry sc/source

2023-11-17 Thread Sahil Gautam (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Calc.xcs |7 +
 sc/source/ui/inc/gridwin.hxx |2 
 sc/source/ui/inc/tabview.hxx |6 +
 sc/source/ui/inc/viewdata.hxx|2 
 sc/source/ui/view/gridwin.cxx|   55 
 sc/source/ui/view/gridwin4.cxx   |4 
 sc/source/ui/view/tabview.cxx|1 
 sc/source/ui/view/tabview2.cxx   |   66 +++
 sc/source/ui/view/tabview3.cxx   |   28 ++
 sc/source/ui/view/viewdata.cxx   |6 +
 10 files changed, 177 insertions(+)

New commits:
commit 487e30bec174342fff07f1f8cc76c9beed4c4843
Author: Sahil Gautam 
AuthorDate: Tue Oct 31 03:57:05 2023 +0530
Commit: Mike Kaganski 
CommitDate: Fri Nov 17 17:35:32 2023 +0100

tdf#33201 Highlight current row and column in spreadsheet

Highlighting functions added

Change-Id: I65335538e394d048731c13ac87535502ea97dfa0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158680
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
index 3de756beac4e..aa58fc81a9a7 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
@@ -121,6 +121,13 @@
   
   false
 
+
+  
+Indicates whether the column/row highlight has been enabled 
or not.
+Column/row highlighting
+  
+  false
+
 
   
   
diff --git a/sc/source/ui/inc/gridwin.hxx b/sc/source/ui/inc/gridwin.hxx
index 8334e5fd0d51..37c38fe069a0 100644
--- a/sc/source/ui/inc/gridwin.hxx
+++ b/sc/source/ui/inc/gridwin.hxx
@@ -103,6 +103,7 @@ class SAL_DLLPUBLIC_RTTI ScGridWindow : public 
vcl::DocWindow, public DropTarget
 
 std::unique_ptr mpOOCursors;
 std::unique_ptr mpOOSelection;
+std::unique_ptr mpOOHighlight;
 std::unique_ptr mpOOSelectionBorder;
 std::unique_ptr mpOOAutoFill;
 std::unique_ptr mpOODragRect;
@@ -476,6 +477,7 @@ public:
 voidUpdateCursorOverlay();
 voidDeleteSelectionOverlay();
 voidUpdateSelectionOverlay();
+voidUpdateHighlightOverlay();
 voidDeleteAutoFillOverlay();
 voidUpdateAutoFillOverlay();
 voidDeleteDragRectOverlay();
diff --git a/sc/source/ui/inc/tabview.hxx b/sc/source/ui/inc/tabview.hxx
index edb9dd991971..8c69933cc1af 100644
--- a/sc/source/ui/inc/tabview.hxx
+++ b/sc/source/ui/inc/tabview.hxx
@@ -179,6 +179,7 @@ private:
 tools::LongnPrevDragPos;
 
 BlockMode   meBlockMode;   // Marks block
+BlockMode   meHighlightBlockMode;  // Highlight row/col
 
 SCCOL   nBlockStartX;
 SCCOL   nBlockStartXOrig;
@@ -263,6 +264,8 @@ private:
 
 DECL_STATIC_LINK(ScTabView, InstallLOKNotifierHdl, void*, 
vcl::ILibreOfficeKitNotifier*);
 
+voidUpdateHighlightOverlay();
+
 protected:
 voidUpdateHeaderWidth( const ScVSplitPos* pWhich = nullptr,
 const SCROW* pPosY = nullptr );
@@ -536,6 +539,8 @@ public:
bool bCols = false, bool bRows = false, 
bool bForceNeg = false );
 voidInitOwnBlockMode( const ScRange& rMarkRange );
 voidDoneBlockMode( bool bContinue = false );
+voidInitBlockModeHighlight( SCCOL nCurX, SCROW nCurY, SCTAB 
nCurZ, bool bCols, bool bRows );
+voidDoneBlockModeHighlight( bool bContinue );
 
 boolIsBlockMode() const;
 
@@ -561,6 +566,7 @@ public:
  * @param nModifier: 0, KEY_SHIFT, KEY_MOD1, KEY_SHIFT | KEY_MOD1
  */
 voidMarkRows(SCROW nRow, sal_Int16 nModifier);
+voidHighlightOverlay(const ScAddress& rCell);
 
 voidMarkDataArea( bool bIncludeCursor = true );
 voidMarkMatrixFormula();
diff --git a/sc/source/ui/inc/viewdata.hxx b/sc/source/ui/inc/viewdata.hxx
index 7a6758788ad4..72386b2efa17 100644
--- a/sc/source/ui/inc/viewdata.hxx
+++ b/sc/source/ui/inc/viewdata.hxx
@@ -274,6 +274,7 @@ private:
 
 ::std::vector> maTabData;
 ScMarkData  maMarkData;
+ScMarkData  maHighlightData;
 ScViewDataTable*pThisTab;   // Data of the displayed 
sheet
 ScDocShell* pDocShell;
 ScDocument& mrDoc;
@@ -361,6 +362,7 @@ public:
 SfxDispatcher&  GetDispatcher();// from ViewShell's ViewFrame
 
 ScMarkData& GetMarkData();
+ScMarkData& GetHighlightData();
 const ScMarkData& GetMarkData() const;
 
 

[Libreoffice-commits] core.git: officecfg/registry sw/inc sw/qa sw/sdi sw/source sw/uiconfig

2023-11-17 Thread Miklos Vajna (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |8 +
 sw/inc/cmdid.h  |1 
 sw/inc/fesh.hxx |2 
 sw/qa/core/frmedt/frmedt.cxx|   41 
++
 sw/sdi/_frmsh.sdi   |7 +
 sw/sdi/swriter.sdi  |   17 
 sw/source/core/frmedt/fefly1.cxx|   40 
+
 sw/source/uibase/docvw/UnfloatTableButton.cxx   |   16 ---
 sw/source/uibase/shells/frmsh.cxx   |6 +
 sw/uiconfig/swriter/popupmenu/frame.xml |1 
 10 files changed, 125 insertions(+), 14 deletions(-)

New commits:
commit 871ca5dd73b34086fad1e57d4697f43a6739a11d
Author: Miklos Vajna 
AuthorDate: Fri Nov 17 08:31:41 2023 +0100
Commit: Miklos Vajna 
CommitDate: Fri Nov 17 10:13:58 2023 +0100

sw floattable, delete UI: add an uno command to unfloat frame from context 
menu

Word has an easy UI to turn floating tables into inline ones. Writer had
a similar button, but that had a few shortcomings:

1) It was only visible if a non-split frame was too large to fit the
   page.

2) It was a separate VCL widget, so invisible to LOK clients.

3) It only worked for frames which had a single table in them.

Researching the problem, it's interesting how deleting a frame always
deletes its content as well, but e.g. deleting a section just removes
the container but leaves the content in the body text.

Fix the problem by adding a new menu item in the context menu that
always allows converting the frame to inline content at the anchor
point. This can share a bit of code with the old unfloat button.

The undo/redo still needs fixing, in a follow-up change.

Change-Id: I8ce05c9f958b08cb599fd5d2a27e770182f28cc7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159550
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index dc4d4dbdb399..247f94688255 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -827,6 +827,14 @@
   1
 
   
+  
+
+  Unfloat Frame Content
+
+
+  1
+
+  
   
 
   Insert Index Entry
diff --git a/sw/inc/cmdid.h b/sw/inc/cmdid.h
index 74ab5cf8c554..165b6aa60a30 100644
--- a/sw/inc/cmdid.h
+++ b/sw/inc/cmdid.h
@@ -242,6 +242,7 @@ class SwUINumRuleItem;
 
 #define FN_INSERT_IDX_ENTRY_DLG (FN_INSERT + 35)/* insert index entry */
 #define FN_INSERT_FRAME_INTERACT_NOCOL (FN_INSERT + 36) /*insert interactive 
non column frame*/
+#define FN_UNFLOAT_FRAME TypedWhichId(FN_INSERT + 37) /* 
Unfloat Frame */
 
 #define FN_TOOL_ANCHOR_PAGE (FN_INSERT + 50)/* anchor Draw object to 
page */
 #define FN_TOOL_ANCHOR_PARAGRAPH (FN_INSERT + 51)   /* anchor Draw object to 
paragraph */
diff --git a/sw/inc/fesh.hxx b/sw/inc/fesh.hxx
index ce1cdc79f3fd..a0a3a64176d7 100644
--- a/sw/inc/fesh.hxx
+++ b/sw/inc/fesh.hxx
@@ -268,6 +268,8 @@ public:
 
 void SelectFlyFrame( SwFlyFrame& rFrame );
 
+void UnfloatFlyFrame();
+
 /// Is selected frame within another frame?
 const SwFrameFormat* IsFlyInFly();
 
diff --git a/sw/qa/core/frmedt/frmedt.cxx b/sw/qa/core/frmedt/frmedt.cxx
index f5a12e9392f1..55c6c7b9d01f 100644
--- a/sw/qa/core/frmedt/frmedt.cxx
+++ b/sw/qa/core/frmedt/frmedt.cxx
@@ -26,6 +26,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 
 /// Covers sw/source/core/frmedt/ fixes.
 class SwCoreFrmedtTest : public SwModelTestBase
@@ -196,6 +198,45 @@ CPPUNIT_TEST_FIXTURE(SwCoreFrmedtTest, 
testSplitFlyInsertCaption)
 CPPUNIT_ASSERT(!pFly->GetAttrSet().GetFlySplit().GetValue());
 }
 
+CPPUNIT_TEST_FIXTURE(SwCoreFrmedtTest, testSplitFlyUnfloat)
+{
+// Given a document with a floating table:
+createSwDoc();
+SwDoc* pDoc = getSwDocShell()->GetDoc();
+sw::FrameFormats& rFlyFormats = 
*pDoc->GetSpzFrameFormats();
+CPPUNIT_ASSERT(rFlyFormats.empty());
+// Insert a table:
+SwWrtShell* pWrtShell = getSwDocShell()->GetWrtShell();
+SwInsertTableOptions aTableOptions(SwInsertTableFlags::DefaultBorder, 0);
+pWrtShell->InsertTable(aTableOptions, /*nRows=*/2, /*nCols=*/1);
+pWrtShell->MoveTable(GotoPrevTable, fnTableStart);
+pWrtShell->GoPrevCell();
+pWrtShell->Insert("A1");
+pWrtShell->GoNextCell();
+pWrtShell->Insert("A2");
+// Select cell:
+pWrtShell->SelAll();
+// Select table:
+pWrtShell->SelAll();
+// Wrap the table in a 

[Libreoffice-commits] core.git: officecfg/registry unotools/source

2023-11-15 Thread Samuel Mehrbrodt (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Histories.xcs |6 --
 unotools/source/config/historyoptions.cxx |3 ---
 2 files changed, 9 deletions(-)

New commits:
commit c0fffdc36df687fe8e4eff49e5a00d3a3c1eb370
Author: Samuel Mehrbrodt 
AuthorDate: Mon Oct 2 12:35:21 2023 +0200
Commit: Samuel Mehrbrodt 
CommitDate: Thu Nov 16 08:17:27 2023 +0100

[API CHANGE] Remove deprecated Password config item

Deprecated since c51ef466f736c9e0e192d2c7feeda0a39bca2011

Change-Id: I9509a17de09e618c5d4b914b7ac1202cb76f506e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157485
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Histories.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Histories.xcs
index e01534fb9aea..e01d4a159c64 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Histories.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Histories.xcs
@@ -36,12 +36,6 @@
   Indicates the title of the URL that is displayed on the 
user-interface.
 
   
-  
-
-  Not used anymore
-  Contains an encoded password used to open the document.
-
-  
   
 
   Contains a base64 encoded thumbnail of the document.
diff --git a/unotools/source/config/historyoptions.cxx 
b/unotools/source/config/historyoptions.cxx
index 52d2292c7932..3d8d8f933bd7 100644
--- a/unotools/source/config/historyoptions.cxx
+++ b/unotools/source/config/historyoptions.cxx
@@ -40,7 +40,6 @@ namespace {
 constexpr OUString s_sHistoryItemRef = u"HistoryItemRef"_ustr;
 constexpr OUString s_sFilter = u"Filter"_ustr;
 constexpr OUString s_sTitle = u"Title"_ustr;
-constexpr OUString s_sPassword = u"Password"_ustr;
 constexpr OUString s_sThumbnail = u"Thumbnail"_ustr;
 constexpr OUString s_sReadOnly = u"ReadOnly"_ustr;
 constexpr OUString s_sPinned = u"Pinned"_ustr;
@@ -153,7 +152,6 @@ std::vector< HistoryItem > GetList( EHistoryType eHistory )
 aItem.sURL = sUrl;
 xSet->getPropertyValue(s_sFilter) >>= aItem.sFilter;
 xSet->getPropertyValue(s_sTitle) >>= aItem.sTitle;
-xSet->getPropertyValue(s_sPassword) >>= aItem.sPassword;
 xSet->getPropertyValue(s_sThumbnail) >>= aItem.sThumbnail;
 xSet->getPropertyValue(s_sReadOnly) >>= aItem.isReadOnly;
 if (xSet->getPropertySetInfo()->hasPropertyByName(s_sPinned))
@@ -285,7 +283,6 @@ void AppendItem(EHistoryType eHistory, const OUString& 
sURL, const OUString& sFi
 xSet.set(xInst, uno::UNO_QUERY);
 xSet->setPropertyValue(s_sFilter, uno::Any(sFilter));
 xSet->setPropertyValue(s_sTitle, uno::Any(sTitle));
-xSet->setPropertyValue(s_sPassword, uno::Any(OUString()));
 xSet->setPropertyValue(s_sThumbnail, 
uno::Any(sThumbnail.value_or(OUString(;
 if (oIsReadOnly)
 {


[Libreoffice-commits] core.git: officecfg/registry sd/source

2023-11-15 Thread Jim Raykowski (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu |
4 ++--
 sd/source/ui/dlg/LayerTabBar.cxx |
2 +-
 sd/source/ui/view/drviews7.cxx   |
2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 7f79b0caf194ff9d7dfa2f85379a5c752c905476
Author: Jim Raykowski 
AuthorDate: Tue Nov 14 13:55:27 2023 -0900
Commit: Jim Raykowski 
CommitDate: Thu Nov 16 04:48:08 2023 +0100

tdf#158179 Fix layer tab menu layer visibility check menu item

Renames/reworks the layer tab context menu visibility check menu item
from 'Show Layer' to 'Hide layer' and fixes a bug that causes the
check menu item to be set as the layer visibility setting of the
previously selected layer tab.

Change-Id: I81f1910f95df50255e61115b5d8de8ed3ef8bd89
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159427
Tested-by: Jenkins
Tested-by: Heiko Tietze 
Reviewed-by: Heiko Tietze 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
index 311c5d3dff2e..de8d13e78222 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
@@ -999,10 +999,10 @@
   Toggle Layer Visibility
 
 
-  ~Show Layer
+  ~Hide Layer
 
 
-  ~Show Layer (Shift+Click)
+  ~Hide Layer (Shift+Click)
 
 
   1
diff --git a/sd/source/ui/dlg/LayerTabBar.cxx b/sd/source/ui/dlg/LayerTabBar.cxx
index 7e09228e6ed4..96b96068f331 100644
--- a/sd/source/ui/dlg/LayerTabBar.cxx
+++ b/sd/source/ui/dlg/LayerTabBar.cxx
@@ -134,7 +134,7 @@ bool 
LayerTabBar::IsRealNameOfStandardLayer(std::u16string_view rName)
 void LayerTabBar::Select()
 {
 SfxDispatcher* pDispatcher = pDrViewSh->GetViewFrame()->GetDispatcher();
-pDispatcher->Execute(SID_SWITCHLAYER, SfxCallMode::ASYNCHRON);
+pDispatcher->Execute(SID_SWITCHLAYER, SfxCallMode::SYNCHRON);
 }
 
 void LayerTabBar::MouseButtonDown(const MouseEvent& rMEvt)
diff --git a/sd/source/ui/view/drviews7.cxx b/sd/source/ui/view/drviews7.cxx
index 223493fb29e0..d8dbbac0362d 100644
--- a/sd/source/ui/view/drviews7.cxx
+++ b/sd/source/ui/view/drviews7.cxx
@@ -1278,7 +1278,7 @@ void DrawViewShell::GetMenuState( SfxItemSet  )
 }
 
 if ( !aActiveLayer.isEmpty() && pPV )
-rSet.Put( SfxBoolItem(SID_TOGGLELAYERVISIBILITY, 
pPageView->IsLayerVisible(aActiveLayer)) );
+rSet.Put( SfxBoolItem(SID_TOGGLELAYERVISIBILITY, 
!pPageView->IsLayerVisible(aActiveLayer)) );
 
 // are the modules available?
 


[Libreoffice-commits] core.git: officecfg/registry

2023-11-13 Thread Samuel Mehrbrodt (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Paths.xcu |6 --
 1 file changed, 6 deletions(-)

New commits:
commit 3cee7edeb31ac64e078159c7a63ebf4f54793da7
Author: Samuel Mehrbrodt 
AuthorDate: Mon Oct 2 12:38:24 2023 +0200
Commit: Samuel Mehrbrodt 
CommitDate: Mon Nov 13 15:59:35 2023 +0100

[API CHANGE] Remove deprecated Storage config item

Change-Id: I737882a9b6738c39fe71dd4a46ff5dab23231d3a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157486
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git a/officecfg/registry/data/org/openoffice/Office/Paths.xcu 
b/officecfg/registry/data/org/openoffice/Office/Paths.xcu
index 6161b4908261..a0aae4547ba8 100644
--- a/officecfg/registry/data/org/openoffice/Office/Paths.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Paths.xcu
@@ -153,12 +153,6 @@
 
   
 
-
-
-  
-$(userpath)/store
-  
-
 
   
 true


[Libreoffice-commits] core.git: officecfg/registry unotools/source

2023-11-13 Thread Samuel Mehrbrodt (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Linguistic.xcs |9 
 unotools/source/config/lingucfg.cxx|  115 
--
 2 files changed, 53 insertions(+), 71 deletions(-)

New commits:
commit 9bb9ba6ae02692e65498bae4598e3b63bb65c02e
Author: Samuel Mehrbrodt 
AuthorDate: Mon Oct 2 12:33:34 2023 +0200
Commit: Samuel Mehrbrodt 
CommitDate: Mon Nov 13 13:46:12 2023 +0100

[API CHANGE] Remove deprecated IsSpellCapitalization

Deprecated since d567671196fcc

Change-Id: I89203ee2e05591ad85ac893b3e488d1431d6775f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157484
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Linguistic.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Linguistic.xcs
index 0b748196fb3c..501a2369dc1c 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Linguistic.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Linguistic.xcs
@@ -311,15 +311,6 @@
 
 false
   
-  
-
-
-  
-  Checks the correct use of capitalization.
-  Check capitalization
-
-true
-  
   
 
 
diff --git a/unotools/source/config/lingucfg.cxx 
b/unotools/source/config/lingucfg.cxx
index 1a4172c7844a..730cab027f4b 100644
--- a/unotools/source/config/lingucfg.cxx
+++ b/unotools/source/config/lingucfg.cxx
@@ -116,12 +116,10 @@ SvtLinguOptions::SvtLinguOptions()
 , bROIsIgnoreControlCharacters(false)
 , bIsSpellWithDigits(false)
 , bIsSpellUpperCase(false)
-, bIsSpellCapitalization(true)
 , bIsSpellClosedCompound(true)
 , bIsSpellHyphenatedCompound(true)
 , bROIsSpellWithDigits(false)
 , bROIsSpellUpperCase(false)
-, bROIsSpellCapitalization(false)
 , bROIsSpellClosedCompound(false)
 , bROIsSpellHyphenatedCompound(false)
 , bIsIgnorePostPositionalWord(true)
@@ -239,33 +237,32 @@ NamesToHdl const aNamesToHdl[] =
 
 {/*  7 */"SpellChecking/IsSpellUpperCase",
UPN_IS_SPELL_UPPER_CASE,   UPH_IS_SPELL_UPPER_CASE},
 {/*  8 */"SpellChecking/IsSpellWithDigits",   
UPN_IS_SPELL_WITH_DIGITS,  UPH_IS_SPELL_WITH_DIGITS},
-{/*  9 */"SpellChecking/IsSpellCapitalization",   
UPN_IS_SPELL_CAPITALIZATION,   UPH_IS_SPELL_CAPITALIZATION},
-{/* 10 */"SpellChecking/IsSpellAuto", 
UPN_IS_SPELL_AUTO, UPH_IS_SPELL_AUTO},
-{/* 11 */"SpellChecking/IsSpellSpecial",  
UPN_IS_SPELL_SPECIAL,  UPH_IS_SPELL_SPECIAL},
-{/* 12 */"SpellChecking/IsSpellClosedCompound",   
UPN_IS_SPELL_CLOSED_COMPOUND,  UPH_IS_SPELL_CLOSED_COMPOUND},
-{/* 13 */"SpellChecking/IsSpellHyphenatedCompound",   
UPN_IS_SPELL_HYPHENATED_COMPOUND,  UPH_IS_SPELL_HYPHENATED_COMPOUND},
-{/* 14 */"SpellChecking/IsReverseDirection",  
UPN_IS_WRAP_REVERSE,   UPH_IS_WRAP_REVERSE},
-
-{/* 15 */"Hyphenation/MinLeading",
UPN_HYPH_MIN_LEADING,  UPH_HYPH_MIN_LEADING},
-{/* 16 */"Hyphenation/MinTrailing",   
UPN_HYPH_MIN_TRAILING, UPH_HYPH_MIN_TRAILING},
-{/* 17 */"Hyphenation/MinWordLength", 
UPN_HYPH_MIN_WORD_LENGTH,  UPH_HYPH_MIN_WORD_LENGTH},
-{/* 18 */"Hyphenation/IsHyphSpecial", 
UPN_IS_HYPH_SPECIAL,   UPH_IS_HYPH_SPECIAL},
-{/* 19 */"Hyphenation/IsHyphAuto",
UPN_IS_HYPH_AUTO,  UPH_IS_HYPH_AUTO},
-
-{/* 20 */"TextConversion/ActiveConversionDictionaries",   
UPN_ACTIVE_CONVERSION_DICTIONARIES,UPH_ACTIVE_CONVERSION_DICTIONARIES},
-{/* 21 */"TextConversion/IsIgnorePostPositionalWord", 
UPN_IS_IGNORE_POST_POSITIONAL_WORD,UPH_IS_IGNORE_POST_POSITIONAL_WORD},
-{/* 22 */"TextConversion/IsAutoCloseDialog",  
UPN_IS_AUTO_CLOSE_DIALOG,  UPH_IS_AUTO_CLOSE_DIALOG},
-{/* 23 */"TextConversion/IsShowEntriesRecentlyUsedFirst", 
UPN_IS_SHOW_ENTRIES_RECENTLY_USED_FIRST,   
UPH_IS_SHOW_ENTRIES_RECENTLY_USED_FIRST},
-{/* 24 */"TextConversion/IsAutoReplaceUniqueEntries", 
UPN_IS_AUTO_REPLACE_UNIQUE_ENTRIES,UPH_IS_AUTO_REPLACE_UNIQUE_ENTRIES},
-{/* 25 */"TextConversion/IsDirectionToSimplified",
UPN_IS_DIRECTION_TO_SIMPLIFIED,UPH_IS_DIRECTION_TO_SIMPLIFIED},
-{/* 26 */"TextConversion/IsUseCharacterVariants", 
UPN_IS_USE_CHARACTER_VARIANTS, UPH_IS_USE_CHARACTER_VARIANTS},
-{/* 27 */"TextConversion/IsTranslateCommonTerms", 
UPN_IS_TRANSLATE_COMMON_TERMS, UPH_IS_TRANSLATE_COMMON_TERMS},
-{/* 28 */"TextConversion/IsReverseMapping",   
UPN_IS_REVERSE_MAPPING,UPH_IS_REVERSE_MAPPING},
-
-{/* 29 */

[Libreoffice-commits] core.git: officecfg/registry sfx2/source

2023-11-13 Thread Heiko Tietze (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   14 -
 sfx2/source/control/recentdocsview.cxx |9 ++--
 sfx2/source/control/templatedefaultview.cxx|9 ++--
 3 files changed, 14 insertions(+), 18 deletions(-)

New commits:
commit 285a3e8d8b77b44da3dcc767877f878fe0e0493e
Author: Heiko Tietze 
AuthorDate: Fri Nov 10 10:12:39 2023 +0100
Commit: Heiko Tietze 
CommitDate: Mon Nov 13 10:40:30 2023 +0100

Resolves tdf#158084 - Use system colors in start center

StartCenterThumbnailsHighlightColor and 
StartCenterThumbnailsHighlightTextColor
removed in favor of StyleSettings.GetHighlightColor and .GetActiveColor

Change-Id: I7005b17f6c48525c791f23ea99b7b68e7a67531b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159286
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 76aa4e6c02d9..c551044a350d 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -3400,20 +3400,6 @@
   
   15658734
 
-
-  
-  
-Specifies the background color of the highlight of a 
thumbnail in the start center.
-  
-  14540253
-
-
-  
-  
-Specifies the text color of the highlight of a thumbnail in 
the start center.
-  
-  3355443
-
   
 
 
diff --git a/sfx2/source/control/recentdocsview.cxx 
b/sfx2/source/control/recentdocsview.cxx
index cc2e80de17e9..055dc6962423 100644
--- a/sfx2/source/control/recentdocsview.cxx
+++ b/sfx2/source/control/recentdocsview.cxx
@@ -76,8 +76,13 @@ 
RecentDocsView::RecentDocsView(std::unique_ptr xWindow, st
 
 maFillColor = Color(ColorTransparency, 
officecfg::Office::Common::Help::StartCenter::StartCenterThumbnailsBackgroundColor::get());
 maTextColor = Color(ColorTransparency, 
officecfg::Office::Common::Help::StartCenter::StartCenterThumbnailsTextColor::get());
-maHighlightColor = Color(ColorTransparency, 
officecfg::Office::Common::Help::StartCenter::StartCenterThumbnailsHighlightColor::get());
-maHighlightTextColor = Color(ColorTransparency, 
officecfg::Office::Common::Help::StartCenter::StartCenterThumbnailsHighlightTextColor::get());
+
+const StyleSettings& rSettings = 
Application::GetSettings().GetStyleSettings();
+maHighlightColor = rSettings.GetHighlightColor();
+maHighlightTextColor = rSettings.GetHighlightTextColor();
+maSelectHighlightColor = rSettings.GetActiveColor();
+maSelectHighlightTextColor = rSettings.GetActiveTextColor();
+
 mfHighlightTransparence = 0.25;
 
 UpdateColors();
diff --git a/sfx2/source/control/templatedefaultview.cxx 
b/sfx2/source/control/templatedefaultview.cxx
index 17ad2ba7cbda..34d40875d23c 100644
--- a/sfx2/source/control/templatedefaultview.cxx
+++ b/sfx2/source/control/templatedefaultview.cxx
@@ -33,8 +33,13 @@ 
TemplateDefaultView::TemplateDefaultView(std::unique_ptr x
 // startcenter specific settings
 maFillColor = Color(ColorTransparency, 
officecfg::Office::Common::Help::StartCenter::StartCenterThumbnailsBackgroundColor::get());
 maTextColor = Color(ColorTransparency, 
officecfg::Office::Common::Help::StartCenter::StartCenterThumbnailsTextColor::get());
-maHighlightColor = Color(ColorTransparency, 
officecfg::Office::Common::Help::StartCenter::StartCenterThumbnailsHighlightColor::get());
-maHighlightTextColor = Color(ColorTransparency, 
officecfg::Office::Common::Help::StartCenter::StartCenterThumbnailsHighlightTextColor::get());
+
+const StyleSettings& rSettings = 
Application::GetSettings().GetStyleSettings();
+maHighlightColor = rSettings.GetHighlightColor();
+maHighlightTextColor = rSettings.GetHighlightTextColor();
+maSelectHighlightColor = rSettings.GetActiveColor();
+maSelectHighlightTextColor = rSettings.GetActiveTextColor();
+
 mfHighlightTransparence = 0.25;
 
 UpdateColors();


[Libreoffice-commits] core.git: officecfg/registry

2023-11-11 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs |   31 
--
 1 file changed, 31 deletions(-)

New commits:
commit e0f5719095e43e5c185d334b3ac3754e3aa4e276
Author: Gabor Kelemen 
AuthorDate: Thu Nov 9 14:47:43 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Sat Nov 11 21:46:49 2023 +0100

[API CHANGE] Drop unused UserDefinedDriverSettings set

last mention of it was removed in 2009 by:
commit b88a62cc97613e5dc00c806f59982cb57f9d1dc8

Change-Id: I9ab52b5377444f26e74c0cc76a78ec4c3c23
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159298
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs 
b/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs
index 7222ce87e89a..db6dc122984f 100644
--- a/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs
@@ -123,32 +123,6 @@
 
   
 
-
-  
-Specifies the user defined database drivers which should appear 
in the data source administration dialog.
-  
-  
-
-  Specifies the display name of the database driver page.
-
-  
-  
-
-  Specifies the display name of the database driver.
-
-  
-  
-
-  Specifies the prefix of the URL of the database driver.
-
-  
-  
-
-  The file extension, which match to this type. Only set when it 
is file based driver
-
-
-  
-
   
   
 
@@ -253,11 +227,6 @@
 Specifies the database documents registered within 
OpenOffice.org, for quick access by a programmatic name.
   
 
-
-  
-Contains a list of descriptions for user defined drivers.
-  
-
 
   
 Specifies the data source that can be used as an 
AddressBook.


[Libreoffice-commits] core.git: officecfg/registry

2023-11-11 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/data/org/openoffice/Office/DataAccess.xcu   |   11 
 officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs |   13 
--
 2 files changed, 24 deletions(-)

New commits:
commit c19e39cc0bfe32944bd807d5642a1a9d0537d636
Author: Gabor Kelemen 
AuthorDate: Sat Nov 4 01:21:56 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Sat Nov 11 18:32:37 2023 +0100

[API CHANGE] Drop unused kab.Driver config group

last mention of it was removed in 2015 by:
commit 72699595aaa3ecb8975050b6dfc6fde437770493

Change-Id: Iffdce3dfbabb20e92a61a0de83dfb4046ebb7ae6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158977
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/data/org/openoffice/Office/DataAccess.xcu 
b/officecfg/registry/data/org/openoffice/Office/DataAccess.xcu
index b9d6cbad3e72..41a64f0f0e43 100644
--- a/officecfg/registry/data/org/openoffice/Office/DataAccess.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/DataAccess.xcu
@@ -46,17 +46,6 @@
   60
 
   
-  
-
-  com.sun.star.comp.sdbc.kab.Driver
-
-
-  false
-
-
-  60
-
-  
   
 
   com.sun.star.comp.sdbc.ado.ODriver
diff --git a/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs 
b/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs
index 257178bd3df7..7222ce87e89a 100644
--- a/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs
@@ -529,19 +529,6 @@
   
 
   
-  
-
-  Specifies the driver settings for the mozilla database 
driver.
-
-
-  
-At runtime, the driver checks if the installed KDE version 
is too new to be supported.
-  In this case, it refuses creating connections. With the setting 
here, this check can
-  be disabled (which might do anything from simply work to 
crash).
-  
-  false
-
-  
   
 
   Specifies settings for the driver accessing HSQL databases 
embedded into OpenOffice.org


[Libreoffice-commits] core.git: officecfg/registry

2023-11-11 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/data/org/openoffice/Office/DataAccess.xcu   |  134 --
 officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs |  219 
--
 2 files changed, 353 deletions(-)

New commits:
commit b8d04d32c1727189b54b0d7520668d578e9383dc
Author: Gabor Kelemen 
AuthorDate: Sat Nov 4 00:25:18 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Sat Nov 11 18:32:21 2023 +0100

[API CHANGE] Drop unused MozabDriver config group

last mentions of it were removed in 2021 by:
commit ee9ed2192b56c98e5b8ee9890ddb4c533117332a
and in 2015 by:
commit 4e3086da3e9873f53b5b9e1d5e511f9f77aaf62f

Change-Id: Ic8c048f296c2c199fb43836a63a0c084196794cc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158975
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/data/org/openoffice/Office/DataAccess.xcu 
b/officecfg/registry/data/org/openoffice/Office/DataAccess.xcu
index 22aabb743d21..b9d6cbad3e72 100644
--- a/officecfg/registry/data/org/openoffice/Office/DataAccess.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/DataAccess.xcu
@@ -112,17 +112,6 @@
   60
 
   
-  
-
-  com.sun.star.comp.sdbc.MozabDriver
-
-
-  false
-
-
-  60
-
-  
   
 
   org.openoffice.comp.drivers.MySQL.Driver
@@ -450,129 +439,6 @@
 
   
   
-
-  
-
-  Personal Address book
-
-
-  Collected Addresses
-
-  
-  
-
-  First Name
-
-
-  Last Name
-
-
-  Display Name
-
-
-  Nickname
-
-
-  E-mail
-
-
-  E-mail (2)
-
-
-  Mail Format
-
-
-  Phone (Work)
-
-
-  Phone (Home)
-
-
-  Fax
-
-
-  Pager
-
-
-  Mobile
-
-
-  Address 1
-
-
-  Address 2
-
-
-  City
-
-
-  State
-
-
-  ZIP/Postal (Home)
-
-
-  Country
-
-
-  Work Address
-
-
-  Work Address 2
-
-
-  City (Work)
-
-
-  State (Work)
-
-
-  Zip/Postal (Work)
-
-
-  Country (Work)
-
-
-  Job Title
-
-
-  Department
-
-
-  Company
-
-
-  Web Page (Work)
-
-
-  Web Page (Home)
-
-
-  Birth Year
-
-
-  Birth Month
-
-
-  Birth Day
-
-
-  Custom 1
-
-
-  Custom 2
-
-
-  Custom 3
-
-
-  Custom 4
-
-
-  Comments
-
-  
-
 
   
 
diff --git a/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs 
b/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs
index dca06b247faa..257178bd3df7 100644
--- a/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/DataAccess.xcs
@@ -342,225 +342,6 @@
   
 Specifies the driver settings that are used.
   
-  
-
-  Specifies the driver settings for the mozilla database 
driver.
-
-
-  
-Specifies the mozilla preferences.
-  
-  
-
-  Specifies the mozilla profile name.
-
-
-
-  
-  
-
-  Describes the name of the table which the Mozilla Personal 
Address Book is mapped to
-
-
-  
-  
-
-  Describes the name of the table which the Mozilla 
Collected Addresses is mapped to
-
-
-  
-
-
-  
-Specifies the column alias names used.
-  
-  
-
-  Specifies the first name.
-
-  
-  
-
-  Specifies the last name.
-
-  
-  
-
-  Specifies the display name.
-
-  
-  
-
-  Specifies the nickname.
-
-  
-  
-
-  Specifies the primary email.
-
-  
-  
-
-  Specifies the first name.
-
-  
-  
-
-  Specifies the preferred mail format.
-
-  
-  
-   

[Libreoffice-commits] core.git: officecfg/registry

2023-11-11 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Setup.xcs |6 --
 1 file changed, 6 deletions(-)

New commits:
commit dca1eeb19d837b3355410ef37d681d2df836e144
Author: Gabor Kelemen 
AuthorDate: Fri Nov 3 12:40:51 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Sat Nov 11 18:32:00 2023 +0100

[API CHANGE] Drop unused IncludedExtensions config key

last mention of it was removed in 2018 by:
commit e98bcfcc3cdad46620e3d59119b0ac262db88054

Change-Id: Ia36b86efcd47132dabc7206fd53a8661e013ac09
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158970
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Setup.xcs 
b/officecfg/registry/schema/org/openoffice/Setup.xcs
index 3e528222b235..a3aac9276ecd 100644
--- a/officecfg/registry/schema/org/openoffice/Setup.xcs
+++ b/officecfg/registry/schema/org/openoffice/Setup.xcs
@@ -72,12 +72,6 @@
   the old user layer to the new user layer
 
   
-  
-
-  a list of extension identifiers that are to be copied from the
-  old user layer to the new user layer
-
-  
   
 
   a list of extension identifiers that are not to be copied from


[Libreoffice-commits] core.git: officecfg/registry

2023-11-11 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Calc.xcs  |   16 --
 officecfg/registry/schema/org/openoffice/Office/Writer.xcs|   16 --
 officecfg/registry/schema/org/openoffice/Office/WriterWeb.xcs |   16 --
 3 files changed, 48 deletions(-)

New commits:
commit 96d4bc4bb07d9ffa903f9c37b50e7c98a7491690
Author: Gabor Kelemen 
AuthorDate: Fri Nov 3 18:42:05 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Sat Nov 11 18:31:09 2023 +0100

[API CHANGE] Drop unused SimpleControlPoint LargeControlPoint config keys

last mentions of them were removed in 2011-2012 by:
commit bbd638350fb83af2cadd85cdac2900de80bf7401
commit 6ea8ea456cf5df267284278ecda42aa9b089a682
commit ec4f69493b50c15861b0cdcc290ecedd00efb51d

Change-Id: Iba3820806a761c12dead77ce6207c62f60f7055c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158974
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
index 545808a05232..3de756beac4e 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
@@ -285,22 +285,6 @@
   
   false
 
-
-  
-  
-Specifies whether control points are displayed simple or 
enhanced.
-Simple control points
-  
-  false
-
-
-  
-  
-Specifies whether control points are displayed as larger 
than the default size.
-Large control points
-  
-  true
-
   
   
 
diff --git a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
index c9da17b65c9e..19d12f0e7451 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
@@ -1274,22 +1274,6 @@
   
   false
 
-
-  
-  
-Specifies whether control points are displayed simple or 
enhanced.
-Simple control points
-  
-  true
-
-
-  
-  
-Specifies whether control points are displayed as larger 
than the default size.
-Large control points
-  
-  true
-
   
   
 
diff --git a/officecfg/registry/schema/org/openoffice/Office/WriterWeb.xcs 
b/officecfg/registry/schema/org/openoffice/Office/WriterWeb.xcs
index 8d633caae4f0..a52ce160f38b 100644
--- a/officecfg/registry/schema/org/openoffice/Office/WriterWeb.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/WriterWeb.xcs
@@ -163,22 +163,6 @@
   
   false
 
-
-  
-  
-Specifies whether control points are displayed simple or 
enhanced.
-Simple control points
-  
-  true
-
-
-  
-  
-Specifies whether control points are displayed as larger 
than the default size.
-Large control points
-  
-  true
-
   
   
 


[Libreoffice-commits] core.git: officecfg/registry

2023-11-11 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/TypeDetection/Misc.xcs |6 --
 1 file changed, 6 deletions(-)

New commits:
commit 1ec76f7a38124b28521fd5959419cf189e65d9f1
Author: Gabor Kelemen 
AuthorDate: Mon Nov 6 12:07:24 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Sat Nov 11 18:28:46 2023 +0100

[API CHANGE] Drop unused ShowAlienFilterWarning config key

last mention of it was removed in 2011 by:
commit ebb3da4a2b47d719bce673ece53cd8ab09b361d0

Change-Id: I07a5e60f59781b9720543d436efede7b257cc872
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159296
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/TypeDetection/Misc.xcs 
b/officecfg/registry/schema/org/openoffice/TypeDetection/Misc.xcs
index e9ae32f204cf..128d9bb1495f 100644
--- a/officecfg/registry/schema/org/openoffice/TypeDetection/Misc.xcs
+++ b/officecfg/registry/schema/org/openoffice/TypeDetection/Misc.xcs
@@ -66,12 +66,6 @@
 
 com.sun.star.comp.office.FrameLoader
   
-  
-
-  Displays a warning when a user tries to set a third-party 
filter as the default filter in "Tools - Options".
-
-true
-  
 
   
 


[Libreoffice-commits] core.git: officecfg/registry sfx2/source

2023-11-03 Thread Venetia Furtado (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Common.xcu   |3 +
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |5 +++
 sfx2/source/dialog/backingwindow.cxx   |   21 -
 3 files changed, 16 insertions(+), 13 deletions(-)

New commits:
commit 4af07053517ba3526d4050ffc29993a65b54352b
Author: Venetia Furtado 
AuthorDate: Thu Aug 10 15:08:50 2023 -0600
Commit: Ilmari Lauhakangas 
CommitDate: Fri Nov 3 11:49:42 2023 +0100

tdf#140314:Use hub.libreoffice.org URL with params in Extensions

Change-Id: Iccf76581de8dc44fe80aa818e9fb81c2cdf0967b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155571
Tested-by: Jenkins
Tested-by: Ilmari Lauhakangas 
Reviewed-by: Ilmari Lauhakangas 

diff --git a/officecfg/registry/data/org/openoffice/Office/Common.xcu 
b/officecfg/registry/data/org/openoffice/Office/Common.xcu
index 23fa2f977764..ebfc18b4e005 100644
--- a/officecfg/registry/data/org/openoffice/Office/Common.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Common.xcu
@@ -372,6 +372,9 @@
 
   ${PRIVACY_POLICY_URL}
 
+
+  https://hub.libreoffice.org/extensions/
+
   
   
 
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index afa217c3bbd5..fcb8392436a9 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -1880,6 +1880,11 @@
   Specifies the URL for a privacy policy.
 
   
+  
+
+  Specifies the URL used for Extensions box.
+
+  
 
 
   
diff --git a/sfx2/source/dialog/backingwindow.cxx 
b/sfx2/source/dialog/backingwindow.cxx
index 553577a846df..846fa2ffb70e 100644
--- a/sfx2/source/dialog/backingwindow.cxx
+++ b/sfx2/source/dialog/backingwindow.cxx
@@ -28,6 +28,7 @@
 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -39,6 +40,7 @@
 #include 
 #include 
 
+#include 
 #include 
 
 #include 
@@ -519,15 +521,10 @@ void BackingWindow::setOwningFrame( const 
css::uno::Reference< css::frame::XFram
 xFramesSupplier->setActiveFrame(mxFrame);
 }
 
-IMPL_LINK(BackingWindow, ExtLinkClickHdl, weld::Button&, rButton, void)
+IMPL_LINK(BackingWindow, ExtLinkClickHdl, weld::Button&, rButton,void)
 {
-OUString aNode;
-
-if ( == mxExtensionsButton.get())
-aNode = "AddFeatureURL";
-
-if (aNode.isEmpty())
-return;
+if ( != mxExtensionsButton.get())
+   return;
 
 try
 {
@@ -540,11 +537,9 @@ IMPL_LINK(BackingWindow, ExtLinkClickHdl, weld::Button&, 
rButton, void)
 Reference 
xNameAccess(xConfig->createInstanceWithArguments(SERVICENAME_CFGREADACCESS, 
args), UNO_QUERY);
 if (xNameAccess.is())
 {
-OUString sURL;
-Any value(xNameAccess->getByName(aNode));
-
-sURL = value.get();
-localizeWebserviceURI(sURL);
+OUString 
sURL(officecfg::Office::Common::Menus::ExtensionsURL::get() +
+"?LOvers=" + utl::ConfigManager::getProductVersion() +
+"=" + 
LanguageTag(utl::ConfigManager::getUILocale()).getBcp47() );
 
 Reference const
 xSystemShellExecute(


[Libreoffice-commits] core.git: officecfg/registry

2023-11-01 Thread Gökay Şatır (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit c0c8cffd3541e3cd616c96791b04e7ebf2b2ed03
Author: Gökay Şatır 
AuthorDate: Thu Oct 5 11:04:46 2023 +0300
Commit: Caolán McNamara 
CommitDate: Wed Nov 1 22:23:21 2023 +0100

Writer: German language shortcuts.

* CTRL + M for incrementing the tab indent.
* CTRL + SHIFT + M for decrementing the tab indent.

Signed-off-by: Gökay Şatır 
Change-Id: I1dcf87808cdf1a0e4c91666557531e7550878236
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157583
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
(cherry picked from commit b90c1c15fbbe01e5343cfc384c2cb427e76908a0)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158777
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index a43641b67049..a8555409dddb 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -6693,6 +6693,13 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:ResetAttributes
+.uno:IncrementIndent
+  
+
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:DecrementIndent
   
 
 


[Libreoffice-commits] core.git: officecfg/registry

2023-11-01 Thread Gökay Şatır (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |   12 
++
 1 file changed, 12 insertions(+)

New commits:
commit 4068a5da3dc3e3e6629a5f9f68684cbb50894896
Author: Gökay Şatır 
AuthorDate: Tue Oct 3 17:35:35 2023 +0300
Commit: Caolán McNamara 
CommitDate: Wed Nov 1 22:21:18 2023 +0100

Writer:

Added ALT + SHIFT + UP and ALT + SHIFT + DOWN combinations for:
* Moving paragraphs up and down in the document.

Signed-off-by: Gökay Şatır 
Change-Id: I5aef03456bce1cfd66349f41cae0ef37889ef0bc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157520
Reviewed-by: Szymon Kłos 
Tested-by: Jenkins CollaboraOffice 
(cherry picked from commit 6b68b8c4819139c54072d2f28186b1fb6d937d56)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158776
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index db7cdb6dec11..a43641b67049 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -6274,6 +6274,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:GoToNextPara
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:MoveDown
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -6889,6 +6895,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:GoToStartOfPara
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:MoveUp
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE


[Libreoffice-commits] core.git: officecfg/registry

2023-11-01 Thread Gökay Şatır (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |   44 
++
 1 file changed, 44 insertions(+)

New commits:
commit 691604d9037e72a94207d643cba29c64260b1cb9
Author: Gökay Şatır 
AuthorDate: Fri Sep 29 20:32:01 2023 +0300
Commit: Caolán McNamara 
CommitDate: Wed Nov 1 21:14:25 2023 +0100

German shortcut changes for Impress:

* CTRL + D for duplicate objects.
* F12 for save as.
* SHIFT + F3 for rotate lower / upper cases.
* SHIFT + F9 for show / hide grid.
* CTRL + F9 for show / hide ruler.
* CTRL +SHIFT + H for ungrouping objects.
* CTRL + SPACE for removing direct character formats.

Signed-off-by: Gökay Şatır 
Change-Id: Iedfd5f9bbc088b76edbb897141d9e612f8b55057
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157410
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
(cherry picked from commit 541bcc2be61c10f85cafe0e62bb3afc60a152c01)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158724
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index b53e5ec1f42d..db7cdb6dec11 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -3061,6 +3061,13 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:Forward
+.uno:SubScript
+  
+
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:SuperScript
   
 
 
@@ -3113,6 +3120,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:Dismantle
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:CopyObjects
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -3162,6 +3175,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:DesignerDialog
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:SaveAs
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -3184,6 +3203,7 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:CopyObjects
+.uno:ChangeCaseRotateCase
   
 
 
@@ -3252,6 +3272,18 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:TextFitToSize
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:GridVisible
+  
+
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:ShowRuler
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -3290,6 +3322,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:SuperScript
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:FormatUngroup
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -3441,6 +3479,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:ShowRuler
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:RemoveDirectCharFormats
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE


[Libreoffice-commits] core.git: officecfg/registry

2023-11-01 Thread Gökay Şatır (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |   46 
+-
 1 file changed, 44 insertions(+), 2 deletions(-)

New commits:
commit e651d9e657f9b61fb45777d6e7edeb5cb95f8d27
Author: Gökay Şatır 
AuthorDate: Wed Sep 27 09:35:07 2023 +0300
Commit: Caolán McNamara 
CommitDate: Wed Nov 1 18:22:37 2023 +0100

German shortcut improvements for Calc:

* Insert date is assigned to CTRL + POINT.
* Insert time is assigned to CTRL + SHIFT + POINT.
* Save as is assigned to F12
   * Group and Ungroup are assigned to CTRL + F12 and CTRL + SHIFT + F12.
* Insert function dialog is assigned to SHIFT + F3
   * Rotate case function is assigned to CTRL + SHIFT + F3.
* Insert comment is assigned to SHIFT + F2
* Format cells dialog is assigned to ALT + 0
* CTRL + 5 is for Strikeout.
* F5 is assigned to FocusCellAddress.
   * CTRL + F is assigned to navigator.
  * ALT + F is assigned to "focus find bar".

Signed-off-by: Gökay Şatır 
Change-Id: I0213fecb6fe02b2d621d8409225251dbfa6631ed
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157360
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
(cherry picked from commit 828c6bd73dcce738edc7d6a46432ddc5288235b7)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158723
Tested-by: Jenkins
Tested-by: Caolán McNamara 
Reviewed-by: Caolán McNamara 

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index 0f8c292fb2ac..b53e5ec1f42d 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -681,6 +681,7 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:SpacePara15
+.uno:Strikeout
   
 
 
@@ -727,6 +728,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:Zoom100Percent
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:FormatCellDialog
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -885,12 +892,20 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:Group
+.uno:SaveAs
   
 
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:Ungroup
+.uno:Group
+  
+
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:Ungroup
   
 
 
@@ -923,6 +938,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:FunctionDialog
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:InsertAnnotation
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -939,6 +960,13 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:ChangeCaseRotateCase
+.uno:FunctionDialog
+  
+
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:ChangeCaseRotateCase
   
 
 
@@ -951,6 +979,7 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:Navigator
+.uno:FocusCellAddress
   
 
 
@@ -1027,6 +1056,19 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:RepeatSearch
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:SearchDialog
+.uno:Navigator
+  
+
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+vnd.sun.star.findbar:FocusToFindbar
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -1295,12 +1337,14 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for 
some emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:InsertCurrentDate
+.uno:InsertCurrentDate
   
 
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:InsertCurrentTime
+.uno:InsertCurrentTime
   
 
 
@@ -1308,7 +1352,6 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:InsertCurrentDate
 .uno:InsertCurrentDate
-.uno:InsertCurrentDate
 .uno:InsertCurrentDate
 .uno:InsertCurrentDate
 

[Libreoffice-commits] core.git: officecfg/registry

2023-10-31 Thread Gökay Şatır (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit f5ae03b235766070b1c1e5bf46d0cb86a8196b10
Author: Gökay Şatır 
AuthorDate: Thu May 25 10:32:55 2023 +0300
Commit: Caolán McNamara 
CommitDate: Tue Oct 31 21:22:09 2023 +0100

Writer German shortcuts compatibility improvements.

Signed-off-by: Gökay Şatır 
Change-Id: Icfcdf3f629442da339c846f9eaa577ff7b779290
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152261
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 
(cherry picked from commit 7b168fbe4e4a5feecdd946fef9c5c3e5107dc050)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158722
Tested-by: Jenkins
Tested-by: Caolán McNamara 
Reviewed-by: Caolán McNamara 

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index d510adf0bc2a..0f8c292fb2ac 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -6167,6 +6167,13 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:InsertZWSP
+.uno:DefaultNumbering
+  
+
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:DefaultBullet
   
 
 


[Libreoffice-commits] core.git: officecfg/registry

2023-10-31 Thread Gökay Şatır (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |   31 
+-
 1 file changed, 29 insertions(+), 2 deletions(-)

New commits:
commit 2d37ac2ca3a93cd7f05867ba7256c9e232192983
Author: Gökay Şatır 
AuthorDate: Wed May 24 14:39:12 2023 +0300
Commit: Caolán McNamara 
CommitDate: Tue Oct 31 21:21:16 2023 +0100

Added & modified some shortcuts for general compatibility.

Signed-off-by: Gökay Şatır 
Change-Id: Ibfcfbc3a75aca392acc4626e6169f2f3abcc4970
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152196
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Andras Timar 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158673
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index 5152341a0800..d510adf0bc2a 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -711,14 +711,20 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:Shrink
-.uno:Shrink
+.uno:HideColumn
   
 
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:Grow
-.uno:Grow
+.uno:HideRow
+  
+
+
+  
+I10 SHORTCUTS - No 
TRANSLATE
+.uno:Zoom100Percent
   
 
 
@@ -887,6 +893,24 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:Ungroup
   
 
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:Ungroup
+  
+
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:Group
+  
+
+
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:InsertAnnotation
+  
+
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -951,6 +975,7 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:InsertCurrentTime
+.uno:Shrink
   
 
 
@@ -1015,6 +1040,7 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:RepeatSearch
 .uno:Save
 .uno:Bold
+.uno:FocusCellAddress
   
 
 
@@ -1453,6 +1479,7 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 I10N SHORTCUTS - NO 
TRANSLATE
 
 .uno:MarkPrecedents
+.uno:Zoom100Percent
   
 
 


[Libreoffice-commits] core.git: officecfg/registry sc/source sc/uiconfig

2023-10-31 Thread offtkp (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu |   15 +-
 sc/source/ui/condformat/condformateasydlg.cxx |   24 
--
 sc/uiconfig/scalc/popupmenu/conditional_easy.xml  |1 
 3 files changed, 35 insertions(+), 5 deletions(-)

New commits:
commit c8da023efe26efcb166c3525ca73fe62f26e154c
Author: offtkp 
AuthorDate: Mon Oct 30 14:28:12 2023 +0200
Commit: Paris Oplopoios 
CommitDate: Tue Oct 31 14:23:05 2023 +0100

tdf#157930 Add Contains Text rule to easy conditional format dialog

Contains Text is another commonly used conditional formatting rule
that could be of use here

Change-Id: I67a3f711c57f9917be26fa21badd2f5a0d133747
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158657
Tested-by: Jenkins
Reviewed-by: Paris Oplopoios 

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
index 7bd5215d627e..fe726492ffb4 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
@@ -666,7 +666,7 @@
   
   
 
-  Conditional Formatting: Condition Less 
Than
+  Conditional Formatting: Less Than
 
 
   Less than...
@@ -677,7 +677,7 @@
   
   
 
-  Conditional Formatting: Condition 
Equals
+  Conditional Formatting: Equals
 
 
   Equals...
@@ -697,6 +697,17 @@
   1
 
   
+  
+
+  Conditional Formatting: Contains Text
+
+
+  Containing text...
+
+
+  1
+
+  
   
 
   Conditional Formatting: More Rules
diff --git a/sc/source/ui/condformat/condformateasydlg.cxx 
b/sc/source/ui/condformat/condformateasydlg.cxx
index 0fee5ea15b36..6ecf98e87e21 100644
--- a/sc/source/ui/condformat/condformateasydlg.cxx
+++ b/sc/source/ui/condformat/condformateasydlg.cxx
@@ -208,9 +208,27 @@ IMPL_LINK(ConditionalFormatEasyDialog, ButtonPressed, 
weld::Button&, rButton, vo
 if ( == mxButtonOk.get())
 {
 std::unique_ptr pFormat(new 
ScConditionalFormat(0, mpDocument));
+
+OUString sExpression1 = mxNumberEntry->get_text();
+OUString sExpression2 = mxNumberEntry2->get_text();
+
+switch (meMode)
+{
+case ScConditionMode::ContainsText:
+case ScConditionMode::NotContainsText:
+case ScConditionMode::BeginsWith:
+case ScConditionMode::EndsWith:
+sExpression1 = "\"" + sExpression1 + "\"";
+sExpression2 = "\"" + sExpression2 + "\"";
+break;
+default:
+break;
+}
+
 ScFormatEntry* pEntry
-= new ScCondFormatEntry(meMode, mxNumberEntry->get_text(), 
mxNumberEntry2->get_text(),
-*mpDocument, maPosition, 
mxStyles->get_active_text());
+= new ScCondFormatEntry(meMode, sExpression1, sExpression2, 
*mpDocument, maPosition,
+mxStyles->get_active_text());
+
 ScRangeList aRange;
 ScRefFlags nFlags
 = aRange.Parse(mxRangeEntry->GetText(), mpViewData->GetDocument(),
@@ -229,4 +247,4 @@ IMPL_LINK(ConditionalFormatEasyDialog, ButtonPressed, 
weld::Button&, rButton, vo
 m_xDialog->response(RET_CANCEL);
 }
 
-} // namespace sc
\ No newline at end of file
+} // namespace sc
diff --git a/sc/uiconfig/scalc/popupmenu/conditional_easy.xml 
b/sc/uiconfig/scalc/popupmenu/conditional_easy.xml
index 3346fa9441bb..70bd311d4480 100644
--- a/sc/uiconfig/scalc/popupmenu/conditional_easy.xml
+++ b/sc/uiconfig/scalc/popupmenu/conditional_easy.xml
@@ -12,6 +12,7 @@
   
   
   
+  
   
   
 


[Libreoffice-commits] core.git: officecfg/registry

2023-10-30 Thread Ilmari Lauhakangas (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a18174e807e8704c385637b8a53c45b9608bfa42
Author: Ilmari Lauhakangas 
AuthorDate: Mon Oct 30 15:25:22 2023 +0200
Commit: Ilmari Lauhakangas 
CommitDate: Mon Oct 30 20:24:02 2023 +0100

tdf#14 Use title case Toggle Point Edit Mode

Change-Id: I5ee2bd22e73262e61e49b98773bc18e1ca1b1783
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158661
Tested-by: Ilmari Lauhakangas 
Reviewed-by: Ilmari Lauhakangas 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index 4f56a16e59e8..5235cfea8946 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -2507,7 +2507,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
-  Toggle point edit mode
+  Toggle Point Edit Mode
 
 
   1


[Libreoffice-commits] core.git: officecfg/registry sc/inc sc/Library_sc.mk sc/sdi sc/source sc/uiconfig sc/UIConfig_scalc.mk static/CustomTarget_emscripten_fs_image.mk

2023-10-27 Thread Paris Oplopoios (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu |   57 ++
 officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu   |   14 
 sc/Library_sc.mk  |1 
 sc/UIConfig_scalc.mk  |2 
 sc/inc/document.hxx   |4 
 sc/inc/sc.hrc |3 
 sc/sdi/cellsh.sdi |9 
 sc/sdi/scalc.sdi  |   31 +
 sc/source/core/data/documen2.cxx  |5 
 sc/source/ui/app/scdll.cxx|1 
 sc/source/ui/condformat/condformateasydlg.cxx |  192 

 sc/source/ui/inc/condformateasydlg.hxx|   54 ++
 sc/source/ui/inc/reffact.hxx  |7 
 sc/source/ui/view/cellsh3.cxx |   20 
 sc/source/ui/view/reffact.cxx |1 
 sc/source/ui/view/tabvwsh.cxx |1 
 sc/source/ui/view/tabvwshc.cxx|6 
 sc/uiconfig/scalc/popupmenu/conditional.xml   |2 
 sc/uiconfig/scalc/popupmenu/conditional_easy.xml  |   17 
 sc/uiconfig/scalc/ui/conditionaleasydialog.ui |  237 
++
 static/CustomTarget_emscripten_fs_image.mk|2 
 21 files changed, 663 insertions(+), 3 deletions(-)

New commits:
commit 217f23f6437b1cac10fb4ea09b72fa896d46bd6b
Author: Paris Oplopoios 
AuthorDate: Mon Sep 11 23:20:50 2023 +0300
Commit: Szymon Kłos 
CommitDate: Fri Oct 27 18:15:38 2023 +0200

tdf#157930 sc: Add easy to use conditional formatting menu

Add menu options that open a dialog that can add conditional formatting
in a cell range with common options.

Change-Id: Ia54baba08e4b78c4c6e37fa7bff744af8cf06037
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156831
Tested-by: Szymon Kłos 
Reviewed-by: Szymon Kłos 

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
index 89e66c5be42e..7bd5215d627e 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
@@ -642,7 +642,7 @@
   1
 
   
-  
+  
 
   Conditional Formatting: Condition
 
@@ -653,6 +653,61 @@
   1
 
   
+  
+
+  Conditional Formatting: Greater Than
+
+
+  Greater than...
+
+
+  1
+
+  
+  
+
+  Conditional Formatting: Condition Less 
Than
+
+
+  Less than...
+
+
+  1
+
+  
+  
+
+  Conditional Formatting: Condition 
Equals
+
+
+  Equals...
+
+
+  1
+
+  
+  
+
+  Conditional Formatting: Between
+
+
+  Between...
+
+
+  1
+
+  
+  
+
+  Conditional Formatting: More Rules
+
+
+  More rules...
+
+
+  1
+
+  
   
 
   Conditional Formatting...
diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
index 956b1641bb43..2d99b67a7368 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
@@ -604,6 +604,20 @@
   distributebar
 
   
+  
+
+  .uno:ConditionalFormatConditionMenu
+
+
+  com.sun.star.sheet.SpreadsheetDocument
+
+
+  com.sun.star.comp.framework.ResourceMenuController
+
+
+  conditional_easy
+
+  
 
 
   
diff --git a/sc/Library_sc.mk b/sc/Library_sc.mk
index 2b4082d3688e..ff53d9b63ef1 100644
--- a/sc/Library_sc.mk
+++ b/sc/Library_sc.mk
@@ -398,6 +398,7 @@ $(eval $(call gb_Library_add_exception_objects,sc,\
 sc/source/ui/condformat/condformatdlg \
 sc/source/ui/condformat/condformatdlgentry \
 sc/source/ui/condformat/condformatdlgitem \
+sc/source/ui/condformat/condformateasydlg \
 sc/source/ui/condformat/condformathelper \
 sc/source/ui/condformat/colorformat \
 sc/source/ui/dataprovider/csvdataprovider \
diff --git a/sc/UIConfig_scalc.mk b/sc/UIConfig_scalc.mk
index 0b9f514d0fd5..12cc9825f0c5 100644
--- a/sc/UIConfig_scalc.mk
+++ b/sc/UIConfig_scalc.mk
@@ -21,6 

[Libreoffice-commits] core.git: officecfg/registry sw/inc sw/qa sw/sdi sw/source sw/uiconfig

2023-10-25 Thread Xisco Fauli (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |   20 
+
 sw/inc/cmdid.h  |   20 
+++--
 sw/qa/uibase/shells/shells.cxx  |8 --
 sw/sdi/_textsh.sdi  |   14 
 sw/sdi/swriter.sdi  |   34 
++
 sw/source/uibase/shells/textfld.cxx |4 +
 sw/uiconfig/sglobal/popupmenu/insertfield.xml   |2 
 sw/uiconfig/sweb/popupmenu/insertfield.xml  |2 
 sw/uiconfig/swform/popupmenu/insertfield.xml|2 
 sw/uiconfig/swreport/popupmenu/insertfield.xml  |2 
 sw/uiconfig/swriter/popupmenu/insertfield.xml   |2 
 sw/uiconfig/swxform/popupmenu/insertfield.xml   |2 
 12 files changed, 96 insertions(+), 16 deletions(-)

New commits:
commit 6c073a180b6af61963fcce0da63ba66b97357ccb
Author: Xisco Fauli 
AuthorDate: Tue Oct 24 15:25:13 2023 +0200
Commit: Xisco Fauli 
CommitDate: Wed Oct 25 12:25:53 2023 +0200

tdf#139141: Add UNO commands for variable date/time fields

Impress already has both options in the menu
Also re-enable test disable with fa569930a0968cdeba4441e19a68e7d78aa25cb4
"Revert "Resolves tdf#139141 - Make variable date/time field the
default""

Change-Id: I1cec89b5901073555ffa31d2be24e1e62fbbdcb3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158391
Reviewed-by: Heiko Tietze 
Tested-by: Jenkins

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index 44a98e183ccc..dc4d4dbdb399 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -1076,7 +1076,15 @@
   
   
 
-  ~Date
+  ~Date (fix)
+
+
+  1
+
+  
+  
+
+  ~Date (variable)
 
 
   1
@@ -1092,7 +1100,15 @@
   
   
 
-  ~Time
+  ~Time (fix)
+
+
+  1
+
+  
+  
+
+  ~Time (variable)
 
 
   1
diff --git a/sw/inc/cmdid.h b/sw/inc/cmdid.h
index 08f239b3d8d0..74ab5cf8c554 100644
--- a/sw/inc/cmdid.h
+++ b/sw/inc/cmdid.h
@@ -267,18 +267,20 @@ class SwUINumRuleItem;
 #define FN_MAILMERGE_PRINT_DOCUMENTS (FN_INSERT + 79) /* mail merge toolbar - 
print merged documents */
 #define FN_MAILMERGE_EMAIL_DOCUMENTS (FN_INSERT + 80) /* mail merge toolbar - 
email merged documents */
 
-#define FN_TOOL_ANCHOR_CHAR (FN_INSERT + 84)/* anchor Draw object to 
character */
+#define FN_TOOL_ANCHOR_CHAR (FN_INSERT + 82)/* anchor Draw object to 
character */
 
-#define FN_QRY_INSERT   (FN_INSERT + 86)/* insert record selection 
in to text */
-#define FN_QRY_MERGE_FIELD  (FN_INSERT + 87)/* insert record selection 
into fields */
-#define FN_QRY_INSERT_FIELD (FN_INSERT + 88)/* insert database field */
+#define FN_QRY_INSERT   (FN_INSERT + 83)/* insert record selection 
in to text */
+#define FN_QRY_MERGE_FIELD  (FN_INSERT + 84)/* insert record selection 
into fields */
+#define FN_QRY_INSERT_FIELD (FN_INSERT + 86)/* insert database field */
 
-#define FN_INSERT_CTRL  (FN_INSERT + 89)/* toolbar controller 
insert*/
-#define FN_INSERT_OBJ_CTRL  (FN_INSERT + 90)/* toolbar controller 
(insert/object) */
-#define FN_INSERT_FIELD_CTRL(FN_INSERT + 91)/* toolbar controller 
insert/field commands */
+#define FN_INSERT_CTRL  (FN_INSERT + 87)/* toolbar controller 
insert*/
+#define FN_INSERT_OBJ_CTRL  (FN_INSERT + 88)/* toolbar controller 
(insert/object) */
+#define FN_INSERT_FIELD_CTRL(FN_INSERT + 89)/* toolbar controller 
insert/field commands */
 
-#define FN_INSERT_FLD_DATE  (FN_INSERT + 92)
-#define FN_INSERT_FLD_TIME  (FN_INSERT + 93)
+#define FN_INSERT_FLD_DATE  (FN_INSERT + 90)
+#define FN_INSERT_FLD_DATE_VAR  (FN_INSERT + 91)
+#define FN_INSERT_FLD_TIME  (FN_INSERT + 92)
+#define FN_INSERT_FLD_TIME_VAR  (FN_INSERT + 93)
 #define FN_INSERT_FLD_PGNUMBER  (FN_INSERT + 94)
 #define FN_INSERT_FLD_PGCOUNT   (FN_INSERT + 95)
 #define FN_INSERT_FLD_TOPIC (FN_INSERT + 96)
diff --git a/sw/qa/uibase/shells/shells.cxx b/sw/qa/uibase/shells/shells.cxx
index 88f90e909698..8551ef685e1f 100644
--- a/sw/qa/uibase/shells/shells.cxx
+++ b/sw/qa/uibase/shells/shells.cxx
@@ -1049,9 +1049,7 @@ CPPUNIT_TEST_FIXTURE(SwUibaseShellsTest, 
testInsertTextFormFieldEndnote)
 // Then this was empty: the fieldmark was inserted before the note anchor, 
not in the note body.
 

[Libreoffice-commits] core.git: officecfg/registry

2023-10-24 Thread Cosmin Humeniuc (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |5 
+
 1 file changed, 1 insertion(+), 4 deletions(-)

New commits:
commit 59ce453ea5ed5227633f44bb86545d122d48de01
Author: Cosmin Humeniuc 
AuthorDate: Sat Sep 23 16:46:04 2023 +0300
Commit: Heiko Tietze 
CommitDate: Tue Oct 24 09:16:28 2023 +0200

tdf#14 Use same strings for same command

Done during the conference hackfest
Change-Id: I04f1dd77ca8866eff44e49d9f90805995cec9840

Change-Id: I53467e4e80f2d82fa126eb9a40ee28f67d7c321f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157187
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index 89c2ee97bca5..4f56a16e59e8 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -2507,10 +2507,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
-  Edit Points
-
-
-  Poi~nts
+  Toggle point edit mode
 
 
   1


[Libreoffice-commits] core.git: officecfg/registry sw/inc sw/source

2023-10-21 Thread Mike Kaganski (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Writer.xcs |6 
 sw/inc/doc.hxx |1 
 sw/source/core/doc/doc.cxx |  128 +++--
 3 files changed, 83 insertions(+), 52 deletions(-)

New commits:
commit 562856a8bca0869a04147fbc05a1eece9193
Author: Mike Kaganski 
AuthorDate: Sat Oct 21 17:42:56 2023 +0300
Commit: Mike Kaganski 
CommitDate: Sat Oct 21 21:48:34 2023 +0200

Related: tdf#89178 Add an option to avoid converting some fields into text

... during mail merge.

In some modes (generating individual documents; creating PDF) the mail merge
process converts all fields into text. But sometimes it is undesirable for
fields not involved into mail merge itself:

* It is inconsistent with how MS Word behaves;
* The generated editable documents could benefit from having other fields
  kept as fields;
* Some fields, when exported to PDF, produce different results: e.g.,
  placeholder fields are output as empty spaces, not as placeholder text.

An expert boolean configuration option is added:
Office/Writer/FormLetter/ConvertToTextOnlyMMFields; it is false by default,
in which case, the behavior is unchanged. When true, all fields in the mail
merge document, except for database fields and hidden text fields, are not
converted to text during mail merge process.

Change-Id: Ibdb505ed3f2762db063bb0a91b674d27ecbc2e7f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158306
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
index 75a019c63c73..c9da17b65c9e 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
@@ -6014,6 +6014,12 @@
   
 
   
+  
+
+  When true, only fields that can be used in mail merge will be 
converted to text; all other fields will be kept as fields in the Mail Merge 
output
+
+false
+  
 
 
   
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx
index c40abf7a1581..5d1814210801 100644
--- a/sw/inc/doc.hxx
+++ b/sw/inc/doc.hxx
@@ -1445,6 +1445,7 @@ public:
 // restore the invisible content if it's available on the undo stack
 bool RestoreInvisibleContent();
 
+// Replace fields by text - mailmerge support
 SAL_DLLPRIVATE bool ConvertFieldsToText(SwRootFrame const& rLayout);
 
 // Create sub-documents according to given collection.
diff --git a/sw/source/core/doc/doc.cxx b/sw/source/core/doc/doc.cxx
index da14a84674e3..4bcb2a35e856 100644
--- a/sw/source/core/doc/doc.cxx
+++ b/sw/source/core/doc/doc.cxx
@@ -53,6 +53,8 @@
 #include 
 #include 
 
+#include 
+
 #include 
 #include 
 #include 
@@ -1618,12 +1620,32 @@ bool SwDoc::RestoreInvisibleContent()
 return false;
 }
 
+static bool IsMailMergeField(SwFieldIds fieldId)
+{
+switch (fieldId)
+{
+case SwFieldIds::Database: // Mail merge fields
+case SwFieldIds::DatabaseName: // Database name
+case SwFieldIds::HiddenText: // Hidden text may use database fields in 
condition
+case SwFieldIds::HiddenPara: // Hidden paragraph may use database 
fields in condition
+case SwFieldIds::DbNextSet: // Moving to next mail merge record
+case SwFieldIds::DbNumSet: // Moving to a specific mail merge record
+case SwFieldIds::DbSetNumber: // Number of current mail merge record
+return true;
+default:
+return false;
+}
+}
+
 bool SwDoc::ConvertFieldsToText(SwRootFrame const& rLayout)
 {
 bool bRet = false;
 getIDocumentFieldsAccess().LockExpFields();
 GetIDocumentUndoRedo().StartUndo( SwUndoId::UI_REPLACE, nullptr );
 
+const bool bOnlyConvertDBFields
+= 
officecfg::Office::Writer::FormLetter::ConvertToTextOnlyMMFields::get();
+
 const SwFieldTypes* pMyFieldTypes = 
getIDocumentFieldsAccess().GetFieldTypes();
 const SwFieldTypes::size_type nCount = pMyFieldTypes->size();
 //go backward, field types are removed
@@ -1634,6 +1656,9 @@ bool SwDoc::ConvertFieldsToText(SwRootFrame const& 
rLayout)
 if ( SwFieldIds::Postit == pCurType->Which() )
 continue;
 
+if (bOnlyConvertDBFields && !IsMailMergeField(pCurType->Which()))
+continue;
+
 std::vector vFieldFormats;
 pCurType->GatherFields(vFieldFormats, false);
 for(const auto& rpFieldFormat : vFieldFormats)
@@ -1644,67 +1669,66 @@ bool SwDoc::ConvertFieldsToText(SwRootFrame const& 
rLayout)
 
 bool bSkip = !pTextField ||
  !pTextField->GetpTextNode()->GetNodes().IsDocNodes();
+if (bSkip)
+continue;
 
-if (!bSkip)
+bool bInHeaderFooter = 

[Libreoffice-commits] core.git: officecfg/registry sd/uiconfig sd/UIConfig_sdraw.mk sd/UIConfig_simpress.mk

2023-10-20 Thread Justin Luth (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu |   14 +++
 sd/UIConfig_sdraw.mk|1 
 sd/UIConfig_simpress.mk |1 
 sd/uiconfig/sdraw/menubar/menubar.xml   |   12 --
 sd/uiconfig/sdraw/popupmenu/3dobject.xml|   12 --
 sd/uiconfig/sdraw/popupmenu/3dscene.xml |   12 --
 sd/uiconfig/sdraw/popupmenu/3dscene2.xml|   12 --
 sd/uiconfig/sdraw/popupmenu/connector.xml   |   12 --
 sd/uiconfig/sdraw/popupmenu/curve.xml   |   12 --
 sd/uiconfig/sdraw/popupmenu/draw.xml|   12 --
 sd/uiconfig/sdraw/popupmenu/form.xml|   12 --
 sd/uiconfig/sdraw/popupmenu/graphic.xml |   12 --
 sd/uiconfig/sdraw/popupmenu/group.xml   |   12 --
 sd/uiconfig/sdraw/popupmenu/line.xml|   12 --
 sd/uiconfig/sdraw/popupmenu/measure.xml |   12 --
 sd/uiconfig/sdraw/popupmenu/media.xml   |   12 --
 sd/uiconfig/sdraw/popupmenu/multiselect.xml |   12 --
 sd/uiconfig/sdraw/popupmenu/objectalign.xml |   18 
++
 sd/uiconfig/sdraw/popupmenu/oleobject.xml   |   12 --
 sd/uiconfig/sdraw/popupmenu/table.xml   |   12 --
 sd/uiconfig/sdraw/popupmenu/textbox.xml |   12 --
 sd/uiconfig/sdraw/ui/notebookbar.ui |7 +++
 sd/uiconfig/sdraw/ui/notebookbar_compact.ui |7 +++
 sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui  |   13 +++
 sd/uiconfig/simpress/menubar/menubar.xml|   12 --
 sd/uiconfig/simpress/popupmenu/3dobject.xml |   12 --
 sd/uiconfig/simpress/popupmenu/3dscene.xml  |   12 --
 sd/uiconfig/simpress/popupmenu/3dscene2.xml |   12 --
 sd/uiconfig/simpress/popupmenu/connector.xml|   12 --
 sd/uiconfig/simpress/popupmenu/curve.xml|   12 --
 sd/uiconfig/simpress/popupmenu/draw.xml |   12 --
 sd/uiconfig/simpress/popupmenu/form.xml |   12 --
 sd/uiconfig/simpress/popupmenu/graphic.xml  |   12 --
 sd/uiconfig/simpress/popupmenu/group.xml|   12 --
 sd/uiconfig/simpress/popupmenu/line.xml |   12 --
 sd/uiconfig/simpress/popupmenu/measure.xml  |   12 --
 sd/uiconfig/simpress/popupmenu/media.xml|   12 --
 sd/uiconfig/simpress/popupmenu/multiselect.xml  |   12 --
 sd/uiconfig/simpress/popupmenu/objectalign.xml  |   18 
++
 sd/uiconfig/simpress/popupmenu/oleobject.xml|   12 --
 sd/uiconfig/simpress/popupmenu/table.xml|   12 --
 sd/uiconfig/simpress/popupmenu/textbox.xml  |   12 --
 sd/uiconfig/simpress/ui/notebookbar.ui  |7 +++
 sd/uiconfig/simpress/ui/notebookbar_compact.ui  |7 +++
 sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui   |   13 +++
 sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui  |   13 +++
 46 files changed, 153 insertions(+), 374 deletions(-)

New commits:
commit 4e871d99ccace244de42c0d5c4bd11611af6ccb2
Author: Justin Luth 
AuthorDate: Tue Oct 17 08:18:17 2023 -0400
Commit: Justin Luth 
CommitDate: Fri Oct 20 20:25:58 2023 +0200

tdf#157026 sd notebookbar: add ObjectAlign to MenuTable as popupmenu

The vast majority of this is just eliminating copy/paste,
since I have now created a popupmenu.xml list for the popup menu.

The "fix" is adding this to the Table menus.

.uno:ObjectAlign is basically just a "label".
Now it is a label for two different "views":
* a toolbar widget dropdown
* a menu subcategory

Perhaps it is confusing to have one UNO entry
serve these two similar purposes?

I suppose someone might also complain that a simple

isn't clear that this is a submenu.

I considered making mine a new ObjectAlignMenu,
but the annoyance of having to create a duplicate string translation in
officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
made me just reuse the existing label.

Change-Id: I17e037e0c9c5d1f57ac9f174a76cd041983bcea4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157894
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git 

[Libreoffice-commits] core.git: officecfg/registry sw/source

2023-10-17 Thread Matthew Kogan (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Writer.xcs |6 ++
 sw/source/core/text/txtfld.cxx |4 +++-
 2 files changed, 9 insertions(+), 1 deletion(-)

New commits:
commit d67d47bf0e9c9b24fb9aeed8807c31ed28d7fec2
Author: Matthew Kogan 
AuthorDate: Fri Oct 13 14:53:24 2023 +0100
Commit: László Németh 
CommitDate: Tue Oct 17 14:50:03 2023 +0200

tdf#154454 sw: make comparison of changed paragraph numbering optional

by the new config option "DisplayChangedParagraphNumbering", as a
temporary fix to hide incorrect changes in corner cases.

Regression from commit 2413f213625253a9c2b1787b3b9fe859d724a9bd
"tdf#115523 sw_redlinenum: show correct, also original numbering".

Change-Id: I6d85033cc3f60ac1075501fedfcd4c9862e00a9e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157940
Tested-by: László Németh 
Reviewed-by: László Németh 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
index 028552cca820..75a019c63c73 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
@@ -2622,6 +2622,12 @@
   Specifies whether RSIDs are stored in the document 
model.
 
   
+  
+
+  Specifies whether changed paragraph numbering is 
displayed.
+
+true
+  
 
 
   
diff --git a/sw/source/core/text/txtfld.cxx b/sw/source/core/text/txtfld.cxx
index aa8fef7331c5..464781428010 100644
--- a/sw/source/core/text/txtfld.cxx
+++ b/sw/source/core/text/txtfld.cxx
@@ -58,6 +58,7 @@
 #include 
 #include 
 #include 
+#include 
 
 static bool lcl_IsInBody( SwFrame const *pFrame )
 {
@@ -721,7 +722,8 @@ SwNumberPortion *SwTextFormatter::NewNumberPortion( 
SwTextFormatInfo  ) con
 
 if ( !aText.isEmpty() || !aHiddenText.isEmpty() )
 {
-if (aText != aHiddenText && !aHiddenText.isEmpty())
+bool bDisplayChangedParagraphNumbering = 
officecfg::Office::Writer::Comparison::DisplayChangedParagraphNumbering::get();
+if (bDisplayChangedParagraphNumbering && aText != 
aHiddenText && !aHiddenText.isEmpty())
 {
 bHasHiddenNum = true;
 // show also original number after the actual one 
enclosed in [ and ],


[Libreoffice-commits] core.git: officecfg/registry sc/uiconfig sc/UIConfig_scalc.mk

2023-10-17 Thread Justin Luth (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu |   14 +
 sc/UIConfig_scalc.mk|1 
 sc/uiconfig/scalc/menubar/menubar.xml   |   18 --
 sc/uiconfig/scalc/popupmenu/statisticsmenu.xml  |   24 ++
 sc/uiconfig/scalc/ui/notebookbar.ui |   13 +
 sc/uiconfig/scalc/ui/notebookbar_compact.ui |   13 +
 sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui  |   88 
--
 sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui |   88 
--
 8 files changed, 70 insertions(+), 189 deletions(-)

New commits:
commit ce81efb31c311dc835d2e1572751964dbe8e6aa6
Author: Justin Luth 
AuthorDate: Mon Oct 16 19:32:35 2023 -0400
Commit: Justin Luth 
CommitDate: Tue Oct 17 13:22:28 2023 +0200

related tdf#141457 sc notebookbar: make statistics a submenu

With so many different statistics commands,
the super-popular insert menu was dreadfully long.

And since it is a now single entry, might as well add it
to all MenuDatas to keep them all pretty much identical.

Change-Id: I89247a1806f884e92a52b66015c766180d89149e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158065
Tested-by: Justin Luth 
Reviewed-by: Justin Luth 

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
index 2720e33ccec6..2158cbcab053 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
@@ -551,6 +551,20 @@
   sparklinemenu
 
   
+  
+
+  .uno:StatisticsMenu
+
+
+  
+
+
+  com.sun.star.comp.framework.ResourceMenuController
+
+
+  statisticsmenu
+
+  
   
 
   .uno:WindowList
diff --git a/sc/UIConfig_scalc.mk b/sc/UIConfig_scalc.mk
index d6ea2fe8947b..0b9f514d0fd5 100644
--- a/sc/UIConfig_scalc.mk
+++ b/sc/UIConfig_scalc.mk
@@ -40,6 +40,7 @@ $(eval $(call gb_UIConfig_add_popupmenufiles,modules/scalc,\
sc/uiconfig/scalc/popupmenu/sheettab \
sc/uiconfig/scalc/popupmenu/sparkline \
sc/uiconfig/scalc/popupmenu/sparklinemenu \
+   sc/uiconfig/scalc/popupmenu/statisticsmenu \
 ))
 
 $(eval $(call gb_UIConfig_add_statusbarfiles,modules/scalc,\
diff --git a/sc/uiconfig/scalc/menubar/menubar.xml 
b/sc/uiconfig/scalc/menubar/menubar.xml
index bfcac17c9602..ab2c7f81f672 100644
--- a/sc/uiconfig/scalc/menubar/menubar.xml
+++ b/sc/uiconfig/scalc/menubar/menubar.xml
@@ -647,23 +647,7 @@
   
 
   
-  
-
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-
-  
+  
 
   
   
diff --git a/sc/uiconfig/scalc/popupmenu/statisticsmenu.xml 
b/sc/uiconfig/scalc/popupmenu/statisticsmenu.xml
new file mode 100644
index ..9bc4f2135f78
--- /dev/null
+++ b/sc/uiconfig/scalc/popupmenu/statisticsmenu.xml
@@ -0,0 +1,24 @@
+
+
+http://openoffice.org/2001/menu;>
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+
diff --git a/sc/uiconfig/scalc/ui/notebookbar.ui 
b/sc/uiconfig/scalc/ui/notebookbar.ui
index 5094f94198b4..f6d60d0b1e92 100644
--- a/sc/uiconfig/scalc/ui/notebookbar.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar.ui
@@ -281,6 +281,19 @@
 .uno:ShowDetail
   
 
+
+  
+True
+False
+  
+
+
+  
+True
+False
+.uno:StatisticsMenu
+  
+
   
   
 True
diff --git a/sc/uiconfig/scalc/ui/notebookbar_compact.ui 
b/sc/uiconfig/scalc/ui/notebookbar_compact.ui
index 1328f59d7463..4f6c192a87d6 100644
--- a/sc/uiconfig/scalc/ui/notebookbar_compact.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar_compact.ui
@@ -281,6 +281,19 @@
 .uno:ShowDetail
   
 
+
+  
+True
+False
+  
+
+
+  
+True
+False
+.uno:StatisticsMenu
+  
+
   
   
 True
diff --git a/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui 
b/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui
index 0587bab1025c..2533c66719f0 100644
--- a/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui
@@ -2971,94 +2971,10 @@
   
 
 
-  
+  
 True
 False
-.uno:SamplingDialog
-  
-
-
-  
-True
-False
-.uno:DescriptiveStatisticsDialog
-  
-
-
-  
-True
-False
-.uno:AnalysisOfVarianceDialog
-  
-
-
-  
-True
-False
-.uno:CorrelationDialog
-  
-
-
-  
-True
-False
-

[Libreoffice-commits] core.git: officecfg/registry sd/inc sd/qa sd/source sd/uiconfig

2023-10-17 Thread Irgaliev Amin (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Impress.xcs |7 
 sd/inc/drawdoc.hxx  |1 
 sd/inc/sdattr.hrc   |3 -
 sd/qa/unit/dialogs-test.cxx |1 
 sd/source/core/drawdoc.cxx  |1 
 sd/source/ui/app/optsitem.cxx   |   19 +-
 sd/source/ui/dlg/present.cxx|3 -
 sd/source/ui/dlg/tpoption.cxx   |   10 -
 sd/source/ui/func/fusldlg.cxx   |8 
 sd/source/ui/inc/optsitem.hxx   |6 +++
 sd/source/ui/inc/present.hxx|1 
 sd/source/ui/inc/tpoption.hxx   |2 +
 sd/source/ui/slideshow/slideshow.cxx|   19 --
 sd/source/ui/slideshow/slideshowimpl.cxx|6 +--
 sd/uiconfig/simpress/ui/optimpressgeneralpage.ui|   21 +++-
 sd/uiconfig/simpress/ui/presentationdialog.ui   |   19 --
 16 files changed, 62 insertions(+), 65 deletions(-)

New commits:
commit 0e14912af0c449396f10c2ae4be3c7f2a3a98bc2
Author: Irgaliev Amin 
AuthorDate: Mon Oct 16 19:19:18 2023 +0400
Commit: Heiko Tietze 
CommitDate: Tue Oct 17 09:55:28 2023 +0200

tdf#157788 Saving the "Show navigation panel" setting for a device

Currently, the value of the "Show navigation panel" parameter for
presentations is not saved. The section in which this setting is
now located, apparently, is saved in files. It might make sense
to move this setting to Tools -> Options -> LibreOffice Impress -> General,
because it relates to the device rather than the slideshow.

Change-Id: I2286a4a6d432b11fce2b9c3e65fa6b82e004275f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158057
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
index adb6d257b01e..baafb0972c94 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
@@ -584,6 +584,13 @@
  
  true

+   
+
+ Indicates whether to show navigation panel for 
presentations.
+ Show navigation panel
+   
+   false
+ 
   
   
 
diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx
index 5b602c45ec12..dd6b81647ef7 100644
--- a/sd/inc/drawdoc.hxx
+++ b/sd/inc/drawdoc.hxx
@@ -105,7 +105,6 @@ namespace sd
 bool mbMouseAsPen;
 bool mbLockedPages;
 bool mbAlwaysOnTop;
-bool mbUseNavigation;
 bool mbFullScreen;
 bool mbAnimationAllowed;
 sal_Int32 mnPauseTimeout;
diff --git a/sd/inc/sdattr.hrc b/sd/inc/sdattr.hrc
index 2e2bfddec98b..f431dea4f680 100644
--- a/sd/inc/sdattr.hrc
+++ b/sd/inc/sdattr.hrc
@@ -55,9 +55,8 @@ class XColorItem;
 #define ATTR_PRESENT_PAUSE_TIMEOUT   
TypedWhichId(ATTR_PRESENT_START + 13)
 #define ATTR_PRESENT_SHOW_PAUSELOGO  ATTR_PRESENT_START + 14
 #define ATTR_PRESENT_DISPLAY 
TypedWhichId(ATTR_PRESENT_START + 15)
-#define ATTR_PRESENT_SHOW_NAVIGATION_BUTTONS ATTR_PRESENT_START + 16
 
-#define ATTR_PRESENT_ENDATTR_PRESENT_SHOW_NAVIGATION_BUTTONS
+#define ATTR_PRESENT_ENDATTR_PRESENT_DISPLAY
 
 // animation attributes
 #define ATTR_ANIMATION_STARTATTR_PRESENT_END + 1
diff --git a/sd/qa/unit/dialogs-test.cxx b/sd/qa/unit/dialogs-test.cxx
index 5a80d5ac4f72..c9182eea751d 100644
--- a/sd/qa/unit/dialogs-test.cxx
+++ b/sd/qa/unit/dialogs-test.cxx
@@ -404,7 +404,6 @@ VclPtr 
SdDialogsTest::createDialogByID(sal_uInt32 nID)
 aDlgSet.Put(SfxBoolItem(ATTR_PRESENT_ANIMATION_ALLOWED, 
rPresentationSettings.mbAnimationAllowed));
 aDlgSet.Put(SfxBoolItem(ATTR_PRESENT_CHANGE_PAGE, 
!rPresentationSettings.mbLockedPages));
 aDlgSet.Put(SfxBoolItem(ATTR_PRESENT_ALWAYS_ON_TOP, 
rPresentationSettings.mbAlwaysOnTop));
-aDlgSet.Put(SfxBoolItem(ATTR_PRESENT_SHOW_NAVIGATION_BUTTONS, 
rPresentationSettings.mbUseNavigation));
 aDlgSet.Put(SfxBoolItem(ATTR_PRESENT_FULLSCREEN, 
rPresentationSettings.mbFullScreen));
 aDlgSet.Put(SfxUInt32Item(ATTR_PRESENT_PAUSE_TIMEOUT, 
rPresentationSettings.mnPauseTimeout));
 aDlgSet.Put(SfxBoolItem(ATTR_PRESENT_SHOW_PAUSELOGO, 
rPresentationSettings.mbShowPauseLogo));
diff --git a/sd/source/core/drawdoc.cxx b/sd/source/core/drawdoc.cxx
index 76a1efd2d97b..9f798689ba03 100644
--- a/sd/source/core/drawdoc.cxx
+++ b/sd/source/core/drawdoc.cxx
@@ -105,7 +105,6 @@ PresentationSettings::PresentationSettings()
 mbMouseAsPen( false ),
 mbLockedPages( false ),
 

[Libreoffice-commits] core.git: officecfg/registry sc/uiconfig sc/UIConfig_scalc.mk

2023-10-16 Thread Justin Luth (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu |   14 +++
 sc/UIConfig_scalc.mk|1 
 sc/uiconfig/scalc/menubar/menubar.xml   |   10 --
 sc/uiconfig/scalc/popupmenu/cell.xml|   12 ---
 sc/uiconfig/scalc/popupmenu/sparkline.xml   |   12 ---
 sc/uiconfig/scalc/popupmenu/sparklinemenu.xml   |   18 
 sc/uiconfig/scalc/ui/notebookbar.ui |   13 +++
 sc/uiconfig/scalc/ui/notebookbar_compact.ui |   38 
++
 sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui  |   13 +++
 sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui |   13 +++
 10 files changed, 113 insertions(+), 31 deletions(-)

New commits:
commit f5a2192effbf52b2e64e4a40f325b1b42285833c
Author: Justin Luth 
AuthorDate: Sat Oct 14 10:07:22 2023 -0400
Commit: Justin Luth 
CommitDate: Mon Oct 16 15:19:26 2023 +0200

tdf#148539 sc notebookbar: add Sparklines to MenuData

Sparklines do not have an icon yet,
so I didn't attempt to add any (visible) entries
to the notebookbar itself.

Change-Id: I144ff76306aef0ec184794878a449e0cefd09280
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157978
Tested-by: Justin Luth 
Reviewed-by: Justin Luth 

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
index b0e17643905d..2720e33ccec6 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
@@ -537,6 +537,20 @@
   printranges
 
   
+  
+
+  .uno:FormatSparklineMenu
+
+
+  
+
+
+  com.sun.star.comp.framework.ResourceMenuController
+
+
+  sparklinemenu
+
+  
   
 
   .uno:WindowList
diff --git a/sc/UIConfig_scalc.mk b/sc/UIConfig_scalc.mk
index 637a1ac2eca6..d6ea2fe8947b 100644
--- a/sc/UIConfig_scalc.mk
+++ b/sc/UIConfig_scalc.mk
@@ -39,6 +39,7 @@ $(eval $(call gb_UIConfig_add_popupmenufiles,modules/scalc,\
sc/uiconfig/scalc/popupmenu/row_operations \
sc/uiconfig/scalc/popupmenu/sheettab \
sc/uiconfig/scalc/popupmenu/sparkline \
+   sc/uiconfig/scalc/popupmenu/sparklinemenu \
 ))
 
 $(eval $(call gb_UIConfig_add_statusbarfiles,modules/scalc,\
diff --git a/sc/uiconfig/scalc/menubar/menubar.xml 
b/sc/uiconfig/scalc/menubar/menubar.xml
index cbb352c7ac6a..bfcac17c9602 100644
--- a/sc/uiconfig/scalc/menubar/menubar.xml
+++ b/sc/uiconfig/scalc/menubar/menubar.xml
@@ -433,15 +433,7 @@
   
 
   
-  
-
-  
-  
-  
-  
-  
-
-  
+  
   
 
   
diff --git a/sc/uiconfig/scalc/popupmenu/cell.xml 
b/sc/uiconfig/scalc/popupmenu/cell.xml
index fb7f4ff9ecd8..163c54b09bc6 100644
--- a/sc/uiconfig/scalc/popupmenu/cell.xml
+++ b/sc/uiconfig/scalc/popupmenu/cell.xml
@@ -63,17 +63,7 @@
   
   
   
-  
-
-  
-  
-  
-  
-  
-  
-  
-
-  
+  
   
   
   
diff --git a/sc/uiconfig/scalc/popupmenu/sparkline.xml 
b/sc/uiconfig/scalc/popupmenu/sparkline.xml
index fb7f4ff9ecd8..163c54b09bc6 100644
--- a/sc/uiconfig/scalc/popupmenu/sparkline.xml
+++ b/sc/uiconfig/scalc/popupmenu/sparkline.xml
@@ -63,17 +63,7 @@
   
   
   
-  
-
-  
-  
-  
-  
-  
-  
-  
-
-  
+  
   
   
   
diff --git a/sc/uiconfig/scalc/popupmenu/sparklinemenu.xml 
b/sc/uiconfig/scalc/popupmenu/sparklinemenu.xml
new file mode 100644
index ..1abc1da66e94
--- /dev/null
+++ b/sc/uiconfig/scalc/popupmenu/sparklinemenu.xml
@@ -0,0 +1,18 @@
+
+
+http://openoffice.org/2001/menu;>
+  
+  
+  
+  
+  
+  
+  
+
diff --git a/sc/uiconfig/scalc/ui/notebookbar.ui 
b/sc/uiconfig/scalc/ui/notebookbar.ui
index 9fa7632cd732..5094f94198b4 100644
--- a/sc/uiconfig/scalc/ui/notebookbar.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar.ui
@@ -152,6 +152,19 @@
 False
   
 
+
+  
+True
+False
+.uno:FormatSparklineMenu
+  
+
+
+  
+True
+False
+  
+
 
   
 True
diff --git a/sc/uiconfig/scalc/ui/notebookbar_compact.ui 
b/sc/uiconfig/scalc/ui/notebookbar_compact.ui
index 0bc0f5c5d364..1328f59d7463 100644
--- a/sc/uiconfig/scalc/ui/notebookbar_compact.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar_compact.ui
@@ -152,6 +152,19 @@
 False
   
 
+
+  
+True
+False
+.uno:FormatSparklineMenu
+  
+
+
+  
+True
+False
+  
+
 
   
 True
@@ -4714,6 +4727,31 @@
 1
   
 
+   

[Libreoffice-commits] core.git: officecfg/registry

2023-10-07 Thread Ioan-Teodor Teugea (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu |
2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c476335c4d3e1b9c90485e4e13fa3e2e85535143
Author: Ioan-Teodor Teugea 
AuthorDate: Sat Sep 23 15:55:52 2023 +0300
Commit: Hossein 
CommitDate: Sat Oct 7 12:19:07 2023 +0200

tdf#156918: make autofit text less confusing

Change from 'Autofit text' to 'Shrink text on overflow'

Change-Id: I4b3f8425b11768048cdd7ea023167f7c4b190e34
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157186
Tested-by: Jenkins
Reviewed-by: Hossein 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
index cca1b2ec38ae..311c5d3dff2e 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
@@ -2159,7 +2159,7 @@
   
   
 
-  Autofit Text
+  Shrink text on overflow
 
   
   


[Libreoffice-commits] core.git: officecfg/registry

2023-10-02 Thread Samuel Mehrbrodt (via logerrit)
 officecfg/registry/data/org/openoffice/Office/TypeDetection.xcu   |   31 
--
 officecfg/registry/schema/org/openoffice/Office/TypeDetection.xcs |9 ++
 2 files changed, 8 insertions(+), 32 deletions(-)

New commits:
commit 4bce8705cb40f8c75c0a943b1572d3347d7b4fd3
Author: Samuel Mehrbrodt 
AuthorDate: Mon Oct 2 12:54:00 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Mon Oct 2 21:33:05 2023 +0200

Remove unused/deprecated TypeDetection.xcu

Change-Id: I75b8e7b2ab14d46dc4ca966c9995c6f8e69eead1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157487
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/data/org/openoffice/Office/TypeDetection.xcu 
b/officecfg/registry/data/org/openoffice/Office/TypeDetection.xcu
deleted file mode 100644
index 5f009f1d1b7b..
--- a/officecfg/registry/data/org/openoffice/Office/TypeDetection.xcu
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-http://openoffice.org/2001/registry; 
xmlns:xs="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:install="http://openoffice.org/2004/installation; 
oor:name="TypeDetection" oor:package="org.openoffice.Office">
-  
-  
-  
-  
-  
-  
-
diff --git a/officecfg/registry/schema/org/openoffice/Office/TypeDetection.xcs 
b/officecfg/registry/schema/org/openoffice/Office/TypeDetection.xcs
index 46688a2218e4..7fd9dddccf73 100644
--- a/officecfg/registry/schema/org/openoffice/Office/TypeDetection.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/TypeDetection.xcs
@@ -19,7 +19,14 @@
 
 http://openoffice.org/2001/registry; 
xmlns:xs="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; oor:name="TypeDetection" 
oor:package="org.openoffice.Office" xml:lang="en-US">
   
-Contains common content types, filters, deep detection services, as 
well as the frame loader and the content handler for Office.
+
+Deprecated.
+Use the new configuration schema org.openoffice.TypeDetection/ and its 
related sub structures.
+This schema is only kept for compatibility.
+
+Old description:
+Contains common content types, filters, deep detection services, as 
well as the frame loader and the content handler for Office.
+
   
   
 


[Libreoffice-commits] core.git: officecfg/registry

2023-09-20 Thread Seth Chaiklin (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |   10 
+-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 4fdb26f728d72bde645fd7fd1a3601340cec82dd
Author: Seth Chaiklin 
AuthorDate: Mon Sep 18 14:29:31 2023 +0200
Commit: Seth Chaiklin 
CommitDate: Wed Sep 20 23:32:32 2023 +0200

tdf#107447  add hyphen to zero-width, improve keyboard accelerators

Change-Id: Ib9fae582157af992a4d7f76d10bb73939c4c8ab1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156959
Tested-by: Jenkins
Reviewed-by: خالد حسني 
Reviewed-by: Heiko Tietze 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index 92c5c95357e9..d21f7ebd7a07 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -6997,7 +6997,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   Insert Non-br~eaking Hyphen
 
 
-  Non-br~eaking Hyphen
+  Non-breaking ~Hyphen
 
 
   1
@@ -7008,7 +7008,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   Insert S~oft Hyphen
 
 
-  S~oft Hyphen
+  ~Soft Hyphen
 
 
   1
@@ -7038,10 +7038,10 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
-  Insert Zero ~Width Space
+  Insert Zero-~width Space
 
 
-  Zero ~Width Space
+  ~Zero-width Space
 
 
   1
@@ -7052,7 +7052,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   Insert Word ~Joiner
 
 
-  Word ~Joiner
+  ~Word Joiner
 
 
   1


[Libreoffice-commits] core.git: officecfg/registry uitest/math_tests

2023-09-18 Thread Khaled Hosny (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Math.xcu | 1606 +
 uitest/math_tests/tdf147755.py |6 
 2 files changed, 1609 insertions(+), 3 deletions(-)

New commits:
commit 5416c9183384d46f9eb347871541c6ee1e30c28b
Author: Khaled Hosny 
AuthorDate: Mon Sep 18 21:05:05 2023 +0300
Commit: خالد حسني 
CommitDate: Mon Sep 18 23:05:23 2023 +0200

tdf#111705: Add Arabic math symbols to the symbols catalogue

Change-Id: Ieabf4d3173a7ce985a9164db8b2de4c8b6d0da36
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157029
Tested-by: Jenkins
Reviewed-by: خالد حسني 

diff --git a/officecfg/registry/data/org/openoffice/Office/Math.xcu 
b/officecfg/registry/data/org/openoffice/Office/Math.xcu
index 02e5e94acfcb..6a2378a1b065 100644
--- a/officecfg/registry/data/org/openoffice/Office/Math.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Math.xcu
@@ -788,5 +788,1611 @@
 true
   
 
+
+  
+126464
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126465
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126466
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126467
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126469
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126470
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126471
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126472
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126473
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126474
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126475
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126476
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126477
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126478
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126479
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126480
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126481
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126482
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126483
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126484
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126485
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126486
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126487
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126488
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126489
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126490
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126491
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126492
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126493
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126494
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126495
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126497
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126498
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126500
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126503
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126505
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126506
+  
+  
+Arabic
+  
+  
+true
+  
+
+
+  
+126507
+  
+  
+Arabic
+  
+  
+true
+  

[Libreoffice-commits] core.git: officecfg/registry uitest/math_tests

2023-09-17 Thread Khaled Hosny (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Views.xcu |2 +-
 uitest/math_tests/start.py  |6 --
 uitest/math_tests/tdf128610.py  |2 --
 uitest/math_tests/tdf147755.py  |2 --
 4 files changed, 1 insertion(+), 11 deletions(-)

New commits:
commit e472b5b557d2b43b41e488c83db2b188de499610
Author: Khaled Hosny 
AuthorDate: Mon Sep 18 01:23:57 2023 +0300
Commit: خالد حسني 
CommitDate: Mon Sep 18 02:32:39 2023 +0200

starmath: Show editing window by default again

We are not ready to get rid of it (e.g. undo does not work when it is
hidden). This flips the default introduced in:

commit e9cc014be4150a5adc9950f366c9bdfa50420dcf
Author: Khaled Hosny 
Date:   Tue Sep 12 16:41:37 2023 +0300

starmath: Hide editing window by default and add a menu item to show

Change-Id: If84b25d186c8d133a9fa5cfc0c3d91162c66b389
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157004
Tested-by: Jenkins
Reviewed-by: خالد حسني 

diff --git a/officecfg/registry/data/org/openoffice/Office/Views.xcu 
b/officecfg/registry/data/org/openoffice/Office/Views.xcu
index e903532e9c8f..205183a0012c 100644
--- a/officecfg/registry/data/org/openoffice/Office/Views.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Views.xcu
@@ -48,7 +48,7 @@
 
 
   
-false
+true
   
 
 
diff --git a/uitest/math_tests/start.py b/uitest/math_tests/start.py
index 0d085374f6b4..7504387a16f7 100644
--- a/uitest/math_tests/start.py
+++ b/uitest/math_tests/start.py
@@ -19,7 +19,6 @@ class SimpleMathTest(UITestCase):
 def test_math_unoCommand(self):
 with self.ui_test.create_doc_in_start_center("math"):
 
-self.xUITest.executeCommand(".uno:CommandWindow")
 xMathDoc = self.xUITest.getTopFocusWindow()
 
 # tdf#140386
@@ -28,12 +27,10 @@ class SimpleMathTest(UITestCase):
 xEditView = xMathDoc.getChild("editview")
 
 self.assertEqual("backepsilon", 
get_state_as_dict(xEditView)["Text"])
-self.xUITest.executeCommand(".uno:CommandWindow")
 
 def test_math_edit(self):
 with self.ui_test.create_doc_in_start_center("math"):
 
-self.xUITest.executeCommand(".uno:CommandWindow")
 xMathDoc = self.xUITest.getTopFocusWindow()
 
 xEditView = xMathDoc.getChild("editview")
@@ -41,12 +38,10 @@ class SimpleMathTest(UITestCase):
 type_text(xEditView, "E=mc^2")
 
 self.assertEqual("E=mc^2", get_state_as_dict(xEditView)["Text"])
-self.xUITest.executeCommand(".uno:CommandWindow")
 
 def test_complete_math(self):
 with self.ui_test.create_doc_in_start_center("math"):
 
-self.xUITest.executeCommand(".uno:CommandWindow")
 xMathDoc = self.xUITest.getTopFocusWindow()
 
 xList = xMathDoc.getChild("categorylist")
@@ -68,6 +63,5 @@ class SimpleMathTest(UITestCase):
 type_text(xEditView, "2")
 
 self.assertEqual("{ 1 <> 2 }", 
get_state_as_dict(xEditView)["Text"])
-self.xUITest.executeCommand(".uno:CommandWindow")
 
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/uitest/math_tests/tdf128610.py b/uitest/math_tests/tdf128610.py
index efb008f7bb45..29b7d5ac4564 100644
--- a/uitest/math_tests/tdf128610.py
+++ b/uitest/math_tests/tdf128610.py
@@ -20,7 +20,6 @@ class Tdf128610(UITestCase):
 
 with self.ui_test.load_empty_file("math"):
 
-self.xUITest.executeCommand(".uno:CommandWindow")
 self.xUITest.executeCommand('.uno:ImportMathMLClipboard')
 
 xMathDoc = self.xUITest.getTopFocusWindow()
@@ -29,6 +28,5 @@ class Tdf128610(UITestCase):
 # Without the fix in place, this test would have failed with
 # AssertionError: '{ f _ c = frac { 1 } { K _ m } }' != ''
 self.assertEqual("{ f _ c = { frac { 1 } { K _ m } } }", 
get_state_as_dict(xEditView)["Text"])
-self.xUITest.executeCommand(".uno:CommandWindow")
 
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/uitest/math_tests/tdf147755.py b/uitest/math_tests/tdf147755.py
index a53e255092d6..755efbe6b51d 100644
--- a/uitest/math_tests/tdf147755.py
+++ b/uitest/math_tests/tdf147755.py
@@ -22,13 +22,11 @@ class Tdf147755(UITestCase):
 xOk = xDialog.getChild("ok")
 xOk.executeAction("CLICK", tuple())
 
-self.xUITest.executeCommand(".uno:CommandWindow")
 xMathDoc = self.xUITest.getTopFocusWindow()
 xEditView = xMathDoc.getChild("editview")
 
 # Without the fix in place, this test would have failed with
 # AssertionError: '%ALPHA' != ''
 self.assertEqual("%ALPHA", get_state_as_dict(xEditView)["Text"])
-self.xUITest.executeCommand(".uno:CommandWindow")
 
 # vim: set shiftwidth=4 

[Libreoffice-commits] core.git: officecfg/registry starmath/source

2023-09-13 Thread Khaled Hosny (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Math.xcu |  198 -
 starmath/source/cfgitem.cxx|2 
 starmath/source/node.cxx   |5 
 3 files changed, 4 insertions(+), 201 deletions(-)

New commits:
commit 32d2e001bb056e7d98aa143b222f2721967337dc
Author: Khaled Hosny 
AuthorDate: Tue Sep 12 18:35:46 2023 +0300
Commit: خالد حسني 
CommitDate: Wed Sep 13 12:54:40 2023 +0200

tdf#101174: Don’t hard-code OpenSymbol font for predefined special symbols

Leave the format empty and use the variables font instead.

Change-Id: I3e3cdf40dc285dee7375054e85b4a2bed352eb66
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156855
Tested-by: Jenkins
Reviewed-by: خالد حسني 

diff --git a/officecfg/registry/data/org/openoffice/Office/Math.xcu 
b/officecfg/registry/data/org/openoffice/Office/Math.xcu
index 96e6653615d7..02e5e94acfcb 100644
--- a/officecfg/registry/data/org/openoffice/Office/Math.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Math.xcu
@@ -72,9 +72,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -86,9 +83,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -100,9 +94,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -114,9 +105,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -128,9 +116,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -142,9 +127,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -156,9 +138,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -170,9 +149,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -184,9 +160,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -198,9 +171,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -212,9 +182,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -226,9 +193,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -240,9 +204,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -254,9 +215,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -268,9 +226,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -282,9 +237,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -296,9 +248,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -310,9 +259,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -324,9 +270,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -338,9 +281,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -352,9 +292,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -366,9 +303,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -380,9 +314,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -394,9 +325,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -408,9 +336,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -422,9 +347,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -436,9 +358,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -450,9 +369,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -464,9 +380,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -478,9 +391,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -492,9 +402,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -506,9 +413,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -520,9 +424,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -534,9 +435,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -548,9 +446,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -562,9 +457,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -576,9 +468,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -590,9 +479,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -604,9 +490,6 @@
   
 true
   
-  
-Id2
-  
 
 
   
@@ -618,9 +501,6 @@
   
 true
   
-  
-Id2

[Libreoffice-commits] core.git: officecfg/registry starmath/sdi starmath/source starmath/uiconfig uitest/math_tests

2023-09-13 Thread Khaled Hosny (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/MathCommands.xcu |5 +++
 officecfg/registry/data/org/openoffice/Office/Views.xcu   |6 +++
 starmath/sdi/smslots.sdi  |4 +-
 starmath/source/view.cxx  |   16 
++
 starmath/uiconfig/smath/menubar/menubar.xml   |1 
 uitest/math_tests/start.py|6 +++
 uitest/math_tests/tdf128610.py|2 +
 uitest/math_tests/tdf147755.py|2 +
 8 files changed, 40 insertions(+), 2 deletions(-)

New commits:
commit e9cc014be4150a5adc9950f366c9bdfa50420dcf
Author: Khaled Hosny 
AuthorDate: Tue Sep 12 16:41:37 2023 +0300
Commit: خالد حسني 
CommitDate: Wed Sep 13 12:54:14 2023 +0200

starmath: Hide editing window by default and add a menu item to show

We are enabling inline editing bu default, so this window is of no
interest by default.

Change-Id: I66fe988790fe4f174f6cb4f691af69888b0b05b5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156852
Tested-by: Jenkins
Reviewed-by: خالد حسني 

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/MathCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/MathCommands.xcu
index edf6b520fb9f..b8bade9b3e4f 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/MathCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/MathCommands.xcu
@@ -128,6 +128,11 @@
   1
 
   
+  
+
+  Command Window
+
+  
   
 
   Elements
diff --git a/officecfg/registry/data/org/openoffice/Office/Views.xcu 
b/officecfg/registry/data/org/openoffice/Office/Views.xcu
index d6c0fbfade10..e903532e9c8f 100644
--- a/officecfg/registry/data/org/openoffice/Office/Views.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Views.xcu
@@ -45,6 +45,12 @@
 true
   
 
+
+
+  
+false
+  
+
 
   
 true
diff --git a/starmath/sdi/smslots.sdi b/starmath/sdi/smslots.sdi
index 3f998e8b182b..64586466cea1 100644
--- a/starmath/sdi/smslots.sdi
+++ b/starmath/sdi/smslots.sdi
@@ -265,8 +265,8 @@ interface FormulaView
 //idlpp no menu entry, so no texts
 SID_CMDBOXWINDOW //idlpp ole : no , status : no
 [
-ExecMethod = NoExec ;
-StateMethod = NoState ;
+ExecMethod = Execute ;
+StateMethod = GetState ;
 ]
 SID_ELEMENTSDOCKINGWINDOW
 [
diff --git a/starmath/source/view.cxx b/starmath/source/view.cxx
index c9a6303ba0e1..eb7074c2d811 100644
--- a/starmath/source/view.cxx
+++ b/starmath/source/view.cxx
@@ -2039,6 +2039,13 @@ void SmViewShell::Execute(SfxRequest& rReq)
 }
 break;
 
+case SID_CMDBOXWINDOW:
+{
+GetViewFrame().ToggleChildWindow(SID_CMDBOXWINDOW);
+GetViewFrame().GetBindings().Invalidate(SID_CMDBOXWINDOW);
+}
+break;
+
 case SID_UNICODE_NOTATION_TOGGLE:
 {
 EditEngine* pEditEngine = nullptr;
@@ -2202,6 +2209,15 @@ void SmViewShell::GetState(SfxItemSet )
 rSet.Put(SfxBoolItem(SID_ELEMENTSDOCKINGWINDOW, bState));
 }
 break;
+case SID_CMDBOXWINDOW:
+{
+bool bState = false;
+auto pCmdWin = GetViewFrame().GetChildWindow(SID_CMDBOXWINDOW);
+if (pCmdWin)
+bState = pCmdWin->IsVisible();
+rSet.Put(SfxBoolItem(SID_CMDBOXWINDOW, bState));
+}
+break;
 case SID_ATTR_PARA_LEFT_TO_RIGHT:
 rSet.Put(SfxBoolItem(nWh, !GetDoc()->GetFormat().IsRightToLeft()));
 break;
diff --git a/starmath/uiconfig/smath/menubar/menubar.xml 
b/starmath/uiconfig/smath/menubar/menubar.xml
index b9ed1026283a..c3b7865f6449 100644
--- a/starmath/uiconfig/smath/menubar/menubar.xml
+++ b/starmath/uiconfig/smath/menubar/menubar.xml
@@ -87,6 +87,7 @@
   
   
   
+  
   
   
   
diff --git a/uitest/math_tests/start.py b/uitest/math_tests/start.py
index 7504387a16f7..0d085374f6b4 100644
--- a/uitest/math_tests/start.py
+++ b/uitest/math_tests/start.py
@@ -19,6 +19,7 @@ class SimpleMathTest(UITestCase):
 def test_math_unoCommand(self):
 with self.ui_test.create_doc_in_start_center("math"):
 
+self.xUITest.executeCommand(".uno:CommandWindow")
 xMathDoc = self.xUITest.getTopFocusWindow()
 
 # tdf#140386
@@ -27,10 +28,12 @@ class SimpleMathTest(UITestCase):
 xEditView = xMathDoc.getChild("editview")
 
 self.assertEqual("backepsilon", 
get_state_as_dict(xEditView)["Text"])
+self.xUITest.executeCommand(".uno:CommandWindow")
 
 def test_math_edit(self):
 with self.ui_test.create_doc_in_start_center("math"):
 

[Libreoffice-commits] core.git: officecfg/registry sw/uiconfig

2023-09-06 Thread Seth Chaiklin (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs |2 +-
 sw/uiconfig/swriter/ui/optcompatpage.ui   |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 645852b418b759e6576848385b782db6031b9ebc
Author: Seth Chaiklin 
AuthorDate: Wed Aug 30 11:36:28 2023 +0200
Commit: Seth Chaiklin 
CommitDate: Wed Sep 6 11:02:42 2023 +0200

tdf#141676  make command label more precise

"Add paragraph and table spacing at tops of pages" ->
  "Add paragraph and table spacing at top of first page and page breaks"

Change-Id: I05f53dde0c4782cc1adf1809a9a24f6f5a94b405
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156220
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs
index fc0919ae2a3a..1508aeb1d7a6 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs
@@ -46,7 +46,7 @@
   
   
 
-  Add paragraph and table spacing at tops of pages
+  Add paragraph and table spacing at top of first page and page 
breaks
 
 true
   
diff --git a/sw/uiconfig/swriter/ui/optcompatpage.ui 
b/sw/uiconfig/swriter/ui/optcompatpage.ui
index 47765ddcd395..bed96ec03c1f 100644
--- a/sw/uiconfig/swriter/ui/optcompatpage.ui
+++ b/sw/uiconfig/swriter/ui/optcompatpage.ui
@@ -223,7 +223,7 @@
 True
 
   Add 
spacing between paragraphs and tables
-  Add 
paragraph and table spacing at tops of pages
+  Add 
paragraph and table spacing at top of first page and page breaks
   Use 
OpenOffice.org 1.1 tabstop formatting
   Do 
not add leading (extra space) between lines of text
   Use 
OpenOffice.org 1.1 line spacing


[Libreoffice-commits] core.git: officecfg/registry

2023-08-24 Thread Andrea Gelmini (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Calc.xcs |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7fe77a2d4d580817fa83d5d22bf53683ee38c9ce
Author: Andrea Gelmini 
AuthorDate: Thu Aug 24 10:21:38 2023 +0200
Commit: Julien Nabet 
CommitDate: Thu Aug 24 22:14:34 2023 +0200

Fix typo

Change-Id: I97450e0259bca2188547bcc71328e27544edbc10
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156036
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
index a41de7a36b8a..545808a05232 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
@@ -1863,7 +1863,7 @@
   
   
 
-  Insert link for the cell, instead of text fields in a 
cell.(Excel iteropability options)
+  Insert link for the cell, instead of text fields in a 
cell.(Excel interopability options)
   Links like Excel
 
 false


[Libreoffice-commits] core.git: officecfg/registry

2023-08-18 Thread Caolán McNamara (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu  |6 
++
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |5 
+
 2 files changed, 11 insertions(+)

New commits:
commit 1d361ad42a687bd6730d251d060ce867cc0b882b
Author: Caolán McNamara 
AuthorDate: Fri Aug 18 09:35:28 2023 +0100
Commit: Caolán McNamara 
CommitDate: Fri Aug 18 22:57:55 2023 +0200

Related: tdf#151059 assign Alt+7 to new manage changes deck

and move a11y one to 8 to match visual order

Change-Id: Ifb4e08f6214da1cdd75bd3b5aa43ac9143e70376
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155832
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index 647b46927e5f..ed3f30f8f08f 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -6023,6 +6023,12 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   
 
 
+  
+I10N SHORTCUTS - NO 
TRANSLATE
+.uno:SidebarDeck.SwManageChangesDeck
+  
+
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:SidebarDeck.A11yCheckDeck
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index b3e8ce0e2e94..c0d820c0e43b 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -4204,6 +4204,11 @@
   Open the Style Inspector Deck
 
   
+  
+
+  Open the Manage Changes Deck
+
+  
   
 
   Open the Accessibility Check Deck


[Libreoffice-commits] core.git: officecfg/registry

2023-08-18 Thread Caolán McNamara (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |   26 
+-
 1 file changed, 13 insertions(+), 13 deletions(-)

New commits:
commit 3614953bf1f4ada22247d04a772d1e3e1d361cef
Author: Caolán McNamara 
AuthorDate: Fri Aug 18 13:27:46 2023 +0100
Commit: Caolán McNamara 
CommitDate: Fri Aug 18 18:17:36 2023 +0200

tdf#151059 don't use Ctrl+Alt+3 etc by default for gallery

because on some keyboard layouts ctrl+alt is basically
equivalent to altgr and removes the possibility to enter
specific letters.

use Alt+3 etc because that 1-9 sequence seems free and
unproblematic vs other combinations.

If that doesn't work out then maybe we don't need one per sidebar entry
and just have a single entry to jump to the sidebar toolbar and a follow
up of press of 1-9 to activate a specific deck.

Change-Id: I676d03c7e1c7bcb3b6c08e6d30aa23cf61838b38
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155831
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index a26b90b298d6..647b46927e5f 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -344,25 +344,25 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
   .uno:CommandPopup
 
   
-  
+  
 
   I10N SHORTCUTS - NO 
TRANSLATE
   .uno:SidebarDeck.PropertyDeck
 
   
-  
+  
 
   I10N SHORTCUTS - NO 
TRANSLATE
   .uno:SidebarDeck.StyleListDeck
 
   
-  
+  
 
   I10N SHORTCUTS - NO 
TRANSLATE
   .uno:SidebarDeck.GalleryDeck
 
   
-  
+  
 
   I10N SHORTCUTS - NO 
TRANSLATE
   .uno:SidebarDeck.NavigatorDeck
@@ -605,7 +605,7 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 
   
   
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:SidebarDeck.ScFunctionsDeck
@@ -1629,7 +1629,7 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 
   
   
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:SidebarDeck.ShapesDeck
@@ -2908,25 +2908,25 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for 
some emoji thing
 
   
   
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:SidebarDeck.ShapesDeck
   
 
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:SidebarDeck.SdSlideTransitionDeck
   
 
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:SidebarDeck.SdCustomAnimationDeck
   
 
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:SidebarDeck.SdMasterPagesDeck
@@ -6010,19 +6010,19 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for 
some emoji thing
 .uno:Grow
   
 
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:SidebarDeck.WriterPageDeck
   
 
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:SidebarDeck.InspectorDeck
   
 
-
+
   
 I10N SHORTCUTS - NO 
TRANSLATE
 .uno:SidebarDeck.A11yCheckDeck


[Libreoffice-commits] core.git: officecfg/registry

2023-08-08 Thread Khaled Hosny (via logerrit)
 officecfg/registry/data/org/openoffice/VCL.xcu |   24 
 1 file changed, 12 insertions(+), 12 deletions(-)

New commits:
commit 1e13ee5273848306cc6000d90e9f48593ea39bd8
Author: Khaled Hosny 
AuthorDate: Tue Aug 8 13:09:46 2023 +
Commit: خالد حسني 
CommitDate: Tue Aug 8 18:19:21 2023 +0200

Revert "UI Workaround for tdf#146653: change localized Source Han 
{Sans,Serif}

 CN..."

This reverts commit 22c7ce6c8e7d5b7f8b37ad6c519c2b8ca4853724.

Not needed any more as we now get the style from FontConfig, since:

commit 0b5e88bc88df6f0cd47e84cbd8bc53b649678f8b
Author: Khaled Hosny 
Date:   Thu Aug 3 13:44:43 2023 +

tdf#114192: Speed up populating font list when FontConfig is used

Change-Id: If6a51ffe681896a7ffda1a06da02585e8141c81e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155458
Tested-by: Jenkins
Reviewed-by: خالد حسني 

diff --git a/officecfg/registry/data/org/openoffice/VCL.xcu 
b/officecfg/registry/data/org/openoffice/VCL.xcu
index c9063d713b53..2d472da4d2e5 100644
--- a/officecfg/registry/data/org/openoffice/VCL.xcu
+++ b/officecfg/registry/data/org/openoffice/VCL.xcu
@@ -261,19 +261,19 @@
 思源黑体 HW;Source Han Sans HW SC;Noto Sans Mono CJK 
SC;新宋体;NSimSun;Liberation Mono;Menlo;Courier New;Monospaced
   
   
-思源黑体 Normal;Source Han Sans SC;思源黑体 CN Normal;Source Han Sans 
CN;Noto Sans SC;Noto Sans CJK SC;微软雅黑;Microsoft Yahei;新宋体;NSimSun;萍方-简;PingFang 
SC;华文细黑;STXihei;Arial Unicode MS;Tahoma
+思源黑体;Source Han Sans SC;思源黑体 CN;Source Han Sans CN;Noto Sans 
SC;Noto Sans CJK SC;微软雅黑;Microsoft Yahei;新宋体;NSimSun;萍方-简;PingFang 
SC;华文细黑;STXihei;Arial Unicode MS;Tahoma
   
   
-思源黑体 Normal;Source Han Sans SC;思源黑体 CN Normal;Source Han Sans 
CN;Noto Sans SC;Noto Sans CJK SC;微软雅黑;Microsoft Yahei;新宋体;NSimSun;萍方-简;PingFang 
SC;华文细黑;STXihei;Arial Unicode MS;Tahoma
+思源黑体;Source Han Sans SC;思源黑体 CN;Source Han Sans CN;Noto Sans 
SC;Noto Sans CJK SC;微软雅黑;Microsoft Yahei;新宋体;NSimSun;萍方-简;PingFang 
SC;华文细黑;STXihei;Arial Unicode MS;Tahoma
   
   
-思源黑体 Normal;Source Han Sans SC;思源黑体 CN Normal;Source Han Sans 
CN;Noto Sans SC;Noto Sans CJK SC;微软雅黑;Microsoft Yahei;新宋体;NSimSun;萍方-简;PingFang 
SC;华文细黑;STXihei;Arial Unicode MS;Tahoma
+思源黑体;Source Han Sans SC;思源黑体 CN;Source Han Sans CN;Noto Sans 
SC;Noto Sans CJK SC;微软雅黑;Microsoft Yahei;新宋体;NSimSun;萍方-简;PingFang 
SC;华文细黑;STXihei;Arial Unicode MS;Tahoma
   
   
-思源黑体 Normal;Source Han Sans SC;思源黑体 CN Normal;Source Han Sans 
CN;Noto Sans SC;Noto Sans CJK SC;微软雅黑;Microsoft Yahei;新宋体;NSimSun;萍方-简;PingFang 
SC;华文细黑;STXihei;Arial Unicode MS;Tahoma
+思源黑体;Source Han Sans SC;思源黑体 CN;Source Han Sans CN;Noto Sans 
SC;Noto Sans CJK SC;微软雅黑;Microsoft Yahei;新宋体;NSimSun;萍方-简;PingFang 
SC;华文细黑;STXihei;Arial Unicode MS;Tahoma
   
   
-思源宋体 Medium;Source Han Serif SC;思源宋体 CN Medium;Source Han Serif 
CN;Noto Serif SC;Noto Serif CJK SC;新宋体;NSimSun;宋体;SimSun;华文宋体;Songti 
SC;STSong;Arial Unicode MS;Tahoma
+思源宋体;Source Han Serif SC;思源宋体 CN;Source Han Serif CN;Noto Serif 
SC;Noto Serif CJK SC;新宋体;NSimSun;宋体;SimSun;华文宋体;Songti SC;STSong;Arial Unicode 
MS;Tahoma
   
   
 思源黑体 HW;Source Han Sans HW SC;Noto Sans Mono CJK 
SC;新宋体;NSimSun;Liberation Mono;Menlo;Courier New;Monospaced
@@ -282,7 +282,7 @@
 思源黑体 HW;Source Han Sans HW SC;Noto Sans Mono CJK 
SC;新宋体;NSimSun;Liberation Mono;Menlo;Courier New;Monospaced
   
   
-思源黑体 Normal;Source Han Sans SC;思源黑体 CN Normal;Source Han Sans 
CN;Noto Sans SC;Noto Sans CJK SC;微软雅黑;Microsoft 
Yahei;新宋体;NSimSun;宋体;SimSun;萍方-简;PingFang SC;华文细黑;STXihei;Segoe UI;Tahoma;San 
Francisco;Lucida Grande;Sans Serif
+思源黑体;Source Han Sans SC;思源黑体 CN;Source Han Sans CN;Noto Sans 
SC;Noto Sans CJK SC;微软雅黑;Microsoft Yahei;新宋体;NSimSun;宋体;SimSun;萍方-简;PingFang 
SC;华文细黑;STXihei;Segoe UI;Tahoma;San Francisco;Lucida Grande;Sans Serif
   
 
 
@@ -377,19 +377,19 @@
 思源黑体 HW;Source Han Sans HW SC;思源黑体 CN;Source Han Sans CN;Noto 
Sans Mono CJK SC;新宋体;NSimSun;Liberation Mono;Menlo;Courier 
New;Monospaced
   
   
-思源黑体 Normal;Source Han Sans SC;思源黑体 CN Normal;Source Han Sans 
CN;Noto Sans SC;Noto Sans CJK SC;微软雅黑;Microsoft Yahei;新宋体;NSimSun;萍方-简;PingFang 
SC;华文细黑;STXihei;Arial Unicode MS;Tahoma
+思源黑体;Source Han Sans SC;思源黑体 CN;Source Han Sans CN;Noto Sans 
SC;Noto Sans CJK SC;微软雅黑;Microsoft Yahei;新宋体;NSimSun;萍方-简;PingFang 
SC;华文细黑;STXihei;Arial Unicode MS;Tahoma
   
   
-思源黑体 Normal;Source Han Sans SC;思源黑体 CN Normal;Source Han Sans 
CN;Noto Sans SC;Noto Sans CJK SC;微软雅黑;Microsoft Yahei;新宋体;NSimSun;萍方-简;PingFang 
SC;华文细黑;STXihei;Arial Unicode MS;Tahoma
+思源黑体;Source Han Sans SC;思源黑体 CN;Source Han Sans CN;Noto Sans 
SC;Noto Sans CJK SC;微软雅黑;Microsoft Yahei;新宋体;NSimSun;萍方-简;PingFang 
SC;华文细黑;STXihei;Arial Unicode MS;Tahoma
   
   
-   

[Libreoffice-commits] core.git: officecfg/registry

2023-07-29 Thread Justin Luth (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0e17d8ddccdee7d4f46b256153853e1cab87c99e
Author: Justin Luth 
AuthorDate: Sat Jul 29 20:02:29 2023 -0400
Commit: Justin Luth 
CommitDate: Sun Jul 30 03:39:19 2023 +0200

partial Revert "tdf#152463 Turn on AutoSave by default"

This reverts 7.6 commit 5cb7fed2a5a02ff1cb4551752a0bd8d3001a1f22,
because this setting is not used in 24.2, and was reverted
for 7.6 as well. So no point in changing a deprecated setting.

In 24.2, the officecfg was corrected to point to the traditional
Recovery::AutoSave::TimeIntervall (which as broken in 7.3,
but had always been a bit of a mess.)

This original setting already has AutoSave enabled by default,
so this patch is NOT turning off AutoSave for 24.2.

Change-Id: I392d5a1511792ec0a42add11a37de8f7e0181631
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155057
Tested-by: Justin Luth 
Reviewed-by: Justin Luth 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index b0b98d5f8cd4..496ca94fc0d1 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -2044,7 +2044,7 @@
   
 Not used anymore
   
-  true
+  false
 
 
   


[Libreoffice-commits] core.git: officecfg/registry

2023-07-26 Thread Khaled Hosny (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |   24 
++
 1 file changed, 24 insertions(+)

New commits:
commit 82e263550b81267611f90aecd1aeef163d47ed8a
Author: Khaled Hosny 
AuthorDate: Wed Jul 26 14:14:11 2023 +0300
Commit: خالد حسني 
CommitDate: Wed Jul 26 16:21:18 2023 +0200

Add short ContextLabel for special character commands

Restore the “Insert” in full labels, and add short ContextLabel without
it.

Followup to:

commit a9180786cf39c12b9000c7372e7c30cd2ee8501e
Author: Khaled Hosny 
Date:   Tue Jul 25 12:11:48 2023 +0300

tdf#107447: Align special character names with Unicode names

Change-Id: Iea8c45cbe8acb4497b515ecbf7fe0d46803d18bf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154939
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index 4cdd7005b301..92c5c95357e9 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -6994,6 +6994,9 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
+  Insert Non-br~eaking Hyphen
+
+
   Non-br~eaking Hyphen
 
 
@@ -7002,6 +7005,9 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
+  Insert S~oft Hyphen
+
+
   S~oft Hyphen
 
 
@@ -7010,6 +7016,9 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
+  Insert ~No-break Space
+
+
   ~No-break Space
 
 
@@ -7018,6 +7027,9 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
+  Insert N~arrow No-break Space
+
+
   N~arrow No-break Space
 
 
@@ -7026,6 +7038,9 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
+  Insert Zero ~Width Space
+
+
   Zero ~Width Space
 
 
@@ -7034,6 +7049,9 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
+  Insert Word ~Joiner
+
+
   Word ~Joiner
 
 
@@ -7042,6 +7060,9 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
+  Insert ~Left-to-Right Mark
+
+
   ~Left-to-Right Mark
 
 
@@ -7050,6 +7071,9 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
+  Insert ~Right-to-Left Mark
+
+
   ~Right-to-Left Mark
 
 


[Libreoffice-commits] core.git: officecfg/registry

2023-07-25 Thread Mike Kaganski (via logerrit)
 officecfg/registry/cppheader.xsl |  216 +++
 1 file changed, 110 insertions(+), 106 deletions(-)

New commits:
commit 10f91e94c2880c10c546eef094630f5b5699f2b0
Author: Mike Kaganski 
AuthorDate: Wed Jul 19 20:29:21 2023 +0200
Commit: Mike Kaganski 
CommitDate: Tue Jul 25 21:33:27 2023 +0200

Do not emit C++ officecfg struct from deprecated property

This would prevent mistakes like what was fixed in commit
514cc22875a90c8faa3d946ad47ebb68bd710ac7.

Change-Id: Icc67d485461e23d25f2003303a243c830d48b8c5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154623
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/officecfg/registry/cppheader.xsl b/officecfg/registry/cppheader.xsl
index 78e3bb05a10e..9fc13f39113e 100644
--- a/officecfg/registry/cppheader.xsl
+++ b/officecfg/registry/cppheader.xsl
@@ -122,7 +122,7 @@
 
   
 
-
+
   
   struct 
   
@@ -157,115 +157,119 @@
 
   
 
-
-struct 
-
-: public comphelper::ConfigurationSet 
-
- {
-static OUString path() { static constexpr OUStringLiteral 
PATH(u"
-
-/
-
-"); return PATH; }
-private:
-
-
-(); // not defined
-~
-
-(); // not defined
-};
-
+
+  
+  struct 
+  
+  : public comphelper::ConfigurationSet 
+  
+   {
+  static OUString path() { static constexpr OUStringLiteral 
PATH(u"
+  
+  /
+  
+  "); return PATH; }
+  private:
+  
+  
+  (); // not defined
+  ~
+  
+  (); // not defined
+  };
+  
+
   
 
   
 
-
-struct 
-
-: public comphelper::
-
-  
-ConfigurationLocalizedProperty
-  
-  
-ConfigurationProperty
-  
-
-
-
-, 
-
-  std::optional
-
-
-  
-com::sun::star::uno::Any
-  
-  
-bool
-  
-  
-sal_Int16
-  
-  
-sal_Int32
-  
-  
-sal_Int64
-  
-  
-double
-  
-  
-OUString
-  
-  
-com::sun::star::uno::Sequencesal_Int8 
-  
-  
-com::sun::star::uno::Sequencebool 
-  
-  
-com::sun::star::uno::Sequencesal_Int16 
-  
-  
-com::sun::star::uno::Sequencesal_Int32 
-  
-  
-com::sun::star::uno::Sequencesal_Int64 
-  
-  
-com::sun::star::uno::Sequencedouble 
-  
-  
-com::sun::star::uno::SequenceOUString 
-  
-  
-com::sun::star::uno::Sequencecom::sun::star::uno::Sequencesal_Int8  
-  
-
-
-   
+
+  
+  struct 
+  
+  : public comphelper::
+  
+
+  ConfigurationLocalizedProperty
+
+
+  ConfigurationProperty
+
+  
+  
+  
+  , 
+  
+std::optional
+  
+  
+
+  com::sun::star::uno::Any
+
+
+  bool
+
+
+  sal_Int16
+
+
+  sal_Int32
+
+
+  sal_Int64
+
+
+  double
+
+
+  OUString
+
+
+  com::sun::star::uno::Sequencesal_Int8 
+
+
+  com::sun::star::uno::Sequencebool 
+
+
+  com::sun::star::uno::Sequencesal_Int16 
+
+
+  com::sun::star::uno::Sequencesal_Int32 
+
+
+  com::sun::star::uno::Sequencesal_Int64 
+
+
+  com::sun::star::uno::Sequencedouble 
+
+
+  com::sun::star::uno::SequenceOUString 
+
+
+  com::sun::star::uno::Sequencecom::sun::star::uno::Sequencesal_Int8  
+
+  
+  
+ 
+  
+   {
+  static OUString path() { static constexpr OUStringLiteral 
PATH(u"
+  
+  /
+  
+  "); return PATH; }
+  private:
+  
+  
+  (); // not defined
+  ~
+  
+  (); // not defined
+  };
+  
 
- {
-static OUString path() { static constexpr OUStringLiteral 
PATH(u"
-
-/
-
-"); return PATH; }
-private:
-
-
-(); // not defined
-~
-
-(); // not defined
-};
-
   
 


[Libreoffice-commits] core.git: officecfg/registry

2023-07-25 Thread Khaled Hosny (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |   14 
+-
 1 file changed, 7 insertions(+), 7 deletions(-)

New commits:
commit a9180786cf39c12b9000c7372e7c30cd2ee8501e
Author: Khaled Hosny 
AuthorDate: Tue Jul 25 12:11:48 2023 +0300
Commit: خالد حسني 
CommitDate: Tue Jul 25 18:24:10 2023 +0200

tdf#107447: Align special character names with Unicode names

Unicode names are recognizable more prevalent, no need to invent our own
names.

* Non-breaking Space → No-break Space (aligns also with Narrow No-break 
Space)
* No-width Optional Break → Zero Width Space
* Remove redundant “Insert”

Change-Id: I005c3fefd24045eb4b5c2054d82638b3f2d5f59f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154886
Tested-by: Jenkins
Reviewed-by: خالد حسني 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index b840300c29d9..4cdd7005b301 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -6994,7 +6994,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
-  Insert Non-br~eaking Hyphen
+  Non-br~eaking Hyphen
 
 
   1
@@ -7002,7 +7002,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
-  Insert S~oft Hyphen
+  S~oft Hyphen
 
 
   1
@@ -7010,7 +7010,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
-  Insert ~Non-breaking Space
+  ~No-break Space
 
 
   1
@@ -7018,7 +7018,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
-  Insert N~arrow No-break Space
+  N~arrow No-break Space
 
 
   1
@@ -7026,7 +7026,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
-  No-~width Optional Break
+  Zero ~Width Space
 
 
   1
@@ -7042,7 +7042,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
-  ~Left-to-right Mark
+  ~Left-to-Right Mark
 
 
   1
@@ -7050,7 +7050,7 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   
   
 
-  ~Right-to-left Mark
+  ~Right-to-Left Mark
 
 
   1


[Libreoffice-commits] core.git: officecfg/registry

2023-07-25 Thread Heiko Tietze (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Writer.xcs |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 56ce1aa9239637a10f747c00ba93e96bb2e613ab
Author: Heiko Tietze 
AuthorDate: Mon Jul 24 17:33:55 2023 +0200
Commit: Heiko Tietze 
CommitDate: Tue Jul 25 14:51:14 2023 +0200

Resolves tdf#58434 - No field shading for soft hyphen and non-breaking 
spaces

Change-Id: I27123b013aa8fc876ddb06e1dd96f4ac50d6ebbc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154847
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
index 0f684bb2eea9..5ac39808f1d0 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
@@ -1144,7 +1144,7 @@
 Specifies whether optional hyphens are shown on the 
screen.
 Optional hyphens
   
-  true
+  false
 
 
   
@@ -1160,7 +1160,7 @@
 Specifies whether protected spaces are shown on the 
screen.
 Protected Spaces
   
-  true
+  false
 
 
   


[Libreoffice-commits] core.git: officecfg/registry

2023-07-24 Thread Stéphane Guillou (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a407562a293d2cc5c7755951948a4e1e168d92bf
Author: Stéphane Guillou 
AuthorDate: Fri Jul 14 11:27:07 2023 +0200
Commit: Ilmari Lauhakangas 
CommitDate: Mon Jul 24 08:14:59 2023 +0200

tdf#156262: use default ToC accelerator to avoid duplicate

Change-Id: Ib995ce2921e1055fddf7ac965947c423c452eef4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154438
Tested-by: Jenkins
Tested-by: Ilmari Lauhakangas 
Reviewed-by: Ilmari Lauhakangas 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index c8ce337c609a..b3e8ce0e2e94 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -152,7 +152,7 @@
   Insert Table of Contents, Index or 
Bibliography
 
 
-  Table of Contents, ~Index or 
Bibliography...
+  Table of Contents, Index or 
Bibliography...
 
 
   1


[Libreoffice-commits] core.git: officecfg/registry sc/source

2023-07-18 Thread Heiko Tietze (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Calc.xcs |7 +++
 sc/source/ui/view/cellsh4.cxx|   12 
 2 files changed, 15 insertions(+), 4 deletions(-)

New commits:
commit 4adc868328e958a4a9cead3731bd3468497c97c8
Author: Heiko Tietze 
AuthorDate: Mon Jul 17 16:03:41 2023 +0200
Commit: Heiko Tietze 
CommitDate: Tue Jul 18 15:05:34 2023 +0200

Resolves tdf#112876 - Make use of scroll lock configurable

Change-Id: I8e2f238e59601fcc1d92fc0593c3d20e75396cc5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154528
Reviewed-by: Mike Kaganski 
Tested-by: Jenkins

diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
index d861f56e81d7..eff7ac7aa80a 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
@@ -690,6 +690,13 @@
 
 true
   
+  
+
+  Toggles the scroll lock behavior allowing to disable it for 
special keyboards
+  Toggles the scroll lock behavior allowing to disable it for 
special keyboards
+
+true
+  
   
 
   Specifies the functions last used.
diff --git a/sc/source/ui/view/cellsh4.cxx b/sc/source/ui/view/cellsh4.cxx
index 13d6993634dd..e44dbe599dba 100644
--- a/sc/source/ui/view/cellsh4.cxx
+++ b/sc/source/ui/view/cellsh4.cxx
@@ -27,6 +27,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 void ScCellShell::ExecuteCursor( SfxRequest& rReq )
@@ -121,10 +122,13 @@ void ScCellShell::ExecuteCursor( SfxRequest& rReq )
 // If ScrollLock key is active, cell cursor stays on the current cell while
 // scrolling the grid.
 bool bScrollLock = false;
-KeyIndicatorState eState = pFrameWin->GetIndicatorState();
-if (eState & KeyIndicatorState::SCROLLLOCK)
-bScrollLock = true;
-
+// tdf#112876 - allow to disable for special keyboards
+if (officecfg::Office::Calc::Input::UseScrollLock::get())
+{
+KeyIndicatorState eState = pFrameWin->GetIndicatorState();
+if (eState & KeyIndicatorState::SCROLLLOCK)
+bScrollLock = true;
+}
 //OS: once for all should do, however!
 pTabViewShell->ExecuteInputDirect();
 switch ( nSlotId )


[Libreoffice-commits] core.git: officecfg/registry

2023-06-30 Thread Justin Luth (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |3 ---
 1 file changed, 3 deletions(-)

New commits:
commit cc836756d35df4ab8f54a24bd495dd1b8e1c6be9
Author: Justin Luth 
AuthorDate: Thu Jun 29 18:02:57 2023 -0400
Commit: Justin Luth 
CommitDate: Fri Jun 30 15:20:41 2023 +0200

tdf#118335 remove "Close Preview" PopupLabel from uno:PrintPreview

The PopupLabel cannot be depended on to only be used
when PrintPreview is already running.
Specifically, in the notebookbar menus,
it always said "Close Preview" even when
the preview was not yet toggled on.

Instead, use uno:ClosePreview in contexts
that only show up when the preview is running.
This has already been done in LO codebase.

Change-Id: I3c743da895f9ac4febc18329f251d283c0cec1cf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153779
Tested-by: Jenkins
Reviewed-by: Maxim Monastirsky 
Reviewed-by: Justin Luth 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index a4fd28f8978d..b840300c29d9 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -5880,9 +5880,6 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
 
   Toggle Print Preview
 
-
-  Close Preview
-
 
   9
 


[Libreoffice-commits] core.git: officecfg/registry

2023-06-29 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Calc.xcs |   24 ---
 1 file changed, 24 deletions(-)

New commits:
commit 29d91a668c86a61bc406f34bcb36d8dc9d9bc6b6
Author: Gabor Kelemen 
AuthorDate: Fri May 12 22:57:21 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu Jun 29 18:58:20 2023 +0200

[API CHANGE] Drop deprecated FormulaSyntax property

It was marked as deprecated when added in 2010
commit 81571e00b1b423929459ffdb34fd519e7f3d0961
could not find whether it was used ever since

Change-Id: I2c14c923f07d97d1df0604b95b3c65b350248029
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152403
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
index d282ca681fa0..d861f56e81d7 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
@@ -1347,30 +1347,6 @@
   
   true
 
-
-  
-  
-  
-Specifies what formula syntax type to use.
-  
-  
-
-  
-Calc A1
-  
-
-
-  
-Excel A1
-  
-
-
-  
-Excel R1C1
-  
-
-  
-
 
   
 Specifies the date that is represented by the number 
0.


[Libreoffice-commits] core.git: officecfg/registry

2023-06-29 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/LDAP.xcs |5 -
 1 file changed, 5 deletions(-)

New commits:
commit 95e5001d934fb2e27173087c64443b160bf0593f
Author: Gabor Kelemen 
AuthorDate: Fri May 12 22:55:07 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu Jun 29 14:28:26 2023 +0200

[API CHANGE] Drop obsolete Mapping config key

Obsoleted in 2010 by
commit c79b576a3dbbbce2a67c6215a4180ac060131790

Change-Id: Iaca64f7560d485338d9de9be19e09d69a83c0d8d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152402
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/LDAP.xcs 
b/officecfg/registry/schema/org/openoffice/LDAP.xcs
index 18db511ab297..18304a1d1f50 100644
--- a/officecfg/registry/schema/org/openoffice/LDAP.xcs
+++ b/officecfg/registry/schema/org/openoffice/LDAP.xcs
@@ -69,11 +69,6 @@
   Name of User entity unique attribute in LDAP repository
 
   
-  
-
-  Obsolete and unused
-
-  
   
 
   Specifies the LDAP related settings


[Libreoffice-commits] core.git: officecfg/registry

2023-06-28 Thread Andrea Gelmini (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0b3518c50c138bd4c4d02c9c2316eb638bdf9460
Author: Andrea Gelmini 
AuthorDate: Mon Jun 26 14:50:46 2023 +0200
Commit: Julien Nabet 
CommitDate: Wed Jun 28 21:44:58 2023 +0200

Fix typo

Change-Id: I21b6a4ae3cac15891a6b50bf975658ac404aefa5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153613
Reviewed-by: Stephan Bergmann 
Tested-by: Jenkins

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index e94a2ce4c9ac..528cd5aa7014 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -610,7 +610,7 @@
   
 
   specifies whether the controls should use dynamic border
-  coloring, if possible. Dymamic border coloring means that when the
+  coloring, if possible. Dynamic border coloring means that when the
   mouse is hovered over a control, and when a control receives the
   focus, this is indicated with special border colors.
 


[Libreoffice-commits] core.git: officecfg/registry sc/uiconfig sc/UIConfig_scalc.mk

2023-06-22 Thread Justin Luth (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu |   14 +
 sc/UIConfig_scalc.mk|1 
 sc/uiconfig/scalc/menubar/menubar.xml   |9 ---
 sc/uiconfig/scalc/popupmenu/printranges.xml |   15 ++
 sc/uiconfig/scalc/ui/notebookbar.ui |   25 
--
 sc/uiconfig/scalc/ui/notebookbar_compact.ui |   25 
--
 sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui  |   25 
--
 sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui |   25 
--
 8 files changed, 39 insertions(+), 100 deletions(-)

New commits:
commit 1310ce65f18c0b03051c6f23e40b8b39b8053fec
Author: Justin Luth 
AuthorDate: Wed Jun 21 11:40:03 2023 -0400
Commit: Caolán McNamara 
CommitDate: Thu Jun 22 18:34:24 2023 +0200

tdf#147056 sc: convert xml menu to popupmenu .uno:PrintRangesMenu

The labelling in the notebookbar left much to be desired
when adding the print ranges separately in the "context menus".

Making this into a proper submenu fixes the problem.

Thanks to Maxim for reviewing and for the commit template:
commit 0e7cd653ea90da388820220bf6a3eb140b57bbd6
Author: Maxim Monastirsky on Mon Jan 25 01:09:03 2016 +0200
tdf#86567 Dropdown for conditional formatting

Change-Id: If92836ee29d322f5a2fca1e27d2e034e5cc995e5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153402
Tested-by: Justin Luth 
Reviewed-by: Justin Luth 
Reviewed-by: Caolán McNamara 

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
index de6221954ab0..b0e17643905d 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/Controller.xcu
@@ -523,6 +523,20 @@
   showtrackedchanges
 
   
+  
+
+  .uno:PrintRangesMenu
+
+
+  
+
+
+  com.sun.star.comp.framework.ResourceMenuController
+
+
+  printranges
+
+  
   
 
   .uno:WindowList
diff --git a/sc/UIConfig_scalc.mk b/sc/UIConfig_scalc.mk
index 214a300a04d9..637a1ac2eca6 100644
--- a/sc/UIConfig_scalc.mk
+++ b/sc/UIConfig_scalc.mk
@@ -34,6 +34,7 @@ $(eval $(call gb_UIConfig_add_popupmenufiles,modules/scalc,\
sc/uiconfig/scalc/popupmenu/pagebreak \
sc/uiconfig/scalc/popupmenu/pivot \
sc/uiconfig/scalc/popupmenu/preview \
+   sc/uiconfig/scalc/popupmenu/printranges \
sc/uiconfig/scalc/popupmenu/rowheader \
sc/uiconfig/scalc/popupmenu/row_operations \
sc/uiconfig/scalc/popupmenu/sheettab \
diff --git a/sc/uiconfig/scalc/menubar/menubar.xml 
b/sc/uiconfig/scalc/menubar/menubar.xml
index 413e2e5ce11c..cbb352c7ac6a 100644
--- a/sc/uiconfig/scalc/menubar/menubar.xml
+++ b/sc/uiconfig/scalc/menubar/menubar.xml
@@ -409,14 +409,7 @@
   
   
   
-  
-
-  
-  
-  
-  
-
-  
+  
   
   
   
diff --git a/sc/uiconfig/scalc/popupmenu/printranges.xml 
b/sc/uiconfig/scalc/popupmenu/printranges.xml
new file mode 100644
index ..7bd89fdef765
--- /dev/null
+++ b/sc/uiconfig/scalc/popupmenu/printranges.xml
@@ -0,0 +1,15 @@
+
+
+http://openoffice.org/2001/menu;>
+  
+  
+  
+  
+
diff --git a/sc/uiconfig/scalc/ui/notebookbar.ui 
b/sc/uiconfig/scalc/ui/notebookbar.ui
index 0adc829feab4..5f9ea5dff8cc 100644
--- a/sc/uiconfig/scalc/ui/notebookbar.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar.ui
@@ -1380,31 +1380,10 @@
   
 
 
-  
+  
 True
 False
-.uno:DefinePrintArea
-  
-
-
-  
-True
-False
-.uno:AddPrintArea
-  
-
-
-  
-True
-False
-.uno:EditPrintArea
-  
-
-
-  
-True
-False
-.uno:DeletePrintArea
+.uno:PrintRangesMenu
   
 
 
diff --git a/sc/uiconfig/scalc/ui/notebookbar_compact.ui 
b/sc/uiconfig/scalc/ui/notebookbar_compact.ui
index 8991949ac917..5da5b2f23216 100644
--- a/sc/uiconfig/scalc/ui/notebookbar_compact.ui
+++ b/sc/uiconfig/scalc/ui/notebookbar_compact.ui
@@ -1542,31 +1542,10 @@
   
 
 
-  
+  
 True
 False
-.uno:DefinePrintArea
-  
-
-
-  
-True
-False
-.uno:AddPrintArea
-  
-
-
-  
-True
-False
-.uno:EditPrintArea
-  
-
-
-  
-True
-False
-.uno:DeletePrintArea
+.uno:PrintRangesMenu
   
 
 
diff --git a/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui 
b/sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui
index dc0bb54cdc2f..94f115231801 100644

[Libreoffice-commits] core.git: officecfg/registry

2023-06-15 Thread Julien Nabet (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |   14 
++
 1 file changed, 14 insertions(+)

New commits:
commit 11ac3528f46443cb1f790d0e9ac710cea27fc3a0
Author: Julien Nabet 
AuthorDate: Thu Jun 15 18:26:36 2023 +0200
Commit: Julien Nabet 
CommitDate: Thu Jun 15 20:52:55 2023 +0200

Related tdf#148263: on Writer, no need to repeat "Delete" for columns

To reproduce the regression, just do this:
- launch Writer
- create a by default 2x2 table
- select a cell
- right click and take a look at sub-entries of Delete entry

Change-Id: I05bf4824e0786f1b4ea73b24389d38858e01818e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153122
Tested-by: Julien Nabet 
Reviewed-by: Julien Nabet 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index a93b1c50960b..726643e1c7e6 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -1828,6 +1828,20 @@
   1
 
   
+  
+
+  Delete Columns
+
+
+  ~Columns
+
+
+  Delete selected columns
+
+
+  1
+
+  
   
 
   Delete Table


[Libreoffice-commits] core.git: officecfg/registry sw/uiconfig

2023-06-10 Thread Justin Luth (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |3 +++
 sw/uiconfig/sglobal/popupmenu/text.xml  |1 +
 sw/uiconfig/sweb/popupmenu/text.xml |1 +
 sw/uiconfig/swform/popupmenu/text.xml   |1 +
 sw/uiconfig/swreport/popupmenu/text.xml |1 +
 sw/uiconfig/swriter/popupmenu/text.xml  |1 +
 sw/uiconfig/swxform/popupmenu/text.xml  |1 +
 7 files changed, 9 insertions(+)

New commits:
commit ce5f7ab57253a39fa52a64566aeae394ce79e241
Author: Justin Luth 
AuthorDate: Sat Jun 10 12:00:54 2023 -0400
Commit: Justin Luth 
CommitDate: Sat Jun 10 20:42:42 2023 +0200

sw content controls: add 'properties' to right-click context menu

Getting to the properties of a content control is buried pretty
deep in the menu. Make it quickly available via a right-click,
just like what is possible for fields.

Change-Id: I6f094590dcfcad81dc623754bf9daf036e41aa3b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152837
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index 7458ed89d8e2..a93b1c50960b 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -535,6 +535,9 @@
 
   Properties
 
+
+  Content Control Properties
+
 
   1
 
diff --git a/sw/uiconfig/sglobal/popupmenu/text.xml 
b/sw/uiconfig/sglobal/popupmenu/text.xml
index f89bd0fa2cce..7170b7db12aa 100644
--- a/sw/uiconfig/sglobal/popupmenu/text.xml
+++ b/sw/uiconfig/sglobal/popupmenu/text.xml
@@ -23,6 +23,7 @@
   
   
   
+  
   
   
   
diff --git a/sw/uiconfig/sweb/popupmenu/text.xml 
b/sw/uiconfig/sweb/popupmenu/text.xml
index f89bd0fa2cce..7170b7db12aa 100644
--- a/sw/uiconfig/sweb/popupmenu/text.xml
+++ b/sw/uiconfig/sweb/popupmenu/text.xml
@@ -23,6 +23,7 @@
   
   
   
+  
   
   
   
diff --git a/sw/uiconfig/swform/popupmenu/text.xml 
b/sw/uiconfig/swform/popupmenu/text.xml
index f89bd0fa2cce..7170b7db12aa 100644
--- a/sw/uiconfig/swform/popupmenu/text.xml
+++ b/sw/uiconfig/swform/popupmenu/text.xml
@@ -23,6 +23,7 @@
   
   
   
+  
   
   
   
diff --git a/sw/uiconfig/swreport/popupmenu/text.xml 
b/sw/uiconfig/swreport/popupmenu/text.xml
index d8957268af14..4b31d6d34f7d 100644
--- a/sw/uiconfig/swreport/popupmenu/text.xml
+++ b/sw/uiconfig/swreport/popupmenu/text.xml
@@ -28,6 +28,7 @@
   
   
   
+  
   
   
   
diff --git a/sw/uiconfig/swriter/popupmenu/text.xml 
b/sw/uiconfig/swriter/popupmenu/text.xml
index 8a01aa97ca6d..75ccb4e6db14 100644
--- a/sw/uiconfig/swriter/popupmenu/text.xml
+++ b/sw/uiconfig/swriter/popupmenu/text.xml
@@ -24,6 +24,7 @@
   
   
   
+  
   
   
   
diff --git a/sw/uiconfig/swxform/popupmenu/text.xml 
b/sw/uiconfig/swxform/popupmenu/text.xml
index f1fd0850def2..199f69eac465 100644
--- a/sw/uiconfig/swxform/popupmenu/text.xml
+++ b/sw/uiconfig/swxform/popupmenu/text.xml
@@ -23,6 +23,7 @@
   
   
   
+  
   
   
   


[Libreoffice-commits] core.git: officecfg/registry vcl/source

2023-06-05 Thread خالد حسني (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |8 
 vcl/source/font/fontmetric.cxx |8 
 2 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 6014fd047a62e1a002cc27334e39e1d2e54e342f
Author: خالد حسني 
AuthorDate: Mon Jun 5 15:11:18 2023 +0200
Commit: خالد حسني 
CommitDate: Mon Jun 5 16:54:37 2023 +0200

Revert "tdf#155676: Use colon in FontsUseWinMetrics config key"

This reverts commit a38e1537cd06367783a43cc8d3b0e8d674b6e142.

Change-Id: Ic72f1acb7e38209e9b87a8fe80a39acb1eeacfe4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152547
Tested-by: Jenkins
Reviewed-by: خالد حسني 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 2eb90331ad33..f47edadcae0f 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -5126,12 +5126,12 @@
 
 
   
-  Celticmd:1571:-567:1571:-547:2126:559
+  Celticmd,1571,-567,1571,-547,2126,559
   
-  DIN Light:1509:-503:1509:-483:1997:483
+  DIN Light,1509,-503,1509,-483,1997,483
   
- B Nazanin:1343:-705:1990:-1045:1990:1045 
- B Nazanin:1341:-707:2126:-1120:2126:1120 
+ B Nazanin,1343,-705,1990,-1045,1990,1045 
+ B Nazanin,1341,-707,2126,-1120,2126,1120 
 
   
   
diff --git a/vcl/source/font/fontmetric.cxx b/vcl/source/font/fontmetric.cxx
index f9740704ca96..8a998c6815c6 100644
--- a/vcl/source/font/fontmetric.cxx
+++ b/vcl/source/font/fontmetric.cxx
@@ -400,10 +400,10 @@ bool ImplFontMetricData::ShouldUseWinMetrics(int nAscent, 
int nDescent, int nTyp
 return false;
 
 OUString aFontIdentifier(
-GetFamilyName() + ":"
-+ OUString::number(nAscent) + ":" + OUString::number(nDescent) + ":"
-+ OUString::number(nTypoAscent) + ":" + OUString::number(nTypoDescent) 
+ ":"
-+ OUString::number(nWinAscent) + ":" + OUString::number(nWinDescent));
+GetFamilyName() + ","
++ OUString::number(nAscent) + "," + OUString::number(nDescent) + ","
++ OUString::number(nTypoAscent) + "," + OUString::number(nTypoDescent) 
+ ","
++ OUString::number(nWinAscent) + "," + OUString::number(nWinDescent));
 
 css::uno::Sequence rWinMetricFontList(
 officecfg::Office::Common::Misc::FontsUseWinMetrics::get());


[Libreoffice-commits] core.git: officecfg/registry vcl/source

2023-06-05 Thread Khaled Hosny (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |8 
 vcl/source/font/fontmetric.cxx |8 
 2 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit a38e1537cd06367783a43cc8d3b0e8d674b6e142
Author: Khaled Hosny 
AuthorDate: Mon Jun 5 07:47:47 2023 +0300
Commit: خالد حسني 
CommitDate: Mon Jun 5 08:42:28 2023 +0200

tdf#155676: Use colon in FontsUseWinMetrics config key

The use of comma breaks editing in Expert Configuration dialog, so users
effectively can’t use this.

After editing

Celticmd,1571,-567,1571,-547,2126,559

becomes


Celticmd1571-5671571-5472126559

Using colon instead of comma seems to fix this.

Change-Id: I4bba26fe9d94a33e62a0d34c3324daae0845c30b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152597
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 
Reviewed-by: خالد حسني 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index f47edadcae0f..2eb90331ad33 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -5126,12 +5126,12 @@
 
 
   
-  Celticmd,1571,-567,1571,-547,2126,559
+  Celticmd:1571:-567:1571:-547:2126:559
   
-  DIN Light,1509,-503,1509,-483,1997,483
+  DIN Light:1509:-503:1509:-483:1997:483
   
- B Nazanin,1343,-705,1990,-1045,1990,1045 
- B Nazanin,1341,-707,2126,-1120,2126,1120 
+ B Nazanin:1343:-705:1990:-1045:1990:1045 
+ B Nazanin:1341:-707:2126:-1120:2126:1120 
 
   
   
diff --git a/vcl/source/font/fontmetric.cxx b/vcl/source/font/fontmetric.cxx
index 8a998c6815c6..f9740704ca96 100644
--- a/vcl/source/font/fontmetric.cxx
+++ b/vcl/source/font/fontmetric.cxx
@@ -400,10 +400,10 @@ bool ImplFontMetricData::ShouldUseWinMetrics(int nAscent, 
int nDescent, int nTyp
 return false;
 
 OUString aFontIdentifier(
-GetFamilyName() + ","
-+ OUString::number(nAscent) + "," + OUString::number(nDescent) + ","
-+ OUString::number(nTypoAscent) + "," + OUString::number(nTypoDescent) 
+ ","
-+ OUString::number(nWinAscent) + "," + OUString::number(nWinDescent));
+GetFamilyName() + ":"
++ OUString::number(nAscent) + ":" + OUString::number(nDescent) + ":"
++ OUString::number(nTypoAscent) + ":" + OUString::number(nTypoDescent) 
+ ":"
++ OUString::number(nWinAscent) + ":" + OUString::number(nWinDescent));
 
 css::uno::Sequence rWinMetricFontList(
 officecfg::Office::Common::Misc::FontsUseWinMetrics::get());


[Libreoffice-commits] core.git: officecfg/registry

2023-06-04 Thread Khaled Hosny (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 1263873edf86ce223ee54ecd93297273ac3b0e9f
Author: Khaled Hosny 
AuthorDate: Sun Jun 4 23:28:59 2023 +0300
Commit: خالد حسني 
CommitDate: Mon Jun 5 06:37:58 2023 +0200

tdf#155297: Use usWinAscent and usWinDescent for B Nazanin font

Its hhea.ascender and hhea.descender metrics are too small, but it does
not have USE_TYPO_METRICS bit set. Since usWinAscent/usWinDescent are
equal to sTypoAscender/sTypoDescender, we can use the former.

Change-Id: I638fa81483365f8c44278ee13ad57cd8cf8d8769
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152595
Tested-by: Jenkins
Reviewed-by: خالد حسني 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 2b6aabf31c3e..f47edadcae0f 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -5129,6 +5129,9 @@
   Celticmd,1571,-567,1571,-547,2126,559
   
   DIN Light,1509,-503,1509,-483,1997,483
+  
+ B Nazanin,1343,-705,1990,-1045,1990,1045 
+ B Nazanin,1341,-707,2126,-1120,2126,1120 
 
   
   


[Libreoffice-commits] core.git: officecfg/registry sc/inc sc/source sc/uiconfig uitest/libreoffice

2023-05-26 Thread Laurent Balland (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Calc.xcs |   14 +
 sc/inc/stringutil.hxx|   11 ++-
 sc/source/core/data/column3.cxx  |2 
 sc/source/core/tool/stringutil.cxx   |7 +-
 sc/source/ui/dbgui/asciiopt.cxx  |   14 -
 sc/source/ui/dbgui/scuiasciiopt.cxx  |   42 ---
 sc/source/ui/docshell/impex.cxx  |8 +-
 sc/source/ui/inc/asciiopt.hxx|3 +
 sc/source/ui/inc/scuiasciiopt.hxx|1 
 sc/uiconfig/scalc/ui/textimportcsv.ui|   21 +++
 uitest/libreoffice/calc/csv_dialog.py|   15 +
 11 files changed, 120 insertions(+), 18 deletions(-)

New commits:
commit 2b3b4026a5c6a1b92c0b29b94dd62a4c3c7b9fad
Author: Laurent Balland 
AuthorDate: Sat May 20 16:47:16 2023 +0200
Commit: Eike Rathke 
CommitDate: Fri May 26 23:57:16 2023 +0200

tdf#154131 Add Detect scientific number option

Add a sub case of Detect special numbers for import CSV (SC_IMPORTFILE),
paste unformated text (SC_PASTETEXT) and text to columns
(SC_TEXTTOCOLUMNS). Following cases are treated:
- If "Detect special numbers" is true, then "Detect scientific numbers"
  must be true and all special formats are treated (date, time,
scientific notation) in addition to basic decimal numbers.
- If "Detect special numbers" is false and "Detect scientific numbers" is
  true only scientific notation is treated in addition to basic decimal
numbers.
- If "Detect special numbers" and "Detect scientific numbers" are both
  false only basic decimal numbers are recognized as numbers. It is the
new case treated by this change
The new option bDetectScientificNumber is append to ASCII options

Change-Id: I73dff9f75d2c7b07ce155daa29dcc4ca9f288664
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152072
Tested-by: Jenkins
Reviewed-by: Eike Rathke 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
index 7a18fb3381d2..d282ca681fa0 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
@@ -1032,6 +1032,13 @@
   
   false
 
+
+  
+If true, Calc tries to detect numbers in scientific 
notation.
+DetectScientificNumbers
+  
+  true
+
 
   
 Language to use for CSV import.  This determines how the 
numbers are parsed.
@@ -1121,6 +1128,13 @@
   
   true
 
+
+  
+If true, Calc tries to detect numbers in scientific 
notation.
+DetectScientificNumbers
+  
+  true
+
 
   
 If true, Calc preserves previous content of cells when 
pasting empty ones. If false, Calc delete content of previous cells.
diff --git a/sc/inc/stringutil.hxx b/sc/inc/stringutil.hxx
index b2b58f60fc5a..3d930dd359df 100644
--- a/sc/inc/stringutil.hxx
+++ b/sc/inc/stringutil.hxx
@@ -70,11 +70,14 @@ struct SAL_WARN_UNUSED SC_DLLPUBLIC ScSetStringParam
 SvNumberFormatter* mpNumFormatter;
 
 /**
- * When true, we try to detect special number format (dates etc) from the
- * input string, when false, we only try to detect a basic decimal number
- * format.
+ * Specify which number formats are detected:
+ * mbDetectNumberFormat=true && mbDetectScientificNumberFormat=true : 
detect all special number formats : basic decimal number, date, scientific 
notation, etc
+ * mbDetectNumberFormat=false && mbDetectScientificNumberFormat=true : 
detect scientific notation and basic decimal number, but not other special 
number formats (date etc)
+ * mbDetectNumberFormat=false && mbDetectScientificNumberFormat=false : 
detect only basic decimal number, but not scientific notation or other special 
number formats (date etc)
+ * Note: mbDetectNumberFormat=true && mbDetectScientificNumberFormat=false 
not allowed
  */
 bool mbDetectNumberFormat;
+bool mbDetectScientificNumberFormat;
 
 /**
  * Determine when to set the 'Text' number format to the cell where the
@@ -145,7 +148,7 @@ public:
  * @return true if the string is a valid number, false otherwise.
  */
 static bool parseSimpleNumber(
-const OUString& rStr, sal_Unicode dsep, sal_Unicode gsep, sal_Unicode 
dsepa, double& rVal);
+const OUString& rStr, sal_Unicode dsep, sal_Unicode gsep, sal_Unicode 
dsepa, double& rVal, bool bDetectScientificNumber = true);
 
 static bool parseSimpleNumber(
 const char* p, size_t n, char dsep, char gsep, double& rVal);
diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx

[Libreoffice-commits] core.git: officecfg/registry sd/inc sd/source sd/uiconfig

2023-05-24 Thread Baole Fang (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu |
2 -
 sd/inc/strings.hrc   |
8 -
 sd/source/ui/dlg/sdpreslt.cxx|   
16 +-
 sd/source/ui/inc/sdpreslt.hxx|
1 
 sd/source/ui/slidesorter/controller/SlsSlotManager.cxx   |   
16 +++---
 sd/uiconfig/sdraw/popupmenu/page.xml |
2 -
 sd/uiconfig/sdraw/popupmenu/pagepanemaster.xml   |
2 -
 sd/uiconfig/sdraw/ui/notebookbar.ui  |
4 +-
 sd/uiconfig/sdraw/ui/notebookbar_compact.ui  |
4 +-
 sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui   |
2 -
 10 files changed, 43 insertions(+), 14 deletions(-)

New commits:
commit 0a90b90048313fb43f8c5d7461f58dafec276600
Author: Baole Fang 
AuthorDate: Sun May 7 22:35:34 2023 -0400
Commit: Heiko Tietze 
CommitDate: Wed May 24 09:22:48 2023 +0200

tdf#148088: Fix master related UI in Draw

Page/Master Page... -> Page/Change Master Page... (corresponds to Impress)
In the above dialog:
Available Master Slides -> Available Master Pages
Select a Slide Design -> Select a Page Design
After clickling load:
Load Master Slide -> Load Master Page
In Master mode, right click/Rename Master:
Rename Master Slide -> Rename Master Page

Change-Id: I6a8e987d6f3eaf91289ec061ec87cd76b3f90ca2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151489
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 
Reviewed-by: Heiko Tietze 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
index 716d496161e6..cca1b2ec38ae 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
@@ -1103,7 +1103,7 @@
   
   
 
-  Master Page...
+  Change Master Page...
 
 
   .uno:PresentationLayout
diff --git a/sd/inc/strings.hrc b/sd/inc/strings.hrc
index bf5372b2ad33..3e1ddd1542e7 100644
--- a/sd/inc/strings.hrc
+++ b/sd/inc/strings.hrc
@@ -159,7 +159,12 @@
 
 // Strings for animation effects
 #define STR_INSERT_TEXT NC_("STR_INSERT_TEXT", 
"Insert Text")
+#define STR_AVAILABLE_MASTERSLIDE   
NC_("STR_AVAILABLE_MASTERSLIDE", "Available Master Slides")
+#define STR_AVAILABLE_MASTERPAGE
NC_("STR_AVAILABLE_MASTERPAGE", "Available Master Pages")
+#define STR_SELECT_SLIDE
NC_("STR_SELECT_SLIDE", "Select a Slide Design")
+#define STR_SELECT_PAGE NC_("STR_SELECT_PAGE", 
"Select a Page Design")
 #define STR_LOAD_PRESENTATION_LAYOUT
NC_("STR_LOAD_PRESENTATION_LAYOUT", "Load Master Slide")
+#define STR_LOAD_DRAWING_LAYOUT 
NC_("STR_LOAD_DRAWING_LAYOUT", "Load Master Page")
 #define STR_GLUE_ESCDIR_SMART   
NC_("STR_GLUE_ESCDIR_SMART", "Smart")
 #define STR_GLUE_ESCDIR_LEFT
NC_("STR_GLUE_ESCDIR_LEFT", "Left")
 #define STR_GLUE_ESCDIR_RIGHT   
NC_("STR_GLUE_ESCDIR_RIGHT", "Right")
@@ -238,7 +243,8 @@
 #define STR_TITLE_RENAMEPAGE
NC_("STR_TITLE_RENAMEPAGE", "Rename Page")
 #define STR_TOOLTIP_RENAME  
NC_("STR_TOOLTIP_RENAME", "Duplicate or empty names are not possible")
 #define STR_DESC_RENAMESLIDE
NC_("STR_DESC_RENAMESLIDE", "Name")
-#define STR_TITLE_RENAMEMASTER  
NC_("STR_TITLE_RENAMEMASTER", "Rename Master Slide")
+#define STR_TITLE_RENAMEMASTERSLIDE 
NC_("STR_TITLE_RENAMEMASTERSLIDE", "Rename Master Slide")
+#define STR_TITLE_RENAMEMASTERPAGE  
NC_("STR_TITLE_RENAMEMASTERPAGE", "Rename Master Page")
 #define STR_PLACEHOLDER_DESCRIPTION_TITLE   
NC_("STR_PLACEHOLDER_DESCRIPTION_TITLE", "Title Area for AutoLayouts" )
 #define STR_PLACEHOLDER_DESCRIPTION_OUTLINE 
NC_("STR_PLACEHOLDER_DESCRIPTION_OUTLINE", "Object Area for AutoLayouts" )
 #define STR_PLACEHOLDER_DESCRIPTION_FOOTER  
NC_("STR_PLACEHOLDER_DESCRIPTION_FOOTER", "Footer Area" )
diff --git a/sd/source/ui/dlg/sdpreslt.cxx b/sd/source/ui/dlg/sdpreslt.cxx
index dd54611e28d9..d0d0839bbb41 100644
--- a/sd/source/ui/dlg/sdpreslt.cxx
+++ b/sd/source/ui/dlg/sdpreslt.cxx
@@ -47,7 +47,18 @@ SdPresLayoutDlg::SdPresLayoutDlg(::sd::DrawDocShell* 
pDocShell,
 , m_xBtnLoad(m_xBuilder->weld_button("load"))
 , m_xVS(new ValueSet(m_xBuilder->weld_scrolled_window("selectwin", true)))
 , 

[Libreoffice-commits] core.git: officecfg/registry

2023-05-23 Thread Julien Nabet (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu|
8 +
 officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu |
8 +
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |   
14 --
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu  |   
14 ++
 4 files changed, 30 insertions(+), 14 deletions(-)

New commits:
commit 980b5f2676c3a57022893c244617a61594c5f696
Author: Julien Nabet 
AuthorDate: Tue May 23 19:27:01 2023 +0200
Commit: Julien Nabet 
CommitDate: Tue May 23 20:12:28 2023 +0200

Revert "Related tdf#114286: put duplicates commands in GenericCommands..."

This reverts commit 52a695d2ceb4231a9fcc419959e29023ecef037b.

Reason: cause of tdf#155442
Accelerator to delete row(s) conflicts with the one for adding row(s)

Change-Id: If19d67a080e85d2a2716e4004db3335f0619c73f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152169
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
index c5fc5aa8a68f..89e66c5be42e 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
@@ -1173,6 +1173,14 @@
   Data ~Validation...
 
   
+  
+
+  Delete Rows
+
+
+  1
+
+  
   
 
   Insert
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
index a266ccb304f8..716d496161e6 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
@@ -2049,6 +2049,14 @@
   1
 
   
+  
+
+  Delete Row
+
+
+  1
+
+  
   
 
   Delete Table
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index f593d1aa31b3..a4fd28f8978d 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -7090,20 +7090,6 @@ bit 3 (0x8): #define 
UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8
   1
 
   
-  
-
-  Delete Rows
-
-
-  Delete ~Rows
-
-
-  Delete selected rows
-
-
-  1
-
-  
   
 
   Manage Language
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index 27c029f254a1..b5f215d7d9e5 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -1811,6 +1811,20 @@
   1
 
   
+  
+
+  Delete Rows
+
+
+  ~Rows
+
+
+  Delete selected rows
+
+
+  1
+
+  
   
 
   Delete Table


[Libreoffice-commits] core.git: officecfg/registry

2023-05-22 Thread Seth Chaiklin (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |6 
++
 1 file changed, 6 insertions(+)

New commits:
commit 343fbe76d5122aed28c3ec6e72ff8629a4f95f1d
Author: Seth Chaiklin 
AuthorDate: Wed May 3 16:29:55 2023 +0200
Commit: Seth Chaiklin 
CommitDate: Mon May 22 22:54:47 2023 +0200

tdf#155065  change label for "Page Number" -> "Page Number Field"

Change-Id: I80b646857311e9fa910f3384e49ea965a1a7fb7d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151284
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index 617901255c4b..27c029f254a1 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -1080,8 +1080,14 @@
   
   
 
+  ~Page Number Field
+
+
   ~Page Number
 
+
+  Insert Page Number
+
 
   1
 


[Libreoffice-commits] core.git: officecfg/registry

2023-05-15 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |7 ---
 1 file changed, 7 deletions(-)

New commits:
commit d948d183930ef9c5d062717c4d7f95f9453c50f6
Author: Gabor Kelemen 
AuthorDate: Wed Apr 26 14:26:10 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Mon May 15 22:12:41 2023 +0200

[API CHANGE] Drop unused config key EmojiFont

Its use was removed in 2022 by
commit 5f1eb2a12b6e6ee646b5e9536822531ad0bd3259

Change-Id: Ifc7e3f645422a478571aaa9dcbcd9ebe9a811b23
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151061
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 1958e6a2e687..8f9115d3bac3 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -5129,13 +5129,6 @@
   be open at the same time. NIL will be interpreted as infinite!
 
   
-  
-
-
-  Special font for rendering of emojis
-
-Segoe UI Emoji,Apple Color Emoji,Noto Color Emoji
-  
   
 
   


[Libreoffice-commits] core.git: officecfg/registry

2023-05-15 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   43 -
 1 file changed, 43 deletions(-)

New commits:
commit d5c033e4393395e8c7ef18115f00bdd835ba0bfb
Author: Gabor Kelemen 
AuthorDate: Tue Apr 25 13:55:29 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Mon May 15 22:12:19 2023 +0200

[API CHANGE] Drop obsolete group PersonasEntry and set PersonasList

Its use was removed in 2020 by
commit e1e9e2aa16f08a8fd9e38db706d63e8eceeda8d1

Change-Id: I1271c3a1d0dc9c1b294f9d93753196609a85a245
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150988
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index d6a005ec977c..1958e6a2e687 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -632,44 +632,6 @@
 true
   
 
-
-  
-Stores the details of the installed personas.
-  
-  
-
-  Unique pretty id of the persona, also part of its url
-
-  
-  
-
-  The Persona's name
-
-  
-  
-
-  Name of the preview file for the Persona to show in the 
UI
-
-  
-  
-
-  Name of the header file for the Persona
-
-
-  
-  
-
-  Name of the footer file for the Persona
-
-
-  
-  
-
-  Value of the text color for the Persona
-
-
-  
-
 
   
 Stores the last selected directory for the filepicker for 
different contexts.
@@ -5557,11 +5519,6 @@
   List of names of the CMIS servers in the place edition 
dialog.
 
   
-  
-
-  Contains the Personas installed through extensions
-
-  
   
 
   Number of saved searches in the Find and Replace dialog.


[Libreoffice-commits] core.git: officecfg/registry sw/inc sw/qa sw/sdi sw/source sw/uiconfig

2023-05-15 Thread TokieSan (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |8 ++
 sw/inc/cmdid.h  |1 
 sw/qa/uibase/shells/shells.cxx  |   29 
++
 sw/sdi/_textsh.sdi  |6 ++
 sw/sdi/swriter.sdi  |   18 
++
 sw/source/uibase/shells/textfld.cxx |   20 
++
 sw/uiconfig/swriter/menubar/menubar.xml |1 
 sw/uiconfig/swriter/popupmenu/table.xml |1 
 sw/uiconfig/swriter/popupmenu/text.xml  |1 
 9 files changed, 85 insertions(+)

New commits:
commit 627a601d1fcea0b3198654756d351b0b81600b49
Author: TokieSan 
AuthorDate: Sat Apr 15 19:05:12 2023 +0200
Commit: Miklos Vajna 
CommitDate: Mon May 15 08:56:46 2023 +0200

tdf#148979 Added option to update selected field

Added Uno command UpdateSelectedField, FN_UPDATE_SEL_FIELD
to support updating a single selected field

Change-Id: Ia1a2387e137f8a672a24056b13234d4275a77ca4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150450
Tested-by: Jenkins
Reviewed-by: Miklos Vajna 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index 8e9715c24acd..617901255c4b 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -1636,6 +1636,14 @@
   1
 
   
+  
+
+  Update Selected Field
+
+
+  1
+
+  
   
 
   E~xternal Links...
diff --git a/sw/inc/cmdid.h b/sw/inc/cmdid.h
index 5459c63b8ff1..d330f36966bd 100644
--- a/sw/inc/cmdid.h
+++ b/sw/inc/cmdid.h
@@ -78,6 +78,7 @@ class SwUINumRuleItem;
 #define FN_EDIT_LINK_DLG(FN_EDIT + 9 )/* Edit link dialog */
 
 #define FN_NUMBER_BULLETS   (FN_EDIT + 21)/* Bullets */
+#define FN_UPDATE_SEL_FIELD (FN_EDIT + 22 )   /* Update selected field */
 #define FN_EDIT_IDX_ENTRY_DLG   (FN_EDIT + 23)/* Edit Index-Entry */
 #define FN_UPDATE_FIELDS(FN_EDIT + 26)/* Update fields */
 #define FN_EXECUTE_MACROFIELD   (FN_EDIT + 27)/* Execute macrofield */
diff --git a/sw/qa/uibase/shells/shells.cxx b/sw/qa/uibase/shells/shells.cxx
index 8c251cb09f87..c962f4a5d65e 100644
--- a/sw/qa/uibase/shells/shells.cxx
+++ b/sw/qa/uibase/shells/shells.cxx
@@ -28,6 +28,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -1049,6 +1050,34 @@ CPPUNIT_TEST_FIXTURE(SwUibaseShellsTest, 
testInsertTextFormFieldEndnote)
 CPPUNIT_ASSERT_EQUAL(OUString("result"), aActual);
 }
 
+CPPUNIT_TEST_FIXTURE(SwUibaseShellsTest, testUpdateSelectedField)
+{
+// Given an empty doc:
+createSwDoc();
+SwDoc* pDoc = getSwDoc();
+SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell();
+SwPaM* pCursor = pDoc->GetEditShell()->GetCursor();
+
+// Insert a time field and select it:
+dispatchCommand(mxComponent, ".uno:InsertTimeField", {});
+
+pCursor->SetMark();
+pCursor->Move(fnMoveBackward);
+
+OUString aTimeFieldBefore, aTimeFieldAfter;
+pWrtShell->GetSelectedText(aTimeFieldBefore);
+
+// Wait for one second:
+osl::Thread::wait(std::chrono::seconds(1));
+
+// Update the field at cursor:
+dispatchCommand(mxComponent, ".uno:UpdateSelectedField", {});
+pWrtShell->GetSelectedText(aTimeFieldAfter);
+
+// Check that the selected field has changed:
+CPPUNIT_ASSERT(aTimeFieldAfter != aTimeFieldBefore);
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/sdi/_textsh.sdi b/sw/sdi/_textsh.sdi
index 45f6eb7c9bdb..086a7622b137 100644
--- a/sw/sdi/_textsh.sdi
+++ b/sw/sdi/_textsh.sdi
@@ -1010,6 +1010,12 @@ interface BaseText
 StateMethod = StateField ;
 DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
 ]
+FN_UPDATE_SEL_FIELD
+[
+ExecMethod = ExecField ;
+StateMethod = StateField ;
+DisableFlags="SfxDisableFlags::SwOnProtectedCursor";
+]
 FN_GLOSSARY_DLG // status()
 [
 ExecMethod = ExecGlossary ;
diff --git a/sw/sdi/swriter.sdi b/sw/sdi/swriter.sdi
index 15d098cc996c..b765d861e34a 100644
--- a/sw/sdi/swriter.sdi
+++ b/sw/sdi/swriter.sdi
@@ -1246,6 +1246,24 @@ SfxVoidItem FieldDialog FN_EDIT_FIELD
 GroupId = SfxGroupId::Edit;
 ]
 
+SfxVoidItem UpdateSelectedField FN_UPDATE_SEL_FIELD
+()
+[
+AutoUpdate = FALSE,
+FastCall = FALSE,
+ReadOnlyDoc = FALSE,
+Toggle = FALSE,
+Container = FALSE,
+RecordAbsolute = FALSE,
+RecordPerSet;
+Asynchron;
+
+AccelConfig = TRUE,
+MenuConfig = TRUE,
+ToolBoxConfig = TRUE,
+GroupId = 

[Libreoffice-commits] core.git: officecfg/registry

2023-05-11 Thread Maxim Monastirsky (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |6 
+++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 47fc6a5805592dc4e6b5339def60e2b0727a30eb
Author: Maxim Monastirsky 
AuthorDate: Thu May 11 12:24:52 2023 +0300
Commit: Maxim Monastirsky 
CommitDate: Thu May 11 18:59:01 2023 +0200

tdf#154933 Rename "Text Body" to "Body Text" in menus

Change-Id: I012beaa6188ed6c53dd72e100109b496a6636993
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151663
Tested-by: Jenkins
Reviewed-by: Maxim Monastirsky 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index 7a8e12ba2125..8e9715c24acd 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -3759,15 +3759,15 @@
   
   
 
-  Text Body
+  Body Text
 
   
   
 
-  Text Body
+  Body Text
 
 
-  Text Body Paragraph Style
+  Body Text Paragraph Style
 
 
   .uno:StyleApply?Style:string=Text 
bodyFamilyName:string=ParagraphStyles


[Libreoffice-commits] core.git: officecfg/registry

2023-05-11 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/data/org/openoffice/VCL.xcu   | 1552 ---
 officecfg/registry/schema/org/openoffice/VCL.xcs |   10 
 2 files changed, 5 insertions(+), 1557 deletions(-)

New commits:
commit 37232295b8800e6a5a82b5e8965dbb00e0c1417d
Author: Gabor Kelemen 
AuthorDate: Sun May 7 21:42:16 2023 +0200
Commit: Gabor Kelemen 
CommitDate: Thu May 11 09:54:29 2023 +0200

[API CHANGE] Drop unused config keys VCL/LFonts/ -> SubstFontsPS 
SubstFontsHTML

Marked as unused since 2018
commit 33e80611c46ffb8b324e1d445287f0957546de97

Change-Id: I76cc62ca4911d1c130092a85f0b89e6078ad5d65
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151500
Tested-by: Jenkins
Reviewed-by: Bartosz Kosiorek 

diff --git a/officecfg/registry/data/org/openoffice/VCL.xcu 
b/officecfg/registry/data/org/openoffice/VCL.xcu
index bfe914aef2e7..c9063d713b53 100644
--- a/officecfg/registry/data/org/openoffice/VCL.xcu
+++ b/officecfg/registry/data/org/openoffice/VCL.xcu
@@ -899,12 +899,6 @@
 
   Arial
 
-
-  Helvetica
-
-
-  sans-serif
-
 
   Normal
 
@@ -922,12 +916,6 @@
 
   Arial
 
-
-  Helvetica
-
-
-  sans-serif
-
 
   Normal
 
@@ -945,12 +933,6 @@
 
   comic
 
-
-  
-
-
-  
-
 
   Normal
 
@@ -968,12 +950,6 @@
 
   
 
-
-  
-
-
-  
-
 
   Normal
 
@@ -991,12 +967,6 @@
 
   Trebuchet
 
-
-  
-
-
-  sans-serif
-
 
   Normal
 
@@ -1014,12 +984,6 @@
 
   Arial Unicode MS
 
-
-  
-
-
-  sans-serif
-
 
   Normal
 
@@ -1037,12 +1001,6 @@
 
   Arial Unicode MS
 
-
-  
-
-
-  sans-serif
-
 
   Normal
 
@@ -1060,12 +1018,6 @@
 
   
 
-
-  
-
-
-  cursive
-
 
   Normal
 
@@ -1083,12 +1035,6 @@
 
   
 
-
-  
-
-
-  sans-serif
-
 
   Normal
 
@@ -1103,12 +1049,6 @@
 
   
liberationsans;albanyamt;albany;arimo;nimbussansl;helvetica;lucidasans;lucida;geneva;helmet;nimbussans;andalesansui;arialunicodems;lucidaunicode
 
-
-  Helvetica
-
-
-  sans-serif
-
 
   Normal
 
@@ -1140,12 +1080,6 @@
 
   
 
-
-  
-
-
-  sans-serif
-
 
   Normal
 
@@ -1163,12 +1097,6 @@
 
   arial
 
-
-  helvetica
-
-
-  sans-serif
-
 
   Normal
 
@@ -1186,12 +1114,6 @@
 
   
 
-
-  
-
-
-  cursive
-
 
   Normal
 
@@ -1209,12 +1131,6 @@
 
   
 
-
-  
-
-
-  
-
 
   Normal
 
@@ -1232,12 +1148,6 @@
 
   
 
-
-  
-
-
-  serif
-
 
   Normal
 
@@ -1255,12 +1165,6 @@
 
   바탕
 
-
-  
-
-
-  
-
 
   Normal
 
@@ -1278,12 +1182,6 @@
 
   
 
-
-  
-
-
-  
-
 
   Normal
 
@@ -1301,12 +1199,6 @@
 
   
 
-
-  
-
-
-  serif
-
 
   Normal
 
@@ -1349,10 +1241,7 @@
 
   
dejavusansmono;cumberlandamt;cumberland;couriernew;nimbusmonol;liberationmono
 
-
-  monospace
-
-
+
   Normal
 
 
@@ -1369,12 +1258,6 @@
 
   
 
-
-  
-
-
-  cursive
-
 
   Normal
 
@@ -1392,12 +1275,6 @@
 
   
 
-
-  
-
-
-  serif
-
 
   Normal
 
@@ -1415,12 +1292,6 @@
 
   
 
-
-  
-
-
-  serif
-
 
   Normal
 
@@ -1438,12 +1309,6 @@
 
   
 
-
-  
-
- 

[Libreoffice-commits] core.git: officecfg/registry

2023-05-10 Thread Juergen Funk (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Accelerators.xcu |   48 
--
 1 file changed, 48 deletions(-)

New commits:
commit af1638985beaadb2254ca22e91de23f21690f74e
Author: Juergen Funk 
AuthorDate: Mon May 8 13:15:42 2023 +0200
Commit: Maxim Monastirsky 
CommitDate: Wed May 10 13:48:49 2023 +0200

Revert duplicate shortcut definition

This reverts the Accelerators.xcu part of 
b6af287527d42f8cf4bc43047fe0ed6130420d6b

The key combination for Ctrl-F is already defined in the global section,
it is not necessary to define it in other modules.

Change-Id: I44047f998487b58185ceb19c19f06ee44797c5d1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151503
Tested-by: Jenkins
Reviewed-by: Maxim Monastirsky 

diff --git a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu 
b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
index f2facf38577c..a26b90b298d6 100644
--- a/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
@@ -1002,12 +1002,6 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:RepeatSearch
   
 
-
-  
-I10N SHORTCUTS - NO 
TRANSLATE
-vnd.sun.star.findbar:FocusToFindbar
-  
-
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -2526,12 +2520,6 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:UpdateInputFields
   
 
-
-  
-I10N SHORTCUTS - NO 
TRANSLATE
-vnd.sun.star.findbar:FocusToFindbar
-  
-
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -3195,12 +3183,6 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:TextFitToSize
   
 
-
-  
-I10N SHORTCUTS - NO 
TRANSLATE
-vnd.sun.star.findbar:FocusToFindbar
-  
-
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -4018,12 +4000,6 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:UpdateInputFields
   
 
-
-  
-I10N SHORTCUTS - NO 
TRANSLATE
-vnd.sun.star.findbar:FocusToFindbar
-  
-
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -4805,12 +4781,6 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:UpdateInputFields
   
 
-
-  
-I10N SHORTCUTS - NO 
TRANSLATE
-vnd.sun.star.findbar:FocusToFindbar
-  
-
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -5598,12 +5568,6 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:RepeatSearch
   
 
-
-  
-I10N SHORTCUTS - NO 
TRANSLATE
-vnd.sun.star.findbar:FocusToFindbar
-  
-
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -6443,12 +6407,6 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:UpdateInputFields
   
 
-
-  
-I10N SHORTCUTS - NO 
TRANSLATE
-vnd.sun.star.findbar:FocusToFindbar
-  
-
 
   
 I10N SHORTCUTS - NO 
TRANSLATE
@@ -7297,12 +7255,6 @@ Ctrl+Shift+e aka E_SHIFT_MOD1 under GTK/IBUS is for some 
emoji thing
 .uno:UpdateInputFields
   
 
-
-  
-I10N SHORTCUTS - NO 
TRANSLATE
-vnd.sun.star.findbar:FocusToFindbar
-  
-
 
   
 I10N SHORTCUTS - NO 
TRANSLATE


[Libreoffice-commits] core.git: officecfg/registry sw/uiconfig

2023-05-08 Thread Samuel Mehrbrodt (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |   11 
++
 sw/uiconfig/sglobal/menubar/menubar.xml |1 
 sw/uiconfig/swriter/menubar/menubar.xml |1 
 3 files changed, 13 insertions(+)

New commits:
commit 1a9d96d35afc7fd496434ead4311f872db5d6232
Author: Samuel Mehrbrodt 
AuthorDate: Mon May 8 16:26:48 2023 +0200
Commit: Samuel Mehrbrodt 
CommitDate: Mon May 8 20:16:12 2023 +0200

tdf#142978 Add menu entry for a11y check back

And make it open the sidebar

Makes the feature more discoverable and prevents empty menu slots
when people customized their menubar.

Change-Id: I03440d78d5cf1d31cad7412dc0988d8a837a92e0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151537
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index 54688a4fb82c..7a8e12ba2125 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -3431,6 +3431,17 @@
   1
 
   
+  
+
+  ~Accessibility Check...
+
+
+  1
+
+
+  .uno:SidebarDeck.A11yCheckDeck
+
+  
   
 
   Styl~es
diff --git a/sw/uiconfig/sglobal/menubar/menubar.xml 
b/sw/uiconfig/sglobal/menubar/menubar.xml
index 4388a057e6b5..f1caab1bc1b4 100644
--- a/sw/uiconfig/sglobal/menubar/menubar.xml
+++ b/sw/uiconfig/sglobal/menubar/menubar.xml
@@ -718,6 +718,7 @@
 
   
   
+  
   
   
   
diff --git a/sw/uiconfig/swriter/menubar/menubar.xml 
b/sw/uiconfig/swriter/menubar/menubar.xml
index 51d20b841740..a85022ccdd5e 100644
--- a/sw/uiconfig/swriter/menubar/menubar.xml
+++ b/sw/uiconfig/swriter/menubar/menubar.xml
@@ -744,6 +744,7 @@
 
   
   
+  
   
   
   


[Libreoffice-commits] core.git: officecfg/registry

2023-05-05 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   36 -
 1 file changed, 36 deletions(-)

New commits:
commit 69d0be09ad81935f7da4b6f8d036c3562357d068
Author: Gabor Kelemen 
AuthorDate: Wed Apr 26 14:12:20 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Sat May 6 00:41:28 2023 +0200

[API CHANGE] Drop unused config group AppWindow

It was not used ever since added in 2002 by
commit 72cbd26315bf935a0d6e2c9ffcdbea7d2ada07fb

Change-Id: I3be8a020174677a6e876628307b2deb311874e67
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151059
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index fa9548425832..d6a005ec977c 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -2701,42 +2701,6 @@
   false
 
   
-  
-
-  Contains settings on how the application window should be
-  displayed.
-
-
-  
-Specifies whether the application window should be opened in
-Fullscreen mode.
-  
-  false
-
-
-  
-Specifies the preferred view of the application 
window.
-  
-  
-
-  
-Use last setting
-  
-
-
-  
-Show in task bar
-  
-
-
-  
-Open in Fullscreen mode
-  
-
-  
-  0
-
-  
   
 
   Contains settings which specify how dialogs and toolbars should


[Libreoffice-commits] core.git: officecfg/registry

2023-05-05 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   18 -
 1 file changed, 18 deletions(-)

New commits:
commit 10d74fd12af9708b427afd927ce13a90b53b6588
Author: Gabor Kelemen 
AuthorDate: Wed Apr 26 14:14:31 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Sat May 6 00:40:30 2023 +0200

[API CHANGE] Drop unused config keys ButtonLarge, ButtonFlat

Do not seem to have been ever used since added in 2002 by
commit 72cbd26315bf935a0d6e2c9ffcdbea7d2ada07fb

Change-Id: I64a437111d3c2d54e205de944421b05552e9600d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151060
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index a7f0222bcf55..fa9548425832 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -2742,24 +2742,6 @@
   Contains settings which specify how dialogs and toolbars should
   be displayed.
 
-
-  
-  
-Specifies whether toolbar buttons should be drawn large or
-small. True means large.
-Large buttons
-  
-  false
-
-
-  
-  
-Specifies whether toolbox buttons should be drawn with a flat
-or 3D design. True means flat design.
-Flat buttons
-  
-  true
-
 
   


[Libreoffice-commits] core.git: officecfg/registry postprocess/CustomTarget_registry.mk

2023-05-05 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Common.xcu   |3 ---
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |7 ---
 postprocess/CustomTarget_registry.mk   |1 -
 3 files changed, 11 deletions(-)

New commits:
commit 5eb3ec6cbd74eafcf2a6c44da23cfba385c44c13
Author: Gabor Kelemen 
AuthorDate: Tue Apr 25 14:03:49 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Sat May 6 00:40:01 2023 +0200

[API CHANGE] Drop obsolete TemplateRepositoryURL config key

Its use was removed in 2020 by
commit 9eaaf97ab32068a619b5c36772619b7e66268800

Change-Id: I47b86a9b1bf528d611fa3a79054681bd85382bb0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150989
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/data/org/openoffice/Office/Common.xcu 
b/officecfg/registry/data/org/openoffice/Office/Common.xcu
index 1665defdfaf7..23fa2f977764 100644
--- a/officecfg/registry/data/org/openoffice/Office/Common.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Common.xcu
@@ -39,9 +39,6 @@
   
 ${STARTCENTER_INFO_URL}
   
-  
-${STARTCENTER_TEMPLREP_URL}
-  
 
 
   UNIX
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 588cf13adf77..a7f0222bcf55 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -3462,13 +3462,6 @@
   
   
 
-
-  
-Contains a string specifying the URL to be browsed for
-additional template documents
-  
-  
-
 
   
   
diff --git a/postprocess/CustomTarget_registry.mk 
b/postprocess/CustomTarget_registry.mk
index 8111fca4e2ab..f192cc1bcb31 100644
--- a/postprocess/CustomTarget_registry.mk
+++ b/postprocess/CustomTarget_registry.mk
@@ -579,7 +579,6 @@ postprocess_main_SED := \
-e 
's,$${PRODUCTEXTENSION},.$(LIBO_VERSION_MICRO).$(LIBO_VERSION_PATCH)$(LIBO_VERSION_SUFFIX),g'
 \
-e 
's,$${STARTCENTER_ADDFEATURE_URL},https://extensions.libreoffice.org/,g' \
-e 's,$${STARTCENTER_INFO_URL},https://www.libreoffice.org/,g' \
-   -e 
's,$${STARTCENTER_TEMPLREP_URL},https://extensions.libreoffice.org/template-center/,g'
 \
-e 's,$${SYSTEM_LIBEXTTEXTCAT_DATA},$(SYSTEM_LIBEXTTEXTCAT_DATA),g' \
-e 's,$${SYSTEM_LIBNUMBERTEXT_DATA},$(SYSTEM_LIBNUMBERTEXT_DATA),g' \
-e 's,$${PRIVACY_POLICY_URL},$(PRIVACY_POLICY_URL),g' \


[Libreoffice-commits] core.git: officecfg/registry

2023-05-05 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |7 ---
 1 file changed, 7 deletions(-)

New commits:
commit 0ca0cd7294e938fff6f0107803c27411cb367f63
Author: Gabor Kelemen 
AuthorDate: Thu May 4 21:29:03 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Sat May 6 00:39:19 2023 +0200

[API CHANGE] Drop unused PropertyBrowser->ExperimentalProperties config key

Seems to be unused ever since it was added in 2006 by
commit a9d03e7895953a30790c09e0975dbbf116e05111

Change-Id: I26fe886d48d066146b0f925925ae61c45539dfb0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151406
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 37cea093444e..588cf13adf77 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -5699,13 +5699,6 @@
   specifies settings for the property browser used for forms and
   form controls.
 
-
-  
-Enables or disables the property browser's access to
-form/control properties which are not officially supported.
-  
-  false
-
 
   
 Enables or disables a help section at the bottom of the


[Libreoffice-commits] core.git: officecfg/registry

2023-05-04 Thread Justin Luth (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |6 
+++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 794af70fa802c7f495d217b435991f5a7551edcc
Author: Justin Luth 
AuthorDate: Thu May 4 13:35:46 2023 -0400
Commit: Justin Luth 
CommitDate: Thu May 4 22:40:09 2023 +0200

Revert "tdf#86630 sw page number wizard: add contextLabel"

This reverts 7.6 commit b89f65a5138fe74b7858c2817fae4204b021c1f5

and also take the opportunity to add a tooltip.

It was thought that the label would only be noticed
in tools - customize. However, I have discovered that it
also is shown in the notebookbar. Thus, it may very well
be used in other user-visible places.

Additionally, Heiko didn't like the term "wizard"
since it is a single-step dialog.

Change-Id: Ib11b68625eebf190d49ee8ce2b7b63378e248820
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151400
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index 76fb9c1e1cb4..54688a4fb82c 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -1072,11 +1072,11 @@
   
   
 
-  Page Number Wizard
-
-
   ~Page Number...
 
+
+  Insert page number
+
   
   
 


[Libreoffice-commits] core.git: officecfg/registry sw/inc

2023-05-04 Thread Rafael Lima (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |6 
+++---
 sw/inc/strings.hrc  |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit e265a6e016e3ec8818ba49351ca5a4dcb8b67d72
Author: Rafael Lima 
AuthorDate: Tue Apr 25 11:09:56 2023 -0300
Commit: Maxim Monastirsky 
CommitDate: Thu May 4 08:34:14 2023 +0200

tdf#150994 Rename Quotations to Block Quotation

As discussed in the ticket, the paragraph style "Quotations" should be
renamed to "Block Quotation" everywhere in the code.

Change-Id: Id789f0777e7ef6c96714fbdb81c802185d9b4c86
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150973
Tested-by: Jenkins
Tested-by: Maxim Monastirsky 
Reviewed-by: Maxim Monastirsky 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index 1c8da79c029b..76fb9c1e1cb4 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -3710,15 +3710,15 @@
   
   
 
-  ~Quotations
+  ~Block Quotation
 
   
   
 
-  ~Quotations
+  ~Block Quotation
 
 
-  Quotations Paragraph Style
+  Block Quotation Paragraph Style
 
 
   
.uno:StyleApply?Style:string=QuotationsFamilyName:string=ParagraphStyles
diff --git a/sw/inc/strings.hrc b/sw/inc/strings.hrc
index cfdd1f00fd64..31a3e86667f5 100644
--- a/sw/inc/strings.hrc
+++ b/sw/inc/strings.hrc
@@ -194,7 +194,7 @@
 #define STR_POOLCOLL_DOC_TITLE  NC_("STR_POOLCOLL_DOC_TITEL", 
"Title")
 #define STR_POOLCOLL_DOC_SUBTITLE   
NC_("STR_POOLCOLL_DOC_SUBTITEL", "Subtitle")
 #define STR_POOLCOLL_DOC_APPENDIX   
NC_("STR_POOLCOLL_DOC_APPENDIX", "Appendix")
-#define STR_POOLCOLL_HTML_BLOCKQUOTE
NC_("STR_POOLCOLL_HTML_BLOCKQUOTE", "Quotations")
+#define STR_POOLCOLL_HTML_BLOCKQUOTE
NC_("STR_POOLCOLL_HTML_BLOCKQUOTE", "Block Quotation")
 #define STR_POOLCOLL_HTML_PRE   NC_("STR_POOLCOLL_HTML_PRE", 
"Preformatted Text")
 #define STR_POOLCOLL_HTML_HRNC_("STR_POOLCOLL_HTML_HR", 
"Horizontal Line")
 #define STR_POOLCOLL_HTML_DDNC_("STR_POOLCOLL_HTML_DD", 
"List Contents")


[Libreoffice-commits] core.git: officecfg/registry

2023-05-03 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   46 -
 1 file changed, 46 deletions(-)

New commits:
commit a55af69baefd7965da3a7faf5af1c049fe99f9b4
Author: Gabor Kelemen 
AuthorDate: Wed Apr 26 10:20:41 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 4 01:49:09 2023 +0200

[API CHANGE] Drop unused LogicalGraphicSize config group

This was added in 2002
commit d6da51a02d1804b691be5e2ff6d9318a240b6b05
and last touched in 2010 by
commit 9508a731824e7f8a692d462da763b2db95463875
but was never used in code

Change-Id: Ic18eb94470152bfd6e42b317923627b93256076b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151036
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index d9d5c4b380db..37cea093444e 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -517,52 +517,6 @@
 false
   
 
-
-  
-Specifies the logical size of a graphic. [UNIT=1/100 mm].
-  
-  
-
-  Specifies the logical width of a graphic.
-  [UNIT=1/100 mm].
-
-
-  
-
-  Represents the lowest value that can be entered in the
-  dialog.
-
-  
-  
-
-  Represents the highest value that can be entered in the
-  dialog.
-
-  
-
-1
-  
-  
-
-  Specifies the logical height of graphic. [UNIT=1/100 
mm].
-
-
-  
-
-  Represents the lowest value that can be entered in the
-  dialog.
-
-  
-  
-
-  Represents the highest value that can be entered in the
-  dialog.
-
-  
-
-1
-  
-
 
   
 Specifies an entry of the recovery list which is then used by


[Libreoffice-commits] core.git: officecfg/registry

2023-05-03 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |8 
 1 file changed, 8 deletions(-)

New commits:
commit dc73651a9df268ac9ab76cb84cb6a662727160a7
Author: Gabor Kelemen 
AuthorDate: Tue Apr 25 14:58:58 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 4 01:41:47 2023 +0200

[API CHANGE] Drop unused config key ShowOfficeUpdateDialog

Its use was removed in 2011 by
commit 83ee1bccf9899bb5c1913389b9a26a73a515ad82

Change-Id: I995b994c47b2ea9b908867698fe72d7c13e37b0a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150991
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index aa6d93c1a566..d9d5c4b380db 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -2401,14 +2401,6 @@
 
 false
   
-  
-
-  Specifies whether the office update dialog should be shown in
-  case the loaded document has newer ODF version than the maximal
-  supported one.
-
-true
-  
   
 
   Determines whether to use WebDAV when a file is loaded from a 
mapped WebDAV drive.


[Libreoffice-commits] core.git: officecfg/registry

2023-05-03 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   12 
 1 file changed, 12 deletions(-)

New commits:
commit 01ac5c55ec3583d5c1b26f10170a71fd988da6b9
Author: Gabor Kelemen 
AuthorDate: Tue Apr 25 13:25:23 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 4 01:41:16 2023 +0200

[API CHANGE] Drop unused ProductVersionID group

Its use was removed in 2009 by
commit fb623aa0e73ed6fcd19f70fbe5a8d8aabe17aa65

Change-Id: I5c08f8f84e1262b003dc22783c6b2ae47fa18f72
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150987
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index b90f16b17aee..aa6d93c1a566 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -678,18 +678,6 @@
 true
   
 
-
-  
-Stores registration data which is related to a specific product
-version.
-  
-  
-
-  An instance UUID associated with the product version ID.
-
-
-  
-
 
   
 Stores the details of the installed personas.


[Libreoffice-commits] core.git: officecfg/registry

2023-05-03 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   46 -
 1 file changed, 46 deletions(-)

New commits:
commit ce8a5ea8dd4eb85c0b598ca9bdaf3207aa18f49f
Author: Gabor Kelemen 
AuthorDate: Tue Apr 25 14:27:55 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 4 01:40:32 2023 +0200

[API CHANGE] Drop deprecated config group GraphicSize

Deprecated in 2002 by
commit d6da51a02d1804b691be5e2ff6d9318a240b6b05

Change-Id: I265a1a03fdd9cfde4c1450f6cd0e799577ff0967
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150990
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 548669ba17f0..b90f16b17aee 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -517,52 +517,6 @@
 false
   
 
-
-  
-Use LogicalGraphicSize instead of this.
-Specifies the size of a graphic. [UNIT=1/100 mm].
-  
-  
-
-  Specifies the width of graphic. [UNIT=1/100 mm].
-
-
-  
-
-  Represents the highest value that can be entered in the
-  dialog.
-
-  
-  
-
-  Represents the lowest value that can be entered in the
-  dialog.
-
-  
-
-1
-  
-  
-
-  Specifies the height of graphic. [UNIT=1/100 mm].
-
-
-  
-
-  Represents the lowest value that can be entered in the
-  dialog.
-
-  
-  
-
-  Represents the highest value that can be entered in the
-  dialog.
-
-  
-
-1
-  
-
 
   
 Specifies the logical size of a graphic. [UNIT=1/100 mm].


[Libreoffice-commits] core.git: officecfg/registry

2023-05-03 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |6 --
 1 file changed, 6 deletions(-)

New commits:
commit a51e53fd211696df3a566b34986cc75d42361880
Author: Gabor Kelemen 
AuthorDate: Tue Apr 25 15:01:21 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 4 01:39:46 2023 +0200

[API CHANGE] Drop empty config group Gallery

Its last key was removed in 2013 by
commit 8e7a1ad17cdcd677e40865daa9bbdbe69927360d

Change-Id: Icd9f175ba0195227454a22f3c76ac4307ae90ec4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150992
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 9f1cb551d580..548669ba17f0 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -1974,12 +1974,6 @@
 
   
 
-
-  
-Specifies Gallery options.
-Gallery Options
-  
-
 
   
 Contains information about configurable menus.


[Libreoffice-commits] core.git: officecfg/registry

2023-05-03 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Common.xcu   |9 ---
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   16 -
 2 files changed, 25 deletions(-)

New commits:
commit f7a4a68fed76ff39449f4c07b5cd04d89d6e7a96
Author: Gabor Kelemen 
AuthorDate: Tue Apr 25 17:59:23 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 4 01:39:23 2023 +0200

[API CHANGE] Drop deprecated config keys...

Misc/Path/Current/Temp and Storage were deprecated by
commit 8c895561f63ed7161947a04da8e6a3d3fb195fa7 (2009)
commit 3cf21a8bb947ffdffbdcec36880bc16ea39d1335 (2004)

Change-Id: Id37650557e5c9ac791dffc9569aa1f23e9bedc89
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150996
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/data/org/openoffice/Office/Common.xcu 
b/officecfg/registry/data/org/openoffice/Office/Common.xcu
index 4a7e136edfdf..1665defdfaf7 100644
--- a/officecfg/registry/data/org/openoffice/Office/Common.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Common.xcu
@@ -478,15 +478,6 @@
   
 
   
-  
-
-  
-$(userurl)/temp
-$(temp)
-$(temp)
-  
-
-  
   
 
   
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 8dacf9fa262a..9f1cb551d580 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -1663,22 +1663,6 @@
 $(progpath)/plugin
   
 
-
-  
-Without replacement.
-Specifies the location where misc data are stored.
-  
-  $(userpath)/store
-
-
-  
-Replaced by
-org.openoffice.Office.Paths/Temp
-Specifies the base directory used by the Office to store temp
-files.
-  
-  
-
 
   
 Specifies the templates originate from these folders and


[Libreoffice-commits] core.git: officecfg/registry sw/source

2023-05-03 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Writer.xcs |  157 -
 sw/source/filter/basflt/fltini.cxx |   14 -
 2 files changed, 171 deletions(-)

New commits:
commit 1339324674673e4aa9f3943b4ccbd7c2b03fb156
Author: Gabor Kelemen 
AuthorDate: Tue Apr 25 16:51:31 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 4 01:38:27 2023 +0200

[API CHANGE] Drop unused Excel_Lotus, W4W, Writer groups

These seem to be unused ever since their 2002 addition in
commit 72cbd26315bf935a0d6e2c9ffcdbea7d2ada07fb
and some description in sw with:
commit 7e30aa52adc691c6b468ec4e15089e32a418b919

Change-Id: I8e5c76e8483aa5dbd0934f4eabc16538366b26a7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150994
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
index 7f0f55de7147..0f684bb2eea9 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
@@ -6018,135 +6018,6 @@
   
 These filter flags are only valid for specific filters and 
mostly refer to importing documents. By default, all of the settings are 
off-state (0) and should only be changed by an experienced administrator. To 
create a parameter, the values must be combined with the OR operator.
   
-  
-
-  Contains settings for the Excel/Lotus filter.
-
-
-  
-Specifies the minimum number of rows that can be 
imported.
-  
-  0
-
-
-  
-Specifies the maximum number of rows that can be 
imported.
-  
-  0
-
-
-  
-Specifies the minimum number of columns that can be 
imported.
-  
-  0
-
-
-  
-Specifies the maximum number of columns that can be 
imported.
-  
-  0
-
-  
-  
-
-  Contains settings for the Word4Word filter.
-
-
-  
-Specifies the minimum height for the header. If this flag is 
not set, a default height of 5 mm is applied.
-  
-  0
-
-
-  
-Specifies the minimum height of the footer. If this flag is 
not set, a default height of 5 mm is applied.
-  
-  0
-
-
-  
-Specifies a Word for Word filter flag entry. If W4W000 is 
set, the flag is valid for all W4W filters that are not specified in detail. To 
specify a filter, replace "000" with the corresponding filter ID.
-  
-  
-
-  
-Off
-  
-
-
-  
-W4WFL_NO_FLY_IN_CNTNT
-  
-
-
-  
-W4WFL_NO_GRAF_IN_CNTNT
-  
-
-
-  
-W4WFL_EXACT_TABLES
-  
-
-
-  
-W4WFL_NO_DBL_TBL_BORDER_REMOVE 
-  
-
-
-  
-W4WFL_NO_WW_SPECCHAR
-  
-
-
-  
-W4WFL_NO_APO_HNL_REMOVE
-  
-
-
-  
-W4WFL_NO_DBL_APO_BORDER_REMOVE
-  
-
-
-  
-W4WFL_NO_HDFT_DIST
-  
-
-
-  
-W4WFL_ALL_HDFT_DIST
-  
-
-
-  
-W4WFL_NO_PCTEXT4_124
-  
-
-
-  
-W4WFL_NO_PCTEXT4_INDENT
-  
-
-
-  
-W4WFL_ALL_HDFT_MAINATTR 
-  
-
-
-  
-W4WFL_NO_PCTEXT4_HDFT_MAINATTR 
-  
-
-
-  
-W4WFL_NO_PCTEXT4_STP_DEC2 
-  
-
-  
-  0
-
-  
   
 
   Contains settings for the WinWord filter.
@@ -6477,34 +6348,6 @@
   0
 
   
-  
-
-  Contains settings for the Writer filter.
-
-
-  
-Specifies the flags for the Writer filter.
-  
-  
-
-  
-Off
-  
-
-
-  
-NoDrawingObjects
-  
-
-
-  
-NoLayoutInfo
-  
-
-  
-  0
-
-  
   
 
   Contains 

[Libreoffice-commits] core.git: officecfg/registry

2023-05-03 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Java.xcs |   48 ---
 1 file changed, 48 deletions(-)

New commits:
commit f111333b5586c743ea71386f057b2ed5e0cea1ca
Author: Gabor Kelemen 
AuthorDate: Tue Apr 25 18:22:48 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 4 01:37:31 2023 +0200

[API CHANGE] Drop deprecated Java config keys

Deprecated by
commit 095c439703a861a65a17a34b59ce626a7491ac56 (2002)
commit d8155fb911c85cfef2ed6f886797d2700f867e14 (2004)

Change-Id: Id37fdbee40f6d411dc4416763a1c1e79ee9ac232
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150997
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Java.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Java.xcs
index cda437daa9bb..e224edc1b251 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Java.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Java.xcs
@@ -24,32 +24,6 @@
   
 Provides information used to initialize a Java Virtual Machine. 

   
-  
-
-
-  
-  Specifies the path of the Java installation.
-  Java Home
-
-NULL
-  
-  
-
-
-  
-  Specifies the version of the Java installation that is 
used.
-  Java Version
-
-NULL
-  
-  
-
-  
-  Determines if the com.sun.star.java.JavaVirtualMachine service 
instantiates a JVM.
-  Enable JVM
-
-true
-  
   
 
 
@@ -82,28 +56,6 @@
   
 
   
-  
-
-
-  
-  Specifies additional Java classes or jars which are contained 
in the classpath of the JVM (java.class.path system property).
-  Classpath
-
-
-
-  
-  
-
-  
-   Indicates that JVM supports debugging.
-
-  
-  
-
-  
-  Specifies properties for use with the Java VM.
-
-  
   
 
   Specifies whether JVM based UNO components are run via uno 
command outside the LibreOffice process.


[Libreoffice-commits] core.git: officecfg/registry

2023-05-03 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |6 --
 1 file changed, 6 deletions(-)

New commits:
commit 4c65a29e7f35844e8c75b462cdf3a659c464b288
Author: Gabor Kelemen 
AuthorDate: Tue Apr 25 15:09:24 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 4 01:35:45 2023 +0200

[API CHANGE] Drop empty config group ExternalApps

Its last use was removed in 2004 by
commit f5d946a558378b1b156dadae9b8dd588e0e1fbf5

Change-Id: Ieb2ae9c16cf55adb173fa0b5260afc83722db117
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150993
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index f26f0b8ecd2a..8dacf9fa262a 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -6309,12 +6309,6 @@
  false

 
-
-  
-Without replacement.
-Specifies external helper applications / protocol 
handlers.
-  
-
 
   
 Specifies an external mail application to be used for Send as


[Libreoffice-commits] core.git: officecfg/registry

2023-05-03 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   15 -
 1 file changed, 15 deletions(-)

New commits:
commit e4c59b7be32a305b4753acc466750b1ed3694913
Author: Gabor Kelemen 
AuthorDate: Wed Apr 26 10:51:03 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 4 01:35:22 2023 +0200

[API CHANGE] Drop unused DialogSize group

Added in commit 72cbd263 and changed in commit f0554890
but not actually used even back then or ever since

Change-Id: Ifbe780917b86fdc0cd78d08c92d44b51707c701b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151049
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 4cefe71ead2d..f26f0b8ecd2a 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -92,21 +92,6 @@
 
   
 
-
-  
-Contains the width and height of the dialog size.
-  
-  
-
-  Contains the height of the dialog [UNIT=pixel].
-
-  
-  
-
-  Contains the width of the dialog [UNIT=pixel].
-
-  
-
 
   
 Describes the characteristics of a font.


[Libreoffice-commits] core.git: officecfg/registry

2023-05-03 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   15 -
 1 file changed, 15 deletions(-)

New commits:
commit 1b7c4394de4f5ddd381436289d00f5777d5152a3
Author: Gabor Kelemen 
AuthorDate: Wed Apr 26 11:52:22 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 4 01:34:43 2023 +0200

[API CHANGE] Drop unused NameCounter template

Its last use was removed in 2017 by
commit 49b237c46efa1ba3513dfbe6c782c713296352d8

Change-Id: I1ed0bdc9c01430ec432015bcbf3ec25f6920c5d8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151050
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 2b8297314fbd..4cefe71ead2d 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -666,21 +666,6 @@
 
   
 
-
-  
-Stores an association between a numeric value and a name.
-  
-  
-
-  Specifies a name that is associated with a counter.
-
-  
-  
-
-  Specifies a number that is associated with a name.
-
-  
-
 
   
 All Certificate information needed to handle and identify the


[Libreoffice-commits] core.git: officecfg/registry

2023-05-03 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |9 -
 1 file changed, 9 deletions(-)

New commits:
commit 009c594a65deadafe2953f27789070d4ee8c2e64
Author: Gabor Kelemen 
AuthorDate: Tue Apr 25 17:11:10 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Thu May 4 01:33:15 2023 +0200

[API CHANGE] Drop deprecated config key CompressMode

Deprecated in 2004 by
commit 93e3a53e678ebcac85a20105a270b5a191b9279e

Change-Id: I90d5447eef50de3a46e7ae7716ae440219812ebb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150995
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index ed6d4ebe4ad7..2b8297314fbd 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -4769,15 +4769,6 @@
   
 Specifies default settings of PDF export dialog.
   
-  
-
-  Use following properties instead:
-  UseLosslessCompression, Quality, UseResolutionReduction,
-  ResolutionReduction
-  Deprecated.
-
-1
-  
   
 
   Specifies if graphics are exported to PDF using a lossless


[Libreoffice-commits] core.git: officecfg/registry

2023-05-03 Thread Seth Chaiklin (via logerrit)
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |6 
+++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 8426c38a23e5bcc4a8fc061113755de0f8dbc250
Author: Seth Chaiklin 
AuthorDate: Mon May 1 02:09:00 2023 +0200
Commit: Seth Chaiklin 
CommitDate: Wed May 3 08:36:37 2023 +0200

tdf#153897  "mark" to "entry" for index .unos

Change-Id: I3e9b94e5e6d7073773b3d39276a7f708f34492ee
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151196
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin 

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index 124b226f3f35..1c8da79c029b 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -2625,7 +2625,7 @@
   
   
 
-  Index Mark to Index
+  Index Entry to Index
 
   
   
@@ -2806,12 +2806,12 @@
   
   
 
-  Go to Next Index Mark
+  Go to Next Index Entry
 
   
   
 
-  Go to Previous Index Mark
+  Go to Previous Index Entry
 
   
   


[Libreoffice-commits] core.git: officecfg/registry

2023-05-02 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   34 -
 1 file changed, 34 deletions(-)

New commits:
commit 581764d7781477deada108c7fa108c684983fbc8
Author: Gabor Kelemen 
AuthorDate: Tue Apr 25 12:24:45 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Tue May 2 23:47:03 2023 +0200

[API CHANGE] Drop unused config group AddXMLToStorage

Its use was removed in 2009 by
commit f87ee64d502aec9365d98d53d5b913f6456eae6b

Change-Id: Ie9f65ac548ce9eff53156f61df40dbff839a8d8b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150983
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 5e48191bedf9..ed6d4ebe4ad7 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -3450,40 +3450,6 @@
 
   
 
-
-  
-Contains settings specifying if a XML package is added to the
-applications binary files.
-  
-  
-
-
-  Defines if a XML package is added to the Writer binary
-  files.
-
-  
-  
-
-
-  Defines if a XML package is added to the Calc binary
-  files.
-
-  
-  
-
-
-  Defines if a XML package is added to the Impress binary
-  files.
-
-  
-  
-
-
-  Defines if a XML package is added to the Draw binary
-  files.
-
-  
-
 
   
 Contains recent colors and custom colors


  1   2   3   4   5   6   7   8   9   10   >