/src/libreoffice/svtools/source/brwbox/datwin.hxx
Line | Count | Source (jump to first uncovered line) |
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 | | #pragma once |
21 | | |
22 | | #include <svtools/brwbox.hxx> |
23 | | #include <tools/long.hxx> |
24 | | #include <utility> |
25 | | |
26 | | #include <limits> |
27 | | |
28 | 0 | #define MIN_COLUMNWIDTH 2 |
29 | | |
30 | | class ButtonFrame |
31 | | { |
32 | | tools::Rectangle aRect; |
33 | | tools::Rectangle aInnerRect; |
34 | | OUString aText; |
35 | | bool m_bDrawDisabled; |
36 | | |
37 | | public: |
38 | | ButtonFrame( const Point& rPt, const Size& rSz, |
39 | | OUString _aText, |
40 | | bool _bDrawDisabled) |
41 | 0 | :aRect( rPt, rSz ) |
42 | 0 | ,aInnerRect( Point( aRect.Left()+1, aRect.Top()+1 ), |
43 | 0 | Size( aRect.GetWidth()-2, aRect.GetHeight()-2 ) ) |
44 | 0 | ,aText(std::move(_aText)) |
45 | 0 | ,m_bDrawDisabled(_bDrawDisabled) |
46 | 0 | { |
47 | 0 | } |
48 | | |
49 | | void Draw( OutputDevice& rDev ); |
50 | | }; |
51 | | |
52 | | |
53 | | class BrowserColumn final |
54 | | { |
55 | | sal_uInt16 _nId; |
56 | | tools::Long _nOriginalWidth; |
57 | | tools::Long _nWidth; |
58 | | OUString _aTitle; |
59 | | bool _bFrozen; |
60 | | |
61 | | public: |
62 | | BrowserColumn( sal_uInt16 nItemId, |
63 | | OUString aTitle, tools::Long nWidthPixel, const Fraction& rCurrentZoom ); |
64 | | ~BrowserColumn(); |
65 | | |
66 | 0 | sal_uInt16 GetId() const { return _nId; } |
67 | | |
68 | 0 | tools::Long Width() const { return _nWidth; } |
69 | 0 | OUString& Title() { return _aTitle; } |
70 | | |
71 | 0 | bool IsFrozen() const { return _bFrozen; } |
72 | 0 | void Freeze() { _bFrozen = true; } |
73 | | |
74 | | void Draw( BrowseBox const & rBox, OutputDevice& rDev, |
75 | | const Point& rPos ); |
76 | | |
77 | | void SetWidth(tools::Long nNewWidthPixel, const Fraction& rCurrentZoom); |
78 | | void ZoomChanged(const Fraction& rNewZoom); |
79 | | }; |
80 | | |
81 | | void InitSettings_Impl( vcl::Window *pWin ); |
82 | | |
83 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |