* Show graph legend via 'legend' command or '?' button in the lower right corner * Legend is not interactive: nodes and edges not clickable or moveable * CXX and Java node types are mixed
22 lines
386 B
C++
22 lines
386 B
C++
#include "qt/view/graphElements/QtGraphNodeText.h"
|
|
|
|
QtGraphNodeText::QtGraphNodeText(const std::wstring& name, int fontSizeDiff)
|
|
: m_fontSizeDiff(fontSizeDiff)
|
|
{
|
|
setName(name);
|
|
}
|
|
|
|
QtGraphNodeText::~QtGraphNodeText()
|
|
{
|
|
}
|
|
|
|
bool QtGraphNodeText::isTextNode() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void QtGraphNodeText::updateStyle()
|
|
{
|
|
setStyle(GraphViewStyle::getStyleOfTextNode(m_fontSizeDiff));
|
|
}
|