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
78c73f42
Kaydet (Commit)
78c73f42
authored
Tem 09, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SdrPaintWindow: optionally take a vcl::Window, too
Change-Id: Ibf6c0cc2e6dc8fe6979632f6acb1b065984cd73f
üst
24c50b60
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
sdrpaintwindow.hxx
include/svx/sdrpaintwindow.hxx
+5
-1
sdrpaintwindow.cxx
svx/source/svdraw/sdrpaintwindow.cxx
+2
-1
No files found.
include/svx/sdrpaintwindow.hxx
Dosyayı görüntüle @
78c73f42
...
...
@@ -68,6 +68,9 @@ private:
// the OutputDevice this window represents
OutputDevice
&
mrOutputDevice
;
/// In case mrOutputDevice is a buffer for a vcl::Window, this is the window.
vcl
::
Window
*
mpWindow
;
// the SdrPaintView this window belongs to
SdrPaintView
&
mrPaintView
;
...
...
@@ -95,12 +98,13 @@ private:
void
impCreateOverlayManager
();
public
:
SdrPaintWindow
(
SdrPaintView
&
rNewPaintView
,
OutputDevice
&
rOut
);
SdrPaintWindow
(
SdrPaintView
&
rNewPaintView
,
OutputDevice
&
rOut
,
vcl
::
Window
*
pWindow
=
0
);
~
SdrPaintWindow
();
// data read accesses
SdrPaintView
&
GetPaintView
()
const
{
return
mrPaintView
;
}
OutputDevice
&
GetOutputDevice
()
const
{
return
mrOutputDevice
;
}
vcl
::
Window
*
GetWindow
()
const
{
return
mpWindow
;
}
// OVERLAYMANAGER
rtl
::
Reference
<
sdr
::
overlay
::
OverlayManager
>
GetOverlayManager
()
const
;
...
...
svx/source/svdraw/sdrpaintwindow.cxx
Dosyayı görüntüle @
78c73f42
...
...
@@ -244,8 +244,9 @@ void SdrPaintWindow::impCreateOverlayManager()
}
}
SdrPaintWindow
::
SdrPaintWindow
(
SdrPaintView
&
rNewPaintView
,
OutputDevice
&
rOut
)
SdrPaintWindow
::
SdrPaintWindow
(
SdrPaintView
&
rNewPaintView
,
OutputDevice
&
rOut
,
vcl
::
Window
*
pWindow
)
:
mrOutputDevice
(
rOut
),
mpWindow
(
pWindow
),
mrPaintView
(
rNewPaintView
),
mpPreRenderDevice
(
0L
),
mbTemporaryTarget
(
false
),
// #i72889#
...
...
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