LibreOffice Module vcl (master) 1
viewdataentry.cxx
Go to the documentation of this file.
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
21
23 nVisPos(0),
24 mbSelected(false),
25 mbHighlighted(false),
26 mbExpanded(false),
27 mbFocused(false),
28 mbSelectable(true),
29 mbDragTarget(false)
30{
31}
32
34 nVisPos(rData.nVisPos),
35 mbSelected(false),
36 mbHighlighted(false),
37 mbExpanded(rData.mbExpanded),
38 mbFocused(false),
39 mbSelectable(rData.mbSelectable),
40 mbDragTarget(false)
41{
42}
43
45{
46#ifdef DBG_UTIL
47 nVisPos = 0x12345678;
48#endif
49}
50
51void SvViewDataEntry::SetFocus( bool bFocus )
52{
53 mbFocused = bFocus;
54}
55
56void SvViewDataEntry::SetSelected( bool bSelected )
57{
58 mbSelected = bSelected;
59 mbHighlighted = bSelected;
60}
61
62void SvViewDataEntry::SetExpanded( bool bExpanded )
63{
64 mbExpanded = bExpanded;
65}
66
67void SvViewDataEntry::SetSelectable( bool bSelectable )
68{
69 mbSelectable = bSelectable;
70}
71
72void SvViewDataEntry::Init(size_t nSize)
73{
74 maItems.resize(nSize);
75}
76
78{
79 return maItems[nPos];
80}
81
83{
84 return maItems[nPos];
85}
86
87/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
View-dependent data for a tree list entry created in the virtual function SvTreeListBox::CreateViewDa...
void SetSelected(bool bSelected)
void SetSelectable(bool bSelectable)
std::vector< SvViewDataItem > maItems
const SvViewDataItem & GetItem(size_t nPos) const
void Init(size_t nSize)
void SetExpanded(bool bExpanded)
sal_uInt32 nVisPos
void SetFocus(bool bFocus)
sal_uInt16 nPos