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

Function configGroupName

kdevplatform/sublime/mainwindow.cpp:40–47  ·  view source on GitHub ↗

* @return the main window UI config group for a given area * * @note Each area has its own separate main window UI config group. This allows to customize * each area independently from others. For example, each area can have unique sets * and locations of visible toolbars, enabled tool views and visible tool views. */

Source from the content-addressed store, hash-verified

38 * and locations of visible toolbars, enabled tool views and visible tool views.
39 */
40[[nodiscard]] QString configGroupName(const Sublime::Area* area)
41{
42 auto groupName = QStringLiteral("MainWindow");
43 if (area) {
44 groupName += QLatin1Char('_') + area->objectName();
45 }
46 return groupName;
47}
48
49void optionallyFocusViewWidget(const Sublime::View* view, bool focus)
50{

Callers 2

saveSettingsMethod · 0.70
loadSettingsMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected