ui: Added show errors button to title bar of incomplete files (issue #246)

* Shows all errors within the file and all included files.
This commit is contained in:
Eberhard Graether
2018-03-17 09:16:52 +01:00
parent 1450f3cd94
commit 66ac70850b
31 changed files with 302 additions and 98 deletions
@@ -14,6 +14,13 @@
<line>#A0A0A0</line>
<icon_type>white</icon_type> <!-- white, grey, black -->
</dock>
<button>
<text>white</text>
<background>#CC494949</background>
<border>#D4D4D4</border>
<border_hover>white</border_hover>
<icon>white</icon>
</button>
</window>
<search>
+7
View File
@@ -14,6 +14,13 @@
<line>#BEBEBE</line>
<icon_type>grey</icon_type> <!-- white, grey, black -->
</dock>
<button>
<text>black</text>
<background>white</background>
<border>#AAA</border>
<border_hover>#878787</border_hover>
<icon>black</icon>
</button>
</window>
<search>
+7
View File
@@ -14,6 +14,13 @@
<line>#808080</line>
<icon_type>white</icon_type> <!-- white, grey, black -->
</dock>
<button>
<text>white</text>
<background>#3A3A3A</background>
<border>#C5C5C5</border>
<border_hover>white</border_hover>
<icon>white</icon>
</button>
</window>
<search>
+4
View File
@@ -110,6 +110,10 @@
padding-right: 5px;
}
#title_bar #screen_button, #title_bar_single #screen_button {
margin-right: 7px;
}
#title_button {
background-color: <color:code/file/title/normal>;
border: none;
+14
View File
@@ -41,3 +41,17 @@ QDockWidget::close-button {
QDockWidget::float-button {
margin-right: <platform_wml:0|2|0>px;
}
#screen_button {
background-color: <color:window/button/background>;
border: 1px solid <color:window/button/border>;
border-radius: 5px;
color: <color:window/button/text>;
font-size: <setting:font_size>px;
padding: 4px 6px;
margin: 2px 0px;
}
#screen_button:hover {
border: 1px solid <color:window/button/border_hover>;
}