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
6bc1f24c
Kaydet (Commit)
6bc1f24c
authored
Mar 25, 2012
tarafından
Santiago Martinez
Kaydeden (comit)
Caolán McNamara
Mar 26, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused code in svtools.
üst
c576a5c4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
26 deletions
+0
-26
winmtf.cxx
svtools/source/filter/wmf/winmtf.cxx
+0
-23
winmtf.hxx
svtools/source/filter/wmf/winmtf.hxx
+0
-3
No files found.
svtools/source/filter/wmf/winmtf.cxx
Dosyayı görüntüle @
6bc1f24c
...
@@ -658,13 +658,6 @@ void WinMtfOutput::SelectObject( sal_Int32 nIndex )
...
@@ -658,13 +658,6 @@ void WinMtfOutput::SelectObject( sal_Int32 nIndex )
//-----------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------
void
WinMtfOutput
::
SetFont
(
const
Font
&
rFont
)
{
maFont
=
rFont
;
}
//-----------------------------------------------------------------------------------
const
Font
&
WinMtfOutput
::
GetFont
()
const
const
Font
&
WinMtfOutput
::
GetFont
()
const
{
{
return
maFont
;
return
maFont
;
...
@@ -679,13 +672,6 @@ void WinMtfOutput::SetTextLayoutMode( const sal_uInt32 nTextLayoutMode )
...
@@ -679,13 +672,6 @@ void WinMtfOutput::SetTextLayoutMode( const sal_uInt32 nTextLayoutMode )
//-----------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------
sal_uInt32
WinMtfOutput
::
GetTextLayoutMode
()
const
{
return
mnTextLayoutMode
;
}
//-----------------------------------------------------------------------------------
void
WinMtfOutput
::
SetBkMode
(
sal_uInt32
nMode
)
void
WinMtfOutput
::
SetBkMode
(
sal_uInt32
nMode
)
{
{
mnBkMode
=
nMode
;
mnBkMode
=
nMode
;
...
@@ -1151,15 +1137,6 @@ void WinMtfOutput::LineTo( const Point& rPoint, sal_Bool bRecordPath )
...
@@ -1151,15 +1137,6 @@ void WinMtfOutput::LineTo( const Point& rPoint, sal_Bool bRecordPath )
//-----------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------
void
WinMtfOutput
::
DrawLine
(
const
Point
&
rSource
,
const
Point
&
rDest
)
{
UpdateClipRegion
();
UpdateLineStyle
();
mpGDIMetaFile
->
AddAction
(
new
MetaLineAction
(
ImplMap
(
rSource
),
ImplMap
(
rDest
),
maLineStyle
.
aLineInfo
)
);
}
//-----------------------------------------------------------------------------------
void
WinMtfOutput
::
DrawRect
(
const
Rectangle
&
rRect
,
sal_Bool
bEdge
)
void
WinMtfOutput
::
DrawRect
(
const
Rectangle
&
rRect
,
sal_Bool
bEdge
)
{
{
UpdateClipRegion
();
UpdateClipRegion
();
...
...
svtools/source/filter/wmf/winmtf.hxx
Dosyayı görüntüle @
6bc1f24c
...
@@ -696,10 +696,8 @@ public:
...
@@ -696,10 +696,8 @@ public:
void
SelectObject
(
sal_Int32
nIndex
);
void
SelectObject
(
sal_Int32
nIndex
);
CharSet
GetCharSet
(){
return
maFont
.
GetCharSet
();
};
CharSet
GetCharSet
(){
return
maFont
.
GetCharSet
();
};
WinMtfFillStyle
&
GetFillStyle
()
{
return
maFillStyle
;
}
WinMtfFillStyle
&
GetFillStyle
()
{
return
maFillStyle
;
}
void
SetFont
(
const
Font
&
rFont
);
const
Font
&
GetFont
()
const
;
const
Font
&
GetFont
()
const
;
void
SetTextLayoutMode
(
const
sal_uInt32
nLayoutMode
);
void
SetTextLayoutMode
(
const
sal_uInt32
nLayoutMode
);
sal_uInt32
GetTextLayoutMode
()
const
;
void
ClearPath
(){
aPathObj
.
Init
();
};
void
ClearPath
(){
aPathObj
.
Init
();
};
void
ClosePath
(){
aPathObj
.
ClosePath
();
};
void
ClosePath
(){
aPathObj
.
ClosePath
();
};
...
@@ -708,7 +706,6 @@ public:
...
@@ -708,7 +706,6 @@ public:
void
MoveTo
(
const
Point
&
rPoint
,
sal_Bool
bRecordPath
=
sal_False
);
void
MoveTo
(
const
Point
&
rPoint
,
sal_Bool
bRecordPath
=
sal_False
);
void
LineTo
(
const
Point
&
rPoint
,
sal_Bool
bRecordPath
=
sal_False
);
void
LineTo
(
const
Point
&
rPoint
,
sal_Bool
bRecordPath
=
sal_False
);
void
DrawPixel
(
const
Point
&
rSource
,
const
Color
&
rColor
);
void
DrawPixel
(
const
Point
&
rSource
,
const
Color
&
rColor
);
void
DrawLine
(
const
Point
&
rSource
,
const
Point
&
rDest
);
void
DrawRect
(
const
Rectangle
&
rRect
,
sal_Bool
bEdge
=
sal_True
);
void
DrawRect
(
const
Rectangle
&
rRect
,
sal_Bool
bEdge
=
sal_True
);
void
DrawRoundRect
(
const
Rectangle
&
rRect
,
const
Size
&
rSize
);
void
DrawRoundRect
(
const
Rectangle
&
rRect
,
const
Size
&
rSize
);
void
DrawEllipse
(
const
Rectangle
&
rRect
);
void
DrawEllipse
(
const
Rectangle
&
rRect
);
...
...
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