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
96d03636
Kaydet (Commit)
96d03636
authored
Eki 27, 2015
tarafından
Maxim Monastirsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
tdf#64027 sw: Make the text background color button work
Change-Id: I305163b691a8fa51ef5da0c940c59c3a3440a2dc
üst
63e13695
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
0 deletions
+20
-0
_annotsh.sdi
sw/sdi/_annotsh.sdi
+7
-0
drwtxtsh.sdi
sw/sdi/drwtxtsh.sdi
+8
-0
swmodule.cxx
sw/source/uibase/app/swmodule.cxx
+1
-0
annotsh.cxx
sw/source/uibase/shells/annotsh.cxx
+2
-0
drwtxtex.cxx
sw/source/uibase/shells/drwtxtex.cxx
+2
-0
No files found.
sw/sdi/_annotsh.sdi
Dosyayı görüntüle @
96d03636
...
@@ -251,6 +251,13 @@ interface _Annotation
...
@@ -251,6 +251,13 @@ interface _Annotation
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
]
]
SID_ATTR_CHAR_BACK_COLOR // api:
[
ExecMethod = Exec;
StateMethod = GetState ;
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
]
SID_CHAR_DLG_EFFECT
SID_CHAR_DLG_EFFECT
[
[
ExecMethod = Exec ;
ExecMethod = Exec ;
...
...
sw/sdi/drwtxtsh.sdi
Dosyayı görüntüle @
96d03636
...
@@ -656,6 +656,14 @@ interface TextDrawFont
...
@@ -656,6 +656,14 @@ interface TextDrawFont
StateMethod = GetDrawTextCtrlState ;
StateMethod = GetDrawTextCtrlState ;
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
]
]
SID_ATTR_CHAR_BACK_COLOR // api:
[
ExecMethod = Execute ;
StateMethod = GetDrawTextCtrlState ;
DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
]
SID_ATTR_CHAR_WORDLINEMODE // status(final|play)
SID_ATTR_CHAR_WORDLINEMODE // status(final|play)
[
[
ExecMethod = Execute ;
ExecMethod = Execute ;
...
...
sw/source/uibase/app/swmodule.cxx
Dosyayı görüntüle @
96d03636
...
@@ -308,6 +308,7 @@ void SwDLL::RegisterControls()
...
@@ -308,6 +308,7 @@ void SwDLL::RegisterControls()
SvxColorToolBoxControl
::
RegisterControl
(
SID_ATTR_LINE_COLOR
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_ATTR_LINE_COLOR
,
pMod
);
SvxLineEndToolBoxControl
::
RegisterControl
(
SID_ATTR_LINEEND_STYLE
,
pMod
);
SvxLineEndToolBoxControl
::
RegisterControl
(
SID_ATTR_LINEEND_STYLE
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_ATTR_FILL_COLOR
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_ATTR_FILL_COLOR
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_ATTR_CHAR_BACK_COLOR
,
pMod
);
SvxFontNameToolBoxControl
::
RegisterControl
(
SID_ATTR_CHAR_FONT
,
pMod
);
SvxFontNameToolBoxControl
::
RegisterControl
(
SID_ATTR_CHAR_FONT
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_ATTR_CHAR_COLOR
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_ATTR_CHAR_COLOR
,
pMod
);
...
...
sw/source/uibase/shells/annotsh.cxx
Dosyayı görüntüle @
96d03636
...
@@ -271,6 +271,7 @@ void SwAnnotationShell::Exec( SfxRequest &rReq )
...
@@ -271,6 +271,7 @@ void SwAnnotationShell::Exec( SfxRequest &rReq )
break
;
break
;
}
}
case
SID_ATTR_CHAR_COLOR
:
nEEWhich
=
EE_CHAR_COLOR
;
break
;
case
SID_ATTR_CHAR_COLOR
:
nEEWhich
=
EE_CHAR_COLOR
;
break
;
case
SID_ATTR_CHAR_BACK_COLOR
:
nEEWhich
=
EE_CHAR_BKGCOLOR
;
break
;
case
SID_ATTR_CHAR_UNDERLINE
:
case
SID_ATTR_CHAR_UNDERLINE
:
{
{
if
(
rReq
.
GetArgs
()
)
if
(
rReq
.
GetArgs
()
)
...
@@ -707,6 +708,7 @@ void SwAnnotationShell::GetState(SfxItemSet& rSet)
...
@@ -707,6 +708,7 @@ void SwAnnotationShell::GetState(SfxItemSet& rSet)
}
}
break
;
break
;
case
SID_ATTR_CHAR_COLOR
:
nEEWhich
=
EE_CHAR_COLOR
;
break
;
case
SID_ATTR_CHAR_COLOR
:
nEEWhich
=
EE_CHAR_COLOR
;
break
;
case
SID_ATTR_CHAR_BACK_COLOR
:
nEEWhich
=
EE_CHAR_BKGCOLOR
;
break
;
case
SID_ATTR_CHAR_UNDERLINE
:
nEEWhich
=
EE_CHAR_UNDERLINE
;
break
;
case
SID_ATTR_CHAR_UNDERLINE
:
nEEWhich
=
EE_CHAR_UNDERLINE
;
break
;
case
SID_ATTR_CHAR_OVERLINE
:
nEEWhich
=
EE_CHAR_OVERLINE
;
break
;
case
SID_ATTR_CHAR_OVERLINE
:
nEEWhich
=
EE_CHAR_OVERLINE
;
break
;
case
SID_ATTR_CHAR_CONTOUR
:
nEEWhich
=
EE_CHAR_OUTLINE
;
break
;
case
SID_ATTR_CHAR_CONTOUR
:
nEEWhich
=
EE_CHAR_OUTLINE
;
break
;
...
...
sw/source/uibase/shells/drwtxtex.cxx
Dosyayı görüntüle @
96d03636
...
@@ -167,6 +167,7 @@ void SwDrawTextShell::Execute( SfxRequest &rReq )
...
@@ -167,6 +167,7 @@ void SwDrawTextShell::Execute( SfxRequest &rReq )
break
;
break
;
case
SID_ATTR_CHAR_COLOR
:
nEEWhich
=
EE_CHAR_COLOR
;
break
;
case
SID_ATTR_CHAR_COLOR
:
nEEWhich
=
EE_CHAR_COLOR
;
break
;
case
SID_ATTR_CHAR_BACK_COLOR
:
nEEWhich
=
EE_CHAR_BKGCOLOR
;
break
;
case
SID_ATTR_CHAR_UNDERLINE
:
case
SID_ATTR_CHAR_UNDERLINE
:
{
{
...
@@ -890,6 +891,7 @@ void SwDrawTextShell::GetDrawTextCtrlState(SfxItemSet& rSet)
...
@@ -890,6 +891,7 @@ void SwDrawTextShell::GetDrawTextCtrlState(SfxItemSet& rSet)
}
}
break
;
break
;
case
SID_ATTR_CHAR_COLOR
:
nEEWhich
=
EE_CHAR_COLOR
;
break
;
case
SID_ATTR_CHAR_COLOR
:
nEEWhich
=
EE_CHAR_COLOR
;
break
;
case
SID_ATTR_CHAR_BACK_COLOR
:
nEEWhich
=
EE_CHAR_BKGCOLOR
;
break
;
case
SID_ATTR_CHAR_UNDERLINE
:
nEEWhich
=
EE_CHAR_UNDERLINE
;
break
;
case
SID_ATTR_CHAR_UNDERLINE
:
nEEWhich
=
EE_CHAR_UNDERLINE
;
break
;
case
SID_ATTR_CHAR_OVERLINE
:
nEEWhich
=
EE_CHAR_OVERLINE
;
break
;
case
SID_ATTR_CHAR_OVERLINE
:
nEEWhich
=
EE_CHAR_OVERLINE
;
break
;
case
SID_ATTR_CHAR_CONTOUR
:
nEEWhich
=
EE_CHAR_OUTLINE
;
break
;
case
SID_ATTR_CHAR_CONTOUR
:
nEEWhich
=
EE_CHAR_OUTLINE
;
break
;
...
...
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