File: qpropertydeclaration.cpp

package info (click to toggle)
kdevelop 4%3A4.3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 18,844 kB
  • sloc: cpp: 91,758; python: 1,095; lex: 422; ruby: 120; sh: 114; xml: 42; makefile: 38
file content (174 lines) | stat: -rw-r--r-- 4,222 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
   Copyright (c) 2010 KDAB

   Author: Tobias Koenig <tokoe@kde.org>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License version 2 as published by the Free Software Foundation.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301, USA.
*/

#include "qpropertydeclaration.h"
#include <language/duchain/duchainregister.h>

using namespace KDevelop;

namespace Cpp {

REGISTER_DUCHAIN_ITEM(QPropertyDeclaration);

QPropertyDeclaration::QPropertyDeclaration(const QPropertyDeclaration& rhs)
  : KDevelop::ClassMemberDeclaration(*new QPropertyDeclarationData(*rhs.d_func()))
{
  d_func_dynamic()->setClassId(this);
}

QPropertyDeclaration::QPropertyDeclaration(QPropertyDeclarationData& data)
  : KDevelop::ClassMemberDeclaration(data)
{
}

QPropertyDeclaration::QPropertyDeclaration(const KDevelop::RangeInRevision& range, KDevelop::DUContext* context)
  : KDevelop::ClassMemberDeclaration(*new QPropertyDeclarationData, range)
{
  d_func_dynamic()->setClassId(this);
  if (context)
    setContext(context);
}

void QPropertyDeclaration::setReadMethod(const IndexedDeclaration &declaration)
{
  d_func_dynamic()->m_readMethod = declaration;
}

IndexedDeclaration QPropertyDeclaration::readMethod() const
{
  return d_func()->m_readMethod;
}

void QPropertyDeclaration::setWriteMethod(const IndexedDeclaration &declaration)
{
  d_func_dynamic()->m_writeMethod = declaration;
}

IndexedDeclaration QPropertyDeclaration::writeMethod() const
{
  return d_func()->m_writeMethod;
}

void QPropertyDeclaration::setResetMethod(const IndexedDeclaration &declaration)
{
  d_func_dynamic()->m_resetMethod = declaration;
}

IndexedDeclaration QPropertyDeclaration::resetMethod() const
{
  return d_func()->m_resetMethod;
}

void QPropertyDeclaration::setNotifyMethod(const IndexedDeclaration &declaration)
{
  d_func_dynamic()->m_notifyMethod = declaration;
}

IndexedDeclaration QPropertyDeclaration::notifyMethod() const
{
  return d_func()->m_notifyMethod;
}

void QPropertyDeclaration::setDesignableMethod(const IndexedDeclaration &declaration)
{
  d_func_dynamic()->m_designableMethod = declaration;
}

IndexedDeclaration QPropertyDeclaration::designableMethod() const
{
  return d_func()->m_designableMethod;
}

void QPropertyDeclaration::setScriptableMethod(const IndexedDeclaration &declaration)
{
  d_func_dynamic()->m_scriptableMethod = declaration;
}

IndexedDeclaration QPropertyDeclaration::scriptableMethod() const
{
  return d_func()->m_scriptableMethod;
}

void QPropertyDeclaration::setIsDesignable(bool designable)
{
  d_func_dynamic()->m_isDesignable = designable;
}

bool QPropertyDeclaration::isDesignable() const
{
  return d_func()->m_isDesignable;
}

void QPropertyDeclaration::setIsScriptable(bool scriptable)
{
  d_func_dynamic()->m_isScriptable = scriptable;
}

bool QPropertyDeclaration::isScriptable() const
{
  return d_func()->m_isScriptable;
}

void QPropertyDeclaration::setIsStored(bool stored)
{
  d_func_dynamic()->m_isStored = stored;
}

bool QPropertyDeclaration::isStored() const
{
  return d_func()->m_isStored;
}

void QPropertyDeclaration::setIsUser(bool user)
{
  d_func_dynamic()->m_isUser = user;
}

bool QPropertyDeclaration::isUser() const
{
  return d_func()->m_isUser;
}

void QPropertyDeclaration::setIsConstant(bool constant)
{
  d_func_dynamic()->m_isConstant = constant;
}

bool QPropertyDeclaration::isConstant() const
{
  return d_func()->m_isConstant;
}

void QPropertyDeclaration::setIsFinal(bool final)
{
  d_func_dynamic()->m_isFinal = final;
}

bool QPropertyDeclaration::isFinal() const
{
  return d_func()->m_isFinal;
}

KDevelop::Declaration* QPropertyDeclaration::clonePrivate() const
{
  return new QPropertyDeclaration(*this);
}

}