bump product version to 6.4.0.3
[LibreOffice.git] / vcl / inc / osx / saldata.hxx
blob483902ff21cf981d90224884c5fdefd27bee70ec
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_VCL_INC_OSX_SALDATA_HXX
21 #define INCLUDED_VCL_INC_OSX_SALDATA_HXX
23 #include <config_features.h>
25 #include <premac.h>
26 #include <Cocoa/Cocoa.h>
27 #include <postmac.h>
29 #include <com/sun/star/uno/Reference.hxx>
31 #include <vcl/ptrstyle.hxx>
33 #include <svdata.hxx>
34 #include <salwtype.hxx>
36 #include <functional>
37 #include <list>
38 #include <map>
39 #include <unordered_set>
40 #include <vector>
41 #include <o3tl/enumarray.hxx>
43 #include <cstdio>
44 #include <cstdarg>
46 #include <apple_remote/RemoteMainController.h>
48 class AquaSalFrame;
49 class AquaSalInstance;
50 class SalObject;
51 class SalFrame;
52 class SalVirtualDevice;
53 class SalPrinter;
54 class SystemFontList;
56 #define SAL_CLIPRECT_COUNT 16
57 #define INVALID_CURSOR_PTR reinterpret_cast<NSCursor*>(0xdeadbeef)
59 // Singleton, instantiated from Application::Application() in
60 // vcl/source/app/svapp.cxx.
62 class SalData
64 public:
65 SALTIMERPROC mpTimerProc; // timer callback proc
66 AquaSalInstance *mpInstance;
67 std::list<AquaSalFrame*> maPresentationFrames; // list of frames in presentation mode
68 SalObject *mpFirstObject; // pointer of first object window
69 SalVirtualDevice *mpFirstVD; // first VirDev
70 SalPrinter *mpFirstPrinter; // first printing printer
71 SystemFontList *mpFontList;
72 NSStatusItem* mpStatusItem; // one status item that draws all our statuses
73 // at the moment this is only one add menu button
74 CGColorSpaceRef mxRGBSpace;
75 CGColorSpaceRef mxGraySpace;
77 o3tl::enumarray< PointerStyle, NSCursor* > maCursors;
78 std::vector< NSMenuItem* > maFallbackMenu;
79 std::map< NSEvent*, bool > maKeyEventAnswer;
81 static oslThreadKey s_aAutoReleaseKey;
83 bool mbIsScrollbarDoubleMax; // TODO: support DoubleMin and DoubleBoth too
84 #if !HAVE_FEATURE_MACOSX_SANDBOX
85 AppleRemoteMainController* mpAppleRemoteMainController;
86 #endif
87 NSObject* mpDockIconClickHandler;
88 long mnDPIX; // #i100617# read DPI only once per office life
89 long mnDPIY; // #i100617# read DPI only once per office life
91 css::uno::Reference< css::uno::XInterface > mxClipboard;
93 SalData();
94 ~SalData();
96 NSCursor* getCursor( PointerStyle i_eStyle );
98 static void ensureThreadAutoreleasePool();
100 static NSStatusItem* getStatusItem();
103 inline void SetSalData( SalData* pData ) { ImplGetSVData()->mpSalData = pData; }
104 inline SalData *GetSalData() { return ImplGetSVData()->mpSalData; }
106 bool ImplSalYieldMutexTryToAcquire();
107 void ImplSalYieldMutexRelease();
109 #endif // INCLUDED_VCL_INC_OSX_SALDATA_HXX
111 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */