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
5c8c9738
Kaydet (Commit)
5c8c9738
authored
Şub 01, 2013
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sw: move SwXRedlinePortion to unoport.hxx
Change-Id: I52eedcc1bc96e6d56e721a8ffdb5b7bf9e80b00e
üst
0e5f695a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
45 additions
and
33 deletions
+45
-33
unoport.hxx
sw/inc/unoport.hxx
+39
-2
unoredline.hxx
sw/inc/unoredline.hxx
+2
-29
unoredline.cxx
sw/source/core/unocore/unoredline.cxx
+1
-0
unosect.cxx
sw/source/core/unocore/unosect.cxx
+2
-1
unotbl.cxx
sw/source/core/unocore/unotbl.cxx
+1
-1
No files found.
sw/inc/unoport.hxx
Dosyayı görüntüle @
5c8c9738
...
@@ -16,8 +16,8 @@
...
@@ -16,8 +16,8 @@
* except in compliance with the License. You may obtain a copy of
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
*/
#ifndef _UNOPORT_HXX
#ifndef
SW
_UNOPORT_HXX
#define _UNOPORT_HXX
#define
SW
_UNOPORT_HXX
#include <unocrsr.hxx>
#include <unocrsr.hxx>
#include <unoevtlstnr.hxx>
#include <unoevtlstnr.hxx>
...
@@ -45,6 +45,7 @@
...
@@ -45,6 +45,7 @@
class
SwFmtFld
;
class
SwFmtFld
;
class
SwFrmFmt
;
class
SwFrmFmt
;
class
SwRedline
;
class
SwTxtRuby
;
class
SwTxtRuby
;
...
@@ -304,6 +305,42 @@ protected:
...
@@ -304,6 +305,42 @@ protected:
virtual
void
Modify
(
const
SfxPoolItem
*
pOld
,
const
SfxPoolItem
*
pNew
);
virtual
void
Modify
(
const
SfxPoolItem
*
pOld
,
const
SfxPoolItem
*
pNew
);
};
};
class
SwXRedlinePortion
:
public
SwXTextPortion
{
private
:
SwRedline
const
*
pRedline
;
void
Validate
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
using
SwXTextPortion
::
GetPropertyValue
;
public
:
SwXRedlinePortion
(
SwRedline
const
*
pRedline
,
SwUnoCrsr
const
*
pPortionCrsr
,
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
text
::
XText
>
xParent
,
sal_Bool
const
bIsStart
);
virtual
~
SwXRedlinePortion
();
static
::
com
::
sun
::
star
::
uno
::
Any
GetPropertyValue
(
OUString
const
&
PropertyName
,
SwRedline
const
&
rRedline
)
throw
();
static
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>
CreateRedlineProperties
(
SwRedline
const
&
rRedline
,
sal_Bool
const
bIsStart
)
throw
();
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>
SAL_CALL
getImplementationId
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
// XPropertySet
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
getPropertyValue
(
const
::
rtl
::
OUString
&
rPropertyName
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
};
#endif
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sw/inc/unoredline.hxx
Dosyayı görüntüle @
5c8c9738
...
@@ -16,10 +16,9 @@
...
@@ -16,10 +16,9 @@
* except in compliance with the License. You may obtain a copy of
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
*/
#ifndef _UNOREDLINE_HXX
#ifndef
SW
_UNOREDLINE_HXX
#define _UNOREDLINE_HXX
#define
SW
_UNOREDLINE_HXX
#include <unoport.hxx>
#include <unotext.hxx>
#include <unotext.hxx>
...
@@ -60,32 +59,6 @@ public:
...
@@ -60,32 +59,6 @@ public:
virtual
sal_Bool
SAL_CALL
hasElements
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
hasElements
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
};
};
class
SwXRedlinePortion
:
public
SwXTextPortion
{
const
SwRedline
*
pRedline
;
void
Validate
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
using
SwXTextPortion
::
GetPropertyValue
;
public
:
SwXRedlinePortion
(
const
SwRedline
*
pRed
,
const
SwUnoCrsr
*
pPortionCrsr
,
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
text
::
XText
>
xParent
,
sal_Bool
bIsStart
);
~
SwXRedlinePortion
();
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>
SAL_CALL
getImplementationId
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
//XPropertySet
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
getPropertyValue
(
const
::
rtl
::
OUString
&
PropertyName
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
static
::
com
::
sun
::
star
::
uno
::
Any
GetPropertyValue
(
const
::
rtl
::
OUString
&
PropertyName
,
const
SwRedline
&
rRedline
)
throw
();
static
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>
CreateRedlineProperties
(
const
SwRedline
&
rRedline
,
sal_Bool
bIsStart
)
throw
();
};
typedef
typedef
cppu
::
WeakImplHelper1
cppu
::
WeakImplHelper1
<
<
...
...
sw/source/core/unocore/unoredline.cxx
Dosyayı görüntüle @
5c8c9738
...
@@ -38,6 +38,7 @@
...
@@ -38,6 +38,7 @@
#include <unocoll.hxx>
#include <unocoll.hxx>
#include <unomap.hxx>
#include <unomap.hxx>
#include <unocrsr.hxx>
#include <unocrsr.hxx>
#include <unoport.hxx>
#include <unoredline.hxx>
#include <unoredline.hxx>
#include <doc.hxx>
#include <doc.hxx>
#include <docary.hxx>
#include <docary.hxx>
...
...
sw/source/core/unocore/unosect.cxx
Dosyayı görüntüle @
5c8c9738
...
@@ -34,7 +34,8 @@
...
@@ -34,7 +34,8 @@
#include <unotextrange.hxx>
#include <unotextrange.hxx>
#include <unosection.hxx>
#include <unosection.hxx>
#include <TextCursorHelper.hxx>
#include <TextCursorHelper.hxx>
#include <unoredline.hxx>
#include <unoevtlstnr.hxx>
#include <unoport.hxx>
#include <redline.hxx>
#include <redline.hxx>
#include <unomap.hxx>
#include <unomap.hxx>
#include <unocrsr.hxx>
#include <unocrsr.hxx>
...
...
sw/source/core/unocore/unotbl.cxx
Dosyayı görüntüle @
5c8c9738
...
@@ -51,7 +51,7 @@
...
@@ -51,7 +51,7 @@
#include <viewsh.hxx>
#include <viewsh.hxx>
#include <tabfrm.hxx>
#include <tabfrm.hxx>
#include <redline.hxx>
#include <redline.hxx>
#include <uno
redline
.hxx>
#include <uno
port
.hxx>
#include <unoprnms.hxx>
#include <unoprnms.hxx>
#include <unocrsrhelper.hxx>
#include <unocrsrhelper.hxx>
#include <com/sun/star/text/WrapTextMode.hpp>
#include <com/sun/star/text/WrapTextMode.hpp>
...
...
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