MCPcopy Create free account
hub / github.com/KDE/kdevelop / Area

Method Area

kdevplatform/sublime/area.cpp:92–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90// class Area
91
92Area::Area(Controller *controller, const QString &name, const QString &title)
93 : QObject(controller)
94 , d_ptr(new AreaPrivate())
95{
96 Q_D(Area);
97
98 // FIXME: using objectName seems fishy. Introduce areaType method,
99 // or some such.
100 setObjectName(name);
101 d->title = title;
102 d->controller = controller;
103 d->iconName = QStringLiteral("kdevelop");
104 initialize();
105}
106
107Area::Area(const Area &area)
108 : QObject(area.controller())

Callers

nothing calls this directly

Calls 6

initializeFunction · 0.85
toolViewPositionMethod · 0.80
controllerMethod · 0.45
clearMethod · 0.45
createViewMethod · 0.45
documentMethod · 0.45

Tested by

no test coverage detected