MCPcopy Create free account
hub / github.com/KDE/labplot / visibilityAction

Method visibilityAction

src/backend/worksheet/WorksheetElement.cpp:218–225  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

216}
217
218QAction* WorksheetElement::visibilityAction() {
219 if (!m_visibilityAction) {
220 m_visibilityAction = new QAction(QIcon::fromTheme(QStringLiteral("view-visible")), i18n("Visible"), this);
221 m_visibilityAction->setCheckable(true);
222 connect(m_visibilityAction, &QAction::triggered, this, &WorksheetElement::changeVisibility);
223 }
224 return m_visibilityAction;
225}
226
227QAction* WorksheetElement::lockingAction() {
228 if (!m_lockingAction) {

Callers 10

createContextMenuMethod · 0.95
createContextMenuMethod · 0.80
createContextMenuMethod · 0.80
createContextMenuMethod · 0.80
createContextMenuMethod · 0.80
createContextMenuMethod · 0.80
createContextMenuMethod · 0.80
createContextMenuMethod · 0.80
createContextMenuMethod · 0.80
createContextMenuMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected