PanelDescriptor.cxx (f120fe41) PanelDescriptor.cxx (b358a5b6)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 17 unchanged lines hidden (view full) ---

26
27namespace sfx2 { namespace sidebar {
28
29PanelDescriptor::PanelDescriptor (void)
30 : msTitle(),
31 mbIsTitleBarOptional(false),
32 msId(),
33 msDeckId(),
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 17 unchanged lines hidden (view full) ---

26
27namespace sfx2 { namespace sidebar {
28
29PanelDescriptor::PanelDescriptor (void)
30 : msTitle(),
31 mbIsTitleBarOptional(false),
32 msId(),
33 msDeckId(),
34 msTitleBarIconURL(),
35 msHighContrastTitleBarIconURL(),
34 msHelpURL(),
35 maContextList(),
36 msImplementationURL(),
37 mnOrderIndex(10000), // Default value as defined in Sidebar.xcs
36 msHelpURL(),
37 maContextList(),
38 msImplementationURL(),
39 mnOrderIndex(10000), // Default value as defined in Sidebar.xcs
40 mbShowForReadOnlyDocuments(false),
38 mbWantsCanvas(false)
39{
40}
41
42
43
44
45PanelDescriptor::PanelDescriptor (const PanelDescriptor& rOther)
46 : msTitle(rOther.msTitle),
47 mbIsTitleBarOptional(rOther.mbIsTitleBarOptional),
48 msId(rOther.msId),
49 msDeckId(rOther.msDeckId),
41 mbWantsCanvas(false)
42{
43}
44
45
46
47
48PanelDescriptor::PanelDescriptor (const PanelDescriptor& rOther)
49 : msTitle(rOther.msTitle),
50 mbIsTitleBarOptional(rOther.mbIsTitleBarOptional),
51 msId(rOther.msId),
52 msDeckId(rOther.msDeckId),
53 msTitleBarIconURL(rOther.msTitleBarIconURL),
54 msHighContrastTitleBarIconURL(rOther.msHighContrastTitleBarIconURL),
50 msHelpURL(rOther.msHelpURL),
51 maContextList(rOther.maContextList),
52 msImplementationURL(rOther.msImplementationURL),
53 mnOrderIndex(rOther.mnOrderIndex),
55 msHelpURL(rOther.msHelpURL),
56 maContextList(rOther.maContextList),
57 msImplementationURL(rOther.msImplementationURL),
58 mnOrderIndex(rOther.mnOrderIndex),
59 mbShowForReadOnlyDocuments(rOther.mbShowForReadOnlyDocuments),
54 mbWantsCanvas(rOther.mbWantsCanvas)
55{
56}
57
58
59
60PanelDescriptor::~PanelDescriptor (void)
61{
62}
63
64
65} } // end of namespace sfx2::sidebar
60 mbWantsCanvas(rOther.mbWantsCanvas)
61{
62}
63
64
65
66PanelDescriptor::~PanelDescriptor (void)
67{
68}
69
70
71} } // end of namespace sfx2::sidebar