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
2b520e7d
Kaydet (Commit)
2b520e7d
authored
Mar 27, 2013
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bypass X11-specific fields for Android
Change-Id: Ic8bfd4467b2fbcdcfa2caeb04d4ebe95f13863a2
üst
839a61c4
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
29 additions
and
6 deletions
+29
-6
vclxsystemdependentwindow.cxx
toolkit/source/awt/vclxsystemdependentwindow.cxx
+3
-0
vclxtoolkit.cxx
toolkit/source/awt/vclxtoolkit.cxx
+4
-0
vclxtopwindow.cxx
toolkit/source/awt/vclxtopwindow.cxx
+3
-0
vclxwindow1.cxx
toolkit/source/awt/vclxwindow1.cxx
+2
-0
svpframe.cxx
vcl/headless/svpframe.cxx
+2
-5
sysdata.hxx
vcl/inc/vcl/sysdata.hxx
+13
-1
syschild.cxx
vcl/source/window/syschild.cxx
+2
-0
No files found.
toolkit/source/awt/vclxsystemdependentwindow.cxx
Dosyayı görüntüle @
2b520e7d
...
...
@@ -84,6 +84,9 @@ IMPL_XTYPEPROVIDER_END
{
aRet
<<=
(
sal_IntPtr
)
pSysData
->
pView
;
}
#elif (defined ANDROID)
// Nothing
(
void
)
SystemType
;
#elif (defined IOS)
// Nothing
(
void
)
SystemType
;
...
...
toolkit/source/awt/vclxtoolkit.cxx
Dosyayı görüntüle @
2b520e7d
...
...
@@ -936,6 +936,8 @@ Window* VCLXToolkit::ImplCreateWindow( VCLXWindow** ppNewComp,
aParentData
.
nSize
=
sizeof
(
aParentData
);
#if defined MACOSX
aParentData
.
pView
=
reinterpret_cast
<
NSView
*>
(
nWindowHandle
);
#elif defined ANDROID
// Nothing
#elif defined IOS
// Nothing
#elif defined UNX
...
...
@@ -1183,6 +1185,8 @@ css::uno::Reference< css::awt::XWindowPeer > VCLXToolkit::ImplCreateWindow(
aParentData
.
nSize
=
sizeof
(
aParentData
);
#if defined MACOSX
aParentData
.
pView
=
reinterpret_cast
<
NSView
*>
(
nWindowHandle
);
#elif defined ANDROID
// Nothing
#elif defined IOS
// Nothing
#elif defined UNX
...
...
toolkit/source/awt/vclxtopwindow.cxx
Dosyayı görüntüle @
2b520e7d
...
...
@@ -96,6 +96,9 @@ Sequence< Type > VCLXTopWindow_Base::getTypes() throw(RuntimeException)
{
aRet
<<=
(
sal_IntPtr
)
pSysData
->
pView
;
}
#elif (defined ANDROID)
// Nothing
(
void
)
SystemType
;
#elif (defined IOS)
// Nothing
(
void
)
SystemType
;
...
...
toolkit/source/awt/vclxwindow1.cxx
Dosyayı görüntüle @
2b520e7d
...
...
@@ -85,6 +85,8 @@ void VCLXWindow::SetSystemParent_Impl( const com::sun::star::uno::Any& rHandle )
aSysParentData
.
hWnd
=
(
HWND
)
nHandle
;
#elif defined( MACOSX )
aSysParentData
.
pView
=
reinterpret_cast
<
NSView
*>
(
nHandle
);
#elif defined( ANDROID )
// Nothing
#elif defined( IOS )
// Nothing
#elif defined( UNX )
...
...
vcl/headless/svpframe.cxx
Dosyayı görüntüle @
2b520e7d
...
...
@@ -84,14 +84,11 @@ SvpSalFrame::SvpSalFrame( SvpSalInstance* pInstance,
m_aSystemChildData
.
nSize
=
sizeof
(
SystemChildData
);
#ifdef IOS
// Nothing
#elif defined ANDROID
// Nothing
#else
m_aSystemChildData
.
pSalFrame
=
this
;
#ifdef ANDROID
// We want 32-bit RGBA bitmaps
m_aSystemChildData
.
nDepth
=
32
;
#else
m_aSystemChildData
.
nDepth
=
24
;
#endif
#endif
if
(
m_pParent
)
...
...
vcl/inc/vcl/sysdata.hxx
Dosyayı görüntüle @
2b520e7d
...
...
@@ -64,6 +64,8 @@ struct SystemEnvData
HWND
hWnd
;
// the window hwnd
#elif defined( MACOSX )
NSView
*
pView
;
// the cocoa (NSView *) implementing this object
#elif defined( ANDROID )
// Nothing
#elif defined( IOS )
// Nothing
#elif defined( UNX )
...
...
@@ -94,6 +96,8 @@ struct SystemParentData
HWND
hWnd
;
// the window hwnd
#elif defined( MACOSX )
NSView
*
pView
;
// the cocoa (NSView *) implementing this object
#elif defined( ANDROID )
// Nothing
#elif defined( IOS )
// Nothing
#elif defined( UNX )
...
...
@@ -114,6 +118,8 @@ struct SystemMenuData
HMENU
hMenu
;
// the menu handle of the menu bar
#elif defined( MACOSX )
// Nothing
#elif defined( ANDROID )
// Nothing
#elif defined( IOS )
// Nothing
#elif defined( UNX )
...
...
@@ -132,6 +138,8 @@ struct SystemGraphicsData
HDC
hDC
;
// handle to a device context
#elif defined( MACOSX )
CGContextRef
rCGContext
;
// CoreGraphics graphic context
#elif defined( ANDROID )
// Nothing
#elif defined( IOS )
// Nothing
#elif defined( UNX )
...
...
@@ -149,6 +157,8 @@ struct SystemGraphicsData
,
hDC
(
0
)
#elif defined( MACOSX )
// Nothing
#elif defined( ANDROID )
// Nothing
#elif defined( IOS )
// Nothing
#elif defined( UNX )
...
...
@@ -174,7 +184,9 @@ struct SystemWindowData
#if defined( WNT ) // meaningless on Windows
#elif defined( MACOSX ) // meaningless on Mac OS X
// Nothing
#elif defined( IOS ) // and maybe on iOS, too, then
#elif defined( ANDROID )
// Nothing
#elif defined( IOS )
// Nothing
#elif defined( UNX )
void
*
pVisual
;
// the visual to be used
...
...
vcl/source/window/syschild.cxx
Dosyayı görüntüle @
2b520e7d
...
...
@@ -224,6 +224,8 @@ sal_IntPtr SystemChildWindow::GetParentWindowHandle( sal_Bool bUseJava )
#elif defined MACOSX
// FIXME: this is wrong
nRet
=
reinterpret_cast
<
sal_IntPtr
>
(
GetSystemData
()
->
pView
);
#elif defined ANDROID
// Nothing
#elif defined IOS
// Nothing
#elif defined UNX
...
...
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