mirror of https://github.com/buggins/dlangide.git
console mnode support
This commit is contained in:
parent
80c2ab2811
commit
1fb3bd9ec1
|
@ -72,8 +72,10 @@ extern (C) int UIAppMain(string[] args) {
|
|||
|
||||
// create window
|
||||
Window window = Platform.instance.createWindow("Dlang IDE", null, WindowFlag.Resizable, 900, 730);
|
||||
static if (BACKEND_GUI) {
|
||||
// set window icon
|
||||
window.windowIcon = drawableCache.getImage("dlangui-logo1");
|
||||
}
|
||||
|
||||
//Widget w = new Widget();
|
||||
//pragma(msg, w.click.return_t, "", w.click.params_t);
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
res/console_ide_theme_default.xml
|
||||
res/console_ide_theme_dark.xml
|
||||
res/i18n/en.ini
|
||||
res/i18n/ru.ini
|
||||
res/i18n/es.ini
|
||||
res/i18n/cs.ini
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<theme id="ide_theme_dark" parent="theme_dark"
|
||||
fontFace="Verdana,Arial,DejaVu Sans"
|
||||
fontFamily="SansSerif"
|
||||
textColor="#E0E0E0"
|
||||
>
|
||||
<color id="edit_background" value="#070808"/>
|
||||
<color id="link_color" value="#2020FF"/>
|
||||
<color id="syntax_highlight_comment" value="#10C010"/>
|
||||
<color id="syntax_highlight_keyword" value="#4080FF"/>
|
||||
<color id="syntax_highlight_string" value="#C37525"/>
|
||||
<color id="syntax_highlight_character" value="#C37525"/>
|
||||
<color id="syntax_highlight_error" value="#FF0000"/>
|
||||
<color id="syntax_highlight_comment_documentation" value="#50a000"/>
|
||||
|
||||
<color id="build_log_filename_color" value="#3030FF"/>
|
||||
<color id="build_log_error_color" value="#FF4040"/>
|
||||
<color id="build_log_warning_color" value="#E0E000"/>
|
||||
<color id="build_log_deprecation_color" value="#F05080"/>
|
||||
|
||||
<drawable id="btn_check" value="btn_check_dark"/>
|
||||
</theme>
|
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<theme id="ide_theme_default" parent="theme_default"
|
||||
fontFace="Verdana,Arial,DejaVu Sans"
|
||||
fontFamily="SansSerif"
|
||||
>
|
||||
<color id="edit_background" value="#FFFFFF"/>
|
||||
<color id="link_color" value="#2020FF"/>
|
||||
<color id="syntax_highlight_comment" value="#008000"/>
|
||||
<color id="syntax_highlight_keyword" value="#0000FF"/>
|
||||
<color id="syntax_highlight_string" value="#a31515"/>
|
||||
<color id="syntax_highlight_character" value="#a31515"/>
|
||||
<color id="syntax_highlight_error" value="#FF0000"/>
|
||||
<color id="syntax_highlight_comment_documentation" value="#206000"/>
|
||||
|
||||
<color id="build_log_filename_color" value="#0000C0"/>
|
||||
<color id="build_log_error_color" value="#FF0000"/>
|
||||
<color id="build_log_warning_color" value="#606000"/>
|
||||
<color id="build_log_deprecation_color" value="#802040"/>
|
||||
|
||||
<drawable id="btn_check" value="btn_check"/>
|
||||
<style id="TERMINAL" parent="EDIT_BOX_NO_FRAME"
|
||||
/>
|
||||
|
||||
|
||||
</theme>
|
||||
|
Loading…
Reference in New Issue