LibreOffice Module vcl (master)
1
vcl
inc
unx
saltype.h
Go to the documentation of this file.
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
* This file is part of the LibreOffice project.
4
*
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/.
8
*/
9
#ifndef INCLUDED_VCL_INC_UNX_SALTYPE_H
10
#define INCLUDED_VCL_INC_UNX_SALTYPE_H
11
12
// an X11 screen index - this unpleasant construct is to allow
13
// us to cleanly separate the 'DisplayScreen' concept - as used
14
// in the public facing API, from X's idea of screen indices.
15
// Both of these are plain unsigned integers called 'screen'
16
class
SalX11Screen
{
17
unsigned
int
mnXScreen
;
18
public
:
19
explicit
SalX11Screen
(
unsigned
int
nXScreen) :
mnXScreen
( nXScreen ) {}
20
unsigned
int
getXScreen
()
const
{
return
mnXScreen
; }
21
bool
operator==
(
const
SalX11Screen
&rOther)
const
{
return
rOther.
mnXScreen
==
mnXScreen
; }
22
bool
operator!=
(
const
SalX11Screen
&rOther)
const
{
return
rOther.
mnXScreen
!=
mnXScreen
; }
23
};
24
25
#endif
// INCLUDED_VCL_INC_UNX_SALTYPE_H
26
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
SalX11Screen
Definition:
saltype.h:16
SalX11Screen::getXScreen
unsigned int getXScreen() const
Definition:
saltype.h:20
SalX11Screen::SalX11Screen
SalX11Screen(unsigned int nXScreen)
Definition:
saltype.h:19
SalX11Screen::operator!=
bool operator!=(const SalX11Screen &rOther) const
Definition:
saltype.h:22
SalX11Screen::mnXScreen
unsigned int mnXScreen
Definition:
saltype.h:17
SalX11Screen::operator==
bool operator==(const SalX11Screen &rOther) const
Definition:
saltype.h:21
Generated on Sun Jul 30 2023 04:35:02 for LibreOffice Module vcl (master) by
1.9.3