PanelDescriptor.cxx (7a32b0c8) PanelDescriptor.cxx (f120fe41)
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

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

27namespace sfx2 { namespace sidebar {
28
29PanelDescriptor::PanelDescriptor (void)
30 : msTitle(),
31 mbIsTitleBarOptional(false),
32 msId(),
33 msDeckId(),
34 msHelpURL(),
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

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

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