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
8599b29b
Kaydet (Commit)
8599b29b
authored
Ara 18, 2014
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sw: prefix SwRowFrm members
Change-Id: I262efe47d8a28d1462cf35314a99c4404ffa2200
üst
217c09ad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
24 deletions
+24
-24
rowfrm.hxx
sw/source/core/inc/rowfrm.hxx
+14
-14
tabfrm.cxx
sw/source/core/layout/tabfrm.cxx
+10
-10
No files found.
sw/source/core/inc/rowfrm.hxx
Dosyayı görüntüle @
8599b29b
...
...
@@ -34,16 +34,16 @@ class SwRowFrm: public SwLayoutFrm
virtual
SwTwips
ShrinkFrm
(
SwTwips
,
bool
bTst
=
false
,
bool
bInfo
=
false
)
SAL_OVERRIDE
;
virtual
SwTwips
GrowFrm
(
SwTwips
,
bool
bTst
=
false
,
bool
bInfo
=
false
)
SAL_OVERRIDE
;
const
SwTableLine
*
pTabLine
;
SwRowFrm
*
pFollowRow
;
const
SwTableLine
*
m_
pTabLine
;
SwRowFrm
*
m_
pFollowRow
;
// #i29550#
sal_uInt16
mnTopMarginForLowers
;
sal_uInt16
mnBottomMarginForLowers
;
sal_uInt16
mnBottomLineSize
;
// <-- collapsing
bool
bIsFollowFlowRow
;
bool
bIsRepeatedHeadline
;
bool
mbIsRowSpanLine
;
bool
m_
bIsFollowFlowRow
;
bool
m_
bIsRepeatedHeadline
;
bool
m
_
bIsRowSpanLine
;
protected
:
virtual
void
MakeAll
()
SAL_OVERRIDE
;
...
...
@@ -63,7 +63,7 @@ public:
*/
void
RegistFlys
(
SwPageFrm
*
pPage
=
0
);
const
SwTableLine
*
GetTabLine
()
const
{
return
pTabLine
;
}
const
SwTableLine
*
GetTabLine
()
const
{
return
m_
pTabLine
;
}
/**
* Adapts the Cells to the current height; invalidates the Cells if
...
...
@@ -71,8 +71,8 @@ public:
*/
void
AdjustCells
(
const
SwTwips
nHeight
,
const
bool
bHeight
);
SwRowFrm
*
GetFollowRow
()
const
{
return
pFollowRow
;
}
void
SetFollowRow
(
SwRowFrm
*
pNew
)
{
pFollowRow
=
pNew
;
}
SwRowFrm
*
GetFollowRow
()
const
{
return
m_
pFollowRow
;
}
void
SetFollowRow
(
SwRowFrm
*
pNew
)
{
m_
pFollowRow
=
pNew
;
}
// #i29550#
sal_uInt16
GetTopMarginForLowers
()
const
{
return
mnTopMarginForLowers
;
}
...
...
@@ -83,21 +83,21 @@ public:
void
SetBottomLineSize
(
sal_uInt16
nNew
)
{
mnBottomLineSize
=
nNew
;
}
// <-- collapsing
bool
IsRepeatedHeadline
()
const
{
return
bIsRepeatedHeadline
;
}
void
SetRepeatedHeadline
(
bool
bNew
)
{
bIsRepeatedHeadline
=
bNew
;
}
bool
IsRepeatedHeadline
()
const
{
return
m_
bIsRepeatedHeadline
;
}
void
SetRepeatedHeadline
(
bool
bNew
)
{
m_
bIsRepeatedHeadline
=
bNew
;
}
// --> split table rows
bool
IsRowSplitAllowed
()
const
;
bool
IsFollowFlowRow
()
const
{
return
bIsFollowFlowRow
;
}
void
SetFollowFlowRow
(
bool
bNew
)
{
bIsFollowFlowRow
=
bNew
;
}
bool
IsFollowFlowRow
()
const
{
return
m_
bIsFollowFlowRow
;
}
void
SetFollowFlowRow
(
bool
bNew
)
{
m_
bIsFollowFlowRow
=
bNew
;
}
// <-- split table rows
// #131283# Table row keep feature
bool
ShouldRowKeepWithNext
()
const
;
// #i4032# NEW TABLES
bool
IsRowSpanLine
()
const
{
return
mbIsRowSpanLine
;
}
void
SetRowSpanLine
(
bool
bNew
)
{
mbIsRowSpanLine
=
bNew
;
}
bool
IsRowSpanLine
()
const
{
return
m
_
bIsRowSpanLine
;
}
void
SetRowSpanLine
(
bool
bNew
)
{
m
_
bIsRowSpanLine
=
bNew
;
}
DECL_FIXEDMEMPOOL_NEWDEL
(
SwRowFrm
)
};
...
...
sw/source/core/layout/tabfrm.cxx
Dosyayı görüntüle @
8599b29b
...
...
@@ -3480,19 +3480,19 @@ void SwTabFrm::Prepare( const PrepareHint eHint, const void *, bool )
CheckDirChange
();
}
SwRowFrm
::
SwRowFrm
(
const
SwTableLine
&
rLine
,
SwFrm
*
pSib
,
bool
bInsertContent
)
:
SwLayoutFrm
(
rLine
.
GetFrmFmt
(),
pSib
),
pTabLine
(
&
rLine
),
pFollowRow
(
0
),
SwRowFrm
::
SwRowFrm
(
const
SwTableLine
&
rLine
,
SwFrm
*
pSib
,
bool
bInsertContent
)
:
SwLayoutFrm
(
rLine
.
GetFrmFmt
(),
pSib
)
,
m_pTabLine
(
&
rLine
)
,
m_pFollowRow
(
0
)
// #i29550#
mnTopMarginForLowers
(
0
),
mnBottomMarginForLowers
(
0
),
mnBottomLineSize
(
0
),
,
mnTopMarginForLowers
(
0
)
,
mnBottomMarginForLowers
(
0
)
,
mnBottomLineSize
(
0
)
// --> split table rows
bIsFollowFlowRow
(
false
),
,
m_bIsFollowFlowRow
(
false
)
// <-- split table rows
bIsRepeatedHeadline
(
false
),
m
bIsRowSpanLine
(
false
)
,
m_bIsRepeatedHeadline
(
false
)
,
m_
bIsRowSpanLine
(
false
)
{
mnType
=
FRMC_ROW
;
...
...
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