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
11e83bc7
Kaydet (Commit)
11e83bc7
authored
Mar 20, 2015
tarafından
Noel Grandin
Kaydeden (comit)
Michael Meeks
Nis 10, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
wrap some more OutputDevice in VclPtr
Change-Id: I6f4a74bf56543e4d31d3b84a0cd2830d4f4d669a
üst
61b224f3
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
21 additions
and
16 deletions
+21
-16
numpages.cxx
cui/source/tabpages/numpages.cxx
+1
-1
dociter.hxx
sc/inc/dociter.hxx
+1
-1
editutil.hxx
sc/inc/editutil.hxx
+2
-5
rowheightcontext.hxx
sc/inc/rowheightcontext.hxx
+3
-3
editutil.cxx
sc/source/core/tool/editutil.cxx
+8
-0
cbutton.hxx
sc/source/ui/inc/cbutton.hxx
+1
-1
csvruler.hxx
sc/source/ui/inc/csvruler.hxx
+2
-2
drawview.hxx
sc/source/ui/inc/drawview.hxx
+1
-1
prevloc.hxx
sc/source/ui/inc/prevloc.hxx
+1
-1
printfun.hxx
sc/source/ui/inc/printfun.hxx
+1
-1
No files found.
cui/source/tabpages/numpages.cxx
Dosyayı görüntüle @
11e83bc7
...
...
@@ -2379,7 +2379,7 @@ void SvxNumberingPreview::Paint( const Rectangle& /*rRect*/ )
const
Color
aBackColor
=
rStyleSettings
.
GetFieldColor
();
const
Color
aTextColor
=
rStyleSettings
.
GetFieldTextColor
();
boost
::
scoped_p
tr
<
VirtualDevice
>
pVDev
(
new
VirtualDevice
(
*
this
));
ScopedVclP
tr
<
VirtualDevice
>
pVDev
(
new
VirtualDevice
(
*
this
));
pVDev
->
EnableRTL
(
IsRTLEnabled
()
);
pVDev
->
SetMapMode
(
GetMapMode
());
pVDev
->
SetOutputSize
(
aSize
);
...
...
sc/inc/dociter.hxx
Dosyayı görüntüle @
11e83bc7
...
...
@@ -588,7 +588,7 @@ private:
private
:
ScDocument
&
mrDoc
;
OutputDevice
*
mpOutDev
;
VclPtr
<
OutputDevice
>
mpOutDev
;
double
mfPPTX
;
double
mfPPTY
;
const
::
std
::
vector
<
TabRanges
>*
mpTabRangesArray
;
...
...
sc/inc/editutil.hxx
Dosyayı görüntüle @
11e83bc7
...
...
@@ -41,7 +41,7 @@ class ScEditUtil
SCROW
nRow
;
SCTAB
nTab
;
Point
aScrPos
;
OutputDevice
*
pDev
;
// MapMode has to be set
VclPtr
<
OutputDevice
>
pDev
;
// MapMode has to be set
double
nPPTX
;
double
nPPTY
;
Fraction
aZoomX
;
...
...
@@ -80,10 +80,7 @@ public:
ScEditUtil
(
ScDocument
*
pDocument
,
SCCOL
nX
,
SCROW
nY
,
SCTAB
nZ
,
const
Point
&
rScrPosPixel
,
OutputDevice
*
pDevice
,
double
nScaleX
,
double
nScaleY
,
const
Fraction
&
rX
,
const
Fraction
&
rY
)
:
pDoc
(
pDocument
),
nCol
(
nX
),
nRow
(
nY
),
nTab
(
nZ
),
aScrPos
(
rScrPosPixel
),
pDev
(
pDevice
),
nPPTX
(
nScaleX
),
nPPTY
(
nScaleY
),
aZoomX
(
rX
),
aZoomY
(
rY
)
{}
const
Fraction
&
rX
,
const
Fraction
&
rY
);
Rectangle
GetEditArea
(
const
ScPatternAttr
*
pPattern
,
bool
bForceToTop
);
};
...
...
sc/inc/rowheightcontext.hxx
Dosyayı görüntüle @
11e83bc7
...
...
@@ -13,11 +13,11 @@
#include "scdllapi.h"
#include <tools/fract.hxx>
#include <vcl/vclptr.hxx>
#include <vcl/outdev.hxx>
#include <vector>
class
OutputDevice
;
namespace
sc
{
class
SC_DLLPUBLIC
RowHeightContext
...
...
@@ -28,7 +28,7 @@ class SC_DLLPUBLIC RowHeightContext
double
mfPPTY
;
Fraction
maZoomX
;
Fraction
maZoomY
;
OutputDevice
*
mpOutDev
;
VclPtr
<
OutputDevice
>
mpOutDev
;
sal_uInt16
mnExtraHeight
;
bool
mbForceAutoSize
;
/// whether to set height to optimal even when the manual height flag is set.
...
...
sc/source/core/tool/editutil.cxx
Dosyayı görüntüle @
11e83bc7
...
...
@@ -53,6 +53,14 @@ using namespace com::sun::star;
// STATIC DATA
// Delimiters zusaetzlich zu EditEngine-Default:
ScEditUtil
::
ScEditUtil
(
ScDocument
*
pDocument
,
SCCOL
nX
,
SCROW
nY
,
SCTAB
nZ
,
const
Point
&
rScrPosPixel
,
OutputDevice
*
pDevice
,
double
nScaleX
,
double
nScaleY
,
const
Fraction
&
rX
,
const
Fraction
&
rY
)
:
pDoc
(
pDocument
),
nCol
(
nX
),
nRow
(
nY
),
nTab
(
nZ
),
aScrPos
(
rScrPosPixel
),
pDev
(
pDevice
),
nPPTX
(
nScaleX
),
nPPTY
(
nScaleY
),
aZoomX
(
rX
),
aZoomY
(
rY
)
{}
OUString
ScEditUtil
::
ModifyDelimiters
(
const
OUString
&
rOld
)
{
// underscore is used in function argument names
...
...
sc/source/ui/inc/cbutton.hxx
Dosyayı görüntüle @
11e83bc7
...
...
@@ -60,7 +60,7 @@ private:
bool
bState
);
protected
:
OutputDevice
*
pOut
;
VclPtr
<
OutputDevice
>
pOut
;
Point
aBtnPos
;
Size
aBtnSize
;
};
...
...
sc/source/ui/inc/csvruler.hxx
Dosyayı görüntüle @
11e83bc7
...
...
@@ -32,8 +32,8 @@ class ScAccessibleCsvControl;
class
SC_DLLPUBLIC
ScCsvRuler
:
public
ScCsvControl
{
private
:
VirtualDevice
maBackgrDev
;
/// Ruler background, scaling.
VirtualDevice
maRulerDev
;
/// Ruler with splits and cursor.
ScopedVclPtr
<
VirtualDevice
>
maBackgrDev
;
/// Ruler background, scaling.
ScopedVclPtr
<
VirtualDevice
>
maRulerDev
;
/// Ruler with splits and cursor.
Color
maBackColor
;
/// Background color.
Color
maActiveColor
;
/// Color for active part of ruler.
...
...
sc/source/ui/inc/drawview.hxx
Dosyayı görüntüle @
11e83bc7
...
...
@@ -34,7 +34,7 @@ class SdrUndoManager;
class
ScDrawView
:
public
FmFormView
{
ScViewData
*
pViewData
;
OutputDevice
*
pDev
;
//! needed ?
VclPtr
<
OutputDevice
>
pDev
;
//! needed ?
ScDocument
*
pDoc
;
SCTAB
nTab
;
Fraction
aScaleX
;
// Factor for Drawing-MapMode
...
...
sc/source/ui/inc/prevloc.hxx
Dosyayı görüntüle @
11e83bc7
...
...
@@ -82,7 +82,7 @@ public:
class
ScPreviewLocationData
{
OutputDevice
*
pWindow
;
VclPtr
<
OutputDevice
>
pWindow
;
ScDocument
*
pDoc
;
MapMode
aCellMapMode
;
MapMode
aDrawMapMode
[
SC_PREVIEW_MAXRANGES
];
...
...
sc/source/ui/inc/printfun.hxx
Dosyayı görüntüle @
11e83bc7
...
...
@@ -131,7 +131,7 @@ private:
ScDocShell
*
pDocShell
;
ScDocument
*
pDoc
;
SfxPrinter
*
pPrinter
;
OutputDevice
*
pDev
;
VclPtr
<
OutputDevice
>
pDev
;
FmFormView
*
pDrawView
;
MapMode
aOldPrinterMode
;
// MapMode before the call
...
...
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