/src/libreoffice/vcl/inc/iconview.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 <tools/json_writer.hxx> |
23 | | #include <vcl/toolkit/treelistbox.hxx> |
24 | | #include <vcl/image.hxx> |
25 | | |
26 | | class IconView final : public SvTreeListBox |
27 | | { |
28 | | public: |
29 | | IconView(vcl::Window* pParent, WinBits nBits); |
30 | | |
31 | | Size GetEntrySize(const SvTreeListEntry&) const; |
32 | | |
33 | | virtual void Resize() override; |
34 | | |
35 | | virtual tools::Rectangle GetFocusRect(const SvTreeListEntry*, tools::Long) override; |
36 | | |
37 | | void PaintEntry(SvTreeListEntry&, tools::Long nX, tools::Long nY, |
38 | | vcl::RenderContext& rRenderContext); |
39 | | |
40 | | virtual css::uno::Reference<css::accessibility::XAccessible> CreateAccessible() override; |
41 | | |
42 | | virtual FactoryFunction GetUITestFactory() const override; |
43 | | virtual void DumpAsPropertyTree(tools::JsonWriter& rJsonWriter) override; |
44 | | typedef std::tuple<OUString&, SvTreeListEntry*> encoded_image_query; |
45 | | |
46 | | void SetDumpImageHdl(const Link<const encoded_image_query&, bool>& rLink) |
47 | 0 | { |
48 | 0 | maDumpImageHdl = rLink; |
49 | 0 | } |
50 | | |
51 | | /// returns string with encoded image for an entry |
52 | | OUString renderEntry(int pos, int dpix, int dpiy) const; |
53 | | |
54 | | /// Update entry size based on image size |
55 | | void UpdateEntrySize(const Image& pImage); |
56 | | |
57 | | protected: |
58 | | virtual void CalcEntryHeight(SvTreeListEntry const* pEntry) override; |
59 | | |
60 | | private: |
61 | | Link<const encoded_image_query&, bool> maDumpImageHdl; |
62 | | void DumpEntryAndSiblings(tools::JsonWriter& rJsonWriter, SvTreeListEntry* pEntry); |
63 | | }; |
64 | | |
65 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |