cid#1606940 Check of thread-shared field evades lock acquisition
[LibreOffice.git] / svtools / source / brwbox / datwin.hxx
blob29e0ac301bda6b59ee541f9ac05c8a4091948cb5
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 #pragma once
22 #include <svtools/brwbox.hxx>
23 #include <tools/long.hxx>
24 #include <utility>
26 #include <limits>
28 #define MIN_COLUMNWIDTH 2
30 class ButtonFrame
32 tools::Rectangle aRect;
33 tools::Rectangle aInnerRect;
34 OUString aText;
35 bool m_bDrawDisabled;
37 public:
38 ButtonFrame( const Point& rPt, const Size& rSz,
39 OUString _aText,
40 bool _bDrawDisabled)
41 :aRect( rPt, rSz )
42 ,aInnerRect( Point( aRect.Left()+1, aRect.Top()+1 ),
43 Size( aRect.GetWidth()-2, aRect.GetHeight()-2 ) )
44 ,aText(std::move(_aText))
45 ,m_bDrawDisabled(_bDrawDisabled)
49 void Draw( OutputDevice& rDev );
53 class BrowserColumn final
55 sal_uInt16 _nId;
56 tools::Long _nOriginalWidth;
57 tools::Long _nWidth;
58 OUString _aTitle;
59 bool _bFrozen;
61 public:
62 BrowserColumn( sal_uInt16 nItemId,
63 OUString aTitle, tools::Long nWidthPixel, const Fraction& rCurrentZoom );
64 ~BrowserColumn();
66 sal_uInt16 GetId() const { return _nId; }
68 tools::Long Width() const { return _nWidth; }
69 OUString& Title() { return _aTitle; }
71 bool IsFrozen() const { return _bFrozen; }
72 void Freeze() { _bFrozen = true; }
74 void Draw( BrowseBox const & rBox, OutputDevice& rDev,
75 const Point& rPos );
77 void SetWidth(tools::Long nNewWidthPixel, const Fraction& rCurrentZoom);
78 void ZoomChanged(const Fraction& rNewZoom);
81 void InitSettings_Impl( vcl::Window *pWin );
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */