[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kwrite-devel
Subject:    Re: Review Request 115460: Patch for Bug 83549 - Toggling "Menubar" in Kate/KWrite
From:       "Dominik Haumann" <dhaumann () kde ! org>
Date:       2014-02-05 10:44:05
Message-ID: 20140205104405.20382.50237 () probe ! kde ! org
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/115460/#review49006
-----------------------------------------------------------


The patch looks good except for some very minor issues. Can you update the patch \
again?

Besides that, I fear that even though you show a message box telling to press Ctrl+M \
to get the menu back, there will be users who accidentally hide the menu bar and have \
no idea how to get it back. Therefore, whenever the menu bar is hidden, please add \
the action to the context menu in the text editor view as last entry. You could use \
the signal KTextEditor::View::contextMenuAboutToShow: \
http://api.kde.org/4.12-api/kdelibs-apidocs/interfaces/ktexteditor/html/classKTextEditor_1_1View.html#ae22ef32b7e60eca3c020455f2f6a8b89 \
and then add the action to the menu.

For instance, dolphin is doing this, too. If you want, you can do this in a separate \
patch, though.


kate/app/katemainwindow.cpp
<https://git.reviewboard.kde.org/r/115460/#comment34603>

    The menuBar() should always exist in Kate and KWrite. So there is no need to \
check with an if here. If at all, add a  
      Q_ASSERT(menuBar());



kate/app/katemainwindow.cpp
<https://git.reviewboard.kde.org/r/115460/#comment34604>

    You are not using qt rich text, therefore, please remove <qt> and </qt>.



kwrite/kwritemain.cpp
<https://git.reviewboard.kde.org/r/115460/#comment34605>

    Can you change the usage of spaces and braces here to:
    
    if (m_paShowMenuBar->isChecked()) {
      menuBar()->show();
    } else {
      ...
    }
    
    It's the kdelibs coding style we now strictly follow in the KF5 version of Kate. \
This will make it easier for us to merge your change into the frameworks branch.


- Dominik Haumann


On Feb. 5, 2014, 7:15 a.m., Valentin Uzunov wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/115460/
> -----------------------------------------------------------
> 
> (Updated Feb. 5, 2014, 7:15 a.m.)
> 
> 
> Review request for Kate.
> 
> 
> Bugs: 83549
> http://bugs.kde.org/show_bug.cgi?id=83549
> 
> 
> Repository: kate
> 
> 
> Description
> -------
> 
> Patch for Bug 83549 - Toggling "Menubar" in Kate/KWrite.
> Added ability to toggle the menubar visibility by pressing Ctrl+M.
> 
> 
> Diffs
> -----
> 
> kate/app/katemainwindow.h 8138dc9 
> kate/app/katemainwindow.cpp 01f116b 
> kwrite/kwritemain.h 203baec 
> kwrite/kwritemain.cpp ee75b31 
> 
> Diff: https://git.reviewboard.kde.org/r/115460/diff/
> 
> 
> Testing
> -------
> 
> 
> Thanks,
> 
> Valentin Uzunov
> 
> 


[Attachment #5 (text/html)]

<html>
 <body>
  <div style="font-family: Verdana, Arial, Helvetica, Sans-Serif;">
   <table bgcolor="#f9f3c9" width="100%" cellpadding="8" style="border: 1px #c9c399 \
solid;">  <tr>
     <td>
      This is an automatically generated e-mail. To reply, visit:
      <a href="https://git.reviewboard.kde.org/r/115460/">https://git.reviewboard.kde.org/r/115460/</a>
  </td>
    </tr>
   </table>
   <br />





 <pre style="white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: \
-pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;">The patch looks good \
except for some very minor issues. Can you update the patch again?

Besides that, I fear that even though you show a message box telling to press Ctrl+M \
to get the menu back, there will be users who accidentally hide the menu bar and have \
no idea how to get it back. Therefore, whenever the menu bar is hidden, please add \
the action to the context menu in the text editor view as last entry. You could use \
the signal KTextEditor::View::contextMenuAboutToShow: \
http://api.kde.org/4.12-api/kdelibs-apidocs/interfaces/ktexteditor/html/classKTextEditor_1_1View.html#ae22ef32b7e60eca3c020455f2f6a8b89 \
and then add the action to the menu.

For instance, dolphin is doing this, too. If you want, you can do this in a separate \
patch, though.</pre>  <br />







<div>




<table width="100%" border="0" bgcolor="white" style="border: 1px solid #C0C0C0; \
border-collapse: collapse; margin: 2px padding: 2px;">  <thead>
  <tr>
   <th colspan="4" bgcolor="#F0F0F0" style="border-bottom: 1px solid #C0C0C0; \
font-size: 9pt; padding: 4px 8px; text-align: left;">  <a \
href="https://git.reviewboard.kde.org/r/115460/diff/2/?file=241980#file241980line566" \
style="color: black; font-weight: bold; text-decoration: \
underline;">kate/app/katemainwindow.cpp</a>  <span style="font-weight: normal;">

     (Diff revision 2)

    </span>
   </th>
  </tr>
 </thead>



 
 

 <tbody>

  <tr>
    <th bgcolor="#b1ebb0" style="border-right: 1px solid #C0C0C0;" \
align="right"><font size="2"></font></th>  <td bgcolor="#c5ffc4" width="50%"><pre \
style="font-size: 8pt; line-height: 140%; margin: 0; "></pre></td>  <th \
bgcolor="#b1ebb0" style="border-left: 1px solid #C0C0C0; border-right: 1px solid \
#C0C0C0;" align="right"><font size="2">566</font></th>  <td bgcolor="#c5ffc4" \
width="50%"><pre style="font-size: 8pt; line-height: 140%; margin: 0; ">  <span \
class="k">if</span> <span class="p">(</span> <span class="n">menuBar</span><span \
class="p">()</span> <span class="p">)</span></pre></td>  </tr>

 </tbody>

</table>

<pre style="margin-left: 2em; white-space: pre-wrap; white-space: -moz-pre-wrap; \
white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;">The \
menuBar() should always exist in Kate and KWrite. So there is no need to check with \
an if here. If at all, add a

  Q_ASSERT(menuBar());</pre>
</div>
<br />

<div>




<table width="100%" border="0" bgcolor="white" style="border: 1px solid #C0C0C0; \
border-collapse: collapse; margin: 2px padding: 2px;">  <thead>
  <tr>
   <th colspan="4" bgcolor="#F0F0F0" style="border-bottom: 1px solid #C0C0C0; \
font-size: 9pt; padding: 4px 8px; text-align: left;">  <a \
href="https://git.reviewboard.kde.org/r/115460/diff/2/?file=241980#file241980line576" \
style="color: black; font-weight: bold; text-decoration: \
underline;">kate/app/katemainwindow.cpp</a>  <span style="font-weight: normal;">

     (Diff revision 2)

    </span>
   </th>
  </tr>
 </thead>



 
 

 <tbody>

  <tr>
    <th bgcolor="#b1ebb0" style="border-right: 1px solid #C0C0C0;" \
align="right"><font size="2"></font></th>  <td bgcolor="#c5ffc4" width="50%"><pre \
style="font-size: 8pt; line-height: 140%; margin: 0; "></pre></td>  <th \
bgcolor="#b1ebb0" style="border-left: 1px solid #C0C0C0; border-right: 1px solid \
#C0C0C0;" align="right"><font size="2">576</font></th>  <td bgcolor="#c5ffc4" \
width="50%"><pre style="font-size: 8pt; line-height: 140%; margin: 0; ">              \
<span class="n">i18n</span><span class="p">(</span> <span \
class="s">&quot;&lt;qt&gt;This will hide the menu bar \
completely.&quot;</span></pre></td>  </tr>

 </tbody>

</table>

<pre style="margin-left: 2em; white-space: pre-wrap; white-space: -moz-pre-wrap; \
white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;">You are not \
using qt rich text, therefore, please remove &lt;qt&gt; and &lt;/qt&gt;.</pre> </div>
<br />

<div>




<table width="100%" border="0" bgcolor="white" style="border: 1px solid #C0C0C0; \
border-collapse: collapse; margin: 2px padding: 2px;">  <thead>
  <tr>
   <th colspan="4" bgcolor="#F0F0F0" style="border-bottom: 1px solid #C0C0C0; \
font-size: 9pt; padding: 4px 8px; text-align: left;">  <a \
href="https://git.reviewboard.kde.org/r/115460/diff/2/?file=241982#file241982line319" \
style="color: black; font-weight: bold; text-decoration: \
underline;">kwrite/kwritemain.cpp</a>  <span style="font-weight: normal;">

     (Diff revision 2)

    </span>
   </th>
  </tr>
 </thead>

 <tbody style="background-color: #e4d9cb; padding: 4px 8px; text-align: center;">
  <tr>

   <td colspan="4"><pre style="font-size: 8pt; line-height: 140%; margin: 0; ">void \
KWrite::urlChanged()</pre></td>

  </tr>
 </tbody>



 
 

 <tbody>

  <tr>
    <th bgcolor="#b1ebb0" style="border-right: 1px solid #C0C0C0;" \
align="right"><font size="2"></font></th>  <td bgcolor="#c5ffc4" width="50%"><pre \
style="font-size: 8pt; line-height: 140%; margin: 0; "></pre></td>  <th \
bgcolor="#b1ebb0" style="border-left: 1px solid #C0C0C0; border-right: 1px solid \
#C0C0C0;" align="right"><font size="2">319</font></th>  <td bgcolor="#c5ffc4" \
width="50%"><pre style="font-size: 8pt; line-height: 140%; margin: 0; "><span \
class="kt">void</span> <span class="n">KWrite</span><span class="o">::</span><span \
class="n">toggleShowMenuBar</span> <span class="p">()</span></pre></td>  </tr>

 </tbody>

</table>

<pre style="margin-left: 2em; white-space: pre-wrap; white-space: -moz-pre-wrap; \
white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;">Can you \
change the usage of spaces and braces here to:

if (m_paShowMenuBar-&gt;isChecked()) {
  menuBar()-&gt;show();
} else {
  ...
}

It&#39;s the kdelibs coding style we now strictly follow in the KF5 version of Kate. \
This will make it easier for us to merge your change into the frameworks \
branch.</pre> </div>
<br />



<p>- Dominik Haumann</p>


<br />
<p>On February 5th, 2014, 7:15 a.m. UTC, Valentin Uzunov wrote:</p>








<table bgcolor="#fefadf" width="100%" cellspacing="0" cellpadding="8" \
style="background-image: \
url('https://git.reviewboard.kde.org/static/rb/images/review_request_box_top_bg.ab6f3b1072c9.png'); \
background-position: left top; background-repeat: repeat-x; border: 1px black \
solid;">  <tr>
  <td>

<div>Review request for Kate.</div>
<div>By Valentin Uzunov.</div>


<p style="color: grey;"><i>Updated Feb. 5, 2014, 7:15 a.m.</i></p>







<div style="margin-top: 1.5em;">
 <b style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Bugs: </b>


 <a href="http://bugs.kde.org/show_bug.cgi?id=83549">83549</a>


</div>



<div style="margin-top: 1.5em;">
 <b style="color: #575012; font-size: 10pt;">Repository: </b>
kate
</div>


<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Description </h1>
 <table width="100%" bgcolor="#ffffff" cellspacing="0" cellpadding="10" \
style="border: 1px solid #b8b5a0">  <tr>
  <td>
   <pre style="margin: 0; padding: 0; white-space: pre-wrap; white-space: \
-moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: \
break-word;">Patch for Bug 83549 - Toggling &quot;Menubar&quot; in Kate/KWrite. Added \
ability to toggle the menubar visibility by pressing Ctrl+M.</pre>  </td>
 </tr>
</table>



<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Diffs</b> </h1>
<ul style="margin-left: 3em; padding-left: 0;">

 <li>kate/app/katemainwindow.h <span style="color: grey">(8138dc9)</span></li>

 <li>kate/app/katemainwindow.cpp <span style="color: grey">(01f116b)</span></li>

 <li>kwrite/kwritemain.h <span style="color: grey">(203baec)</span></li>

 <li>kwrite/kwritemain.cpp <span style="color: grey">(ee75b31)</span></li>

</ul>

<p><a href="https://git.reviewboard.kde.org/r/115460/diff/" style="margin-left: \
3em;">View Diff</a></p>







  </td>
 </tr>
</table>








  </div>
 </body>
</html>



_______________________________________________
KWrite-Devel mailing list
KWrite-Devel@kde.org
https://mail.kde.org/mailman/listinfo/kwrite-devel


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic