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
c17ea618
Kaydet (Commit)
c17ea618
authored
Tem 25, 2015
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix some small regressions in no-chart area panel
Change-Id: I04239c0bcf78ee9029a2a17514d10d28c3b99d58
üst
9ba833f0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
14 deletions
+15
-14
AreaPropertyPanelBase.hxx
include/svx/sidebar/AreaPropertyPanelBase.hxx
+7
-7
AreaPropertyPanelBase.cxx
svx/source/sidebar/area/AreaPropertyPanelBase.cxx
+8
-7
No files found.
include/svx/sidebar/AreaPropertyPanelBase.hxx
Dosyayı görüntüle @
c17ea618
...
@@ -97,13 +97,13 @@ public:
...
@@ -97,13 +97,13 @@ public:
virtual
void
setFillStyleAndHatch
(
const
XFillStyleItem
*
pStyleItem
,
const
XFillHatchItem
&
aHatchItem
)
=
0
;
virtual
void
setFillStyleAndHatch
(
const
XFillStyleItem
*
pStyleItem
,
const
XFillHatchItem
&
aHatchItem
)
=
0
;
virtual
void
setFillStyleAndBitmap
(
const
XFillStyleItem
*
pStyleItem
,
const
XFillBitmapItem
&
aHatchItem
)
=
0
;
virtual
void
setFillStyleAndBitmap
(
const
XFillStyleItem
*
pStyleItem
,
const
XFillBitmapItem
&
aHatchItem
)
=
0
;
void
updateFillTransparence
(
bool
bDisabled
,
bool
bDefault
,
const
SfxUInt16Item
*
pItem
);
void
updateFillTransparence
(
bool
bDisabled
,
bool
bDefault
OrSet
,
const
SfxUInt16Item
*
pItem
);
void
updateFillFloatTransparence
(
bool
bDisabled
,
bool
bDefault
,
const
XFillFloatTransparenceItem
*
pItem
);
void
updateFillFloatTransparence
(
bool
bDisabled
,
bool
bDefault
OrSet
,
const
XFillFloatTransparenceItem
*
pItem
);
void
updateFillStyle
(
bool
bDisabled
,
bool
bDefault
,
const
XFillStyleItem
*
pItem
);
void
updateFillStyle
(
bool
bDisabled
,
bool
bDefault
OrSet
,
const
XFillStyleItem
*
pItem
);
void
updateFillGradient
(
bool
bDisabled
,
bool
bDefault
,
const
XFillGradientItem
*
pItem
);
void
updateFillGradient
(
bool
bDisabled
,
bool
bDefault
OrSet
,
const
XFillGradientItem
*
pItem
);
void
updateFillHatch
(
bool
bDisabled
,
bool
bDefault
,
const
XFillHatchItem
*
pItem
);
void
updateFillHatch
(
bool
bDisabled
,
bool
bDefault
OrSet
,
const
XFillHatchItem
*
pItem
);
void
updateFillColor
(
bool
bDefault
,
const
XFillColorItem
*
pItem
);
void
updateFillColor
(
bool
bDefault
OrSet
,
const
XFillColorItem
*
pItem
);
void
updateFillBitmap
(
bool
BDisabled
,
bool
bDefault
,
const
XFillBitmapItem
*
pItem
);
void
updateFillBitmap
(
bool
BDisabled
,
bool
bDefault
OrSet
,
const
XFillBitmapItem
*
pItem
);
protected
:
protected
:
sal_uInt16
meLastXFS
;
sal_uInt16
meLastXFS
;
...
...
svx/source/sidebar/area/AreaPropertyPanelBase.cxx
Dosyayı görüntüle @
c17ea618
...
@@ -799,36 +799,37 @@ void AreaPropertyPanelBase::NotifyItemUpdate(
...
@@ -799,36 +799,37 @@ void AreaPropertyPanelBase::NotifyItemUpdate(
const
bool
/*bIsEnabled*/
)
const
bool
/*bIsEnabled*/
)
{
{
const
bool
bDisabled
(
SfxItemState
::
DISABLED
==
eState
);
const
bool
bDisabled
(
SfxItemState
::
DISABLED
==
eState
);
const
bool
bDefaultOrSet
(
SfxItemState
::
DEFAULT
<=
eState
);
const
bool
bDefault
(
SfxItemState
::
DEFAULT
==
eState
);
const
bool
bDefault
(
SfxItemState
::
DEFAULT
==
eState
);
switch
(
nSID
)
switch
(
nSID
)
{
{
case
SID_ATTR_FILL_TRANSPARENCE
:
case
SID_ATTR_FILL_TRANSPARENCE
:
updateFillTransparence
(
bDisabled
,
bDefault
,
updateFillTransparence
(
bDisabled
,
bDefault
OrSet
,
static_cast
<
const
SfxUInt16Item
*>
(
pState
));
static_cast
<
const
SfxUInt16Item
*>
(
pState
));
break
;
break
;
case
SID_ATTR_FILL_FLOATTRANSPARENCE
:
case
SID_ATTR_FILL_FLOATTRANSPARENCE
:
updateFillFloatTransparence
(
bDisabled
,
bDefault
,
updateFillFloatTransparence
(
bDisabled
,
bDefault
OrSet
,
static_cast
<
const
XFillFloatTransparenceItem
*>
(
pState
));
static_cast
<
const
XFillFloatTransparenceItem
*>
(
pState
));
break
;
break
;
case
SID_ATTR_FILL_STYLE
:
case
SID_ATTR_FILL_STYLE
:
updateFillStyle
(
bDisabled
,
bDefault
,
updateFillStyle
(
bDisabled
,
bDefault
OrSet
,
static_cast
<
const
XFillStyleItem
*>
(
pState
));
static_cast
<
const
XFillStyleItem
*>
(
pState
));
break
;
break
;
case
SID_ATTR_FILL_COLOR
:
case
SID_ATTR_FILL_COLOR
:
updateFillColor
(
bDefault
,
updateFillColor
(
bDefault
OrSet
,
static_cast
<
const
XFillColorItem
*>
(
pState
));
static_cast
<
const
XFillColorItem
*>
(
pState
));
break
;
break
;
case
SID_ATTR_FILL_GRADIENT
:
case
SID_ATTR_FILL_GRADIENT
:
updateFillGradient
(
bDisabled
,
bDefault
,
updateFillGradient
(
bDisabled
,
bDefault
OrSet
,
static_cast
<
const
XFillGradientItem
*>
(
pState
));
static_cast
<
const
XFillGradientItem
*>
(
pState
));
break
;
break
;
case
SID_ATTR_FILL_HATCH
:
case
SID_ATTR_FILL_HATCH
:
updateFillHatch
(
bDisabled
,
bDefault
,
updateFillHatch
(
bDisabled
,
bDefault
OrSet
,
static_cast
<
const
XFillHatchItem
*>
(
pState
));
static_cast
<
const
XFillHatchItem
*>
(
pState
));
break
;
break
;
case
SID_ATTR_FILL_BITMAP
:
case
SID_ATTR_FILL_BITMAP
:
updateFillBitmap
(
bDisabled
,
bDefault
,
updateFillBitmap
(
bDisabled
,
bDefault
OrSet
,
static_cast
<
const
XFillBitmapItem
*>
(
pState
));
static_cast
<
const
XFillBitmapItem
*>
(
pState
));
break
;
break
;
case
SID_GRADIENT_LIST
:
case
SID_GRADIENT_LIST
:
...
...
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