1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 #ifndef INCLUDED_VCL_INC_UNX_GTK_GTKSYS_HXX
10 #define INCLUDED_VCL_INC_UNX_GTK_GTKSYS_HXX
12 #include "generic/gensys.h"
14 #include <unx/saltype.h>
17 class GtkSalSystem
: public SalGenericSystem
19 typedef std::deque
<std::pair
<GdkScreen
*, int> > ScreenMonitors_t
;
21 GdkDisplay
*mpDisplay
;
22 // Number of monitors for every active screen.
23 ScreenMonitors_t maScreenMonitors
;
26 virtual ~GtkSalSystem();
27 static GtkSalSystem
*GetSingleton();
29 virtual bool IsUnifiedDisplay() SAL_OVERRIDE
;
30 virtual unsigned int GetDisplayScreenCount() SAL_OVERRIDE
;
31 virtual unsigned int GetDisplayBuiltInScreen() SAL_OVERRIDE
;
32 virtual OUString
GetDisplayScreenName (unsigned int nScreen
) SAL_OVERRIDE
;
33 virtual Rectangle
GetDisplayScreenPosSizePixel (unsigned int nScreen
) SAL_OVERRIDE
;
34 virtual int ShowNativeDialog (const OUString
& rTitle
,
35 const OUString
& rMessage
,
36 const std::list
< OUString
>& rButtons
,
37 int nDefButton
) SAL_OVERRIDE
;
38 SalX11Screen
GetDisplayDefaultXScreen()
39 { return getXScreenFromDisplayScreen( GetDisplayBuiltInScreen() ); }
40 int GetDisplayXScreenCount();
41 SalX11Screen
getXScreenFromDisplayScreen(unsigned int nDisplayScreen
);
42 void countScreenMonitors();
43 // We have a 'screen' number that is combined from screen-idx + monitor-idx
44 int getScreenIdxFromPtr (GdkScreen
*pScreen
);
45 int getScreenMonitorIdx (GdkScreen
*pScreen
, int nX
, int nY
);
46 GdkScreen
*getScreenMonitorFromIdx (int nIdx
, gint
&nMonitor
);
49 #endif // INCLUDED_VCL_INC_UNX_GTK_GTKSYS_HXX
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */