Home
last modified time | relevance | path

Searched refs:m_paShowPath (Results 1 – 4 of 4) sorted by relevance

/dports/editors/kate/kate-21.12.3/kwrite/
H A Dkwrite.cpp172 m_paShowPath = new KToggleAction(i18n("Sho&w Path in Titlebar"), this); in setupActions()
173 actionCollection()->addAction(QStringLiteral("set_showPath"), m_paShowPath); in setupActions()
174 connect(m_paShowPath, &QAction::triggered, this, &KWrite::documentNameChanged); in setupActions()
175 m_paShowPath->setWhatsThis(i18n("Show the complete document path in the window caption")); in setupActions()
376 m_paShowPath->setChecked(cfg.readEntry("ShowPath", false)); in readConfig()
391 generalOptions.writeEntry("ShowPath", m_paShowPath->isChecked()); in writeConfig()
451 if (m_paShowPath->isChecked()) { in documentNameChanged()
H A Dkwrite.h120 KToggleAction *m_paShowPath = nullptr; variable
/dports/editors/kate/kate-21.12.3/kate/
H A Dkatemainwindow.cpp223 m_paShowPath = new KToggleAction(i18n("Sho&w Path in Titlebar"), this); in setupImportantActions()
224 actionCollection()->addAction(QStringLiteral("settings_show_full_path"), m_paShowPath); in setupImportantActions()
225 connect(m_paShowPath, SIGNAL(toggled(bool)), this, SLOT(updateCaption())); in setupImportantActions()
226 m_paShowPath->setWhatsThis(i18n("Show the complete document path in the window caption")); in setupImportantActions()
663 m_paShowPath->setChecked(generalGroup.readEntry("Show Full Path in Title", false)); in readOptions()
683 generalGroup.writeEntry("Show Full Path in Title", m_paShowPath->isChecked()); in saveOptions()
1040 …if (m_viewManager->activeView()->document()->url().isEmpty() || (!m_paShowPath || !m_paShowPath->i… in updateCaption()
H A Dkatemainwindow.h561 KToggleAction *m_paShowPath = nullptr; variable