<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/118405/">https://git.reviewboard.kde.org/r/118405/</a>
     </td>
    </tr>
   </table>
   <br />




<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 Marble.</div>
<div>By Cruceru Calin-Cristian.</div>


<p style="color: grey;"><i>Updated May 30, 2014, 12:24 p.m.</i></p>



<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Changes</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;">Forgot to add the changes to GeoDataCoordinates from my working repository. Now it should work.</pre>
  </td>
 </tr>
</table>







<div style="margin-top: 1.5em;">
 <b style="color: #575012; font-size: 10pt;">Repository: </b>
marble
</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;">I added the following features to polygon editing:
- moving the whole polygon. I had already submitted a review request for this, but Dennis mentioned some issues so I discarded it and added the changes to this patch. It is important to mention that this feature does not fully work - there are some problems when moving the polygon near the poles.
- node selection and deletion. I increased the size of the bullets representing the nodes in order to ease their selection. The selected ones are painted with a different color. 
- adding holes to polygons (more precisely, adding inner boundaries). For this I added a new option in the menu, "Add Polygon Hole". It works similar to drawing polygons: check it, draw the hole then un-check it so that it knows that you finished drawing the hole. Hopefully, when I will start working on the user interface, this will not remain like this - it will be more user-friendly.

Also, I added the following new actions (grouped into two kind of menus: polygon menu - which shows the options for the entire polygon and node menu which shows the options for the right clicked node):
- select/unselect node: this comes to complete the node selection done by clicking using the left button of the mouse.
- delete node: deletes the right-clicked node. If the polygon (or inner boundary ring) has less than 3 nodes after deletion, the whole polygon(inner boundary) will be removed. I think having only a line on the screen is not what a user may expect - but if you find it may have a purpose, it is easy to modify this. Also, here I dealt with the situation in which after deleting a node from the polygon's outer boundary, one of its inner boundaries would not be an inner boundary anymore (they would intersect). I used a QMessageBox warning to announce the user about this. Initially I tried to disable the action when this happened ("Delete node" and "Delete selected nodes") but this proved very inefficient in my opinion since the whole deletion should have been "simulated" before showing the menu. It is important to mention, also, that there are still some problems with this testing and I could not figure out so far what causes that: sometimes the function which tests if the polygon's outer boundary contains all the coordinates of its inner boundaries returns true even though it doesn't (or at least it doesn't look like from what is painted on the globe, e.g: http://imgur.com/a/KCoXO)

- unselect all nodes: this is an action from the polygon rmb menu. I think it its useful if you have too many nodes selected and you want to select other in order to delete them at the same time, for example.
- delete selected nodes: it behaves similar to delete node, only that is deletes all selected ones.
- remove polygon: removes the entire polygon.

I also intensively tried to clean the code and make it look more organized and better structured. I've also written some documentation to some classes and added many comments - I hope they don't bother; many of them I've written for me, to better understand the code, but may be useful for others too.

I'm really looking forward to seeing your reviews and issues, as well as potential recommendations for the features which are not fully working.</pre>
  </td>
 </tr>
</table>



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

 <li>src/lib/marble/geodata/data/GeoDataCoordinates.h <span style="color: grey">(d151a66)</span></li>

 <li>src/lib/marble/geodata/data/GeoDataCoordinates.cpp <span style="color: grey">(576bf1d)</span></li>

 <li>src/plugins/render/annotate/AnnotatePlugin.h <span style="color: grey">(3d8b9b5)</span></li>

 <li>src/plugins/render/annotate/AnnotatePlugin.cpp <span style="color: grey">(e1add48)</span></li>

 <li>src/plugins/render/annotate/AreaAnnotation.h <span style="color: grey">(105e2e7)</span></li>

 <li>src/plugins/render/annotate/AreaAnnotation.cpp <span style="color: grey">(0beff80)</span></li>

 <li>src/plugins/render/annotate/CMakeLists.txt <span style="color: grey">(387a92d)</span></li>

 <li>src/plugins/render/annotate/EditGroundOverlayDialog.ui <span style="color: grey">(d25d74a)</span></li>

 <li>src/plugins/render/annotate/GeoWidgetBubble.h <span style="color: grey">(944f3e3)</span></li>

 <li>src/plugins/render/annotate/GeoWidgetBubble.cpp <span style="color: grey">(4837f96)</span></li>

 <li>src/plugins/render/annotate/GroundOverlayFrame.h <span style="color: grey">(4b1337d)</span></li>

 <li>src/plugins/render/annotate/GroundOverlayFrame.cpp <span style="color: grey">(30b1d0b)</span></li>

 <li>src/plugins/render/annotate/PlacemarkTextAnnotation.h <span style="color: grey">(492bd4b)</span></li>

 <li>src/plugins/render/annotate/PlacemarkTextAnnotation.cpp <span style="color: grey">(2d08ff7)</span></li>

 <li>src/plugins/render/annotate/SceneGraphicsItem.h <span style="color: grey">(3e9ea08)</span></li>

 <li>src/plugins/render/annotate/SceneGraphicsItem.cpp <span style="color: grey">(a5d9da7)</span></li>

 <li>src/plugins/render/annotate/SceneGraphicsTypes.h <span style="color: grey">(PRE-CREATION)</span></li>

 <li>src/plugins/render/annotate/SceneGraphicsTypes.cpp <span style="color: grey">(PRE-CREATION)</span></li>

 <li>src/plugins/render/annotate/TextEditor.cpp <span style="color: grey">(6820330)</span></li>

</ul>

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







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




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