Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
895efd4f
Kaydet (Commit)
895efd4f
authored
Agu 25, 2014
tarafından
Andras Timar
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
make background color of startcenter configurable
Change-Id: Ice6a92186d641e9446b9d328518e4000c840a142
üst
c64945bc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
Common.xcs
officecfg/registry/schema/org/openoffice/Office/Common.xcs
+8
-1
backingwindow.cxx
sfx2/source/dialog/backingwindow.cxx
+4
-1
No files found.
officecfg/registry/schema/org/openoffice/Office/Common.xcs
Dosyayı görüntüle @
895efd4f
...
...
@@ -2196,7 +2196,7 @@
<prop
oor:name=
"GenerateThumbnail"
oor:type=
"xs:boolean"
oor:nillable=
"false"
>
<!-- UIHints: Tools Options - General Save - [Section] Save -->
<info>
<desc>
Specifies whether to generate a thumbnail image and place it inside the
<desc>
Specifies whether to generate a thumbnail image and place it inside the
the odf archive file, which makes it possible to see a preview of the document.
</desc>
<label>
Store a preview of this document
</label>
</info>
...
...
@@ -3599,6 +3599,13 @@
</info>
<value>
0
</value>
</prop>
<prop
oor:name=
"StartCenterBackgroundColor"
oor:type=
"xs:int"
oor:nillable=
"false"
>
<!--Default 7514196 = TDF Green-->
<info>
<desc>
Specifies the background color of the start center.
</desc>
</info>
<value>
7514196
</value>
</prop>
</group>
</group>
<group
oor:name=
"Java"
>
...
...
sfx2/source/dialog/backingwindow.cxx
Dosyayı görüntüle @
895efd4f
...
...
@@ -53,6 +53,8 @@
#include <com/sun/star/task/InteractionHandler.hpp>
#include <com/sun/star/ui/dialogs/TemplateDescription.hpp>
#include <officecfg/Office/Common.hxx>
using
namespace
::
com
::
sun
::
star
;
using
namespace
::
com
::
sun
::
star
::
beans
;
using
namespace
::
com
::
sun
::
star
::
frame
;
...
...
@@ -70,7 +72,6 @@ const char OPEN_URL[] = ".uno:Open";
const
char
SERVICENAME_CFGREADACCESS
[]
=
"com.sun.star.configuration.ConfigurationAccess"
;
float
fMultiplier
=
1.4
f
;
const
Color
aButtonsBackground
(
114
,
168
,
84
);
// TDF green
const
Color
aButtonsText
(
COL_WHITE
);
/***
...
...
@@ -292,6 +293,8 @@ void BackingWindow::initControls()
mpHelpButton
->
SetControlForeground
(
aButtonsText
);
mpExtensionsButton
->
SetControlForeground
(
aButtonsText
);
const
Color
aButtonsBackground
(
officecfg
::
Office
::
Common
::
Help
::
StartCenter
::
StartCenterBackgroundColor
::
get
());
mpAllButtonsBox
->
SetBackground
(
aButtonsBackground
);
mpSmallButtonsBox
->
SetBackground
(
aButtonsBackground
);
mpHelpBox
->
SetBackground
(
aButtonsBackground
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment