1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <svtools/brwbox.hxx>
23 #include <tools/long.hxx>
28 #define MIN_COLUMNWIDTH 2
32 tools::Rectangle aRect
;
33 tools::Rectangle aInnerRect
;
38 ButtonFrame( const Point
& rPt
, const Size
& 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
56 tools::Long _nOriginalWidth
;
62 BrowserColumn( sal_uInt16 nItemId
,
63 OUString aTitle
, tools::Long nWidthPixel
, const Fraction
& rCurrentZoom
);
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
,
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: */