summaryrefslogtreecommitdiff
path: root/vcl/source/window/syswin.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-04-03 14:48:43 +0000
committerKurt Zenker <kz@openoffice.org>2008-04-03 14:48:43 +0000
commit4bf12cba85869110be8b65042e4cf327503e2852 (patch)
treef61824f66c58898d501ef08609beaa55a6fda1d7 /vcl/source/window/syswin.cxx
parent6b5b23a68aa745f12ba7a630c14208eedc40674c (diff)
INTEGRATION: CWS presenterview (1.47.174); FILE MERGED
2008/02/26 09:05:38 af 1.47.174.5: RESYNC: (1.50-1.51); FILE MERGED 2007/12/13 10:31:08 af 1.47.174.4: RESYNC: (1.49-1.50); FILE MERGED 2007/09/11 16:20:16 af 1.47.174.3: RESYNC: (1.48-1.49); FILE MERGED 2007/07/11 10:20:34 af 1.47.174.2: RESYNC: (1.47-1.48); FILE MERGED 2007/03/02 10:21:33 pl 1.47.174.1: #i74774# new Get/SetScreenNumber functionality for SystemWindows
Diffstat (limited to 'vcl/source/window/syswin.cxx')
-rw-r--r--vcl/source/window/syswin.cxx19
1 files changed, 17 insertions, 2 deletions
diff --git a/vcl/source/window/syswin.cxx b/vcl/source/window/syswin.cxx
index 817503ad0d40..2dd2f5b2913a 100644
--- a/vcl/source/window/syswin.cxx
+++ b/vcl/source/window/syswin.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: syswin.cxx,v $
*
- * $Revision: 1.51 $
+ * $Revision: 1.52 $
*
- * last change: $Author: kz $ $Date: 2007-12-12 13:20:13 $
+ * last change: $Author: kz $ $Date: 2008-04-03 15:48:43 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1011,9 +1011,24 @@ void SystemWindow::SetMenuBarMode( USHORT nMode )
}
// -----------------------------------------------------------------------
+
BOOL SystemWindow::ImplIsInTaskPaneList( Window* pWin )
{
if( mpImplData && mpImplData->mpTaskPaneList )
return mpImplData->mpTaskPaneList->IsInList( pWin );
return FALSE;
}
+
+// -----------------------------------------------------------------------
+
+unsigned int SystemWindow::GetScreenNumber() const
+{
+ return mpWindowImpl->mpFrame->maGeometry.nScreenNumber;
+}
+
+// -----------------------------------------------------------------------
+
+void SystemWindow::SetScreenNumber( unsigned int nScreen)
+{
+ mpWindowImpl->mpFrame->SetScreenNumber( nScreen );
+}