bump product version to 6.4.0.3
[LibreOffice.git] / vcl / inc / ControlCacheKey.hxx
blob11d4ce07d7195631d0c63750227aa29deaf082a3
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_CONTROLCACHEKEY_HXX
21 #define INCLUDED_VCL_INC_CONTROLCACHEKEY_HXX
23 #include <tools/gen.hxx>
24 #include <vcl/salnativewidgets.hxx>
26 class ControlCacheKey
28 public:
29 ControlType const mnType;
30 ControlPart const mnPart;
31 ControlState const mnState;
32 Size const maSize;
34 ControlCacheKey(ControlType nType, ControlPart nPart, ControlState nState, const Size& rSize)
35 : mnType(nType)
36 , mnPart(nPart)
37 , mnState(nState)
38 , maSize(rSize)
41 bool operator==(ControlCacheKey const& aOther) const
43 return mnType == aOther.mnType
44 && mnPart == aOther.mnPart
45 && mnState == aOther.mnState
46 && maSize.Width() == aOther.maSize.Width()
47 && maSize.Height() == aOther.maSize.Height();
50 bool canCacheControl() const
52 switch(mnType)
54 case ControlType::Checkbox:
55 case ControlType::Radiobutton:
56 case ControlType::ListNode:
57 case ControlType::Slider:
58 case ControlType::Progress:
59 // FIXME: these guys have complex state hidden in ImplControlValue
60 // structs which affects rendering, needs to be a and needs to be
61 // part of the key to our cache.
62 case ControlType::Spinbox:
63 case ControlType::SpinButtons:
64 case ControlType::TabItem:
65 return false;
67 case ControlType::Menubar:
68 if (mnPart == ControlPart::Entire)
69 return false;
70 break;
72 default:
73 break;
75 return true;
79 #endif // INCLUDED_VCL_INC_CONTROLCACHEKEY_HXX