![]() |
LibrePCB Developers Documentation
|
Implementation of librepcb::WorkspaceSettingsItem to store keyboard shortcuts settings. More...
#include <workspacesettingsitem_keyboardshortcuts.h>
Inheritance diagram for WorkspaceSettingsItem_KeyboardShortcuts:
Collaboration diagram for WorkspaceSettingsItem_KeyboardShortcuts:Public Member Functions | |
| WorkspaceSettingsItem_KeyboardShortcuts ()=delete | |
| WorkspaceSettingsItem_KeyboardShortcuts (const WorkspaceSettingsItem_KeyboardShortcuts &other)=delete | |
| WorkspaceSettingsItem_KeyboardShortcuts (QObject *parent=nullptr) noexcept | |
| ~WorkspaceSettingsItem_KeyboardShortcuts () noexcept | |
| const QMap< QString, QList< QKeySequence > > & | get () const noexcept |
| void | set (const QMap< QString, QList< QKeySequence > > &overrides) noexcept |
| WorkspaceSettingsItem_KeyboardShortcuts & | operator= (const WorkspaceSettingsItem_KeyboardShortcuts &rhs)=delete |
Public Member Functions inherited from WorkspaceSettingsItem | |
| WorkspaceSettingsItem ()=delete | |
| WorkspaceSettingsItem (const QString &key, QObject *parent=nullptr) noexcept | |
| WorkspaceSettingsItem (const WorkspaceSettingsItem &other)=delete | |
| virtual | ~WorkspaceSettingsItem () noexcept |
| const QString & | getKey () const noexcept |
| Get the setting key used for serialization. | |
| bool | isDefaultValue () const noexcept |
| Check whether this setting is at its default value (not modified) | |
| bool | isEdited () const noexcept |
| Check whether this setting was edited sinc the last load or save. | |
| void | restoreDefault () noexcept |
| Restore default value. | |
| void | load (const SExpression &root) |
| Load value from S-Expression file. | |
| void | serialize (SExpression &root) const |
| Serialize the value into S-Expression nodes. | |
| WorkspaceSettingsItem & | operator= (const WorkspaceSettingsItem &rhs)=delete |
Private Member Functions | |
| virtual void | restoreDefaultImpl () noexcept override |
| Restore default value. | |
| void | loadImpl (const SExpression &root) override |
| Load value from S-Expression node. | |
| void | serializeImpl (SExpression &root) const override |
| Serialize the value into S-Expression node. | |
Private Attributes | |
| QMap< QString, SExpression > | mNodes |
| QMap< QString, QList< QKeySequence > > | mOverrides |
Additional Inherited Members | |
Signals inherited from WorkspaceSettingsItem | |
| void | edited () |
| Signal to notify about changes of the settings value. | |
Protected Member Functions inherited from WorkspaceSettingsItem | |
| void | valueModified () noexcept |
Implementation of librepcb::WorkspaceSettingsItem to store keyboard shortcuts settings.
|
delete |
|
delete |
|
explicitnoexcept |
|
noexcept |
|
inlinenoexcept |
Here is the caller graph for this function:
|
noexcept |
Here is the call graph for this function:
|
delete |
|
overrideprivatevirtualnoexcept |
Restore default value.
Implements WorkspaceSettingsItem.
Here is the call graph for this function:
|
overrideprivatevirtual |
Load value from S-Expression node.
| root | S-Expression node of the settings element. |
Implements WorkspaceSettingsItem.
Here is the call graph for this function:
|
overrideprivatevirtual |
Serialize the value into S-Expression node.
| root | S-Expression node to be updated. |
Implements WorkspaceSettingsItem.
Here is the call graph for this function:
|
private |
|
private |