Skip to content

Commit 0f29a7f

Browse files
committed
Merge pull request #588 from fodinabor/IDEFixes
Ide fixes
2 parents 2c1afa0 + 17b8fc8 commit 0f29a7f

File tree

24 files changed

+1712
-1009
lines changed

24 files changed

+1712
-1009
lines changed

Assets/UIThemes.pak

-78 Bytes
Binary file not shown.

Assets/UIThemes/dark/theme.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<uiSmallHeaderBgColor>0x3a3a3aff</uiSmallHeaderBgColor>
1313
<uiHeaderFontColor>0x545454FF</uiHeaderFontColor>
1414
<uiSectionFontColor>0x00000080</uiSectionFontColor>
15+
<uiMenuBarBgColor>0x00000000</uiMenuBarBgColor>
1516

1617
<uiTextInputFontName>sans</uiTextInputFontName>
1718
<uiTextInputFontNameMultiLine>mono</uiTextInputFontNameMultiLine>

Assets/UIThemes/dark_retina/theme.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<uiSmallHeaderBgColor>0x3a3a3aff</uiSmallHeaderBgColor>
1313
<uiHeaderFontColor>0x545454FF</uiHeaderFontColor>
1414
<uiSectionFontColor>0x00000080</uiSectionFontColor>
15+
<uiMenuBarBgColor>0x00000000</uiMenuBarBgColor>
1516

1617
<uiTextInputFontName>sans</uiTextInputFontName>
1718
<uiTextInputFontNameMultiLine>mono</uiTextInputFontNameMultiLine>

Assets/UIThemes/default/theme.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<uiSmallHeaderBgColor>0x868686ff</uiSmallHeaderBgColor>
1313
<uiHeaderFontColor>0x000000c8</uiHeaderFontColor>
1414
<uiSectionFontColor>0x00000080</uiSectionFontColor>
15+
<uiMenuBarBgColor>0x00000000</uiMenuBarBgColor>
1516

1617
<uiTextInputFontName>sans</uiTextInputFontName>
1718
<uiTextInputFontNameMultiLine>mono</uiTextInputFontNameMultiLine>

Assets/UIThemes/default_retina/theme.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<uiSmallHeaderBgColor>0x868686ff</uiSmallHeaderBgColor>
1313
<uiHeaderFontColor>0x000000c8</uiHeaderFontColor>
1414
<uiSectionFontColor>0x00000080</uiSectionFontColor>
15+
<uiMenuBarBgColor>0x00000000</uiMenuBarBgColor>
1516

1617
<uiTextInputFontName>sans</uiTextInputFontName>
1718
<uiTextInputFontNameMultiLine>mono</uiTextInputFontNameMultiLine>

Core/Contents/Include/PolyInputKeys.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,9 @@ namespace Polycode {
232232
KEY_LEFT = 276,
233233
KEY_INSERT = 277,
234234
KEY_HOME = 278,
235-
KEY_END = 279,
235+
KEY_END = 279,
236236
KEY_PAGEUP = 280,
237-
KEY_PAGEDOWN = 281,
237+
KEY_PAGEDOWN = 281,
238238

239239
/* Function keys */
240240
KEY_F1 = 282,

Documentation/CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ OUTPUT doc_cmd
1414
COMMAND ${DOXYGEN_EXECUTABLE} ${Polycode_SOURCE_DIR}/Documentation/Doxygen/Polycode.doxygen
1515
COMMAND ${DOXYGEN_EXECUTABLE} ${Polycode_SOURCE_DIR}/Documentation/Doxygen/Physics2D.doxygen
1616
COMMAND ${DOXYGEN_EXECUTABLE} ${Polycode_SOURCE_DIR}/Documentation/Doxygen/Physics3D.doxygen
17+
COMMAND ${DOXYGEN_EXECUTABLE} ${Polycode_SOURCE_DIR}/Documentation/Doxygen/Polycode_ui.doxygen
1718
COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_CURRENT_BINARY_DIR}/doc_cmd # Generate the given output file(empty file), to keep track of whether we need to rebuild.
1819
WORKING_DIRECTORY ${Polycode_SOURCE_DIR}/Documentation/Doxygen/
1920
DEPENDS ${HEADER_DEPENDENCIES_CORE} ${HEADER_DEPENDENCIES_2DPHYSICS} ${HEADER_DEPENDENCIES_3DPHYSICS} ${HEADER_DEPENDENCIES_UI}
@@ -28,7 +29,9 @@ INSTALL(DIRECTORY Doxygen/output/standalone/Physics2D
2829
DESTINATION Docs/Modules)
2930
INSTALL(DIRECTORY Doxygen/output/standalone/Physics3D
3031
DESTINATION Docs/Modules)
31-
32+
INSTALL(DIRECTORY Doxygen/output/standalone/PolycodeUI
33+
DESTINATION Docs/Modules)
34+
3235
ENDIF(DOXYGEN_FOUND)
3336

3437
ENDIF(POLYCODE_BUILD_DOCS)

Documentation/Doxygen/Polycode.doxygen

Lines changed: 1582 additions & 960 deletions
Large diffs are not rendered by default.

Documentation/Doxygen/index.dox

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
\mainpage Polycode
55

66
\section Modules
7-
<a href="../../Polycode/html/index.html">Core</a> <br>
8-
<a href="../../PolycodeUI/html/index.html">UI Module</a> <br>
9-
<a href="../../Physics2D/html/index.html">Physics2D</a> <br>
10-
<a href="../../Physics3D/html/index.html">Physics3D</a> <br>
7+
<a href="../../../Core/Polycode/html/index.html">Core</a> <br>
8+
<a href="../../../Modules/PolycodeUI/html/index.html">UI Module</a> <br>
9+
<a href="../../../Modules/Physics2D/html/index.html">Physics2D</a> <br>
10+
<a href="../../../Modules/Physics3D/html/index.html">Physics3D</a> <br>
1111

1212
*/

IDE/Contents/Resources/UIThemes/dark/theme.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<uiSmallHeaderBgColor>0x3a3a3aff</uiSmallHeaderBgColor>
1313
<uiHeaderFontColor>0x545454FF</uiHeaderFontColor>
1414
<uiSectionFontColor>0x00000080</uiSectionFontColor>
15+
<uiMenuBarBgColor>0x00000000</uiMenuBarBgColor>
1516

1617
<uiTextInputFontName>sans</uiTextInputFontName>
1718
<uiTextInputFontNameMultiLine>mono</uiTextInputFontNameMultiLine>

0 commit comments

Comments
 (0)