LibreOffice Module vcl (master) 1
osx/saldata.hxx
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 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#ifndef INCLUDED_VCL_INC_OSX_SALDATA_HXX
21#define INCLUDED_VCL_INC_OSX_SALDATA_HXX
22
23#include <config_features.h>
24
25#include <premac.h>
26#include <Cocoa/Cocoa.h>
27#include <postmac.h>
28
29#include <com/sun/star/uno/Reference.hxx>
30
31#include <vcl/ptrstyle.hxx>
32
33#include <svdata.hxx>
34#include <salwtype.hxx>
35
36#include <functional>
37#include <list>
38#include <map>
39#include <memory>
40#include <unordered_set>
41#include <vector>
42#include <o3tl/enumarray.hxx>
43
44#include <cstdio>
45#include <cstdarg>
46
48
49class AquaSalFrame;
50class AquaSalInstance;
51class SalObject;
52class SalFrame;
54class SalPrinter;
55class SystemFontList;
56
57#define SAL_CLIPRECT_COUNT 16
58#define INVALID_CURSOR_PTR reinterpret_cast<NSCursor*>(0xdeadbeef)
59
60// Singleton, instantiated from Application::Application() in
61// vcl/source/app/svapp.cxx.
62
63class SalData
64{
65public:
66 SALTIMERPROC mpTimerProc; // timer callback proc
68 std::list<AquaSalFrame*> maPresentationFrames; // list of frames in presentation mode
69 SalObject *mpFirstObject; // pointer of first object window
70 SalVirtualDevice *mpFirstVD; // first VirDev
71 SalPrinter *mpFirstPrinter; // first printing printer
72 std::unique_ptr<SystemFontList> mpFontList;
73 NSStatusItem* mpStatusItem; // one status item that draws all our statuses
74 // at the moment this is only one add menu button
75 CGColorSpaceRef mxRGBSpace;
76 CGColorSpaceRef mxGraySpace;
77
79 std::vector< NSMenuItem* > maFallbackMenu;
80 std::map< NSEvent*, bool > maKeyEventAnswer;
81
82 static oslThreadKey s_aAutoReleaseKey;
83
84 bool mbIsScrollbarDoubleMax; // TODO: support DoubleMin and DoubleBoth too
85#if !HAVE_FEATURE_MACOSX_SANDBOX
87#endif
89 sal_Int32 mnDPIX; // #i100617# read DPI only once per office life
90 sal_Int32 mnDPIY; // #i100617# read DPI only once per office life
91
92 css::uno::Reference< css::uno::XInterface > mxClipboard;
93
96
97 NSCursor* getCursor( PointerStyle i_eStyle );
98
100
101 static NSStatusItem* getStatusItem();
102};
103
106
107#endif // INCLUDED_VCL_INC_OSX_SALDATA_HXX
108
109/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
static NSStatusItem * getStatusItem()
AquaSalInstance * mpInstance
Definition: osx/saldata.hxx:67
SALTIMERPROC mpTimerProc
Definition: osx/saldata.hxx:66
sal_Int32 mnDPIX
Definition: osx/saldata.hxx:89
bool mbIsScrollbarDoubleMax
Definition: osx/saldata.hxx:84
static void ensureThreadAutoreleasePool()
CGColorSpaceRef mxGraySpace
Definition: iosinst.hxx:57
static oslThreadKey s_aAutoReleaseKey
Definition: osx/saldata.hxx:82
o3tl::enumarray< PointerStyle, NSCursor * > maCursors
Definition: osx/saldata.hxx:78
sal_Int32 mnDPIY
Definition: osx/saldata.hxx:90
NSObject * mpDockIconClickHandler
Definition: osx/saldata.hxx:88
std::map< NSEvent *, bool > maKeyEventAnswer
Definition: osx/saldata.hxx:80
SalVirtualDevice * mpFirstVD
Definition: osx/saldata.hxx:70
NSStatusItem * mpStatusItem
Definition: osx/saldata.hxx:73
std::list< AquaSalFrame * > maPresentationFrames
Definition: osx/saldata.hxx:68
NSCursor * getCursor(PointerStyle i_eStyle)
css::uno::Reference< css::uno::XInterface > mxClipboard
Definition: osx/saldata.hxx:92
AppleRemoteMainController * mpAppleRemoteMainController
Definition: osx/saldata.hxx:86
std::unique_ptr< SystemFontList > mpFontList
Definition: iosinst.hxx:55
std::vector< NSMenuItem * > maFallbackMenu
Definition: osx/saldata.hxx:79
SalObject * mpFirstObject
Definition: osx/saldata.hxx:69
CGColorSpaceRef mxRGBSpace
Definition: iosinst.hxx:56
SalPrinter * mpFirstPrinter
Definition: osx/saldata.hxx:71
A SalFrame is a system window (e.g. an X11 window).
Definition: salframe.hxx:115
A non-visible drawable/buffer (e.g. an X11 Pixmap).
Definition: salvd.hxx:30
void ImplSalYieldMutexRelease()
bool ImplSalYieldMutexTryToAcquire()
PointerStyle
Definition: ptrstyle.hxx:26
void(* SALTIMERPROC)()
Definition: salwtype.hxx:286