[utilities/konsole] /: Updates and fixes for the manual
Yuri Chornoivan
null at kde.org
Wed Jun 23 07:56:50 BST 2021
Git commit f2d7346b972544d2c8fa2900c363a910bce287a8 by Yuri Chornoivan.
Committed on 23/06/2021 at 06:56.
Pushed by yurchor into branch 'master'.
Updates and fixes for the manual
M +35 -11 doc/manual/index.docbook
M +1 -1 src/MainWindow.cpp
M +1 -1 src/tests/demo_konsolepart/src/demo_konsolepart.cpp
https://invent.kde.org/utilities/konsole/commit/f2d7346b972544d2c8fa2900c363a910bce287a8
diff --git a/doc/manual/index.docbook b/doc/manual/index.docbook
index 47325871..00dd1dd1 100644
--- a/doc/manual/index.docbook
+++ b/doc/manual/index.docbook
@@ -846,6 +846,13 @@ Scrollback and Reset</guimenuitem></menuchoice></term>
and resets the terminal</action></para></listitem>
</varlistentry>
+<varlistentry>
+<term><menuchoice>
+<shortcut><keycap>F11</keycap></shortcut>
+<guimenu>View</guimenu><guimenuitem>Full Screen Mode</guimenuitem></menuchoice></term>
+<listitem><para><action>Toggles &konsole; filling the entire screen</action></para></listitem>
+</varlistentry>
+
</variablelist>
</sect2>
@@ -918,7 +925,7 @@ Current Profile...</guimenuitem></menuchoice></term>
<varlistentry>
<term><menuchoice><guimenu>Settings</guimenu><guimenuitem>Manage
Profiles...</guimenuitem></menuchoice></term>
-<listitem><para><action>Opens a editor for managing profiles</action>
+<listitem><para><action>Opens an editor for managing profiles</action>
</para>
</listitem>
</varlistentry>
@@ -932,15 +939,29 @@ Menu Bar</guimenuitem></menuchoice></term>
<listitem><para><action>Toggles the menubar being visible</action></para></listitem>
</varlistentry>
+<varlistentry>
+<term><menuchoice><guimenu>Settings</guimenu><guimenuitem>Toolbars Shown</guimenuitem></menuchoice></term>
+<listitem><para><action>Allows visibility toggling of the &konsole; toolbars</action></para>
+</listitem>
+</varlistentry>
+
<varlistentry>
<term><menuchoice>
-<shortcut><keycap>F11</keycap></shortcut>
-<guimenu>Settings</guimenu><guimenuitem>Full Screen Mode</guimenuitem></menuchoice></term>
-<listitem><para><action>Toggles &konsole; filling the entire screen</action></para></listitem>
+<guimenu>Settings</guimenu><guimenuitem>Show
+Show Statusbar</guimenuitem></menuchoice></term>
+<listitem><para><action>Toggles the statusbar being visible</action></para></listitem>
</varlistentry>
<varlistentry>
-<term><menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure
+<term><menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure Language...
+</guimenuitem></menuchoice></term>
+<listitem><para><action>Opens window to choose an interface translation of &konsole;.</action>
+</para>
+</listitem>
+</varlistentry>
+
+<varlistentry>
+<term><menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure Keyboard
Shortcuts...</guimenuitem></menuchoice></term>
<listitem><para><action>Opens the keyboard shortcut editor.</action> More on shortcuts configuration
can be found in the <ulink url="help:/fundamentals/shortcuts.html">&kde; Fundamentals</ulink>.</para>
@@ -965,21 +986,17 @@ can be found in the <ulink url="help:/fundamentals/shortcuts.html">&kde; Fundame
<entry>Previous Tab</entry>
</row>
<row>
-<entry><keycombo action="simul">&Ctrl;&Shift;<keysym>Left</keysym></keycombo></entry>
+<entry><keycombo action="simul">&Ctrl;&Alt;<keysym>Left</keysym></keycombo></entry>
<entry>Move Tab Left</entry>
</row>
<row>
-<entry><keycombo action="simul">&Ctrl;&Shift;<keysym>Right</keysym></keycombo></entry>
+<entry><keycombo action="simul">&Ctrl;&Alt;<keysym>Right</keysym></keycombo></entry>
<entry>Move Tab Right</entry>
</row>
<row>
<entry><keycombo action="simul">&Ctrl;&Shift;<keysym>Ins</keysym></keycombo></entry>
<entry>Paste Selection</entry>
</row>
-<row>
-<entry><keycombo action="simul">&Shift;	</keycombo></entry>
-<entry>Next View Container</entry> <!--FIXME what is this:yurchor container widget which holds views-->
-</row>
</tbody>
</tgroup>
</informaltable>
@@ -987,6 +1004,13 @@ can be found in the <ulink url="help:/fundamentals/shortcuts.html">&kde; Fundame
</listitem>
</varlistentry>
+<varlistentry>
+<term><menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure
+Toolbars...</guimenuitem></menuchoice></term>
+<listitem><para><action>Opens <ulink url="help:/fundamentals/config.html#toolbars-items">the toolbar configuration window</ulink></action></para>
+</listitem>
+</varlistentry>
+
<varlistentry>
<term><menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure
Notifications...</guimenuitem></menuchoice></term>
diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp
index 73212944..9dc6e5dc 100644
--- a/src/MainWindow.cpp
+++ b/src/MainWindow.cpp
@@ -877,7 +877,7 @@ void MainWindow::setBlur(bool blur)
_blurEnabled = blur;
if (!_pluggedController->isKonsolePart()) {
- KWindowEffects::enableBlurBehind(windowHandle(), blur);
+ KWindowEffects::enableBlurBehind(winId(), blur);
}
}
diff --git a/src/tests/demo_konsolepart/src/demo_konsolepart.cpp b/src/tests/demo_konsolepart/src/demo_konsolepart.cpp
index 73867149..d309eebe 100644
--- a/src/tests/demo_konsolepart/src/demo_konsolepart.cpp
+++ b/src/tests/demo_konsolepart/src/demo_konsolepart.cpp
@@ -59,7 +59,7 @@ demo_konsolepart::demo_konsolepart()
Qt::DirectConnection,
Q_RETURN_ARG(bool, blurEnabled));
qWarning()<<"blur enabled: "<<blurEnabled;
- KWindowEffects::enableBlurBehind(windowHandle(), blurEnabled);
+ KWindowEffects::enableBlurBehind(winId(), blurEnabled);
}
demo_konsolepart::~demo_konsolepart()
More information about the kde-doc-english
mailing list