Compare commits
51 Commits
Author | SHA1 | Date |
---|---|---|
|
ec29ced5b6 | |
|
1bd86c66cd | |
|
b822795449 | |
|
aeb045e66e | |
|
e18eaa2b5b | |
|
ccac2ad2b9 | |
|
72ea89b6ec | |
|
8c072de2af | |
|
0dee6cb1f1 | |
|
daeb6f58af | |
|
61cda23311 | |
|
51728e70eb | |
|
b511e32ca3 | |
|
c566de2633 | |
|
eac96a7d05 | |
|
16abdd171b | |
|
4e64798b9b | |
|
b5333788ae | |
|
64cfd574b1 | |
|
98c8d835ea | |
|
5b57d9eafe | |
|
2af89ce369 | |
|
06949bef98 | |
|
1119c32e61 | |
|
d89ca3e739 | |
|
da20313a1b | |
|
93545717ed | |
|
0391aa9ae8 | |
|
dbb731fa7b | |
|
6c32105caf | |
|
634c024ab1 | |
|
31d9771a08 | |
|
4640e093c3 | |
|
a542844b97 | |
|
b4a9fbb431 | |
|
ed64d56a79 | |
|
d684feac14 | |
|
bf04e91293 | |
|
92990e5352 | |
|
4f69a40530 | |
|
a92a253481 | |
|
87d5a88a0c | |
|
85995f9baf | |
|
4634fcf90d | |
|
f4f1a6939c | |
|
2e9304727d | |
|
2cd4bc1416 | |
|
39ac4deb5d | |
|
c1f4a3b1c2 | |
|
2bf34ed691 | |
|
3900fd4a34 |
|
@ -20,3 +20,7 @@ index.html
|
||||||
api.html
|
api.html
|
||||||
screenshots.html
|
screenshots.html
|
||||||
*.log
|
*.log
|
||||||
|
|
||||||
|
*.userprefs
|
||||||
|
|
||||||
|
\.dlangidews\.wssettings
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
[submodule "deps/DCD"]
|
|
||||||
path = deps/DCD
|
|
||||||
url = https://github.com/Hackerpilot/DCD.git
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit cbcc6faac3f820bb8e06ed132d82d13036e34d58
|
|
|
@ -443,6 +443,7 @@
|
||||||
<Link>3rdparty\dsymbol\symbols.d</Link>
|
<Link>3rdparty\dsymbol\symbols.d</Link>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="src\dlangide\ui\terminal.d" />
|
<Compile Include="src\dlangide\ui\terminal.d" />
|
||||||
|
<Compile Include="src\dlangide\ui\newfolder.d" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="src\ddebug\gdb\" />
|
<Folder Include="src\ddebug\gdb\" />
|
||||||
|
|
|
@ -0,0 +1,140 @@
|
||||||
|
; Inno Setup script for DlangIDE.
|
||||||
|
; Installs DlangIDE and the Mago debugger, and optionally
|
||||||
|
; downloads and installs DMD.
|
||||||
|
|
||||||
|
|
||||||
|
[Setup]
|
||||||
|
AppName=DlangIDE
|
||||||
|
AppId=DlangIDE
|
||||||
|
|
||||||
|
; The following version numbers need to be updated on each release.
|
||||||
|
AppVerName=0.8.11
|
||||||
|
AppVersion=0.8.11
|
||||||
|
|
||||||
|
AppPublisher=Vadim Lopatin
|
||||||
|
AppPublisherURL=https://github.com/buggins/dlangui
|
||||||
|
AppSupportURL=https://github.com/buggins/dlangui
|
||||||
|
AppUpdatesURL=https://github.com/buggins/dlangui
|
||||||
|
AppCopyright=Copyright (C) 2015-2018 Vadim Lopatin
|
||||||
|
LicenseFile=LICENSE.txt
|
||||||
|
SetupMutex=DLangIDESetupMutex
|
||||||
|
|
||||||
|
; Require at least Windows 7.
|
||||||
|
MinVersion=6.1
|
||||||
|
DefaultDirName={pf}\DlangIDE
|
||||||
|
DefaultGroupName=DLangIDE
|
||||||
|
|
||||||
|
Compression=lzma2/normal
|
||||||
|
ShowComponentSizes=yes
|
||||||
|
AllowNetworkDrive=no
|
||||||
|
ChangesEnvironment=yes
|
||||||
|
ChangesAssociations=yes
|
||||||
|
|
||||||
|
|
||||||
|
[Types]
|
||||||
|
Name: "dlangide"; Description: "Install DlangIDE."; Flags: iscustom
|
||||||
|
|
||||||
|
|
||||||
|
[Components]
|
||||||
|
Name: "dlangide"; Description: "DlangIDE and tools"; Types: dlangide; Flags: fixed
|
||||||
|
Name: "dmd"; Description: "DMD compiler"; Types: dlangide; Check: IsCompilerNeeded;
|
||||||
|
|
||||||
|
|
||||||
|
[Files]
|
||||||
|
Source: "bin\dlangide.exe"; DestDir: "{app}"; Components: dlangide
|
||||||
|
Source: "bin\libfreetype-6.dll"; DestDir: "{app}"; Components: dlangide
|
||||||
|
Source: "bin\mago-mi.exe"; DestDir: "{app}"; Components: dlangide
|
||||||
|
Source: "views\res\mdpi\dlangui-shortcut1.ico"; DestDir: "{app}"; Components: dlangide
|
||||||
|
|
||||||
|
|
||||||
|
[Registry]
|
||||||
|
; Associate .dlangidews files with DlangIDE.
|
||||||
|
Root: HKCR; Subkey: ".dlangidews"; ValueType: String; ValueName: ""; ValueData: "DlangIDEProjectFile"; Tasks: associate; Flags: uninsdeletevalue
|
||||||
|
Root: HKCR; Subkey: "DlangIDEProjectFile"; ValueType: String; ValueName: ""; ValueData: "DlangIDE Project File"; Tasks: associate; Flags: uninsdeletekey
|
||||||
|
Root: HKCR; Subkey: "DlangIDEProjectFile\DefaultIcon"; ValueType: String; ValueName: ""; ValueData: "{app}\dlangui-shortcut1.ico"; Tasks: associate; Flags: uninsdeletekey
|
||||||
|
Root: HKCR; Subkey: "DlangIDEProjectFile\shell\open\command"; ValueType: String; ValueName: ""; ValueData: """{app}\dlangide.exe"" ""%1"""; Tasks: associate; Flags: uninsdeletekey
|
||||||
|
|
||||||
|
|
||||||
|
[Icons]
|
||||||
|
Name: "{commondesktop}\DlangIDE"; Filename: "{app}\dlangide.exe"; IconFileName: "{app}\dlangui-shortcut1.ico"; Tasks: desktopicon
|
||||||
|
|
||||||
|
|
||||||
|
[Tasks]
|
||||||
|
Name: desktopicon; Description: "Create a &desktop icon"; Components: dlangide; Flags: checkedonce unchecked
|
||||||
|
Name: associate; Description: "Associate DlangIDE &Workspace Files"; Components: dlangide; Flags: checkedonce
|
||||||
|
|
||||||
|
|
||||||
|
[Run]
|
||||||
|
Filename: "{tmp}\dmd-installer.exe"; StatusMsg: "Installing DMD..."; Components: dmd; Flags: 32bit; BeforeInstall: DownloadDMD
|
||||||
|
|
||||||
|
|
||||||
|
[Code]
|
||||||
|
|
||||||
|
{
|
||||||
|
See if we have a registry key for D or if the default installation directory
|
||||||
|
exists.
|
||||||
|
}
|
||||||
|
function IsCompilerNeeded(): Boolean;
|
||||||
|
begin
|
||||||
|
Result := not (RegKeyExists(HKCU, 'Software\DMD')
|
||||||
|
or DirExists(ExpandConstant('{sd}\D\dmd2')))
|
||||||
|
end;
|
||||||
|
|
||||||
|
{ Windows API function to download files from the Internet. }
|
||||||
|
function URLDownloadToFile(
|
||||||
|
pCaller: Integer;
|
||||||
|
szUrl: String;
|
||||||
|
szFileName: String;
|
||||||
|
dwReserved: Integer;
|
||||||
|
lpfnCB: Integer
|
||||||
|
): Integer;
|
||||||
|
#ifdef UNICODE
|
||||||
|
external 'URLDownloadToFileW@urlmon.dll';
|
||||||
|
#else
|
||||||
|
external 'URLDownloadToFileA@urlmon.dll';
|
||||||
|
#endif
|
||||||
|
|
||||||
|
{
|
||||||
|
Convenience procedure to download files; this hides parameters we don't care
|
||||||
|
about.
|
||||||
|
|
||||||
|
We assume the download is successful; if this fails, a later attempt to read
|
||||||
|
the file will display an error to the user.
|
||||||
|
}
|
||||||
|
procedure DownloadFile(url: String; dest: String);
|
||||||
|
begin
|
||||||
|
URLDownloadToFile(0, url, ExpandConstant(dest), 0, 0);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure DownloadDMD();
|
||||||
|
var
|
||||||
|
dmdVersion: AnsiString;
|
||||||
|
#ifdef UNICODE
|
||||||
|
dmdVersionU: String;
|
||||||
|
#else
|
||||||
|
dmdVersionU: AnsiString;
|
||||||
|
#endif
|
||||||
|
begin
|
||||||
|
DownloadFile('http://downloads.dlang.org/releases/LATEST', '{tmp}\latest.txt');
|
||||||
|
if LoadStringFromFile(ExpandConstant('{tmp}\latest.txt'), dmdVersion) then
|
||||||
|
begin
|
||||||
|
|
||||||
|
#ifdef UNICODE
|
||||||
|
dmdVersionU := String(dmdVersion);
|
||||||
|
#else
|
||||||
|
dmdVersionU := dmdVersion;
|
||||||
|
#endif
|
||||||
|
DownloadFile(
|
||||||
|
'http://downloads.dlang.org/releases/2.x/'
|
||||||
|
+ dmdVersionU
|
||||||
|
+ '/dmd-'
|
||||||
|
+ dmdVersionU
|
||||||
|
+ '.exe',
|
||||||
|
'{tmp}\dmd-installer.exe')
|
||||||
|
end
|
||||||
|
else
|
||||||
|
MsgBox(
|
||||||
|
'Unable to download dmd installer.'
|
||||||
|
+ ' Please download and install from dlang.org.',
|
||||||
|
mbInformation, MB_OK);
|
||||||
|
end;
|
|
@ -938,6 +938,7 @@
|
||||||
<File path="src\dlangide\ui\frame.d" />
|
<File path="src\dlangide\ui\frame.d" />
|
||||||
<File path="src\dlangide\ui\homescreen.d" />
|
<File path="src\dlangide\ui\homescreen.d" />
|
||||||
<File path="src\dlangide\ui\newfile.d" />
|
<File path="src\dlangide\ui\newfile.d" />
|
||||||
|
<File path="src\dlangide\ui\newfolder.d" />
|
||||||
<File path="src\dlangide\ui\newproject.d" />
|
<File path="src\dlangide\ui\newproject.d" />
|
||||||
<File path="src\dlangide\ui\outputpanel.d" />
|
<File path="src\dlangide\ui\outputpanel.d" />
|
||||||
<File path="src\dlangide\ui\searchPanel.d" />
|
<File path="src\dlangide\ui\searchPanel.d" />
|
||||||
|
|
11
dub.json
|
@ -12,9 +12,8 @@
|
||||||
"stringImportPaths": ["views"],
|
"stringImportPaths": ["views"],
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dlangui": "==0.9.173",
|
"dlangui": "~>0.10.3",
|
||||||
"dsymbol": "~>0.2.9",
|
"dcd": "~>0.16.0-beta.1"
|
||||||
"dcd": "~>0.9.1"
|
|
||||||
},
|
},
|
||||||
|
|
||||||
"copyFiles-windows": [
|
"copyFiles-windows": [
|
||||||
|
@ -30,19 +29,19 @@
|
||||||
"configurations" : [
|
"configurations" : [
|
||||||
{
|
{
|
||||||
"name" : "default"
|
"name" : "default"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name" : "minimal",
|
"name" : "minimal",
|
||||||
"subConfigurations" : {
|
"subConfigurations" : {
|
||||||
"dlangui" : "minimal"
|
"dlangui" : "minimal"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name" : "console",
|
"name" : "console",
|
||||||
"subConfigurations" : {
|
"subConfigurations" : {
|
||||||
"dlangui" : "console"
|
"dlangui" : "console"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name" : "x11",
|
"name" : "x11",
|
||||||
"subConfigurations" : {
|
"subConfigurations" : {
|
||||||
|
|
|
@ -69,7 +69,7 @@ class BasicTypeX : Lexem {
|
||||||
in {
|
in {
|
||||||
assert(isBasicTypeXToken(token));
|
assert(isBasicTypeXToken(token));
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
_token = token;
|
_token = token;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -97,7 +97,7 @@ class TypeCtor : Lexem {
|
||||||
in {
|
in {
|
||||||
assert(isTypeCtorToken(token));
|
assert(isTypeCtorToken(token));
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
_token = token;
|
_token = token;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -112,14 +112,14 @@ class TypeCtors : Lexem {
|
||||||
in {
|
in {
|
||||||
assert(isTypeCtorToken(token));
|
assert(isTypeCtorToken(token));
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
_list ~= new TypeCtor(token);
|
_list ~= new TypeCtor(token);
|
||||||
}
|
}
|
||||||
public void append(Token token)
|
public void append(Token token)
|
||||||
in {
|
in {
|
||||||
assert(isTypeCtorToken(token));
|
assert(isTypeCtorToken(token));
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
_list ~= new TypeCtor(token);
|
_list ~= new TypeCtor(token);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -134,7 +134,7 @@ class Identifier : Lexem {
|
||||||
in {
|
in {
|
||||||
assert(identifier.type == TokenType.IDENTIFIER);
|
assert(identifier.type == TokenType.IDENTIFIER);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
_token = cast(IdentToken)identifier;
|
_token = cast(IdentToken)identifier;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -157,14 +157,14 @@ class IdentifierList : Lexem {
|
||||||
in {
|
in {
|
||||||
assert(ident.type == TokenType.IDENTIFIER);
|
assert(ident.type == TokenType.IDENTIFIER);
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
_identifier = new Identifier(ident);
|
_identifier = new Identifier(ident);
|
||||||
_identifierList = identifierList;
|
_identifierList = identifierList;
|
||||||
}
|
}
|
||||||
public this(TemplateInstance templateInstance, IdentifierList identifierList = null)
|
public this(TemplateInstance templateInstance, IdentifierList identifierList = null)
|
||||||
in {
|
in {
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
_templateInstance = templateInstance;
|
_templateInstance = templateInstance;
|
||||||
_identifierList = identifierList;
|
_identifierList = identifierList;
|
||||||
}
|
}
|
||||||
|
@ -181,7 +181,7 @@ class TemplateInstance : Lexem {
|
||||||
public this()
|
public this()
|
||||||
in {
|
in {
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -207,7 +207,7 @@ class BasicType : Lexem {
|
||||||
public this()
|
public this()
|
||||||
in {
|
in {
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -228,7 +228,7 @@ class Typeof : Lexem {
|
||||||
public this(Expression expression)
|
public this(Expression expression)
|
||||||
in {
|
in {
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
_expression = expression;
|
_expression = expression;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -245,7 +245,7 @@ class Type : Lexem {
|
||||||
public this()
|
public this()
|
||||||
in {
|
in {
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -259,7 +259,7 @@ class Expression : Lexem {
|
||||||
public this()
|
public this()
|
||||||
in {
|
in {
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -273,7 +273,7 @@ class AltDeclarator : Lexem {
|
||||||
public this()
|
public this()
|
||||||
in {
|
in {
|
||||||
}
|
}
|
||||||
body {
|
do {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,15 @@ import std.conv;
|
||||||
import dlangide.ui.frame;
|
import dlangide.ui.frame;
|
||||||
import dlangide.ui.commands;
|
import dlangide.ui.commands;
|
||||||
import dlangide.workspace.workspace;
|
import dlangide.workspace.workspace;
|
||||||
import std.experimental.logger;
|
|
||||||
|
static if(__VERSION__ > 2100)
|
||||||
|
{
|
||||||
|
import std.logger;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
import std.experimental.logger;
|
||||||
|
}
|
||||||
|
|
||||||
mixin APP_ENTRY_POINT;
|
mixin APP_ENTRY_POINT;
|
||||||
|
|
||||||
|
@ -26,18 +34,20 @@ extern (C) int UIAppMain(string[] args) {
|
||||||
runParserTests();
|
runParserTests();
|
||||||
}
|
}
|
||||||
|
|
||||||
version(Windows) {
|
static if(__VERSION__ > 2100) {
|
||||||
|
debug {
|
||||||
|
sharedLog = cast(shared)new FileLogger("dcd.log");
|
||||||
|
} else {
|
||||||
|
sharedLog = cast(shared)new NullLogger();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
debug {
|
debug {
|
||||||
sharedLog = new FileLogger("dcd.log");
|
sharedLog = new FileLogger("dcd.log");
|
||||||
} else {
|
} else {
|
||||||
sharedLog = new NullLogger();
|
sharedLog = new NullLogger();
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
debug {
|
|
||||||
//sharedLog = new FileLogger("dcd.log");
|
|
||||||
} else {
|
|
||||||
sharedLog = new NullLogger();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//version (Windows) {
|
//version (Windows) {
|
||||||
|
@ -94,12 +104,12 @@ extern (C) int UIAppMain(string[] args) {
|
||||||
// set window icon
|
// set window icon
|
||||||
window.windowIcon = drawableCache.getImage("dlangui-logo1");
|
window.windowIcon = drawableCache.getImage("dlangui-logo1");
|
||||||
}
|
}
|
||||||
|
|
||||||
//Widget w = new Widget();
|
//Widget w = new Widget();
|
||||||
//pragma(msg, w.click.return_t, "", w.click.params_t);
|
//pragma(msg, w.click.return_t, "", w.click.params_t);
|
||||||
|
|
||||||
IDEFrame frame = new IDEFrame(window);
|
IDEFrame frame = new IDEFrame(window);
|
||||||
|
|
||||||
// Open project, if it specified in command line
|
// Open project, if it specified in command line
|
||||||
if (args.length > 1)
|
if (args.length > 1)
|
||||||
{
|
{
|
||||||
|
|
|
@ -15,15 +15,10 @@ import std.experimental.allocator;
|
||||||
import std.experimental.allocator.mallocator;
|
import std.experimental.allocator.mallocator;
|
||||||
import std.experimental.allocator.gc_allocator;
|
import std.experimental.allocator.gc_allocator;
|
||||||
|
|
||||||
import server.autocomplete;
|
import dcd.server.autocomplete;
|
||||||
import common.messages;
|
import dcd.common.messages;
|
||||||
import dsymbol.modulecache;
|
import dsymbol.modulecache;
|
||||||
|
|
||||||
//alias SharedASTAllocator = CAllocatorImpl!(Mallocator);
|
|
||||||
//alias SharedASTAllocator = CAllocatorImpl!(Mallocator);
|
|
||||||
//alias SharedASTAllocator = CSharedAllocatorImpl!(Mallocator);
|
|
||||||
alias SharedASTAllocator = ASTAllocator;
|
|
||||||
|
|
||||||
enum DCDResult : int {
|
enum DCDResult : int {
|
||||||
SUCCESS,
|
SUCCESS,
|
||||||
NO_RESULT,
|
NO_RESULT,
|
||||||
|
@ -92,11 +87,9 @@ class DCDTask {
|
||||||
}
|
}
|
||||||
|
|
||||||
class ModuleCacheAccessor {
|
class ModuleCacheAccessor {
|
||||||
import dsymbol.modulecache;
|
|
||||||
//protected ASTAllocator _astAllocator;
|
|
||||||
protected ModuleCache _moduleCache;
|
protected ModuleCache _moduleCache;
|
||||||
this(in string[] importPaths) {
|
this(in string[] importPaths) {
|
||||||
_moduleCache = ModuleCache(new SharedASTAllocator);
|
_moduleCache = ModuleCache();
|
||||||
_moduleCache.addImportPaths(importPaths);
|
_moduleCache.addImportPaths(importPaths);
|
||||||
}
|
}
|
||||||
protected ModuleCache * getModuleCache(in string[] importPaths) {
|
protected ModuleCache * getModuleCache(in string[] importPaths) {
|
||||||
|
@ -109,8 +102,6 @@ class ModuleCacheAccessor {
|
||||||
class DCDInterface : Thread {
|
class DCDInterface : Thread {
|
||||||
|
|
||||||
import dsymbol.modulecache;
|
import dsymbol.modulecache;
|
||||||
//protected ASTAllocator _astAllocator;
|
|
||||||
//protected ModuleCache * _moduleCache;
|
|
||||||
ModuleCacheAccessor _moduleCache;
|
ModuleCacheAccessor _moduleCache;
|
||||||
protected BlockingQueue!DCDTask _queue;
|
protected BlockingQueue!DCDTask _queue;
|
||||||
|
|
||||||
|
@ -238,7 +229,7 @@ class DCDInterface : Thread {
|
||||||
override void performRequest() {
|
override void performRequest() {
|
||||||
AutocompleteResponse response = getDoc(request, *getModuleCache(_importPaths));
|
AutocompleteResponse response = getDoc(request, *getModuleCache(_importPaths));
|
||||||
|
|
||||||
result.docComments = response.docComments.dup;
|
//result.docComments = response.docComments.dup; TODO_GRIM: Fix
|
||||||
result.result = DCDResult.SUCCESS;
|
result.result = DCDResult.SUCCESS;
|
||||||
|
|
||||||
debug(DCD) Log.d("DCD doc comments:\n", result.docComments);
|
debug(DCD) Log.d("DCD doc comments:\n", result.docComments);
|
||||||
|
@ -318,11 +309,9 @@ class DCDInterface : Thread {
|
||||||
result.output.length = response.completions.length;
|
result.output.length = response.completions.length;
|
||||||
int i=0;
|
int i=0;
|
||||||
foreach(s;response.completions) {
|
foreach(s;response.completions) {
|
||||||
char type = 0;
|
char type = s.kind;
|
||||||
if (i < response.completionKinds.length)
|
|
||||||
type = response.completionKinds[i];
|
|
||||||
result.output[i].kind = type;
|
result.output[i].kind = type;
|
||||||
result.output[i].name = to!dstring(s);
|
result.output[i].name = to!dstring(s.identifier);
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
if (response.completionType == "calltips") {
|
if (response.completionType == "calltips") {
|
||||||
|
@ -364,6 +353,7 @@ int completionTypePriority(char t) {
|
||||||
return 3;
|
return 3;
|
||||||
case 'k': // - keyword, built-in version, scope statement
|
case 'k': // - keyword, built-in version, scope statement
|
||||||
return 20;
|
return 20;
|
||||||
|
case 'F':
|
||||||
case 'f': // - function or method
|
case 'f': // - function or method
|
||||||
return 2;
|
return 2;
|
||||||
case 'g': // - enum name
|
case 'g': // - enum name
|
||||||
|
|
|
@ -117,6 +117,7 @@ class DEditorTool : EditorTool
|
||||||
auto destPos = byteOffsetToCaret(content, target);
|
auto destPos = byteOffsetToCaret(content, target);
|
||||||
_frame.currentEditor.setCaretPos(destPos.line,destPos.pos, true, true);
|
_frame.currentEditor.setCaretPos(destPos.line,destPos.pos, true, true);
|
||||||
_frame.currentEditor.setFocus();
|
_frame.currentEditor.setFocus();
|
||||||
|
_frame.caretHistory.pushNewPosition();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -6,6 +6,7 @@ import dlangui.widgets.editors;
|
||||||
enum IDEActions : int {
|
enum IDEActions : int {
|
||||||
//ProjectOpen = 1010000,
|
//ProjectOpen = 1010000,
|
||||||
FileNew = 1010000,
|
FileNew = 1010000,
|
||||||
|
FileNewDirectory,
|
||||||
FileNewWorkspace,
|
FileNewWorkspace,
|
||||||
FileNewProject,
|
FileNewProject,
|
||||||
FileOpen,
|
FileOpen,
|
||||||
|
@ -71,6 +72,8 @@ enum IDEActions : int {
|
||||||
GetDocComments,
|
GetDocComments,
|
||||||
GetParenCompletion,
|
GetParenCompletion,
|
||||||
GotoLine,
|
GotoLine,
|
||||||
|
GotoNextPosition,
|
||||||
|
GotoPrevPosition,
|
||||||
|
|
||||||
InsertCompletion,
|
InsertCompletion,
|
||||||
FindInFiles,
|
FindInFiles,
|
||||||
|
@ -100,6 +103,7 @@ const Action ACTION_PROJECT_FOLDER_COLLAPSE_ALL = new Action(IDEActions.ProjectF
|
||||||
|
|
||||||
const Action ACTION_FILE_WORKSPACE_CLOSE = new Action(IDEActions.CloseWorkspace, "MENU_FILE_WORKSPACE_CLOSE"c).disableByDefault();
|
const Action ACTION_FILE_WORKSPACE_CLOSE = new Action(IDEActions.CloseWorkspace, "MENU_FILE_WORKSPACE_CLOSE"c).disableByDefault();
|
||||||
|
|
||||||
|
const Action ACTION_FILE_NEW_DIRECTORY = new Action(IDEActions.FileNewDirectory, "MENU_FILE_NEW_DIRECTORY"c);
|
||||||
const Action ACTION_FILE_NEW_SOURCE_FILE = new Action(IDEActions.FileNew, "MENU_FILE_NEW_SOURCE_FILE"c, "document-new", KeyCode.KEY_N, KeyFlag.Control);
|
const Action ACTION_FILE_NEW_SOURCE_FILE = new Action(IDEActions.FileNew, "MENU_FILE_NEW_SOURCE_FILE"c, "document-new", KeyCode.KEY_N, KeyFlag.Control);
|
||||||
const Action ACTION_FILE_NEW_PROJECT = new Action(IDEActions.FileNewProject, "MENU_FILE_NEW_PROJECT"c);
|
const Action ACTION_FILE_NEW_PROJECT = new Action(IDEActions.FileNewProject, "MENU_FILE_NEW_PROJECT"c);
|
||||||
const Action ACTION_FILE_NEW_WORKSPACE = new Action(IDEActions.FileNewWorkspace, "MENU_FILE_NEW_WORKSPACE"c);
|
const Action ACTION_FILE_NEW_WORKSPACE = new Action(IDEActions.FileNewWorkspace, "MENU_FILE_NEW_WORKSPACE"c);
|
||||||
|
@ -174,7 +178,9 @@ const Action ACTION_GET_DOC_COMMENTS = (new Action(IDEActions.GetDocComments, "
|
||||||
const Action ACTION_GO_TO_DEFINITION = (new Action(IDEActions.GoToDefinition, "GO_TO_DEFINITION"c, ""c, KeyCode.KEY_G, KeyFlag.Control)).addAccelerator(KeyCode.F12, 0).disableByDefault();
|
const Action ACTION_GO_TO_DEFINITION = (new Action(IDEActions.GoToDefinition, "GO_TO_DEFINITION"c, ""c, KeyCode.KEY_G, KeyFlag.Control)).addAccelerator(KeyCode.F12, 0).disableByDefault();
|
||||||
const Action ACTION_GET_COMPLETIONS = (new Action(IDEActions.GetCompletionSuggestions, "SHOW_COMPLETIONS"c, ""c, KeyCode.KEY_G, KeyFlag.Control|KeyFlag.Shift)).addAccelerator(KeyCode.SPACE, KeyFlag.Control).disableByDefault();
|
const Action ACTION_GET_COMPLETIONS = (new Action(IDEActions.GetCompletionSuggestions, "SHOW_COMPLETIONS"c, ""c, KeyCode.KEY_G, KeyFlag.Control|KeyFlag.Shift)).addAccelerator(KeyCode.SPACE, KeyFlag.Control).disableByDefault();
|
||||||
const Action ACTION_GET_PAREN_COMPLETION = (new Action(IDEActions.GetParenCompletion, "SHOW_PAREN_COMPLETION"c, ""c, KeyCode.SPACE, KeyFlag.Control|KeyFlag.Shift)).disableByDefault();
|
const Action ACTION_GET_PAREN_COMPLETION = (new Action(IDEActions.GetParenCompletion, "SHOW_PAREN_COMPLETION"c, ""c, KeyCode.SPACE, KeyFlag.Control|KeyFlag.Shift)).disableByDefault();
|
||||||
const Action ACTION_GO_TO_LINE = (new Action(IDEActions.GotoLine, "GO_TO_LINE"c, ""c, KeyCode.KEY_L, KeyFlag.Control|KeyFlag.Option)).disableByDefault();;
|
const Action ACTION_GO_TO_LINE = (new Action(IDEActions.GotoLine, "GO_TO_LINE"c, ""c, KeyCode.KEY_L, KeyFlag.Control|KeyFlag.Option)).disableByDefault();
|
||||||
|
const Action ACTION_GO_TO_PREV_POSITION = (new Action(IDEActions.GotoPrevPosition, "GO_TO_PREV_POSITION"c, ""c, KeyCode.LEFT, KeyFlag.Alt)).disableByDefault();
|
||||||
|
const Action ACTION_GO_TO_NEXT_POSITION = (new Action(IDEActions.GotoNextPosition, "GO_TO_NEXT_POSITION"c, ""c, KeyCode.RIGHT, KeyFlag.Alt)).disableByDefault();
|
||||||
|
|
||||||
const Action ACTION_FIND_TEXT = (new Action(IDEActions.FindInFiles, "FIND_IN_FILES"c, "edit-find"c, KeyCode.KEY_F, KeyFlag.Control | KeyFlag.Shift)).disableByDefault();
|
const Action ACTION_FIND_TEXT = (new Action(IDEActions.FindInFiles, "FIND_IN_FILES"c, "edit-find"c, KeyCode.KEY_F, KeyFlag.Control | KeyFlag.Shift)).disableByDefault();
|
||||||
const Action ACTION_TOOLS_OPEN_DMD_TRACE_LOG = (new Action(IDEActions.ToolsOpenDMDTraceLog, "OPEN_DMD_TRACE_LOG"c));
|
const Action ACTION_TOOLS_OPEN_DMD_TRACE_LOG = (new Action(IDEActions.ToolsOpenDMDTraceLog, "OPEN_DMD_TRACE_LOG"c));
|
||||||
|
@ -202,5 +208,7 @@ const Action[] STD_IDE_ACTIONS = [
|
||||||
ACTION_GET_COMPLETIONS,
|
ACTION_GET_COMPLETIONS,
|
||||||
ACTION_GET_PAREN_COMPLETION,
|
ACTION_GET_PAREN_COMPLETION,
|
||||||
ACTION_GO_TO_LINE,
|
ACTION_GO_TO_LINE,
|
||||||
|
ACTION_GO_TO_PREV_POSITION,
|
||||||
|
ACTION_GO_TO_NEXT_POSITION,
|
||||||
ACTION_FIND_TEXT,
|
ACTION_FIND_TEXT,
|
||||||
];
|
];
|
||||||
|
|
|
@ -43,7 +43,7 @@ class DMDProfilerView : WidgetGroupDefaultDrawing {
|
||||||
|
|
||||||
class TraceFuncionGrid : StringGridWidgetBase {
|
class TraceFuncionGrid : StringGridWidgetBase {
|
||||||
protected FunctionNode[] _list;
|
protected FunctionNode[] _list;
|
||||||
protected dstring[] _colTitles;
|
protected UIString[] _colTitles;
|
||||||
protected ulong _ticksPerSecond;
|
protected ulong _ticksPerSecond;
|
||||||
this(string ID, FunctionNode[] list, ulong ticks_per_second) {
|
this(string ID, FunctionNode[] list, ulong ticks_per_second) {
|
||||||
super(ID);
|
super(ID);
|
||||||
|
@ -53,10 +53,10 @@ class TraceFuncionGrid : StringGridWidgetBase {
|
||||||
fullColumnOnLeft(false);
|
fullColumnOnLeft(false);
|
||||||
fullRowOnTop(false);
|
fullRowOnTop(false);
|
||||||
resize(4, cast(int)list.length);
|
resize(4, cast(int)list.length);
|
||||||
setColTitle(0, "Function name"d);
|
setColTitle(0, UIString.fromRaw("Function name"));
|
||||||
setColTitle(1, "Called"d);
|
setColTitle(1, UIString.fromRaw("Called"));
|
||||||
setColTitle(2, "F us"d);
|
setColTitle(2, UIString.fromRaw("F us"));
|
||||||
setColTitle(3, "F+D us"d);
|
setColTitle(3, UIString.fromRaw("F+D us"));
|
||||||
showRowHeaders = false;
|
showRowHeaders = false;
|
||||||
rowSelect = true;
|
rowSelect = true;
|
||||||
minVisibleRows = 10;
|
minVisibleRows = 10;
|
||||||
|
@ -80,54 +80,54 @@ class TraceFuncionGrid : StringGridWidgetBase {
|
||||||
buffer[i] = buf[k - i - 1];
|
buffer[i] = buf[k - i - 1];
|
||||||
return cast(dstring)buffer[0..k];
|
return cast(dstring)buffer[0..k];
|
||||||
}
|
}
|
||||||
dstring formatDurationTicks(ulong n) {
|
auto formatDurationTicks(ulong n) {
|
||||||
ulong v = n * 1000000 / _ticksPerSecond;
|
ulong v = n * 1000000 / _ticksPerSecond;
|
||||||
return formatNumber(v, _numberFormatBuf[]);
|
return UIString.fromRaw(formatNumber(v, _numberFormatBuf[]));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// get cell text
|
/// get cell text
|
||||||
override dstring cellText(int col, int row) {
|
override UIString cellText(int col, int row) {
|
||||||
import std.conv : to;
|
import std.conv : to;
|
||||||
if (row < 0 || row >= _list.length)
|
if (row < 0 || row >= _list.length)
|
||||||
return ""d;
|
return UIString.fromRaw(""d);
|
||||||
FunctionNode entry = _list[row];
|
FunctionNode entry = _list[row];
|
||||||
switch (col) {
|
switch (col) {
|
||||||
case 0:
|
case 0:
|
||||||
string fn = entry.name;
|
string fn = entry.name;
|
||||||
if (fn.length > 256)
|
if (fn.length > 256)
|
||||||
fn = fn[0..256] ~ "...";
|
fn = fn[0..256] ~ "...";
|
||||||
return fn.to!dstring;
|
return UIString.fromRaw(fn.to!dstring);
|
||||||
case 1:
|
case 1:
|
||||||
return formatNumber(entry.number_of_calls, _numberFormatBuf);
|
return UIString.fromRaw(formatNumber(entry.number_of_calls, _numberFormatBuf));
|
||||||
case 2:
|
case 2:
|
||||||
return formatDurationTicks(entry.function_time);
|
return formatDurationTicks(entry.function_time);
|
||||||
case 3:
|
case 3:
|
||||||
return formatDurationTicks(entry.function_and_descendant_time);
|
return formatDurationTicks(entry.function_and_descendant_time);
|
||||||
default:
|
default:
|
||||||
return ""d;
|
return UIString.fromRaw(""d);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/// set cell text
|
/// set cell text
|
||||||
override StringGridWidgetBase setCellText(int col, int row, dstring text) {
|
override StringGridWidgetBase setCellText(int col, int row, UIString text) {
|
||||||
// do nothing
|
// do nothing
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
/// returns row header title
|
/// returns row header title
|
||||||
override dstring rowTitle(int row) {
|
override UIString rowTitle(int row) {
|
||||||
return ""d;
|
return UIString.fromRaw(""d);
|
||||||
}
|
}
|
||||||
/// set row header title
|
/// set row header title
|
||||||
override StringGridWidgetBase setRowTitle(int row, dstring title) {
|
override StringGridWidgetBase setRowTitle(int row, UIString title) {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// returns row header title
|
/// returns row header title
|
||||||
override dstring colTitle(int col) {
|
override UIString colTitle(int col) {
|
||||||
return _colTitles[col];
|
return _colTitles[col];
|
||||||
}
|
}
|
||||||
|
|
||||||
/// set col header title
|
/// set col header title
|
||||||
override StringGridWidgetBase setColTitle(int col, dstring title) {
|
override StringGridWidgetBase setColTitle(int col, UIString title) {
|
||||||
_colTitles[col] = title;
|
_colTitles[col] = title;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,7 +49,7 @@ class DSourceEdit : SourceEdit, EditableContentMarksChangeListener {
|
||||||
onThemeChanged();
|
onThemeChanged();
|
||||||
//setTokenHightlightColor(TokenCategory.Identifier, 0x206000); // no colors
|
//setTokenHightlightColor(TokenCategory.Identifier, 0x206000); // no colors
|
||||||
MenuItem editPopupItem = new MenuItem(null);
|
MenuItem editPopupItem = new MenuItem(null);
|
||||||
editPopupItem.add(ACTION_EDIT_COPY, ACTION_EDIT_PASTE, ACTION_EDIT_CUT, ACTION_EDIT_UNDO,
|
editPopupItem.add(ACTION_EDIT_COPY, ACTION_EDIT_PASTE, ACTION_EDIT_CUT, ACTION_EDIT_UNDO,
|
||||||
ACTION_EDIT_REDO, ACTION_EDIT_INDENT, ACTION_EDIT_UNINDENT, ACTION_EDIT_TOGGLE_LINE_COMMENT,
|
ACTION_EDIT_REDO, ACTION_EDIT_INDENT, ACTION_EDIT_UNINDENT, ACTION_EDIT_TOGGLE_LINE_COMMENT,
|
||||||
ACTION_GET_COMPLETIONS, ACTION_GO_TO_DEFINITION, ACTION_DEBUG_TOGGLE_BREAKPOINT);
|
ACTION_GET_COMPLETIONS, ACTION_GO_TO_DEFINITION, ACTION_DEBUG_TOGGLE_BREAKPOINT);
|
||||||
popupMenu = editPopupItem;
|
popupMenu = editPopupItem;
|
||||||
|
@ -125,12 +125,12 @@ class DSourceEdit : SourceEdit, EditableContentMarksChangeListener {
|
||||||
|
|
||||||
protected EditorTool _editorTool;
|
protected EditorTool _editorTool;
|
||||||
@property EditorTool editorTool() { return _editorTool; }
|
@property EditorTool editorTool() { return _editorTool; }
|
||||||
@property EditorTool editorTool(EditorTool tool) {
|
@property EditorTool editorTool(EditorTool tool) {
|
||||||
if (_editorTool && _editorTool !is tool) {
|
if (_editorTool && _editorTool !is tool) {
|
||||||
destroy(_editorTool);
|
destroy(_editorTool);
|
||||||
_editorTool = null;
|
_editorTool = null;
|
||||||
}
|
}
|
||||||
return _editorTool = tool;
|
return _editorTool = tool;
|
||||||
};
|
};
|
||||||
|
|
||||||
protected ProjectSourceFile _projectSourceFile;
|
protected ProjectSourceFile _projectSourceFile;
|
||||||
|
@ -585,7 +585,7 @@ class DSourceEdit : SourceEdit, EditableContentMarksChangeListener {
|
||||||
_docsPopup.popupClosed = delegate(PopupWidget source) {
|
_docsPopup.popupClosed = delegate(PopupWidget source) {
|
||||||
Log.d("Closed Docs popup");
|
Log.d("Closed Docs popup");
|
||||||
_docsPopup = null;
|
_docsPopup = null;
|
||||||
//setFocus();
|
//setFocus();
|
||||||
};
|
};
|
||||||
_docsPopup.flags = PopupFlags.CloseOnClickOutside | PopupFlags.CloseOnMouseMoveOutside;
|
_docsPopup.flags = PopupFlags.CloseOnClickOutside | PopupFlags.CloseOnMouseMoveOutside;
|
||||||
invalidate();
|
invalidate();
|
||||||
|
@ -641,7 +641,8 @@ class DSourceEdit : SourceEdit, EditableContentMarksChangeListener {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (suggestions.length == 1) {
|
// Only insert singular autocompletion if automatic autocomplete is turned off!
|
||||||
|
if (!_settings.autoAutoComplete && suggestions.length == 1) {
|
||||||
insertCompletion(suggestions[0]);
|
insertCompletion(suggestions[0]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -680,7 +681,7 @@ class DSourceEdit : SourceEdit, EditableContentMarksChangeListener {
|
||||||
popupPositionX,
|
popupPositionX,
|
||||||
popupPositionY + yOffset);
|
popupPositionY + yOffset);
|
||||||
_completionPopup.setFocus();
|
_completionPopup.setFocus();
|
||||||
_completionPopup.popupClosed = delegate(PopupWidget source) {
|
_completionPopup.popupClosed = delegate(PopupWidget source) {
|
||||||
setFocus();
|
setFocus();
|
||||||
_completionPopup = null;
|
_completionPopup = null;
|
||||||
};
|
};
|
||||||
|
@ -721,13 +722,25 @@ class DSourceEdit : SourceEdit, EditableContentMarksChangeListener {
|
||||||
super.handleFocusChange(focused, receivedFocusFromKeyboard);
|
super.handleFocusChange(focused, receivedFocusFromKeyboard);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private bool isAutoCompleteKey(ref KeyEvent event) {
|
||||||
|
if((event.keyCode >= KeyCode.KEY_0 && event.keyCode <= KeyCode.KEY_Z) ||
|
||||||
|
event.keyCode == KeyCode.KEY_PERIOD ||
|
||||||
|
event.keyCode == KeyCode.BACK ||
|
||||||
|
event.text == "_")
|
||||||
|
return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
protected uint _lastKeyDownCode;
|
protected uint _lastKeyDownCode;
|
||||||
protected uint _periodKeyCode;
|
protected uint _periodKeyCode;
|
||||||
/// handle keys: support autocompletion after . press with delay
|
/// handle keys: support autocompletion after . press with delay
|
||||||
override bool onKeyEvent(KeyEvent event) {
|
override bool onKeyEvent(KeyEvent event) {
|
||||||
if (event.action == KeyAction.KeyDown)
|
if (event.action == KeyAction.KeyDown)
|
||||||
_lastKeyDownCode = event.keyCode;
|
_lastKeyDownCode = event.keyCode;
|
||||||
if (event.action == KeyAction.Text && event.noModifiers && event.text==".") {
|
if(_settings.autoAutoComplete && isAutoCompleteKey(event) && !_completionPopup) {
|
||||||
|
window.dispatchAction(ACTION_GET_COMPLETIONS, this);
|
||||||
|
}
|
||||||
|
else if (event.action == KeyAction.Text && event.noModifiers && event.text==".") {
|
||||||
_periodKeyCode = _lastKeyDownCode;
|
_periodKeyCode = _lastKeyDownCode;
|
||||||
startCompletionTimer();
|
startCompletionTimer();
|
||||||
} else {
|
} else {
|
||||||
|
@ -775,7 +788,7 @@ class CompletionPopupMenu : PopupMenu {
|
||||||
//maxHeight(400);
|
//maxHeight(400);
|
||||||
selectItem(0);
|
selectItem(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
Point fullContentSizeWithBorders() {
|
Point fullContentSizeWithBorders() {
|
||||||
measure(2000.pointsToPixels, 2000.pointsToPixels);
|
measure(2000.pointsToPixels, 2000.pointsToPixels);
|
||||||
Point sz;
|
Point sz;
|
||||||
|
@ -790,7 +803,7 @@ class CompletionPopupMenu : PopupMenu {
|
||||||
|
|
||||||
MenuItem updateItems() {
|
MenuItem updateItems() {
|
||||||
MenuItem res = new MenuItem();
|
MenuItem res = new MenuItem();
|
||||||
foreach(int i, dstring suggestion ; _suggestions) {
|
foreach(i, dstring suggestion ; _suggestions) {
|
||||||
if (_prefix.length && !suggestion.startsWith(_prefix))
|
if (_prefix.length && !suggestion.startsWith(_prefix))
|
||||||
continue;
|
continue;
|
||||||
string iconId;
|
string iconId;
|
||||||
|
@ -806,19 +819,12 @@ class CompletionPopupMenu : PopupMenu {
|
||||||
/// handle keys
|
/// handle keys
|
||||||
override bool onKeyEvent(KeyEvent event) {
|
override bool onKeyEvent(KeyEvent event) {
|
||||||
if (event.action == KeyAction.Text) {
|
if (event.action == KeyAction.Text) {
|
||||||
_prefix ~= event.text;
|
_editor.onKeyEvent(event);
|
||||||
MenuItem newItems = updateItems();
|
_editor.closeCompletionPopup(this);
|
||||||
if (newItems.subitemCount == 0) {
|
return true;
|
||||||
// no matches anymore
|
} else if (event.keyCode == KeyCode.ESCAPE) {
|
||||||
_editor.onKeyEvent(event);
|
_editor.closeCompletionPopup(this);
|
||||||
_editor.closeCompletionPopup(this);
|
return true;
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
_editor.onKeyEvent(event);
|
|
||||||
menuItems = newItems;
|
|
||||||
selectItem(0);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
} else if (event.action == KeyAction.KeyDown && event.keyCode == KeyCode.BACK && event.noModifiers) {
|
} else if (event.action == KeyAction.KeyDown && event.keyCode == KeyCode.BACK && event.noModifiers) {
|
||||||
if (_prefix.length > _initialPrefix.length) {
|
if (_prefix.length > _initialPrefix.length) {
|
||||||
_prefix.length = _prefix.length - 1;
|
_prefix.length = _prefix.length - 1;
|
||||||
|
@ -831,8 +837,8 @@ class CompletionPopupMenu : PopupMenu {
|
||||||
_editor.closeCompletionPopup(this);
|
_editor.closeCompletionPopup(this);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
} else if (event.action == KeyAction.KeyDown && event.keyCode == KeyCode.RETURN) {
|
} else if ((event.action == KeyAction.KeyDown && event.keyCode == KeyCode.RETURN) ||
|
||||||
} else if (event.action == KeyAction.KeyDown && event.keyCode == KeyCode.SPACE) {
|
(event.action == KeyAction.KeyDown && event.keyCode == KeyCode.SPACE)) {
|
||||||
}
|
}
|
||||||
return super.onKeyEvent(event);
|
return super.onKeyEvent(event);
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,7 @@ import dlangide.ui.commands;
|
||||||
import dlangide.ui.wspanel;
|
import dlangide.ui.wspanel;
|
||||||
import dlangide.ui.outputpanel;
|
import dlangide.ui.outputpanel;
|
||||||
import dlangide.ui.newfile;
|
import dlangide.ui.newfile;
|
||||||
|
import dlangide.ui.newfolder;
|
||||||
import dlangide.ui.newproject;
|
import dlangide.ui.newproject;
|
||||||
import dlangide.ui.dsourceedit;
|
import dlangide.ui.dsourceedit;
|
||||||
import dlangide.ui.homescreen;
|
import dlangide.ui.homescreen;
|
||||||
|
@ -107,6 +108,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
window.onCanClose = &onCanClose;
|
window.onCanClose = &onCanClose;
|
||||||
window.onClose = &onWindowClose;
|
window.onClose = &onWindowClose;
|
||||||
applySettings(_settings);
|
applySettings(_settings);
|
||||||
|
caretHistory = new CaretHistory;
|
||||||
}
|
}
|
||||||
|
|
||||||
~this() {
|
~this() {
|
||||||
|
@ -148,25 +150,25 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
/// called when program execution is stopped
|
/// called when program execution is stopped
|
||||||
protected void onProgramExecutionStatus(ProgramExecution process, ExecutionStatus status, int exitCode) {
|
protected void onProgramExecutionStatus(ProgramExecution process, ExecutionStatus status, int exitCode) {
|
||||||
executeInUiThread(delegate() {
|
executeInUiThread(delegate() {
|
||||||
Log.d("onProgramExecutionStatus process: ", process.executableFile, " status: ", status, " exitCode: ", exitCode);
|
Log.d("onProgramExecutionStatus process: ", process.executableFile, " status: ", status, " exitCode: ", exitCode);
|
||||||
_execution = null;
|
_execution = null;
|
||||||
// TODO: update state
|
// TODO: update state
|
||||||
switch(status) {
|
switch(status) {
|
||||||
case ExecutionStatus.Error:
|
case ExecutionStatus.Error:
|
||||||
_logPanel.logLine("Cannot run program " ~ process.executableFile);
|
_logPanel.logLine("Cannot run program " ~ process.executableFile);
|
||||||
break;
|
break;
|
||||||
case ExecutionStatus.Finished:
|
case ExecutionStatus.Finished:
|
||||||
_logPanel.logLine("Program " ~ process.executableFile ~ " finished with exit code " ~ to!string(exitCode));
|
_logPanel.logLine("Program " ~ process.executableFile ~ " finished with exit code " ~ to!string(exitCode));
|
||||||
break;
|
break;
|
||||||
case ExecutionStatus.Killed:
|
case ExecutionStatus.Killed:
|
||||||
_logPanel.logLine("Program " ~ process.executableFile ~ " is killed");
|
_logPanel.logLine("Program " ~ process.executableFile ~ " is killed");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
_logPanel.logLine("Program " ~ process.executableFile ~ " is finished");
|
_logPanel.logLine("Program " ~ process.executableFile ~ " is finished");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
_statusLine.setBackgroundOperationStatus(null, null);
|
_statusLine.setBackgroundOperationStatus(null, null);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void handleBuildError(int result, Project project) {
|
protected void handleBuildError(int result, Project project) {
|
||||||
|
@ -186,13 +188,13 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
buildProject(BuildOperation.Build, project, delegate(int result) {
|
buildProject(BuildOperation.Build, project, delegate(int result) {
|
||||||
if (!result) {
|
if (!result) {
|
||||||
Log.i("Build completed successfully. Starting debug for project.");
|
Log.i("Build completed successfully. Starting debug for project.");
|
||||||
debugProject(project);
|
debugProject(project);
|
||||||
} else {
|
} else {
|
||||||
handleBuildError(result, project);
|
handleBuildError(result, project);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void debugFinished(ProgramExecution process, ExecutionStatus status, int exitCode) {
|
void debugFinished(ProgramExecution process, ExecutionStatus status, int exitCode) {
|
||||||
|
@ -255,13 +257,13 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
buildProject(BuildOperation.Build, project, delegate(int result) {
|
buildProject(BuildOperation.Build, project, delegate(int result) {
|
||||||
if (!result) {
|
if (!result) {
|
||||||
Log.i("Build completed successfully. Running program...");
|
Log.i("Build completed successfully. Running program...");
|
||||||
runProject(project);
|
runProject(project);
|
||||||
} else {
|
} else {
|
||||||
handleBuildError(result, project);
|
handleBuildError(result, project);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void runProject(Project project) {
|
protected void runProject(Project project) {
|
||||||
|
@ -400,8 +402,10 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
Log.d("found source file");
|
Log.d("found source file");
|
||||||
if (sourceFile)
|
if (sourceFile)
|
||||||
_wsPanel.selectItem(sourceFile);
|
_wsPanel.selectItem(sourceFile);
|
||||||
|
caretHistory.pushNewPosition();
|
||||||
currentEditor().setCaretPos(line, 0);
|
currentEditor().setCaretPos(line, 0);
|
||||||
currentEditor().setCaretPos(line, column);
|
currentEditor().setCaretPos(line, column);
|
||||||
|
caretHistory.pushNewPosition();
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -415,6 +419,13 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
_tabs.renameTab(index, name);
|
_tabs.renameTab(index, name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool tryOpenSourceFile(string filename) {
|
||||||
|
if (isSupportedSourceTextFileFormat(filename)) {
|
||||||
|
return openSourceFile(filename, null, true);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
bool openSourceFile(string filename, ProjectSourceFile file = null, bool activate = true) {
|
bool openSourceFile(string filename, ProjectSourceFile file = null, bool activate = true) {
|
||||||
if (!file && !filename)
|
if (!file && !filename)
|
||||||
|
@ -487,7 +498,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
HomeScreen home = new HomeScreen(HOME_SCREEN_ID, this);
|
HomeScreen home = new HomeScreen(HOME_SCREEN_ID, this);
|
||||||
_tabs.addTab(home, UIString.fromId("HOME"c), null, true);
|
_tabs.addTab(home, UIString.fromId("HOME"c), null, true);
|
||||||
_tabs.selectTab(HOME_SCREEN_ID, true);
|
_tabs.selectTab(HOME_SCREEN_ID, true);
|
||||||
auto _settings = new IDESettings(buildNormalizedPath(settingsDir, "settings.json"));
|
auto _settings = new IDESettings(buildNormalizedPath(settingsDir, "settings.json"));
|
||||||
// Auto open last workspace, if no workspace specified in command line and autoOpen flag set to true
|
// Auto open last workspace, if no workspace specified in command line and autoOpen flag set to true
|
||||||
const auto recentWorkspaces = settings.recentWorkspaces;
|
const auto recentWorkspaces = settings.recentWorkspaces;
|
||||||
if (!openedWorkspace && recentWorkspaces.length > 0 && _settings.autoOpenLastProject())
|
if (!openedWorkspace && recentWorkspaces.length > 0 && _settings.autoOpenLastProject())
|
||||||
|
@ -603,35 +614,35 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
// tab content is modified - ask for confirmation
|
// tab content is modified - ask for confirmation
|
||||||
auto header = UIString.fromId("HEADER_CLOSE_FILE"c);
|
auto header = UIString.fromId("HEADER_CLOSE_FILE"c);
|
||||||
window.showMessageBox(header ~ " " ~ toUTF32(baseName(tabId)), UIString.fromId("MSG_FILE_CONTENT_CHANGED"c),
|
window.showMessageBox(header ~ " " ~ toUTF32(baseName(tabId)), UIString.fromId("MSG_FILE_CONTENT_CHANGED"c),
|
||||||
[ACTION_SAVE, ACTION_SAVE_ALL, ACTION_DISCARD_CHANGES, ACTION_DISCARD_ALL, ACTION_CANCEL],
|
[ACTION_SAVE, ACTION_SAVE_ALL, ACTION_DISCARD_CHANGES, ACTION_DISCARD_ALL, ACTION_CANCEL],
|
||||||
0, delegate(const Action result) {
|
0, delegate(const Action result) {
|
||||||
if (result == StandardAction.Save) {
|
if (result == StandardAction.Save) {
|
||||||
// save and close
|
// save and close
|
||||||
ed.save();
|
ed.save();
|
||||||
askForUnsavedEdits(onConfirm);
|
askForUnsavedEdits(onConfirm);
|
||||||
} else if (result == StandardAction.DiscardChanges) {
|
} else if (result == StandardAction.DiscardChanges) {
|
||||||
// close, don't save
|
// close, don't save
|
||||||
closeTab(tabId);
|
closeTab(tabId);
|
||||||
closeAllDocuments();
|
closeAllDocuments();
|
||||||
onConfirm();
|
onConfirm();
|
||||||
} else if (result == StandardAction.SaveAll) {
|
} else if (result == StandardAction.SaveAll) {
|
||||||
ed.save();
|
ed.save();
|
||||||
for(;;) {
|
for(;;) {
|
||||||
DSourceEdit editor = hasUnsavedEdits();
|
DSourceEdit editor = hasUnsavedEdits();
|
||||||
if (!editor)
|
if (!editor)
|
||||||
break;
|
break;
|
||||||
editor.save();
|
editor.save();
|
||||||
}
|
}
|
||||||
closeAllDocuments();
|
closeAllDocuments();
|
||||||
onConfirm();
|
onConfirm();
|
||||||
} else if (result == StandardAction.DiscardAll) {
|
} else if (result == StandardAction.DiscardAll) {
|
||||||
// close, don't save
|
// close, don't save
|
||||||
closeAllDocuments();
|
closeAllDocuments();
|
||||||
onConfirm();
|
onConfirm();
|
||||||
}
|
}
|
||||||
// else ignore
|
// else ignore
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void onTabClose(string tabId) {
|
protected void onTabClose(string tabId) {
|
||||||
|
@ -642,19 +653,19 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
if (d && d.content.modified) {
|
if (d && d.content.modified) {
|
||||||
// tab content is modified - ask for confirmation
|
// tab content is modified - ask for confirmation
|
||||||
window.showMessageBox(UIString.fromId("HEADER_CLOSE_TAB"c), UIString.fromId("MSG_TAB_CONTENT_CHANGED"c) ~ ": " ~ toUTF32(baseName(tabId)),
|
window.showMessageBox(UIString.fromId("HEADER_CLOSE_TAB"c), UIString.fromId("MSG_TAB_CONTENT_CHANGED"c) ~ ": " ~ toUTF32(baseName(tabId)),
|
||||||
[ACTION_SAVE, ACTION_DISCARD_CHANGES, ACTION_CANCEL],
|
[ACTION_SAVE, ACTION_DISCARD_CHANGES, ACTION_CANCEL],
|
||||||
0, delegate(const Action result) {
|
0, delegate(const Action result) {
|
||||||
if (result == StandardAction.Save) {
|
if (result == StandardAction.Save) {
|
||||||
// save and close
|
// save and close
|
||||||
d.save();
|
d.save();
|
||||||
closeTab(tabId);
|
closeTab(tabId);
|
||||||
} else if (result == StandardAction.DiscardChanges) {
|
} else if (result == StandardAction.DiscardChanges) {
|
||||||
// close, don't save
|
// close, don't save
|
||||||
closeTab(tabId);
|
closeTab(tabId);
|
||||||
}
|
}
|
||||||
// else ignore
|
// else ignore
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
closeTab(tabId);
|
closeTab(tabId);
|
||||||
}
|
}
|
||||||
|
@ -737,11 +748,11 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
fileNewItem.add(ACTION_FILE_NEW_SOURCE_FILE, ACTION_FILE_NEW_WORKSPACE, ACTION_FILE_NEW_PROJECT);
|
fileNewItem.add(ACTION_FILE_NEW_SOURCE_FILE, ACTION_FILE_NEW_WORKSPACE, ACTION_FILE_NEW_PROJECT);
|
||||||
fileItem.add(fileNewItem);
|
fileItem.add(fileNewItem);
|
||||||
fileItem.add(ACTION_FILE_OPEN_WORKSPACE, ACTION_FILE_OPEN,
|
fileItem.add(ACTION_FILE_OPEN_WORKSPACE, ACTION_FILE_OPEN,
|
||||||
ACTION_FILE_SAVE, ACTION_FILE_SAVE_AS, ACTION_FILE_SAVE_ALL, ACTION_FILE_WORKSPACE_CLOSE, ACTION_FILE_EXIT);
|
ACTION_FILE_SAVE, ACTION_FILE_SAVE_AS, ACTION_FILE_SAVE_ALL, ACTION_FILE_WORKSPACE_CLOSE, ACTION_FILE_EXIT);
|
||||||
|
|
||||||
MenuItem editItem = new MenuItem(new Action(2, "MENU_EDIT"));
|
MenuItem editItem = new MenuItem(new Action(2, "MENU_EDIT"));
|
||||||
editItem.add(ACTION_EDIT_COPY, ACTION_EDIT_PASTE,
|
editItem.add(ACTION_EDIT_COPY, ACTION_EDIT_PASTE,
|
||||||
ACTION_EDIT_CUT, ACTION_EDIT_UNDO, ACTION_EDIT_REDO);
|
ACTION_EDIT_CUT, ACTION_EDIT_UNDO, ACTION_EDIT_REDO);
|
||||||
editItem.addSeparator();
|
editItem.addSeparator();
|
||||||
editItem.add(ACTION_EDITOR_FIND, ACTION_EDITOR_FIND_NEXT, ACTION_EDITOR_FIND_PREV, ACTION_EDITOR_REPLACE, ACTION_FIND_TEXT, ACTION_EDITOR_TOGGLE_BOOKMARK);
|
editItem.add(ACTION_EDITOR_FIND, ACTION_EDITOR_FIND_NEXT, ACTION_EDITOR_FIND_PREV, ACTION_EDITOR_REPLACE, ACTION_FIND_TEXT, ACTION_EDITOR_TOGGLE_BOOKMARK);
|
||||||
editItem.addSeparator();
|
editItem.addSeparator();
|
||||||
|
@ -762,7 +773,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
MenuItem navItem = new MenuItem(new Action(21, "MENU_NAVIGATE"));
|
MenuItem navItem = new MenuItem(new Action(21, "MENU_NAVIGATE"));
|
||||||
navItem.add(ACTION_GO_TO_DEFINITION, ACTION_GET_COMPLETIONS, ACTION_GET_DOC_COMMENTS,
|
navItem.add(ACTION_GO_TO_DEFINITION, ACTION_GET_COMPLETIONS, ACTION_GET_DOC_COMMENTS,
|
||||||
ACTION_GET_PAREN_COMPLETION, ACTION_EDITOR_GOTO_PREVIOUS_BOOKMARK,
|
ACTION_GET_PAREN_COMPLETION, ACTION_EDITOR_GOTO_PREVIOUS_BOOKMARK,
|
||||||
ACTION_EDITOR_GOTO_NEXT_BOOKMARK, ACTION_GO_TO_LINE);
|
ACTION_EDITOR_GOTO_NEXT_BOOKMARK, ACTION_GO_TO_LINE, ACTION_GO_TO_PREV_POSITION, ACTION_GO_TO_NEXT_POSITION);
|
||||||
|
|
||||||
MenuItem projectItem = new MenuItem(new Action(21, "MENU_PROJECT"));
|
MenuItem projectItem = new MenuItem(new Action(21, "MENU_PROJECT"));
|
||||||
projectItem.add(ACTION_PROJECT_SET_STARTUP, ACTION_PROJECT_REFRESH, ACTION_PROJECT_UPDATE_DEPENDENCIES, ACTION_PROJECT_SETTINGS);
|
projectItem.add(ACTION_PROJECT_SET_STARTUP, ACTION_PROJECT_REFRESH, ACTION_PROJECT_UPDATE_DEPENDENCIES, ACTION_PROJECT_SETTINGS);
|
||||||
|
@ -792,20 +803,20 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
buildItem.addSeparator();
|
buildItem.addSeparator();
|
||||||
|
|
||||||
buildItem.add(ACTION_WORKSPACE_BUILD, ACTION_WORKSPACE_REBUILD, ACTION_WORKSPACE_CLEAN,
|
buildItem.add(ACTION_WORKSPACE_BUILD, ACTION_WORKSPACE_REBUILD, ACTION_WORKSPACE_CLEAN,
|
||||||
ACTION_PROJECT_BUILD, ACTION_PROJECT_REBUILD, ACTION_PROJECT_CLEAN,
|
ACTION_PROJECT_BUILD, ACTION_PROJECT_REBUILD, ACTION_PROJECT_CLEAN,
|
||||||
ACTION_RUN_WITH_RDMD);
|
ACTION_RUN_WITH_RDMD);
|
||||||
|
|
||||||
MenuItem debugItem = new MenuItem(new Action(23, "MENU_DEBUG"));
|
MenuItem debugItem = new MenuItem(new Action(23, "MENU_DEBUG"));
|
||||||
debugItem.add(ACTION_DEBUG_START, ACTION_DEBUG_START_NO_DEBUG,
|
debugItem.add(ACTION_DEBUG_START, ACTION_DEBUG_START_NO_DEBUG,
|
||||||
ACTION_DEBUG_CONTINUE, ACTION_DEBUG_STOP, ACTION_DEBUG_PAUSE,
|
ACTION_DEBUG_CONTINUE, ACTION_DEBUG_STOP, ACTION_DEBUG_PAUSE,
|
||||||
ACTION_DEBUG_RESTART,
|
ACTION_DEBUG_RESTART,
|
||||||
ACTION_DEBUG_STEP_INTO,
|
ACTION_DEBUG_STEP_INTO,
|
||||||
ACTION_DEBUG_STEP_OVER,
|
ACTION_DEBUG_STEP_OVER,
|
||||||
ACTION_DEBUG_STEP_OUT,
|
ACTION_DEBUG_STEP_OUT,
|
||||||
ACTION_DEBUG_TOGGLE_BREAKPOINT, ACTION_DEBUG_ENABLE_BREAKPOINT, ACTION_DEBUG_DISABLE_BREAKPOINT
|
ACTION_DEBUG_TOGGLE_BREAKPOINT, ACTION_DEBUG_ENABLE_BREAKPOINT, ACTION_DEBUG_DISABLE_BREAKPOINT
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
MenuItem toolsItem = new MenuItem(new Action(33, "MENU_TOOLS"c));
|
MenuItem toolsItem = new MenuItem(new Action(33, "MENU_TOOLS"c));
|
||||||
toolsItem.add(ACTION_TOOLS_OPEN_DMD_TRACE_LOG);
|
toolsItem.add(ACTION_TOOLS_OPEN_DMD_TRACE_LOG);
|
||||||
|
|
||||||
|
@ -873,14 +884,14 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
|
|
||||||
tb = res.getOrAddToolbar("Edit");
|
tb = res.getOrAddToolbar("Edit");
|
||||||
tb.addButtons(ACTION_EDIT_COPY, ACTION_EDIT_PASTE, ACTION_EDIT_CUT, ACTION_SEPARATOR,
|
tb.addButtons(ACTION_EDIT_COPY, ACTION_EDIT_PASTE, ACTION_EDIT_CUT, ACTION_SEPARATOR,
|
||||||
ACTION_EDIT_UNDO, ACTION_EDIT_REDO, ACTION_EDIT_INDENT, ACTION_EDIT_UNINDENT);
|
ACTION_EDIT_UNDO, ACTION_EDIT_REDO, ACTION_EDIT_INDENT, ACTION_EDIT_UNINDENT);
|
||||||
tb = res.getOrAddToolbar("Debug");
|
tb = res.getOrAddToolbar("Debug");
|
||||||
tb.addButtons(ACTION_DEBUG_STOP, ACTION_DEBUG_CONTINUE, ACTION_DEBUG_PAUSE,
|
tb.addButtons(ACTION_DEBUG_STOP, ACTION_DEBUG_CONTINUE, ACTION_DEBUG_PAUSE,
|
||||||
ACTION_DEBUG_RESTART,
|
ACTION_DEBUG_RESTART,
|
||||||
ACTION_DEBUG_STEP_INTO,
|
ACTION_DEBUG_STEP_INTO,
|
||||||
ACTION_DEBUG_STEP_OVER,
|
ACTION_DEBUG_STEP_OVER,
|
||||||
ACTION_DEBUG_STEP_OUT,
|
ACTION_DEBUG_STEP_OUT,
|
||||||
);
|
);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -980,6 +991,8 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
case IDEActions.FileSaveAll:
|
case IDEActions.FileSaveAll:
|
||||||
case IDEActions.FileSaveAs:
|
case IDEActions.FileSaveAs:
|
||||||
case IDEActions.GotoLine:
|
case IDEActions.GotoLine:
|
||||||
|
case IDEActions.GotoPrevPosition:
|
||||||
|
case IDEActions.GotoNextPosition:
|
||||||
case EditorActions.Find:
|
case EditorActions.Find:
|
||||||
case EditorActions.FindNext:
|
case EditorActions.FindNext:
|
||||||
case EditorActions.FindPrev:
|
case EditorActions.FindPrev:
|
||||||
|
@ -1031,7 +1044,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
window.showMessageBox(UIString.fromId("ERROR"c), UIString.fromId("ERROR_FAILED_TO_PARSE_FILE"c));
|
window.showMessageBox(UIString.fromId("ERROR"c), UIString.fromId("ERROR_FAILED_TO_PARSE_FILE"c));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
setBackgroundOperation(op);
|
setBackgroundOperation(op);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1084,9 +1097,9 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
//}
|
//}
|
||||||
dstring msg = "DLangIDE\n(C) Vadim Lopatin, 2014-2017\nhttp://github.com/buggins/dlangide\n"
|
dstring msg = "DLangIDE\n(C) Vadim Lopatin, 2014-2017\nhttp://github.com/buggins/dlangide\n"
|
||||||
~ "IDE for D programming language written in D\nUses DlangUI library "
|
~ "IDE for D programming language written in D\nUses DlangUI library "
|
||||||
~ DLANGUI_VERSION ~ " for GUI"d;
|
~ DLANGUI_VERSION ~ " for GUI"d;
|
||||||
window.showMessageBox(UIString.fromId("ABOUT"c) ~ " " ~ DLANGIDE_VERSION,
|
window.showMessageBox(UIString.fromId("ABOUT"c) ~ " " ~ DLANGIDE_VERSION,
|
||||||
UIString.fromRaw(msg));
|
UIString.fromRaw(msg));
|
||||||
return true;
|
return true;
|
||||||
case IDEActions.BuildSetConfiguration:
|
case IDEActions.BuildSetConfiguration:
|
||||||
// set build configuration
|
// set build configuration
|
||||||
|
@ -1137,7 +1150,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
else
|
else
|
||||||
ed.editorTool = new DefaultEditorTool(this);
|
ed.editorTool = new DefaultEditorTool(this);
|
||||||
//openSourceFile(filename);
|
//openSourceFile(filename);
|
||||||
refreshWorkspace();
|
updateTreeGraph();
|
||||||
ProjectSourceFile file = _wsPanel.findSourceFileItem(filename, false);
|
ProjectSourceFile file = _wsPanel.findSourceFileItem(filename, false);
|
||||||
if (file) {
|
if (file) {
|
||||||
ed.projectSourceFile = file;
|
ed.projectSourceFile = file;
|
||||||
|
@ -1209,7 +1222,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
buildProject(BuildOperation.Upgrade, cast(Project)a.objectParam);
|
buildProject(BuildOperation.Upgrade, cast(Project)a.objectParam);
|
||||||
return true;
|
return true;
|
||||||
case IDEActions.RefreshProject:
|
case IDEActions.RefreshProject:
|
||||||
refreshWorkspace();
|
updateTreeGraph();
|
||||||
return true;
|
return true;
|
||||||
case IDEActions.RevealProjectInExplorer:
|
case IDEActions.RevealProjectInExplorer:
|
||||||
revealProjectInExplorer(cast(Project)a.objectParam);
|
revealProjectInExplorer(cast(Project)a.objectParam);
|
||||||
|
@ -1219,8 +1232,8 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
return true;
|
return true;
|
||||||
case IDEActions.WindowCloseAllDocuments:
|
case IDEActions.WindowCloseAllDocuments:
|
||||||
askForUnsavedEdits(delegate() {
|
askForUnsavedEdits(delegate() {
|
||||||
closeAllDocuments();
|
closeAllDocuments();
|
||||||
});
|
});
|
||||||
return true;
|
return true;
|
||||||
case IDEActions.WindowShowHomeScreen:
|
case IDEActions.WindowShowHomeScreen:
|
||||||
showHomeScreen();
|
showHomeScreen();
|
||||||
|
@ -1276,6 +1289,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
case IDEActions.GoToDefinition:
|
case IDEActions.GoToDefinition:
|
||||||
if (currentEditor) {
|
if (currentEditor) {
|
||||||
Log.d("Trying to go to definition.");
|
Log.d("Trying to go to definition.");
|
||||||
|
caretHistory.pushNewPosition();
|
||||||
currentEditor.editorTool.goToDefinition(currentEditor(), currentEditor.caretPos);
|
currentEditor.editorTool.goToDefinition(currentEditor(), currentEditor.caretPos);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
@ -1285,31 +1299,45 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
Log.d("Go to line");
|
Log.d("Go to line");
|
||||||
// Ask user for line
|
// Ask user for line
|
||||||
window.showInputBox(UIString.fromId("GO_TO_LINE"c), UIString.fromId("GO_TO_LINE"c), ""d, delegate(dstring s) {
|
window.showInputBox(UIString.fromId("GO_TO_LINE"c), UIString.fromId("GO_TO_LINE"c), ""d, delegate(dstring s) {
|
||||||
try {
|
try {
|
||||||
auto num = to!uint(s);
|
auto num = to!uint(s);
|
||||||
// Check line existence
|
// Check line existence
|
||||||
if (num < 1 || num > currentEditor.content.length) {
|
if (num < 1 || num > currentEditor.content.length) {
|
||||||
|
currentEditor.setFocus();
|
||||||
|
window.showMessageBox(UIString.fromId("ERROR"c), UIString.fromId("ERROR_NO_SUCH_LINE"c));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Go to line
|
||||||
|
caretHistory.pushNewPosition();
|
||||||
|
currentEditor.setCaretPos(num - 1, 0);
|
||||||
currentEditor.setFocus();
|
currentEditor.setFocus();
|
||||||
window.showMessageBox(UIString.fromId("ERROR"c), UIString.fromId("ERROR_NO_SUCH_LINE"c));
|
caretHistory.pushNewPosition();
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
// Go to line
|
catch (ConvException e) {
|
||||||
currentEditor.setCaretPos(num - 1, 0);
|
currentEditor.setFocus();
|
||||||
currentEditor.setFocus();
|
window.showMessageBox(UIString.fromId("ERROR"c), UIString.fromId("ERROR_INVALID_NUMBER"c));
|
||||||
}
|
}
|
||||||
catch (ConvException e) {
|
});
|
||||||
currentEditor.setFocus();
|
}
|
||||||
window.showMessageBox(UIString.fromId("ERROR"c), UIString.fromId("ERROR_INVALID_NUMBER"c));
|
return true;
|
||||||
}
|
case IDEActions.GotoPrevPosition:
|
||||||
});
|
if (currentEditor) {
|
||||||
|
Log.d("Go to prev position");
|
||||||
|
caretHistory.moveToPrev();
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
case IDEActions.GotoNextPosition:
|
||||||
|
if (currentEditor) {
|
||||||
|
Log.d("Go to next position");
|
||||||
|
caretHistory.moveToNext();
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
case IDEActions.GetDocComments:
|
case IDEActions.GetDocComments:
|
||||||
Log.d("Trying to get doc comments.");
|
Log.d("Trying to get doc comments.");
|
||||||
currentEditor.editorTool.getDocComments(currentEditor, currentEditor.caretPos, delegate(string[] results) {
|
currentEditor.editorTool.getDocComments(currentEditor, currentEditor.caretPos, delegate(string[] results) {
|
||||||
if (results.length)
|
if (results.length)
|
||||||
currentEditor.showDocCommentsPopup(results);
|
currentEditor.showDocCommentsPopup(results);
|
||||||
});
|
});
|
||||||
return true;
|
return true;
|
||||||
case IDEActions.GetParenCompletion:
|
case IDEActions.GetParenCompletion:
|
||||||
Log.d("Trying to get paren completion.");
|
Log.d("Trying to get paren completion.");
|
||||||
|
@ -1318,9 +1346,9 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
case IDEActions.GetCompletionSuggestions:
|
case IDEActions.GetCompletionSuggestions:
|
||||||
Log.d("Getting auto completion suggestions.");
|
Log.d("Getting auto completion suggestions.");
|
||||||
currentEditor.editorTool.getCompletions(currentEditor, currentEditor.caretPos, delegate(dstring[] results, string[] icons, CompletionTypes type) {
|
currentEditor.editorTool.getCompletions(currentEditor, currentEditor.caretPos, delegate(dstring[] results, string[] icons, CompletionTypes type) {
|
||||||
if (currentEditor)
|
if (currentEditor)
|
||||||
currentEditor.showCompletionPopup(results, icons, type);
|
currentEditor.showCompletionPopup(results, icons, type);
|
||||||
});
|
});
|
||||||
return true;
|
return true;
|
||||||
case IDEActions.EditPreferences:
|
case IDEActions.EditPreferences:
|
||||||
showPreferences();
|
showPreferences();
|
||||||
|
@ -1365,7 +1393,10 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
createNewProject(false);
|
createNewProject(false);
|
||||||
return true;
|
return true;
|
||||||
case IDEActions.FileNew:
|
case IDEActions.FileNew:
|
||||||
addProjectItem(cast(Object)a.objectParam);
|
addFile(cast(Object)a.objectParam);
|
||||||
|
return true;
|
||||||
|
case IDEActions.FileNewDirectory:
|
||||||
|
addDirectory(cast(Object)a.objectParam);
|
||||||
return true;
|
return true;
|
||||||
case IDEActions.ProjectFolderRemoveItem:
|
case IDEActions.ProjectFolderRemoveItem:
|
||||||
removeProjectItem(a.objectParam);
|
removeProjectItem(a.objectParam);
|
||||||
|
@ -1403,9 +1434,9 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
currentWorkspace.save();
|
currentWorkspace.save();
|
||||||
}
|
}
|
||||||
askForUnsavedEdits(delegate() {
|
askForUnsavedEdits(delegate() {
|
||||||
setWorkspace(null);
|
setWorkspace(null);
|
||||||
showHomeScreen();
|
showHomeScreen();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void onBreakpointListChanged(ProjectSourceFile sourcefile, Breakpoint[] breakpoints) {
|
void onBreakpointListChanged(ProjectSourceFile sourcefile, Breakpoint[] breakpoints) {
|
||||||
|
@ -1433,7 +1464,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
if (cast(Workspace)obj) {
|
if (cast(Workspace)obj) {
|
||||||
Workspace ws = cast(Workspace)obj;
|
Workspace ws = cast(Workspace)obj;
|
||||||
ws.refresh();
|
ws.refresh();
|
||||||
refreshWorkspace();
|
updateTreeGraph();
|
||||||
} else if (cast(Project)obj) {
|
} else if (cast(Project)obj) {
|
||||||
project = cast(Project)obj;
|
project = cast(Project)obj;
|
||||||
} else if (cast(ProjectFolder)obj) {
|
} else if (cast(ProjectFolder)obj) {
|
||||||
|
@ -1452,7 +1483,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
}
|
}
|
||||||
if (project) {
|
if (project) {
|
||||||
project.refresh();
|
project.refresh();
|
||||||
refreshWorkspace();
|
updateTreeGraph();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1466,29 +1497,74 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
if (!project)
|
if (!project)
|
||||||
return;
|
return;
|
||||||
window.showMessageBox(UIString.fromId("HEADER_REMOVE_FILE"c),
|
window.showMessageBox(UIString.fromId("HEADER_REMOVE_FILE"c),
|
||||||
UIString.fromId("QUESTION_REMOVE_FILE"c) ~ " " ~ srcfile.name ~ "?",
|
UIString.fromId("QUESTION_REMOVE_FILE"c) ~ " " ~ srcfile.name ~ "?",
|
||||||
[ACTION_YES, ACTION_NO],
|
[ACTION_YES, ACTION_NO],
|
||||||
1, delegate(const Action result) {
|
1, delegate(const Action result) {
|
||||||
if (result == StandardAction.Yes) {
|
if (result == StandardAction.Yes) {
|
||||||
// save and close
|
// save and close
|
||||||
import std.file : remove;
|
import std.file : remove;
|
||||||
closeTab(srcfile.filename);
|
closeTab(srcfile.filename);
|
||||||
try {
|
try {
|
||||||
remove(srcfile.filename);
|
remove(srcfile.filename);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Log.e("Cannot remove file");
|
Log.e("Cannot remove file");
|
||||||
}
|
|
||||||
project.refresh();
|
|
||||||
refreshWorkspace();
|
|
||||||
}
|
}
|
||||||
// else ignore
|
project.refresh();
|
||||||
return true;
|
updateTreeGraph();
|
||||||
});
|
}
|
||||||
|
// else ignore
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void addFile(Object obj) {
|
||||||
|
Dialog createNewFileDialog(Project project, ProjectFolder folder) {
|
||||||
|
NewFileDlg dialog = new NewFileDlg(this, project, folder);
|
||||||
|
dialog.dialogResult = delegate(Dialog dlg, const Action result) {
|
||||||
|
if (result.id == ACTION_FILE_NEW_SOURCE_FILE.id) {
|
||||||
|
FileCreationResult res = cast(FileCreationResult)result.objectParam;
|
||||||
|
if (res) {
|
||||||
|
//res.project.reload();
|
||||||
|
res.project.refresh();
|
||||||
|
updateTreeGraph();
|
||||||
|
tryOpenSourceFile(res.filename);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return dialog;
|
||||||
|
}
|
||||||
|
addProjectItem(&createNewFileDialog, obj);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void addDirectory(Object obj) {
|
||||||
|
Dialog createNewDirectoryDialog(Project project, ProjectFolder folder) {
|
||||||
|
NewFolderDialog dialog = new NewFolderDialog(this, project, folder);
|
||||||
|
dialog.dialogResult = delegate(Dialog dlg, const Action result) {
|
||||||
|
if(result.id == ACTION_FILE_NEW_DIRECTORY.id) {
|
||||||
|
FileCreationResult res = cast(FileCreationResult)result.objectParam;
|
||||||
|
if (res) {
|
||||||
|
ProjectFolder newFolder = new ProjectFolder(res.filename);
|
||||||
|
if(folder) {
|
||||||
|
folder.addChild(newFolder);
|
||||||
|
folder.sortItems;
|
||||||
|
newFolder.refresh();
|
||||||
|
if(newFolder.childCount > 0){
|
||||||
|
tryOpenSourceFile(newFolder.child(0).filename);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
updateTreeGraph();
|
||||||
|
_wsPanel.selectItem(newFolder);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return dialog;
|
||||||
|
}
|
||||||
|
addProjectItem(&createNewDirectoryDialog, obj);
|
||||||
|
}
|
||||||
|
|
||||||
/// add new file to project
|
/// add new file to project
|
||||||
void addProjectItem(Object obj) {
|
private void addProjectItem(Dialog delegate(Project, ProjectFolder) dialogFactory, Object obj) {
|
||||||
if (currentWorkspace is null)
|
if (currentWorkspace is null)
|
||||||
return;
|
return;
|
||||||
if (obj is null && _wsPanel !is null && !currentEditorSourceFile) {
|
if (obj is null && _wsPanel !is null && !currentEditorSourceFile) {
|
||||||
|
@ -1500,7 +1576,12 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
ProjectFolder folder;
|
ProjectFolder folder;
|
||||||
if (cast(Project)obj) {
|
if (cast(Project)obj) {
|
||||||
project = cast(Project)obj;
|
project = cast(Project)obj;
|
||||||
folder = project.firstSourceFolder;
|
folder = project.items;
|
||||||
|
import std.stdio;
|
||||||
|
writeln("Root filename:", folder.filename);
|
||||||
|
for(int i = 0; i < folder.childCount; i++) {
|
||||||
|
writeln("Child [", i, "]: ", folder.child(i).filename);
|
||||||
|
}
|
||||||
} else if (cast(ProjectFolder)obj) {
|
} else if (cast(ProjectFolder)obj) {
|
||||||
folder = cast(ProjectFolder)obj;
|
folder = cast(ProjectFolder)obj;
|
||||||
project = folder.project;
|
project = folder.project;
|
||||||
|
@ -1515,21 +1596,8 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
project = srcfile.project;
|
project = srcfile.project;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (project && folder && project.workspace is currentWorkspace) {
|
if (project && project.workspace is currentWorkspace) {
|
||||||
NewFileDlg dlg = new NewFileDlg(this, project, folder);
|
Dialog dlg = dialogFactory(project, folder);
|
||||||
dlg.dialogResult = delegate(Dialog dlg, const Action result) {
|
|
||||||
if (result.id == ACTION_FILE_NEW_SOURCE_FILE.id) {
|
|
||||||
FileCreationResult res = cast(FileCreationResult)result.objectParam;
|
|
||||||
if (res) {
|
|
||||||
//res.project.reload();
|
|
||||||
res.project.refresh();
|
|
||||||
refreshWorkspace();
|
|
||||||
if (isSupportedSourceTextFileFormat(res.filename)) {
|
|
||||||
openSourceFile(res.filename, null, true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
dlg.show();
|
dlg.show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1550,12 +1618,12 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
if (currentWorkspace is null || res.workspace !is currentWorkspace) {
|
if (currentWorkspace is null || res.workspace !is currentWorkspace) {
|
||||||
// open new workspace
|
// open new workspace
|
||||||
setWorkspace(res.workspace);
|
setWorkspace(res.workspace);
|
||||||
refreshWorkspace();
|
updateTreeGraph();
|
||||||
hideHomeScreen();
|
hideHomeScreen();
|
||||||
} else {
|
} else {
|
||||||
// project added to current workspace
|
// project added to current workspace
|
||||||
loadProject(res.project);
|
loadProject(res.project);
|
||||||
refreshWorkspace();
|
updateTreeGraph();
|
||||||
hideHomeScreen();
|
hideHomeScreen();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1676,21 +1744,21 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
WorkspaceFile[] files = currentWorkspace.files();
|
WorkspaceFile[] files = currentWorkspace.files();
|
||||||
for (int i; i < files.length; i++)
|
for (int i; i < files.length; i++)
|
||||||
with (files[i])
|
with (files[i])
|
||||||
|
{
|
||||||
|
// Opening file
|
||||||
|
if (openSourceFile(filename))
|
||||||
{
|
{
|
||||||
// Opening file
|
auto index = _tabs.tabIndex(filename);
|
||||||
if (openSourceFile(filename))
|
if (index < 0)
|
||||||
{
|
continue;
|
||||||
auto index = _tabs.tabIndex(filename);
|
// file is opened in tab
|
||||||
if (index < 0)
|
auto source = cast(DSourceEdit)_tabs.tabBody(filename);
|
||||||
continue;
|
if (!source)
|
||||||
// file is opened in tab
|
continue;
|
||||||
auto source = cast(DSourceEdit)_tabs.tabBody(filename);
|
// Caret position
|
||||||
if (!source)
|
source.setCaretPos(column, row, true, true);
|
||||||
continue;
|
|
||||||
// Caret position
|
|
||||||
source.setCaretPos(column, row, true, true);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void saveListOfOpenedFiles() {
|
void saveListOfOpenedFiles() {
|
||||||
|
@ -1717,12 +1785,12 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
Workspace ws = new Workspace(this);
|
Workspace ws = new Workspace(this);
|
||||||
if (ws.load(filename)) {
|
if (ws.load(filename)) {
|
||||||
askForUnsavedEdits(delegate() {
|
askForUnsavedEdits(delegate() {
|
||||||
setWorkspace(ws);
|
setWorkspace(ws);
|
||||||
hideHomeScreen();
|
hideHomeScreen();
|
||||||
// Write workspace to recent workspaces list
|
// Write workspace to recent workspaces list
|
||||||
_settings.updateRecentWorkspace(filename);
|
_settings.updateRecentWorkspace(filename);
|
||||||
restoreListOfOpenedFiles();
|
restoreListOfOpenedFiles();
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
window.showMessageBox(UIString.fromId("ERROR_OPEN_WORKSPACE"c).value, UIString.fromId("ERROR_OPENING_WORKSPACE"c).value);
|
window.showMessageBox(UIString.fromId("ERROR_OPEN_WORKSPACE"c).value, UIString.fromId("ERROR_OPENING_WORKSPACE"c).value);
|
||||||
return;
|
return;
|
||||||
|
@ -1747,21 +1815,21 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
}
|
}
|
||||||
window.showMessageBox(UIString.fromId("MSG_OPEN_PROJECT"c), UIString.fromId("QUESTION_NEW_WORKSPACE"c),
|
window.showMessageBox(UIString.fromId("MSG_OPEN_PROJECT"c), UIString.fromId("QUESTION_NEW_WORKSPACE"c),
|
||||||
|
|
||||||
[ACTION_ADD_TO_CURRENT_WORKSPACE, ACTION_CREATE_NEW_WORKSPACE, ACTION_CANCEL], 0, delegate(const Action result) {
|
[ACTION_ADD_TO_CURRENT_WORKSPACE, ACTION_CREATE_NEW_WORKSPACE, ACTION_CANCEL], 0, delegate(const Action result) {
|
||||||
if (result.id == IDEActions.CreateNewWorkspace) {
|
if (result.id == IDEActions.CreateNewWorkspace) {
|
||||||
// new ws
|
// new ws
|
||||||
createNewWorkspaceForExistingProject(project);
|
createNewWorkspaceForExistingProject(project);
|
||||||
hideHomeScreen();
|
hideHomeScreen();
|
||||||
} else if (result.id == IDEActions.AddToCurrentWorkspace) {
|
} else if (result.id == IDEActions.AddToCurrentWorkspace) {
|
||||||
// add to current
|
// add to current
|
||||||
currentWorkspace.addProject(project);
|
currentWorkspace.addProject(project);
|
||||||
loadProject(project);
|
loadProject(project);
|
||||||
currentWorkspace.save();
|
currentWorkspace.save();
|
||||||
refreshWorkspace();
|
updateTreeGraph();
|
||||||
hideHomeScreen();
|
hideHomeScreen();
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
// new workspace file
|
// new workspace file
|
||||||
createNewWorkspaceForExistingProject(project);
|
createNewWorkspaceForExistingProject(project);
|
||||||
|
@ -1772,7 +1840,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void refreshWorkspace() {
|
void updateTreeGraph() {
|
||||||
_logPanel.logLine("Refreshing workspace");
|
_logPanel.logLine("Refreshing workspace");
|
||||||
_wsPanel.reloadItems();
|
_wsPanel.reloadItems();
|
||||||
closeRemovedDocuments();
|
closeRemovedDocuments();
|
||||||
|
@ -1838,7 +1906,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
void refreshProject(Project project) {
|
void refreshProject(Project project) {
|
||||||
if (currentWorkspace && project.loadSelections()) {
|
if (currentWorkspace && project.loadSelections()) {
|
||||||
currentWorkspace.cleanupUnusedDependencies();
|
currentWorkspace.cleanupUnusedDependencies();
|
||||||
refreshWorkspace();
|
updateTreeGraph();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1904,10 +1972,10 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
}
|
}
|
||||||
|
|
||||||
Builder op = new Builder(this, project, _logPanel, project.projectConfiguration, currentWorkspace.buildConfiguration, buildOp,
|
Builder op = new Builder(this, project, _logPanel, project.projectConfiguration, currentWorkspace.buildConfiguration, buildOp,
|
||||||
dubExecutable, dubAdditionalParams,
|
dubExecutable, dubAdditionalParams,
|
||||||
toolchain,
|
toolchain,
|
||||||
arch,
|
arch,
|
||||||
listener);
|
listener);
|
||||||
setBackgroundOperation(op);
|
setBackgroundOperation(op);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1966,12 +2034,12 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
/// return false to prevent closing
|
/// return false to prevent closing
|
||||||
bool onCanClose() {
|
bool onCanClose() {
|
||||||
askForUnsavedEdits(delegate() {
|
askForUnsavedEdits(delegate() {
|
||||||
if (currentWorkspace) {
|
if (currentWorkspace) {
|
||||||
// Remember opened files
|
// Remember opened files
|
||||||
saveListOfOpenedFiles();
|
saveListOfOpenedFiles();
|
||||||
}
|
}
|
||||||
window.close();
|
window.close();
|
||||||
});
|
});
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
/// called when main window is closing
|
/// called when main window is closing
|
||||||
|
@ -1981,5 +2049,58 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
Log.i("onWindowClose()");
|
Log.i("onWindowClose()");
|
||||||
stopExecution();
|
stopExecution();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static struct CaretPosition {
|
||||||
|
string filePath;
|
||||||
|
uint line;
|
||||||
|
uint pos;
|
||||||
|
};
|
||||||
|
|
||||||
|
class CaretHistory {
|
||||||
|
private CaretPosition[] caretHistory;
|
||||||
|
private int currentPos = -1;
|
||||||
|
|
||||||
|
private bool checkIfCurentPosIsCurrentHistoryPos() {
|
||||||
|
if (caretHistory.length == 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return currentEditor.caretPos.line == caretHistory[currentPos].line &&
|
||||||
|
currentEditor.caretPos.pos == caretHistory[currentPos].pos;
|
||||||
|
}
|
||||||
|
|
||||||
|
void pushNewPosition() {
|
||||||
|
if (!checkIfCurentPosIsCurrentHistoryPos()) {
|
||||||
|
pushNewPosition(currentEditor().filename, currentEditor.caretPos.line, currentEditor.caretPos.pos);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void pushNewPosition(string filePath, uint line, uint pos) {
|
||||||
|
if (caretHistory.length != 0) {
|
||||||
|
caretHistory = caretHistory[0..currentPos + 1];
|
||||||
|
}
|
||||||
|
caretHistory ~= CaretPosition(filePath, line, pos);
|
||||||
|
++currentPos;
|
||||||
|
}
|
||||||
|
|
||||||
|
void moveToNext() {
|
||||||
|
if (currentPos + 1 < caretHistory.length) {
|
||||||
|
++currentPos;
|
||||||
|
openSourceFile(caretHistory[currentPos].filePath);
|
||||||
|
currentEditor.setCaretPos(caretHistory[currentPos].line, caretHistory[currentPos].pos);
|
||||||
|
currentEditor.setFocus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void moveToPrev() {
|
||||||
|
if (currentPos > 0) {
|
||||||
|
--currentPos;
|
||||||
|
openSourceFile(caretHistory[currentPos].filePath);
|
||||||
|
currentEditor.setCaretPos(caretHistory[currentPos].line, caretHistory[currentPos].pos);
|
||||||
|
currentEditor.setFocus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CaretHistory caretHistory;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@ class NewFileDlg : Dialog {
|
||||||
string[] _sourcePaths;
|
string[] _sourcePaths;
|
||||||
this(IDEFrame parent, Project currentProject, ProjectFolder folder) {
|
this(IDEFrame parent, Project currentProject, ProjectFolder folder) {
|
||||||
super(UIString.fromId("OPTION_NEW_SOURCE_FILE"c), parent.window,
|
super(UIString.fromId("OPTION_NEW_SOURCE_FILE"c), parent.window,
|
||||||
DialogFlag.Modal | DialogFlag.Resizable | DialogFlag.Popup, 500, 400);
|
DialogFlag.Modal | DialogFlag.Resizable | DialogFlag.Popup, 500, 400);
|
||||||
_ide = parent;
|
_ide = parent;
|
||||||
_icon = "dlangui-logo1";
|
_icon = "dlangui-logo1";
|
||||||
this._project = currentProject;
|
this._project = currentProject;
|
||||||
|
@ -60,34 +60,34 @@ class NewFileDlg : Dialog {
|
||||||
try {
|
try {
|
||||||
content = parseML(q{
|
content = parseML(q{
|
||||||
VerticalLayout {
|
VerticalLayout {
|
||||||
id: vlayout
|
id: vlayout
|
||||||
padding: Rect { 5, 5, 5, 5 }
|
padding: Rect { 5, 5, 5, 5 }
|
||||||
layoutWidth: fill; layoutHeight: fill
|
layoutWidth: fill; layoutHeight: fill
|
||||||
HorizontalLayout {
|
HorizontalLayout {
|
||||||
layoutWidth: fill; layoutHeight: fill
|
layoutWidth: fill; layoutHeight: fill
|
||||||
VerticalLayout {
|
VerticalLayout {
|
||||||
margins: 5
|
margins: 5
|
||||||
layoutWidth: 50%; layoutHeight: fill
|
layoutWidth: 50%; layoutHeight: fill
|
||||||
TextWidget { text: OPTION_PROJECT_TEMPLATE }
|
TextWidget { text: OPTION_PROJECT_TEMPLATE }
|
||||||
StringListWidget {
|
StringListWidget {
|
||||||
id: projectTemplateList
|
id: projectTemplateList
|
||||||
layoutWidth: wrap; layoutHeight: fill
|
layoutWidth: wrap; layoutHeight: fill
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
VerticalLayout {
|
VerticalLayout {
|
||||||
margins: 5
|
margins: 5
|
||||||
layoutWidth: 50%; layoutHeight: fill
|
layoutWidth: 50%; layoutHeight: fill
|
||||||
TextWidget { text: OPTION_TEMPLATE_DESCR }
|
TextWidget { text: OPTION_TEMPLATE_DESCR }
|
||||||
EditBox {
|
EditBox {
|
||||||
id: templateDescription; readOnly: true
|
id: templateDescription; readOnly: true
|
||||||
layoutWidth: fill; layoutHeight: fill
|
layoutWidth: fill; layoutHeight: fill
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
TableLayout {
|
TableLayout {
|
||||||
margins: 5
|
margins: 5
|
||||||
colCount: 2
|
colCount: 2
|
||||||
layoutWidth: fill; layoutHeight: wrap
|
layoutWidth: fill; layoutHeight: wrap
|
||||||
TextWidget { text: NAME }
|
TextWidget { text: NAME }
|
||||||
EditLine { id: edName; text: "newfile"; layoutWidth: fill }
|
EditLine { id: edName; text: "newfile"; layoutWidth: fill }
|
||||||
TextWidget { text: LOCATION }
|
TextWidget { text: LOCATION }
|
||||||
|
@ -97,7 +97,7 @@ class NewFileDlg : Dialog {
|
||||||
TextWidget { text: OPTION_FILE_PATH }
|
TextWidget { text: OPTION_FILE_PATH }
|
||||||
EditLine { id: edFilePath; text: ""; layoutWidth: fill; readOnly: true }
|
EditLine { id: edFilePath; text: ""; layoutWidth: fill; readOnly: true }
|
||||||
}
|
}
|
||||||
TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: #FF0000 }
|
TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: 0xFF0000 }
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
@ -105,7 +105,7 @@ class NewFileDlg : Dialog {
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
_projectTemplateList = content.childById!StringListWidget("projectTemplateList");
|
_projectTemplateList = content.childById!StringListWidget("projectTemplateList");
|
||||||
_templateDescription = content.childById!EditBox("templateDescription");
|
_templateDescription = content.childById!EditBox("templateDescription");
|
||||||
_edFileName = content.childById!EditLine("edName");
|
_edFileName = content.childById!EditLine("edName");
|
||||||
|
@ -198,29 +198,6 @@ class NewFileDlg : Dialog {
|
||||||
ProjectTemplate _currentTemplate;
|
ProjectTemplate _currentTemplate;
|
||||||
ProjectTemplate[] _templates;
|
ProjectTemplate[] _templates;
|
||||||
|
|
||||||
static bool isSubdirOf(string path, string basePath) {
|
|
||||||
if (path.equal(basePath))
|
|
||||||
return true;
|
|
||||||
if (path.length > basePath.length + 1 && path.startsWith(basePath)) {
|
|
||||||
char ch = path[basePath.length];
|
|
||||||
return ch == '/' || ch == '\\';
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool findSource(string path, ref string sourceFolderPath, ref string relativePath) {
|
|
||||||
foreach(dir; _sourcePaths) {
|
|
||||||
if (isSubdirOf(path, dir)) {
|
|
||||||
sourceFolderPath = dir;
|
|
||||||
relativePath = path[sourceFolderPath.length .. $];
|
|
||||||
if (relativePath.length > 0 && (relativePath[0] == '\\' || relativePath[0] == '/'))
|
|
||||||
relativePath = relativePath[1 .. $];
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool setError(dstring msg) {
|
bool setError(dstring msg) {
|
||||||
_statusText.text = msg;
|
_statusText.text = msg;
|
||||||
return msg.empty;
|
return msg.empty;
|
||||||
|
@ -242,25 +219,12 @@ class NewFileDlg : Dialog {
|
||||||
|
|
||||||
if (_currentTemplate.kind == FileKind.MODULE || _currentTemplate.kind == FileKind.PACKAGE) {
|
if (_currentTemplate.kind == FileKind.MODULE || _currentTemplate.kind == FileKind.PACKAGE) {
|
||||||
string sourcePath, relativePath;
|
string sourcePath, relativePath;
|
||||||
if (!findSource(_location, sourcePath, relativePath))
|
if (!findSource(_sourcePaths, _location, sourcePath, relativePath))
|
||||||
return setError("Location is outside of source path");
|
return setError("Location is outside of source path");
|
||||||
if (!isValidModuleName(filename))
|
if (!isValidModuleName(filename))
|
||||||
return setError("Invalid file name");
|
return setError("Invalid file name");
|
||||||
_moduleName = filename;
|
_moduleName = filename;
|
||||||
char[] buf;
|
_packageName = getPackageName(sourcePath, relativePath);
|
||||||
foreach(c; relativePath) {
|
|
||||||
char ch = c;
|
|
||||||
if (ch == '/' || ch == '\\')
|
|
||||||
ch = '.';
|
|
||||||
else if (ch == '.')
|
|
||||||
ch = '_';
|
|
||||||
if (ch == '.' && (buf.length == 0 || buf[$-1] == '.'))
|
|
||||||
continue; // skip duplicate .
|
|
||||||
buf ~= ch;
|
|
||||||
}
|
|
||||||
if (buf.length && buf[$-1] == '.')
|
|
||||||
buf.length--;
|
|
||||||
_packageName = buf.dup;
|
|
||||||
string m;
|
string m;
|
||||||
if (_currentTemplate.kind == FileKind.MODULE) {
|
if (_currentTemplate.kind == FileKind.MODULE) {
|
||||||
m = !_packageName.empty ? _packageName ~ '.' ~ _moduleName : _moduleName;
|
m = !_packageName.empty ? _packageName ~ '.' ~ _moduleName : _moduleName;
|
||||||
|
@ -284,20 +248,10 @@ class NewFileDlg : Dialog {
|
||||||
|
|
||||||
private FileCreationResult _result;
|
private FileCreationResult _result;
|
||||||
bool createItem() {
|
bool createItem() {
|
||||||
try {
|
if(!createFile(_fullPathName, _currentTemplate.kind, _packageName, _currentTemplate.srccode)) {
|
||||||
if (_currentTemplate.kind == FileKind.MODULE) {
|
|
||||||
string txt = "module " ~ _packageName ~ ";\n\n" ~ _currentTemplate.srccode;
|
|
||||||
write(_fullPathName, txt);
|
|
||||||
} else if (_currentTemplate.kind == FileKind.PACKAGE) {
|
|
||||||
string txt = "module " ~ _packageName ~ ";\n\n" ~ _currentTemplate.srccode;
|
|
||||||
write(_fullPathName, txt);
|
|
||||||
} else {
|
|
||||||
write(_fullPathName, _currentTemplate.srccode);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
Log.e("Cannot create file", e);
|
|
||||||
return setError("Cannot create file");
|
return setError("Cannot create file");
|
||||||
}
|
}
|
||||||
|
|
||||||
_result = new FileCreationResult(_project, _fullPathName);
|
_result = new FileCreationResult(_project, _fullPathName);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -338,22 +292,22 @@ class NewFileDlg : Dialog {
|
||||||
|
|
||||||
void initTemplates() {
|
void initTemplates() {
|
||||||
_templates ~= new ProjectTemplate("Empty module"d, "Empty D module file."d, ".d",
|
_templates ~= new ProjectTemplate("Empty module"d, "Empty D module file."d, ".d",
|
||||||
"\n", FileKind.MODULE);
|
"\n", FileKind.MODULE);
|
||||||
_templates ~= new ProjectTemplate("Package"d, "D package."d, ".d",
|
_templates ~= new ProjectTemplate("Package"d, "D package."d, ".d",
|
||||||
"\n", FileKind.PACKAGE);
|
"\n", FileKind.PACKAGE);
|
||||||
_templates ~= new ProjectTemplate("Text file"d, "Empty text file."d, ".txt",
|
_templates ~= new ProjectTemplate("Text file"d, "Empty text file."d, ".txt",
|
||||||
"\n", FileKind.TEXT);
|
"\n", FileKind.TEXT);
|
||||||
_templates ~= new ProjectTemplate("JSON file"d, "Empty json file."d, ".json",
|
_templates ~= new ProjectTemplate("JSON file"d, "Empty json file."d, ".json",
|
||||||
"{\n}\n", FileKind.TEXT);
|
"{\n}\n", FileKind.TEXT);
|
||||||
_templates ~= new ProjectTemplate("Vibe-D Diet Template file"d, "Empty Vibe-D Diet Template."d, ".dt",
|
_templates ~= new ProjectTemplate("Vibe-D Diet Template file"d, "Empty Vibe-D Diet Template."d, ".dt",
|
||||||
q{
|
q{
|
||||||
doctype html
|
doctype html
|
||||||
html
|
html
|
||||||
head
|
head
|
||||||
title Hello, World
|
title Hello, World
|
||||||
body
|
body
|
||||||
h1 Hello World
|
h1 Hello World
|
||||||
}, FileKind.TEXT);
|
}, FileKind.TEXT);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -377,3 +331,67 @@ class ProjectTemplate {
|
||||||
this.kind = kind;
|
this.kind = kind;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool createFile(string fullPathName, FileKind fileKind, string packageName, string sourceCode) {
|
||||||
|
try {
|
||||||
|
if (fileKind == FileKind.MODULE) {
|
||||||
|
string txt = "module " ~ packageName ~ ";\n\n" ~ sourceCode;
|
||||||
|
write(fullPathName, txt);
|
||||||
|
} else if (fileKind == FileKind.PACKAGE) {
|
||||||
|
string txt = "module " ~ packageName ~ ";\n\n" ~ sourceCode;
|
||||||
|
write(fullPathName, txt);
|
||||||
|
} else {
|
||||||
|
write(fullPathName, sourceCode);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch(Exception e) {
|
||||||
|
Log.e("Cannot create file", e);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
string getPackageName(string path, string[] sourcePaths){
|
||||||
|
string sourcePath, relativePath;
|
||||||
|
if(!findSource(sourcePaths, path, sourcePath, relativePath)) return "";
|
||||||
|
return getPackageName(sourcePath, relativePath);
|
||||||
|
}
|
||||||
|
|
||||||
|
string getPackageName(string sourcePath, string relativePath){
|
||||||
|
|
||||||
|
char[] buf;
|
||||||
|
foreach(c; relativePath) {
|
||||||
|
char ch = c;
|
||||||
|
if (ch == '/' || ch == '\\')
|
||||||
|
ch = '.';
|
||||||
|
else if (ch == '.')
|
||||||
|
ch = '_';
|
||||||
|
if (ch == '.' && (buf.length == 0 || buf[$-1] == '.'))
|
||||||
|
continue; // skip duplicate .
|
||||||
|
buf ~= ch;
|
||||||
|
}
|
||||||
|
if (buf.length && buf[$-1] == '.')
|
||||||
|
buf.length--;
|
||||||
|
return buf.dup;
|
||||||
|
}
|
||||||
|
private bool findSource(string[] sourcePaths, string path, ref string sourceFolderPath, ref string relativePath) {
|
||||||
|
foreach(dir; sourcePaths) {
|
||||||
|
if (isSubdirOf(path, dir)) {
|
||||||
|
sourceFolderPath = dir;
|
||||||
|
relativePath = path[sourceFolderPath.length .. $];
|
||||||
|
if (relativePath.length > 0 && (relativePath[0] == '\\' || relativePath[0] == '/'))
|
||||||
|
relativePath = relativePath[1 .. $];
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
private bool isSubdirOf(string path, string basePath) {
|
||||||
|
if (path.equal(basePath))
|
||||||
|
return true;
|
||||||
|
if (path.length > basePath.length + 1 && path.startsWith(basePath)) {
|
||||||
|
char ch = path[basePath.length];
|
||||||
|
return ch == '/' || ch == '\\';
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,186 @@
|
||||||
|
module dlangide.ui.newfolder;
|
||||||
|
|
||||||
|
import std.array : empty;
|
||||||
|
import std.file : mkdir, exists;
|
||||||
|
import std.path : buildPath, buildNormalizedPath;
|
||||||
|
import std.utf : toUTF32;
|
||||||
|
|
||||||
|
import dlangui.core.logger;
|
||||||
|
import dlangui.core.stdaction;
|
||||||
|
import dlangui.dialogs.dialog;
|
||||||
|
import dlangui.dml.parser;
|
||||||
|
import dlangui.widgets.controls;
|
||||||
|
import dlangui.widgets.editors;
|
||||||
|
import dlangui.widgets.widget;
|
||||||
|
|
||||||
|
import dlangide.ui.commands;
|
||||||
|
import dlangide.ui.frame;
|
||||||
|
import dlangide.ui.newfile;
|
||||||
|
import dlangide.workspace.project;
|
||||||
|
|
||||||
|
class NewFolderDialog : Dialog {
|
||||||
|
private {
|
||||||
|
IDEFrame _ide;
|
||||||
|
Project _project;
|
||||||
|
ProjectFolder _folder;
|
||||||
|
string _location;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
this(IDEFrame parent, Project currentProject, ProjectFolder folder) {
|
||||||
|
super(UIString.fromId("OPTION_NEW_SOURCE_FILE"c), parent.window,
|
||||||
|
DialogFlag.Modal | DialogFlag.Popup, 800, 0);
|
||||||
|
layoutWidth = FILL_PARENT;
|
||||||
|
_ide = parent;
|
||||||
|
_icon = "dlangui-logo1";
|
||||||
|
this._project = currentProject;
|
||||||
|
this._folder = folder;
|
||||||
|
if (folder){
|
||||||
|
_location = folder.filename;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
_location = currentProject.dir;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override void initialize() {
|
||||||
|
super.initialize();
|
||||||
|
Widget content;
|
||||||
|
try {
|
||||||
|
content = parseML(q{
|
||||||
|
VerticalLayout {
|
||||||
|
id: vlayout
|
||||||
|
padding: Rect { 5, 5, 5, 5 }
|
||||||
|
layoutWidth: fill; layoutHeight: wrap
|
||||||
|
TableLayout {
|
||||||
|
margins: 5
|
||||||
|
colCount: 2
|
||||||
|
layoutWidth: fill; layoutHeight: wrap
|
||||||
|
TextWidget { text: NAME }
|
||||||
|
EditLine { id: fileName; text: "newfolder"; layoutWidth: fill }
|
||||||
|
CheckBox { id: makePackage }
|
||||||
|
TextWidget { text: OPTION_MAKE_PACKAGE}
|
||||||
|
}
|
||||||
|
TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: 0xFF0000 }
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} catch (Exception e) {
|
||||||
|
Log.e("Exceptin while parsing DML", e);
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
_edFileName = content.childById!EditLine("fileName");
|
||||||
|
_edMakePackage = content.childById!CheckBox("makePackage");
|
||||||
|
_statusText = content.childById!TextWidget("statusText");
|
||||||
|
|
||||||
|
_edFileName.enterKey.connect(&onEnterKey);
|
||||||
|
|
||||||
|
_edFileName.setDefaultPopupMenu();
|
||||||
|
|
||||||
|
_edFileName.contentChange = delegate (EditableContent source) {
|
||||||
|
updateValues(source.text);
|
||||||
|
validate();
|
||||||
|
};
|
||||||
|
|
||||||
|
addChild(content);
|
||||||
|
addChild(createButtonsPanel([ACTION_FILE_NEW_DIRECTORY, ACTION_CANCEL], 0, 0));
|
||||||
|
|
||||||
|
updateValues(_edFileName.text);
|
||||||
|
}
|
||||||
|
|
||||||
|
override void onShow() {
|
||||||
|
super.onShow();
|
||||||
|
_edFileName.selectAll();
|
||||||
|
_edFileName.setFocus();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected bool onEnterKey(EditWidgetBase editor) {
|
||||||
|
if (!validate())
|
||||||
|
return false;
|
||||||
|
close(_buttonActions[0]);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool validate() {
|
||||||
|
if (!isValidModuleName(_fileName))
|
||||||
|
return setError("Invalid folder name");
|
||||||
|
return setError(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateValues(dstring fileName) {
|
||||||
|
_fileName = toUTF8(fileName);
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool setError(dstring msg) {
|
||||||
|
_statusText.text = msg;
|
||||||
|
return msg.empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
private {
|
||||||
|
EditLine _edFileName;
|
||||||
|
CheckBox _edMakePackage;
|
||||||
|
TextWidget _statusText;
|
||||||
|
|
||||||
|
string _fileName = "newfile";
|
||||||
|
FileCreationResult _result;
|
||||||
|
bool shouldMakePackage() @property {
|
||||||
|
return _edMakePackage.checked;
|
||||||
|
}
|
||||||
|
string fullPathName() @property {
|
||||||
|
return buildNormalizedPath(_location, _fileName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool createItem() {
|
||||||
|
string fullPathName = this.fullPathName;
|
||||||
|
if(exists(fullPathName))
|
||||||
|
return setError("Folder already exists");
|
||||||
|
|
||||||
|
if(!makeDirectory(fullPathName)) return false;
|
||||||
|
if(shouldMakePackage) {
|
||||||
|
if(!makePackageFile(fullPathName)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_result = new FileCreationResult(_project, fullPathName);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool makeDirectory(string fullPathName) {
|
||||||
|
try {
|
||||||
|
mkdir(fullPathName);
|
||||||
|
return true;
|
||||||
|
} catch (Exception e) {
|
||||||
|
Log.e("Cannot create folder", e);
|
||||||
|
return setError("Cannot create folder");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool makePackageFile(string fullPathName) {
|
||||||
|
string packageName = getPackageName(fullPathName, _project.sourcePaths);
|
||||||
|
if(packageName.empty) {
|
||||||
|
Log.e("Could not determing package name for ", fullPathName);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if(!createFile(fullPathName.buildPath("package.d"), FileKind.PACKAGE, packageName, null)) {
|
||||||
|
Log.e("Could not create package file in folder ", fullPathName);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
override void close(const Action action) {
|
||||||
|
Action newaction = action.clone();
|
||||||
|
if (action.id == IDEActions.FileNewDirectory) {
|
||||||
|
if (!validate()) {
|
||||||
|
window.showMessageBox(UIString.fromId("ERROR"c), UIString.fromId("ERROR_INVALID_PARAMETERS"c));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!createItem()) {
|
||||||
|
window.showMessageBox(UIString.fromId("ERROR"c), UIString.fromId("ERROR_INVALID_PARAMETERS"c));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
newaction.objectParam = _result;
|
||||||
|
}
|
||||||
|
super.close(newaction);
|
||||||
|
}
|
||||||
|
}
|
|
@ -38,7 +38,7 @@ class NewProjectDlg : Dialog {
|
||||||
IDEFrame _ide;
|
IDEFrame _ide;
|
||||||
|
|
||||||
this(IDEFrame parent, bool newWorkspace, Workspace currentWorkspace, string dir) {
|
this(IDEFrame parent, bool newWorkspace, Workspace currentWorkspace, string dir) {
|
||||||
super(newWorkspace ? UIString.fromId("OPTION_NEW_WORKSPACE"c) : UIString.fromId("OPTION_NEW_PROJECT"c), parent.window,
|
super(newWorkspace ? UIString.fromId("OPTION_NEW_WORKSPACE"c) : UIString.fromId("OPTION_NEW_PROJECT"c), parent.window,
|
||||||
DialogFlag.Modal | DialogFlag.Resizable | DialogFlag.Popup, 500, 400);
|
DialogFlag.Modal | DialogFlag.Resizable | DialogFlag.Popup, 500, 400);
|
||||||
_ide = parent;
|
_ide = parent;
|
||||||
_icon = "dlangui-logo1";
|
_icon = "dlangui-logo1";
|
||||||
|
@ -64,8 +64,8 @@ class NewProjectDlg : Dialog {
|
||||||
margins: 5
|
margins: 5
|
||||||
layoutWidth: 25%; layoutHeight: fill
|
layoutWidth: 25%; layoutHeight: fill
|
||||||
TextWidget { text: OPTION_PROJECT_TEMPLATE }
|
TextWidget { text: OPTION_PROJECT_TEMPLATE }
|
||||||
StringListWidget {
|
StringListWidget {
|
||||||
id: projectTemplateList
|
id: projectTemplateList
|
||||||
layoutWidth: wrap; layoutHeight: fill
|
layoutWidth: wrap; layoutHeight: fill
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -73,8 +73,8 @@ class NewProjectDlg : Dialog {
|
||||||
margins: 5
|
margins: 5
|
||||||
layoutWidth: 40%; layoutHeight: fill
|
layoutWidth: 40%; layoutHeight: fill
|
||||||
TextWidget { text: OPTION_TEMPLATE_DESCR }
|
TextWidget { text: OPTION_TEMPLATE_DESCR }
|
||||||
EditBox {
|
EditBox {
|
||||||
id: templateDescription; readOnly: true
|
id: templateDescription; readOnly: true
|
||||||
layoutWidth: fill; layoutHeight: fill
|
layoutWidth: fill; layoutHeight: fill
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -82,7 +82,7 @@ class NewProjectDlg : Dialog {
|
||||||
layoutWidth: 35%; layoutHeight: fill
|
layoutWidth: 35%; layoutHeight: fill
|
||||||
margins: 5
|
margins: 5
|
||||||
TextWidget { text: OPTION_DIRECTORY_LAYOUT }
|
TextWidget { text: OPTION_DIRECTORY_LAYOUT }
|
||||||
EditBox {
|
EditBox {
|
||||||
id: directoryLayout; readOnly: true
|
id: directoryLayout; readOnly: true
|
||||||
layoutWidth: fill; layoutHeight: fill
|
layoutWidth: fill; layoutHeight: fill
|
||||||
}
|
}
|
||||||
|
@ -362,13 +362,13 @@ class NewProjectDlg : Dialog {
|
||||||
project.name = toUTF32(_projectName);
|
project.name = toUTF32(_projectName);
|
||||||
if (!project.save())
|
if (!project.save())
|
||||||
return setError("Cannot save project");
|
return setError("Cannot save project");
|
||||||
project.content.setString("targetName", _projectName);
|
project.content.setting.setString("targetName", _projectName);
|
||||||
if (_currentTemplate.isLibrary) {
|
if (_currentTemplate.isLibrary) {
|
||||||
project.content.setString("targetType", "staticLibrary");
|
project.content.setting.setString("targetType", "staticLibrary");
|
||||||
project.content.setString("targetPath", "lib");
|
project.content.setting.setString("targetPath", "lib");
|
||||||
} else {
|
} else {
|
||||||
project.content.setString("targetType", "executable");
|
project.content.setting.setString("targetType", "executable");
|
||||||
project.content.setString("targetPath", "bin");
|
project.content.setting.setString("targetPath", "bin");
|
||||||
}
|
}
|
||||||
if (_currentTemplate.json)
|
if (_currentTemplate.json)
|
||||||
project.content.merge(_currentTemplate.json);
|
project.content.merge(_currentTemplate.json);
|
||||||
|
@ -500,7 +500,7 @@ extern (C) int UIAppMain(string[] args) {
|
||||||
};
|
};
|
||||||
// show message box with content of editors
|
// show message box with content of editors
|
||||||
window.mainWidget.childById!Button("btnOk").click = delegate(Widget w) {
|
window.mainWidget.childById!Button("btnOk").click = delegate(Widget w) {
|
||||||
window.showMessageBox(UIString.fromId("MSG_OK_BUTTON"c),
|
window.showMessageBox(UIString.fromId("MSG_OK_BUTTON"c),
|
||||||
UIString.fromId("EDITOR_CONTENT"c) ~ "\nEdit1: "d ~ edit1.text ~ "\nEdit2: "d ~ edit2.text);
|
UIString.fromId("EDITOR_CONTENT"c) ~ "\nEdit1: "d ~ edit1.text ~ "\nEdit2: "d ~ edit2.text);
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -224,17 +224,17 @@ class CompilerLogWidget : LogWidget {
|
||||||
}
|
}
|
||||||
|
|
||||||
void resolveRelativePath(ref string path, int line) {
|
void resolveRelativePath(ref string path, int line) {
|
||||||
import std.path : getcwd, absolutePath;
|
import std.path : absolutePath;
|
||||||
Log.d("resolveRelativePath ", path, " current directory: ", getcwd);
|
Log.d("resolveRelativePath ", path);
|
||||||
string prjName = findProjectForLine(line);
|
string prjName = findProjectForLine(line);
|
||||||
if (prjName) {
|
if (prjName) {
|
||||||
Log.d("Error is in project ", prjName);
|
Log.d("Error is in project ", prjName);
|
||||||
}
|
}
|
||||||
string base = _baseDirectory;
|
string base = _baseDirectory;
|
||||||
if (!base)
|
if (!base)
|
||||||
base = getcwd;
|
path = absolutePath(path, base);
|
||||||
// TODO: select proper base
|
else
|
||||||
path = absolutePath(path, base);
|
path = absolutePath(path);
|
||||||
Log.d("converted to absolute path: ", path);
|
Log.d("converted to absolute path: ", path);
|
||||||
}
|
}
|
||||||
///
|
///
|
||||||
|
|
|
@ -352,9 +352,11 @@ class SearchWidget : TabWidget {
|
||||||
line--;
|
line--;
|
||||||
if (line == 0) {
|
if (line == 0) {
|
||||||
if (_frame.openSourceFile(matchList.filename)) {
|
if (_frame.openSourceFile(matchList.filename)) {
|
||||||
|
_frame.caretHistory.pushNewPosition();
|
||||||
_frame.currentEditor.setCaretPos(match.line, to!int(match.col));
|
_frame.currentEditor.setCaretPos(match.line, to!int(match.col));
|
||||||
_frame.currentEditor.setTextToHighlight(_findText.text, makeSearchFlags);
|
_frame.currentEditor.setTextToHighlight(_findText.text, makeSearchFlags);
|
||||||
_frame.currentEditor.setFocus();
|
_frame.currentEditor.setFocus();
|
||||||
|
_frame.caretHistory.pushNewPosition();
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -370,11 +372,11 @@ SearchMatchList findMatches(in string filename, in dstring searchString) {
|
||||||
SearchMatchList match;
|
SearchMatchList match;
|
||||||
match.filename = filename;
|
match.filename = filename;
|
||||||
|
|
||||||
foreach(int lineIndex, dstring line; content.lines) {
|
foreach(lineIndex, dstring line; content.lines) {
|
||||||
auto colIndex = line.indexOf(searchString);
|
auto colIndex = line.indexOf(searchString);
|
||||||
|
|
||||||
if (colIndex != -1) {
|
if (colIndex != -1) {
|
||||||
match.matches ~= SearchMatch(lineIndex, colIndex, line);
|
match.matches ~= SearchMatch(cast(int)lineIndex, colIndex, line);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return match;
|
return match;
|
||||||
|
|
|
@ -69,35 +69,36 @@ SettingsPage createSettingsPages() {
|
||||||
// UI settings page
|
// UI settings page
|
||||||
SettingsPage ui = res.addChild("interface", UIString.fromId("OPTION_INTERFACE"c));
|
SettingsPage ui = res.addChild("interface", UIString.fromId("OPTION_INTERFACE"c));
|
||||||
ui.addStringComboBox("interface/theme", UIString.fromId("OPTION_THEME"c), [
|
ui.addStringComboBox("interface/theme", UIString.fromId("OPTION_THEME"c), [
|
||||||
StringListValue("ide_theme_default", "OPTION_DEFAULT"c),
|
StringListValue("ide_theme_default", "OPTION_DEFAULT"c),
|
||||||
StringListValue("ide_theme_dark", "OPTION_DARK"c)]);
|
StringListValue("ide_theme_dark", "OPTION_DARK"c)]);
|
||||||
ui.addStringComboBox("interface/language", UIString.fromId("OPTION_LANGUAGE"c), [
|
ui.addStringComboBox("interface/language", UIString.fromId("OPTION_LANGUAGE"c), [
|
||||||
StringListValue("en", "MENU_VIEW_LANGUAGE_EN"c),
|
StringListValue("en", "MENU_VIEW_LANGUAGE_EN"c),
|
||||||
StringListValue("ru", "MENU_VIEW_LANGUAGE_RU"c),
|
StringListValue("ru", "MENU_VIEW_LANGUAGE_RU"c),
|
||||||
StringListValue("es", "MENU_VIEW_LANGUAGE_ES"c),
|
StringListValue("es", "MENU_VIEW_LANGUAGE_ES"c),
|
||||||
StringListValue("cs", "MENU_VIEW_LANGUAGE_CS"c)]);
|
StringListValue("de", "MENU_VIEW_LANGUAGE_DE"c),
|
||||||
|
StringListValue("cs", "MENU_VIEW_LANGUAGE_CS"c)]);
|
||||||
|
|
||||||
// UI font faces
|
// UI font faces
|
||||||
ui.addStringComboBox("interface/uiFontFace", UIString.fromId("OPTION_FONT_FACE"c),
|
ui.addStringComboBox("interface/uiFontFace", UIString.fromId("OPTION_FONT_FACE"c),
|
||||||
createFaceList(false));
|
createFaceList(false));
|
||||||
ui.addIntComboBox("interface/uiFontSize", UIString.fromId("OPTION_FONT_SIZE"c),
|
ui.addIntComboBox("interface/uiFontSize", UIString.fromId("OPTION_FONT_SIZE"c),
|
||||||
createIntValueList([6,7,8,9,10,11,12,14,16,18,20,22,24,26,28,30,32]));
|
createIntValueList([6,7,8,9,10,11,12,14,16,18,20,22,24,26,28,30,32]));
|
||||||
|
|
||||||
|
|
||||||
ui.addIntComboBox("interface/hintingMode", UIString.fromId("OPTION_FONT_HINTING"c), [StringListValue(0, "OPTION_FONT_HINTING_NORMAL"c),
|
ui.addIntComboBox("interface/hintingMode", UIString.fromId("OPTION_FONT_HINTING"c), [StringListValue(0, "OPTION_FONT_HINTING_NORMAL"c),
|
||||||
StringListValue(1, "OPTION_FONT_HINTING_FORCE"c),
|
StringListValue(1, "OPTION_FONT_HINTING_FORCE"c),
|
||||||
StringListValue(2, "OPTION_FONT_HINTING_DISABLED"c), StringListValue(3, "OPTION_FONT_HINTING_LIGHT"c)]);
|
StringListValue(2, "OPTION_FONT_HINTING_DISABLED"c), StringListValue(3, "OPTION_FONT_HINTING_LIGHT"c)]);
|
||||||
ui.addIntComboBox("interface/minAntialiasedFontSize", UIString.fromId("OPTION_FONT_ANTIALIASING"c),
|
ui.addIntComboBox("interface/minAntialiasedFontSize", UIString.fromId("OPTION_FONT_ANTIALIASING"c),
|
||||||
[StringListValue(0, "OPTION_FONT_ANTIALIASING_ALWAYS_ON"c),
|
[StringListValue(0, "OPTION_FONT_ANTIALIASING_ALWAYS_ON"c),
|
||||||
StringListValue(12, "12"d),
|
StringListValue(12, "12"d),
|
||||||
StringListValue(14, "14"d),
|
StringListValue(14, "14"d),
|
||||||
StringListValue(16, "16"d),
|
StringListValue(16, "16"d),
|
||||||
StringListValue(20, "20"d),
|
StringListValue(20, "20"d),
|
||||||
StringListValue(24, "24"d),
|
StringListValue(24, "24"d),
|
||||||
StringListValue(32, "32"d),
|
StringListValue(32, "32"d),
|
||||||
StringListValue(48, "48"d),
|
StringListValue(48, "48"d),
|
||||||
StringListValue(255, "OPTION_FONT_ANTIALIASING_ALWAYS_OFF"c)]);
|
StringListValue(255, "OPTION_FONT_ANTIALIASING_ALWAYS_OFF"c)]);
|
||||||
ui.addFloatComboBox("interface/fontGamma", UIString.fromId("OPTION_FONT_GAMMA"c),
|
ui.addFloatComboBox("interface/fontGamma", UIString.fromId("OPTION_FONT_GAMMA"c),
|
||||||
[
|
[
|
||||||
StringListValue(500, "0.5 "d),
|
StringListValue(500, "0.5 "d),
|
||||||
StringListValue(600, "0.6 "d),
|
StringListValue(600, "0.6 "d),
|
||||||
|
@ -108,25 +109,28 @@ SettingsPage createSettingsPages() {
|
||||||
StringListValue(950, "0.95 "d),
|
StringListValue(950, "0.95 "d),
|
||||||
StringListValue(1000, "1.0 "d),
|
StringListValue(1000, "1.0 "d),
|
||||||
StringListValue(1050, "1.05 "d),
|
StringListValue(1050, "1.05 "d),
|
||||||
StringListValue(1100, "1.1 "d),
|
StringListValue(1100, "1.1 "d),
|
||||||
StringListValue(1150, "1.15 "d),
|
StringListValue(1150, "1.15 "d),
|
||||||
StringListValue(1200, "1.2 "d),
|
StringListValue(1200, "1.2 "d),
|
||||||
StringListValue(1250, "1.25 "d),
|
StringListValue(1250, "1.25 "d),
|
||||||
StringListValue(1300, "1.3 "d),
|
StringListValue(1300, "1.3 "d),
|
||||||
StringListValue(1400, "1.4 "d),
|
StringListValue(1400, "1.4 "d),
|
||||||
StringListValue(1500, "1.5 "d),
|
StringListValue(1500, "1.5 "d),
|
||||||
StringListValue(1700, "1.7 "d),
|
StringListValue(1700, "1.7 "d),
|
||||||
StringListValue(2000, "2.0 "d)]);
|
StringListValue(2000, "2.0 "d)]);
|
||||||
|
|
||||||
ui.addIntComboBox("interface/screenDpiOverride", UIString.fromId("OPTION_SCREEN_DPI_OVERRIDE"c),
|
ui.addIntComboBox("interface/screenDpiOverride", UIString.fromId("OPTION_SCREEN_DPI_OVERRIDE"c),
|
||||||
[StringListValue(0, UIString.fromId("OPTION_SCREEN_DPI_OVERRIDE_NONE"c).value ~ " ("d ~ to!dstring(systemScreenDPI) ~ ")"d),
|
[StringListValue(0, UIString.fromId("OPTION_SCREEN_DPI_OVERRIDE_NONE"c).value ~ " ("d ~ to!dstring(systemScreenDPI) ~ ")"d),
|
||||||
StringListValue(72, "72"d),
|
StringListValue(72, "72"d),
|
||||||
StringListValue(96, "96"d),
|
StringListValue(96, "96"d),
|
||||||
StringListValue(120, "120"d),
|
StringListValue(120, "120"d),
|
||||||
StringListValue(140, "140"d),
|
StringListValue(140, "140"d),
|
||||||
StringListValue(150, "150"d),
|
StringListValue(150, "150"d),
|
||||||
StringListValue(300, "300"d),
|
StringListValue(150, "180"d),
|
||||||
StringListValue(400, "400"d),
|
StringListValue(150, "200"d),
|
||||||
|
StringListValue(150, "250"d),
|
||||||
|
StringListValue(300, "300"d),
|
||||||
|
StringListValue(400, "400"d),
|
||||||
StringListValue(600, "600"d)]);
|
StringListValue(600, "600"d)]);
|
||||||
|
|
||||||
SettingsPage ed = res.addChild("editors", UIString.fromId("OPTION_EDITORS"c));
|
SettingsPage ed = res.addChild("editors", UIString.fromId("OPTION_EDITORS"c));
|
||||||
|
@ -143,6 +147,7 @@ SettingsPage createSettingsPages() {
|
||||||
texted.addCheckbox("editors/textEditor/smartIndentsAfterPaste", UIString.fromId("OPTION_SMART_INDENTS_PASTE"c));
|
texted.addCheckbox("editors/textEditor/smartIndentsAfterPaste", UIString.fromId("OPTION_SMART_INDENTS_PASTE"c));
|
||||||
texted.addCheckbox("editors/textEditor/showWhiteSpaceMarks", UIString.fromId("OPTION_SHOW_SPACES"c));
|
texted.addCheckbox("editors/textEditor/showWhiteSpaceMarks", UIString.fromId("OPTION_SHOW_SPACES"c));
|
||||||
texted.addCheckbox("editors/textEditor/showTabPositionMarks", UIString.fromId("OPTION_SHOW_TABS"c));
|
texted.addCheckbox("editors/textEditor/showTabPositionMarks", UIString.fromId("OPTION_SHOW_TABS"c));
|
||||||
|
texted.addCheckbox("editors/textEditor/autoAutoComplete", UIString.fromId("OPTION_AUTO_AUTOCOMPLETE"c));
|
||||||
|
|
||||||
// Common page
|
// Common page
|
||||||
SettingsPage common = res.addChild("common", UIString.fromId("OPTION_COMMON"c));
|
SettingsPage common = res.addChild("common", UIString.fromId("OPTION_COMMON"c));
|
||||||
|
@ -188,14 +193,14 @@ SettingsPage createProjectSettingsPages() {
|
||||||
|
|
||||||
SettingsPage build = res.addChild("build", UIString.fromId("OPTION_BUILD"c));
|
SettingsPage build = res.addChild("build", UIString.fromId("OPTION_BUILD"c));
|
||||||
build.addStringComboBox("build/toolchain", UIString.fromId("OPTION_TOOLCHAIN"c), [
|
build.addStringComboBox("build/toolchain", UIString.fromId("OPTION_TOOLCHAIN"c), [
|
||||||
StringListValue("default", UIString.fromId("OPTION_DEFAULT"c)),
|
StringListValue("default", UIString.fromId("OPTION_DEFAULT"c)),
|
||||||
StringListValue("dmd", "DMD"d),
|
StringListValue("dmd", "DMD"d),
|
||||||
StringListValue("ldc", "LDC"d),
|
StringListValue("ldc", "LDC"d),
|
||||||
StringListValue("ldmd", "LDMD"d),
|
StringListValue("ldmd", "LDMD"d),
|
||||||
StringListValue("gdc", "GDC"d)]);
|
StringListValue("gdc", "GDC"d)]);
|
||||||
build.addStringComboBox("build/arch", UIString.fromId("OPTION_ARCHITECTURE"c), [
|
build.addStringComboBox("build/arch", UIString.fromId("OPTION_ARCHITECTURE"c), [
|
||||||
StringListValue("default", UIString.fromId("OPTION_DEFAULT"c)),
|
StringListValue("default", UIString.fromId("OPTION_DEFAULT"c)),
|
||||||
StringListValue("x86", "x86"d),
|
StringListValue("x86", "x86"d),
|
||||||
StringListValue("x86_64", "x86_64"d),
|
StringListValue("x86_64", "x86_64"d),
|
||||||
StringListValue("arm", "arm"d),
|
StringListValue("arm", "arm"d),
|
||||||
StringListValue("arm64", "arm64"d),
|
StringListValue("arm64", "arm64"d),
|
||||||
|
|
|
@ -102,7 +102,7 @@ class WorkspacePanel : DockWindow {
|
||||||
_projectPopupMenu = new MenuItem();
|
_projectPopupMenu = new MenuItem();
|
||||||
_projectPopupMenu.add(ACTION_PROJECT_SET_STARTUP,
|
_projectPopupMenu.add(ACTION_PROJECT_SET_STARTUP,
|
||||||
ACTION_PROJECT_FOLDER_REFRESH,
|
ACTION_PROJECT_FOLDER_REFRESH,
|
||||||
ACTION_FILE_NEW_SOURCE_FILE,
|
//ACTION_FILE_NEW_DIRECTORY,
|
||||||
//ACTION_PROJECT_FOLDER_OPEN_ITEM,
|
//ACTION_PROJECT_FOLDER_OPEN_ITEM,
|
||||||
ACTION_PROJECT_BUILD,
|
ACTION_PROJECT_BUILD,
|
||||||
ACTION_PROJECT_REBUILD,
|
ACTION_PROJECT_REBUILD,
|
||||||
|
@ -116,14 +116,17 @@ class WorkspacePanel : DockWindow {
|
||||||
);
|
);
|
||||||
|
|
||||||
_folderPopupMenu = new MenuItem();
|
_folderPopupMenu = new MenuItem();
|
||||||
_folderPopupMenu.add(ACTION_FILE_NEW_SOURCE_FILE, ACTION_PROJECT_FOLDER_REFRESH, ACTION_PROJECT_FOLDER_OPEN_ITEM,
|
_folderPopupMenu.add(ACTION_FILE_NEW_SOURCE_FILE,
|
||||||
|
ACTION_FILE_NEW_DIRECTORY,
|
||||||
|
ACTION_PROJECT_FOLDER_REFRESH, ACTION_PROJECT_FOLDER_OPEN_ITEM,
|
||||||
ACTION_PROJECT_FOLDER_EXPAND_ALL, ACTION_PROJECT_FOLDER_COLLAPSE_ALL
|
ACTION_PROJECT_FOLDER_EXPAND_ALL, ACTION_PROJECT_FOLDER_COLLAPSE_ALL
|
||||||
//ACTION_PROJECT_FOLDER_REMOVE_ITEM,
|
//ACTION_PROJECT_FOLDER_REMOVE_ITEM,
|
||||||
//ACTION_PROJECT_FOLDER_RENAME_ITEM
|
//ACTION_PROJECT_FOLDER_RENAME_ITEM
|
||||||
);
|
);
|
||||||
|
|
||||||
_filePopupMenu = new MenuItem();
|
_filePopupMenu = new MenuItem();
|
||||||
_filePopupMenu.add(ACTION_FILE_NEW_SOURCE_FILE, ACTION_PROJECT_FOLDER_REFRESH,
|
_filePopupMenu.add(ACTION_FILE_NEW_SOURCE_FILE,
|
||||||
|
ACTION_PROJECT_FOLDER_REFRESH,
|
||||||
ACTION_PROJECT_FOLDER_OPEN_ITEM,
|
ACTION_PROJECT_FOLDER_OPEN_ITEM,
|
||||||
ACTION_PROJECT_FOLDER_REMOVE_ITEM,
|
ACTION_PROJECT_FOLDER_REMOVE_ITEM,
|
||||||
//ACTION_PROJECT_FOLDER_RENAME_ITEM
|
//ACTION_PROJECT_FOLDER_RENAME_ITEM
|
||||||
|
|
|
@ -7,7 +7,7 @@ import dlangui.graphics.fonts;
|
||||||
import std.algorithm : equal;
|
import std.algorithm : equal;
|
||||||
|
|
||||||
const AVAILABLE_THEMES = ["ide_theme_default", "ide_theme_dark"];
|
const AVAILABLE_THEMES = ["ide_theme_default", "ide_theme_dark"];
|
||||||
const AVAILABLE_LANGUAGES = ["en", "ru", "es", "cs"];
|
const AVAILABLE_LANGUAGES = ["en", "ru", "es", "cs", "de"];
|
||||||
|
|
||||||
class IDESettings : SettingsFile {
|
class IDESettings : SettingsFile {
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ class IDESettings : SettingsFile {
|
||||||
ed.setBooleanDef("smartIndentsAfterPaste", true);
|
ed.setBooleanDef("smartIndentsAfterPaste", true);
|
||||||
ed.setBooleanDef("showWhiteSpaceMarks", true);
|
ed.setBooleanDef("showWhiteSpaceMarks", true);
|
||||||
ed.setBooleanDef("showTabPositionMarks", true);
|
ed.setBooleanDef("showTabPositionMarks", true);
|
||||||
|
ed.setBooleanDef("autoAutoComplete", true);
|
||||||
ed.setStringDef("fontFace", "Default");
|
ed.setStringDef("fontFace", "Default");
|
||||||
ed.setIntegerDef("fontSize", 11);
|
ed.setIntegerDef("fontSize", 11);
|
||||||
Setting ui = uiSettings();
|
Setting ui = uiSettings();
|
||||||
|
@ -59,7 +60,7 @@ class IDESettings : SettingsFile {
|
||||||
/// override to do something after loading - e.g. set defaults
|
/// override to do something after loading - e.g. set defaults
|
||||||
override void afterLoad() {
|
override void afterLoad() {
|
||||||
}
|
}
|
||||||
|
|
||||||
@property Setting editorSettings() {
|
@property Setting editorSettings() {
|
||||||
Setting res = _setting.objectByPath("editors/textEditor", true);
|
Setting res = _setting.objectByPath("editors/textEditor", true);
|
||||||
return res;
|
return res;
|
||||||
|
@ -171,6 +172,16 @@ class IDESettings : SettingsFile {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Text editor setting, true if auto-complete is triggered on each key press
|
||||||
|
@property bool autoAutoComplete() {
|
||||||
|
return editorSettings.getBoolean("autoAutoComplete", true);
|
||||||
|
}
|
||||||
|
///
|
||||||
|
@property IDESettings autoAutoComplete(bool v) {
|
||||||
|
editorSettings.setBoolean("autoAutoComplete", v);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/// true if smart indents are enabled
|
/// true if smart indents are enabled
|
||||||
@property bool smartIndents() { return editorSettings.getBoolean("smartIndents", true); }
|
@property bool smartIndents() { return editorSettings.getBoolean("smartIndents", true); }
|
||||||
/// set smart indents enabled flag
|
/// set smart indents enabled flag
|
||||||
|
@ -317,7 +328,7 @@ class IDESettings : SettingsFile {
|
||||||
obj["recentWorkspaces"] = list;
|
obj["recentWorkspaces"] = list;
|
||||||
save();
|
save();
|
||||||
}
|
}
|
||||||
|
|
||||||
@property bool autoOpenLastProject() {
|
@property bool autoOpenLastProject() {
|
||||||
Setting obj =_setting.objectByPath("common", true);
|
Setting obj =_setting.objectByPath("common", true);
|
||||||
return obj.getBoolean("autoOpenLastProject", false);
|
return obj.getBoolean("autoOpenLastProject", false);
|
||||||
|
|
|
@ -11,6 +11,7 @@ import std.file;
|
||||||
import std.path;
|
import std.path;
|
||||||
import std.process;
|
import std.process;
|
||||||
import std.utf;
|
import std.utf;
|
||||||
|
import std.ascii : isAlphaNum;
|
||||||
|
|
||||||
string[] includePath;
|
string[] includePath;
|
||||||
|
|
||||||
|
@ -311,19 +312,19 @@ struct ProjectConfiguration {
|
||||||
string name;
|
string name;
|
||||||
/// type, for libraries one can run tests, for apps - execute them
|
/// type, for libraries one can run tests, for apps - execute them
|
||||||
Type type;
|
Type type;
|
||||||
|
|
||||||
/// How to display default configuration in ui
|
/// How to display default configuration in ui
|
||||||
immutable static string DEFAULT_NAME = "default";
|
immutable static string DEFAULT_NAME = "default";
|
||||||
/// Default project configuration
|
/// Default project configuration
|
||||||
immutable static ProjectConfiguration DEFAULT = ProjectConfiguration(DEFAULT_NAME, Type.Default);
|
immutable static ProjectConfiguration DEFAULT = ProjectConfiguration(DEFAULT_NAME, Type.Default);
|
||||||
|
|
||||||
/// Type of configuration
|
/// Type of configuration
|
||||||
enum Type {
|
enum Type {
|
||||||
Default,
|
Default,
|
||||||
Executable,
|
Executable,
|
||||||
Library
|
Library
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Type parseType(string s)
|
private static Type parseType(string s)
|
||||||
{
|
{
|
||||||
switch(s)
|
switch(s)
|
||||||
|
@ -335,7 +336,7 @@ struct ProjectConfiguration {
|
||||||
default: return Type.Default;
|
default: return Type.Default;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// parsing from setting file
|
/// parsing from setting file
|
||||||
static ProjectConfiguration[] load(Setting s)
|
static ProjectConfiguration[] load(Setting s)
|
||||||
{
|
{
|
||||||
|
@ -422,7 +423,7 @@ class Project : WorkspaceItem {
|
||||||
includePath ~= obj.str;
|
includePath ~= obj.str;
|
||||||
}
|
}
|
||||||
|
|
||||||
_items = new ProjectFolder(fname);
|
_items = new ProjectFolder(fname.dirName);
|
||||||
_dependencyVersion = dependencyVersion;
|
_dependencyVersion = dependencyVersion;
|
||||||
_isDependency = _dependencyVersion.length > 0;
|
_isDependency = _dependencyVersion.length > 0;
|
||||||
_projectFile = new SettingsFile(fname);
|
_projectFile = new SettingsFile(fname);
|
||||||
|
@ -490,7 +491,7 @@ class Project : WorkspaceItem {
|
||||||
/// name
|
/// name
|
||||||
override @property void name(dstring s) {
|
override @property void name(dstring s) {
|
||||||
super.name(s);
|
super.name(s);
|
||||||
_projectFile.setString("name", toUTF8(s));
|
_projectFile.setting.setString("name", toUTF8(s));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// name
|
/// name
|
||||||
|
@ -501,7 +502,7 @@ class Project : WorkspaceItem {
|
||||||
/// name
|
/// name
|
||||||
override @property void description(dstring s) {
|
override @property void description(dstring s) {
|
||||||
super.description(s);
|
super.description(s);
|
||||||
_projectFile.setString("description", toUTF8(s));
|
_projectFile.setting.setString("description", toUTF8(s));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// returns project's own source paths
|
/// returns project's own source paths
|
||||||
|
@ -576,12 +577,12 @@ class Project : WorkspaceItem {
|
||||||
if (!isExecutable)
|
if (!isExecutable)
|
||||||
return null;
|
return null;
|
||||||
string exename = toUTF8(name);
|
string exename = toUTF8(name);
|
||||||
exename = _projectFile.getString("targetName", exename);
|
exename = _projectFile.setting.getString("targetName", exename);
|
||||||
// TODO: use targetName
|
// TODO: use targetName
|
||||||
version (Windows) {
|
version (Windows) {
|
||||||
exename = exename ~ ".exe";
|
exename = exename ~ ".exe";
|
||||||
}
|
}
|
||||||
string targetPath = _projectFile.getString("targetPath", null);
|
string targetPath = _projectFile.setting.getString("targetPath", null);
|
||||||
string exePath;
|
string exePath;
|
||||||
if (targetPath.length)
|
if (targetPath.length)
|
||||||
exePath = buildNormalizedPath(_filename.dirName, targetPath, exename); // int $targetPath directory
|
exePath = buildNormalizedPath(_filename.dirName, targetPath, exename); // int $targetPath directory
|
||||||
|
@ -607,8 +608,8 @@ class Project : WorkspaceItem {
|
||||||
return settings.runInExternalConsole;
|
return settings.runInExternalConsole;
|
||||||
}
|
}
|
||||||
|
|
||||||
ProjectFolder findItems(string[] srcPaths) {
|
private ProjectFolder findItems(string[] srcPaths) {
|
||||||
auto folder = new ProjectFolder(_filename);
|
auto folder = new ProjectFolder(_filename.dirName);
|
||||||
folder.project = this;
|
folder.project = this;
|
||||||
foreach(customPath; srcPaths) {
|
foreach(customPath; srcPaths) {
|
||||||
string path = relativeToAbsolutePath(customPath);
|
string path = relativeToAbsolutePath(customPath);
|
||||||
|
@ -685,10 +686,10 @@ class Project : WorkspaceItem {
|
||||||
protected string[] findSourcePaths() {
|
protected string[] findSourcePaths() {
|
||||||
string[] res;
|
string[] res;
|
||||||
res.assumeSafeAppend;
|
res.assumeSafeAppend;
|
||||||
string[] srcPaths = _projectFile.getStringArray("sourcePaths");
|
string[] srcPaths = _projectFile.setting.getStringArray("sourcePaths");
|
||||||
foreach(s; srcPaths)
|
foreach(s; srcPaths)
|
||||||
addRelativePathIfExists(res, s);
|
addRelativePathIfExists(res, s);
|
||||||
Setting configs = _projectFile.objectByPath("configurations");
|
Setting configs = _projectFile.setting.objectByPath("configurations");
|
||||||
if (configs) {
|
if (configs) {
|
||||||
for (int i = 0; i < configs.length; i++) {
|
for (int i = 0; i < configs.length; i++) {
|
||||||
Setting s = configs[i];
|
Setting s = configs[i];
|
||||||
|
@ -710,7 +711,7 @@ class Project : WorkspaceItem {
|
||||||
void processSubpackages() {
|
void processSubpackages() {
|
||||||
import dlangui.core.files;
|
import dlangui.core.files;
|
||||||
_subPackages.length = 0;
|
_subPackages.length = 0;
|
||||||
Setting subPackages = _projectFile.settingByPath("subPackages", SettingType.ARRAY, false);
|
Setting subPackages = _projectFile.setting.settingByPath("subPackages", SettingType.ARRAY, false);
|
||||||
if (subPackages) {
|
if (subPackages) {
|
||||||
string p = _projectFile.filename.dirName;
|
string p = _projectFile.filename.dirName;
|
||||||
for(int i = 0; i < subPackages.length; i++) {
|
for(int i = 0; i < subPackages.length; i++) {
|
||||||
|
@ -761,7 +762,7 @@ class Project : WorkspaceItem {
|
||||||
//
|
//
|
||||||
_mainSourceFile = null;
|
_mainSourceFile = null;
|
||||||
try {
|
try {
|
||||||
_name = toUTF32(_projectFile.getString("name"));
|
_name = toUTF32(_projectFile.setting.getString("name"));
|
||||||
_originalName = _name;
|
_originalName = _name;
|
||||||
if (_baseProjectName) {
|
if (_baseProjectName) {
|
||||||
_name = _baseProjectName ~ ":" ~ _name;
|
_name = _baseProjectName ~ ":" ~ _name;
|
||||||
|
@ -770,7 +771,7 @@ class Project : WorkspaceItem {
|
||||||
_name ~= "-"d;
|
_name ~= "-"d;
|
||||||
_name ~= toUTF32(_dependencyVersion.startsWith("~") ? _dependencyVersion[1..$] : _dependencyVersion);
|
_name ~= toUTF32(_dependencyVersion.startsWith("~") ? _dependencyVersion[1..$] : _dependencyVersion);
|
||||||
}
|
}
|
||||||
_description = toUTF32(_projectFile.getString("description"));
|
_description = toUTF32(_projectFile.setting.getString("description"));
|
||||||
Log.d(" project name: ", _name);
|
Log.d(" project name: ", _name);
|
||||||
Log.d(" project description: ", _description);
|
Log.d(" project description: ", _description);
|
||||||
|
|
||||||
|
@ -786,7 +787,7 @@ class Project : WorkspaceItem {
|
||||||
if (!_isDependency)
|
if (!_isDependency)
|
||||||
loadSelections();
|
loadSelections();
|
||||||
|
|
||||||
_configurations = ProjectConfiguration.load(_projectFile);
|
_configurations = ProjectConfiguration.load(_projectFile.setting);
|
||||||
Log.i("Project configurations: ", _configurations);
|
Log.i("Project configurations: ", _configurations);
|
||||||
|
|
||||||
|
|
||||||
|
@ -842,7 +843,7 @@ class Project : WorkspaceItem {
|
||||||
_dependencies = newdeps;
|
_dependencies = newdeps;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
Setting versions = selectionsFile.objectByPath("versions");
|
Setting versions = selectionsFile.setting.objectByPath("versions");
|
||||||
if (!versions.isObject) {
|
if (!versions.isObject) {
|
||||||
_dependencies = newdeps;
|
_dependencies = newdeps;
|
||||||
return false;
|
return false;
|
||||||
|
@ -934,19 +935,19 @@ class DubPackageFinder {
|
||||||
bool isValidProjectName(in string s) pure {
|
bool isValidProjectName(in string s) pure {
|
||||||
if (s.empty)
|
if (s.empty)
|
||||||
return false;
|
return false;
|
||||||
return reduce!q{ a && (b == '_' || b == '-' || std.ascii.isAlphaNum(b)) }(true, s);
|
return reduce!((a, b) => a && (b == '_' || b == '-' || isAlphaNum(b)))(true, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isValidModuleName(in string s) pure {
|
bool isValidModuleName(in string s) pure {
|
||||||
if (s.empty)
|
if (s.empty)
|
||||||
return false;
|
return false;
|
||||||
return reduce!q{ a && (b == '_' || std.ascii.isAlphaNum(b)) }(true, s);
|
return reduce!((a, b) => a && (b == '_' || isAlphaNum(b)))(true, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isValidFileName(in string s) pure {
|
bool isValidFileName(in string s) pure {
|
||||||
if (s.empty)
|
if (s.empty)
|
||||||
return false;
|
return false;
|
||||||
return reduce!q{ a && (b == '_' || b == '.' || b == '-' || std.ascii.isAlphaNum(b)) }(true, s);
|
return reduce!((a, b) => a && (b == '_' || b == '.' || b == '-' || isAlphaNum(b)))(true, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
unittest {
|
unittest {
|
||||||
|
|
|
@ -54,9 +54,9 @@ class Workspace : WorkspaceItem {
|
||||||
protected Project[] _projects;
|
protected Project[] _projects;
|
||||||
protected SettingsFile _workspaceFile;
|
protected SettingsFile _workspaceFile;
|
||||||
protected WorkspaceSettings _settings;
|
protected WorkspaceSettings _settings;
|
||||||
|
|
||||||
protected IDEFrame _frame;
|
protected IDEFrame _frame;
|
||||||
|
|
||||||
this(IDEFrame frame, string fname = WORKSPACE_EXTENSION) {
|
this(IDEFrame frame, string fname = WORKSPACE_EXTENSION) {
|
||||||
super(fname);
|
super(fname);
|
||||||
_workspaceFile = new SettingsFile(fname);
|
_workspaceFile = new SettingsFile(fname);
|
||||||
|
@ -74,9 +74,9 @@ class Workspace : WorkspaceItem {
|
||||||
}
|
}
|
||||||
|
|
||||||
@property Setting includePath(){
|
@property Setting includePath(){
|
||||||
Setting res = _workspaceFile.objectByPath("includePath", true);
|
Setting res = _workspaceFile.setting.objectByPath("includePath", true);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
@property Project[] projects() { return _projects; }
|
@property Project[] projects() { return _projects; }
|
||||||
|
|
||||||
|
@ -91,19 +91,19 @@ class Workspace : WorkspaceItem {
|
||||||
protected Project _startupProject;
|
protected Project _startupProject;
|
||||||
|
|
||||||
@property Project startupProject() { return _startupProject; }
|
@property Project startupProject() { return _startupProject; }
|
||||||
@property void startupProject(Project project) {
|
@property void startupProject(Project project) {
|
||||||
if (_startupProject is project)
|
if (_startupProject is project)
|
||||||
return;
|
return;
|
||||||
_startupProject = project;
|
_startupProject = project;
|
||||||
_settings.startupProjectName = toUTF8(project.name);
|
_settings.startupProjectName = toUTF8(project.name);
|
||||||
_frame.updateProjectConfigurations();
|
_frame.updateProjectConfigurations();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Last opened files in workspace
|
/// Last opened files in workspace
|
||||||
@property WorkspaceFile[] files() {
|
@property WorkspaceFile[] files() {
|
||||||
return _settings.files();
|
return _settings.files();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Last opened files in workspace
|
/// Last opened files in workspace
|
||||||
@property void files(WorkspaceFile[] fs) {
|
@property void files(WorkspaceFile[] fs) {
|
||||||
_settings.files(fs);
|
_settings.files(fs);
|
||||||
|
@ -159,7 +159,7 @@ class Workspace : WorkspaceItem {
|
||||||
updateBreakpointFiles(res);
|
updateBreakpointFiles(res);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
void setSourceFileBreakpoints(ProjectSourceFile file, Breakpoint[] breakpoints) {
|
void setSourceFileBreakpoints(ProjectSourceFile file, Breakpoint[] breakpoints) {
|
||||||
_settings.setProjectBreakpoints(toUTF8(file.project.name), file.projectFilePath, breakpoints);
|
_settings.setProjectBreakpoints(toUTF8(file.project.name), file.projectFilePath, breakpoints);
|
||||||
}
|
}
|
||||||
|
@ -169,7 +169,7 @@ class Workspace : WorkspaceItem {
|
||||||
updateBookmarkFiles(res);
|
updateBookmarkFiles(res);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
void setSourceFileBookmarks(ProjectSourceFile file, EditorBookmark[] bookmarks) {
|
void setSourceFileBookmarks(ProjectSourceFile file, EditorBookmark[] bookmarks) {
|
||||||
_settings.setProjectBookmarks(toUTF8(file.project.name), file.projectFilePath, bookmarks);
|
_settings.setProjectBookmarks(toUTF8(file.project.name), file.projectFilePath, bookmarks);
|
||||||
}
|
}
|
||||||
|
@ -180,7 +180,7 @@ class Workspace : WorkspaceItem {
|
||||||
updateBreakpointFiles(res);
|
updateBreakpointFiles(res);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void fillStartupProject() {
|
protected void fillStartupProject() {
|
||||||
string s = _settings.startupProjectName;
|
string s = _settings.startupProjectName;
|
||||||
if ((!_startupProject || !_startupProject.name.toUTF8.equal(s)) && _projects.length) {
|
if ((!_startupProject || !_startupProject.name.toUTF8.equal(s)) && _projects.length) {
|
||||||
|
@ -312,13 +312,13 @@ class Workspace : WorkspaceItem {
|
||||||
if (nf && !_name.empty) // cut off last comma
|
if (nf && !_name.empty) // cut off last comma
|
||||||
_name = _name[ 0 .. $ - 1 ];
|
_name = _name[ 0 .. $ - 1 ];
|
||||||
if (df && !_description.empty) // cut off last delimiter
|
if (df && !_description.empty) // cut off last delimiter
|
||||||
_description = _description[ 0 .. $ - 3 ];
|
_description = _description[ 0 .. $ - 3 ];
|
||||||
}
|
}
|
||||||
_workspaceFile.setString("name", toUTF8(_name));
|
_workspaceFile.setting.setString("name", toUTF8(_name));
|
||||||
_workspaceFile.setString("description", toUTF8(_description));
|
_workspaceFile.setting.setString("description", toUTF8(_description));
|
||||||
Log.d("workspace name: ", _name);
|
Log.d("workspace name: ", _name);
|
||||||
Log.d("workspace description: ", _description);
|
Log.d("workspace description: ", _description);
|
||||||
Setting projects = _workspaceFile.objectByPath("projects", true);
|
Setting projects = _workspaceFile.setting.objectByPath("projects", true);
|
||||||
projects.clear(SettingType.OBJECT);
|
projects.clear(SettingType.OBJECT);
|
||||||
foreach (Project p; _projects) {
|
foreach (Project p; _projects) {
|
||||||
if (p.isDependency)
|
if (p.isDependency)
|
||||||
|
@ -346,8 +346,8 @@ class Workspace : WorkspaceItem {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
_settings.load(filename ~ WORKSPACE_SETTINGS_EXTENSION);
|
_settings.load(filename ~ WORKSPACE_SETTINGS_EXTENSION);
|
||||||
_name = toUTF32(_workspaceFile["name"].str);
|
_name = toUTF32(_workspaceFile.setting["name"].str);
|
||||||
_description = toUTF32(_workspaceFile["description"].str);
|
_description = toUTF32(_workspaceFile.setting["description"].str);
|
||||||
Log.d("workspace name: ", _name);
|
Log.d("workspace name: ", _name);
|
||||||
Log.d("workspace description: ", _description);
|
Log.d("workspace description: ", _description);
|
||||||
if (_name.empty()) {
|
if (_name.empty()) {
|
||||||
|
@ -355,7 +355,7 @@ class Workspace : WorkspaceItem {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
auto originalStartupProjectName = _settings.startupProjectName;
|
auto originalStartupProjectName = _settings.startupProjectName;
|
||||||
Setting projects = _workspaceFile.objectByPath("projects", true);
|
Setting projects = _workspaceFile.setting.objectByPath("projects", true);
|
||||||
foreach(string key, Setting value; projects) {
|
foreach(string key, Setting value; projects) {
|
||||||
string path = value.str;
|
string path = value.str;
|
||||||
Log.d("project: ", key, " path:", path);
|
Log.d("project: ", key, " path:", path);
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
v0.8.10
|
v0.8.17
|
|
@ -4,3 +4,4 @@ res/i18n/en.ini
|
||||||
res/i18n/ru.ini
|
res/i18n/ru.ini
|
||||||
res/i18n/es.ini
|
res/i18n/es.ini
|
||||||
res/i18n/cs.ini
|
res/i18n/cs.ini
|
||||||
|
res/i18n/de.ini
|
||||||
|
|
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.1 KiB |
|
@ -80,6 +80,7 @@ MENU_VIEW_LANGUAGE_EN=English
|
||||||
MENU_VIEW_LANGUAGE_RU=Русский
|
MENU_VIEW_LANGUAGE_RU=Русский
|
||||||
MENU_VIEW_LANGUAGE_CS=Čeština
|
MENU_VIEW_LANGUAGE_CS=Čeština
|
||||||
MENU_VIEW_LANGUAGE_ES=Spanish
|
MENU_VIEW_LANGUAGE_ES=Spanish
|
||||||
|
MENU_VIEW_LANGUAGE_DE=Deutsch
|
||||||
MENU_VIEW_THEME=&Téma
|
MENU_VIEW_THEME=&Téma
|
||||||
MENU_VIEW_THEME_DEFAULT=&Default
|
MENU_VIEW_THEME_DEFAULT=&Default
|
||||||
MENU_VIEW_THEME_CUSTOM1=&Custom 1
|
MENU_VIEW_THEME_CUSTOM1=&Custom 1
|
||||||
|
|
|
@ -0,0 +1,268 @@
|
||||||
|
ABOUT=Über DlangIDE
|
||||||
|
HOME=DlangIDE Home
|
||||||
|
DESCRIPTION=D-Sprach-IDE geschrieben in D
|
||||||
|
COPYRIGHT=(c) Vadim Lopatin 2017
|
||||||
|
START_WITH=Starten mit:
|
||||||
|
RECENT=Kürzlich:
|
||||||
|
NO_RECENT=Keine kürzlich verwendete Einträge
|
||||||
|
USEFUL_LINKS=Nützliche Links:
|
||||||
|
D_LANG=D Programmiersprache
|
||||||
|
DUB_REP=DUB Repository
|
||||||
|
DLANG_DOWNLOADS=D-Compiler downloaden
|
||||||
|
DLANG_UI=DLangUI auf GitHub
|
||||||
|
DLANG_IDE=DLangIDE auf GitHub
|
||||||
|
DLANG_IDE_HELP=DLangIDE Onlinedokumentation
|
||||||
|
DLANG_TOUR=DLang Tour
|
||||||
|
DLANG_VIBED=Vibe-D
|
||||||
|
DLANG_FORUM=Dlang Forum
|
||||||
|
DLANG_IDE_DONATE=DlangIDE unterstützen
|
||||||
|
DLANG_IDE_DONATE_PAYPAL=Spenden über PayPal
|
||||||
|
EXIT=Beenden
|
||||||
|
|
||||||
|
PROFILER_WINDOW=Profiler
|
||||||
|
|
||||||
|
ALL_FILES=Alle Dateien
|
||||||
|
SOURCE_FILES=Quelldateien
|
||||||
|
WORKSPACE_AND_PROJECT_FILES=Workspace- und Projektdateien
|
||||||
|
IDE_FILES=DlangIDE Dateien
|
||||||
|
PROFILER_LOG_FILES=DMD Profiler Logs
|
||||||
|
|
||||||
|
EDITOR_CONTENT=Editorinhalte
|
||||||
|
LOCATION=Position
|
||||||
|
NAME=Name
|
||||||
|
|
||||||
|
MENU_FILE=Datei
|
||||||
|
MENU_FILE_NEW=Erstelle
|
||||||
|
MENU_FILE_NEW_SOURCE_FILE=Neue Datei
|
||||||
|
MENU_FILE_NEW_PROJECT=Neues Projekt
|
||||||
|
MENU_FILE_NEW_WORKSPACE=Neue Workspace
|
||||||
|
MENU_FILE_OPEN=Öffne Datei...
|
||||||
|
MENU_FILE_OPEN_WORKSPACE=Öffne Projekt oder Workspace...
|
||||||
|
MENU_FILE_OPEN_RECENT=Öffne kürzlich
|
||||||
|
MENU_FILE_SAVE=&Speichern
|
||||||
|
MENU_FILE_SAVE_AS=&Speichern unter...
|
||||||
|
MENU_FILE_SAVE_ALL=Alles &speichern
|
||||||
|
MENU_FILE_WORKSPACE_CLOSE=Schließe Workspace
|
||||||
|
MENU_FILE_EXIT=Beende
|
||||||
|
|
||||||
|
MENU_EDIT=&Editieren
|
||||||
|
MENU_EDIT_COPY=Kopieren
|
||||||
|
MENU_EDIT_PASTE=Einfügen
|
||||||
|
MENU_EDIT_CUT=Ausschneiden
|
||||||
|
MENU_EDIT_UNDO=Rückgängig
|
||||||
|
MENU_EDIT_REDO=Wiederherstellen
|
||||||
|
MENU_EDIT_INDENT=Block einrücken
|
||||||
|
MENU_EDIT_UNINDENT=Block ausrücken
|
||||||
|
MENU_EDIT_TOGGLE_LINE_COMMENT=Zeilenkommentare umschalten
|
||||||
|
MENU_EDIT_TOGGLE_BLOCK_COMMENT=Blockkommentare umschalten
|
||||||
|
MENU_EDIT_ADVANCED=Erweitert...
|
||||||
|
MENU_EDIT_PREFERENCES=Einstellungen
|
||||||
|
|
||||||
|
MENU_VIEW=Ansicht
|
||||||
|
MENU_VIEW_SHOW_WHITESPACE_MARKS=Zeige Leerzeichenmarkierungen an
|
||||||
|
MENU_VIEW_SHOW_TAB_POSITIONS=Tabpositionsmarkierungen
|
||||||
|
MENU_VIEW_SHOW_TOOLBAR=Zeige Toolbar an
|
||||||
|
MENU_VIEW_SHOW_STATUSBAR=Zeige Statusbar an
|
||||||
|
|
||||||
|
MENU_PROJECT=&Projekt
|
||||||
|
MENU_PROJECT_CONFIGURATIONS=Projekt konfigurieren
|
||||||
|
MENU_PROJECT_SET_AS_STARTUP=Als Startprojekt setzen
|
||||||
|
MENU_PROJECT_SETTINGS=Projekteinstellungen
|
||||||
|
MENU_PROJECT_REFRESH=Workspace-Einträge aktualisieren
|
||||||
|
MENU_PROJECT_UPDATE_DEPENDENCIES=Abhänigkeiten aktualisieren
|
||||||
|
|
||||||
|
MENU_NAVIGATE=&Navigation
|
||||||
|
GO_TO_DEFINITION=Gehe zu Definition
|
||||||
|
SHOW_COMPLETIONS=Autovervollständigung anzeigen
|
||||||
|
SHOW_DOC_COMMENTS=Dokumentation anzeigen
|
||||||
|
SHOW_PAREN_COMPLETION=Autrufvorschläge
|
||||||
|
GO_TO_LINE=Gehe zu Zeile
|
||||||
|
|
||||||
|
FIND_IN_FILES=Finde in Dateien...
|
||||||
|
|
||||||
|
MENU_BUILD_CONFIGURATIONS=Build-Konfigurationen
|
||||||
|
MENU_BUILD_CONFIGURATION=Build-Konfiguration
|
||||||
|
MENU_BUILD=&Build
|
||||||
|
MENU_BUILD_WORKSPACE_BUILD=Baue Workspace
|
||||||
|
MENU_BUILD_WORKSPACE_REBUILD=Baue erneut Workspace
|
||||||
|
MENU_BUILD_WORKSPACE_CLEAN=Säubere Workspace
|
||||||
|
MENU_BUILD_PROJECT_BUILD=Baue Projekt
|
||||||
|
MENU_BUILD_PROJECT_REBUILD=Baue erneut Projekt
|
||||||
|
MENU_BUILD_PROJECT_CLEAN=Säubere Projekt
|
||||||
|
MENU_BUILD_RUN_WITH_RDMD=Starte mit rdmd
|
||||||
|
MENU_BUILD_CONFIGURATION=Build-Type
|
||||||
|
MENU_PROJECT_CONFIGURATION=Projektkonfiguration
|
||||||
|
|
||||||
|
MENU_DEBUG=&Debug
|
||||||
|
MENU_DEBUG_START_DEBUGGING=Starte debuggen
|
||||||
|
MENU_DEBUG_START_NO_DEBUGGING=Starte ohne debuggen
|
||||||
|
MENU_DEBUG_CONTINUE=Debuggen fortfahren
|
||||||
|
MENU_DEBUG_STOP=Stop
|
||||||
|
MENU_DEBUG_PAUSE=Pause
|
||||||
|
MENU_DEBUG_RESTART=Neustart
|
||||||
|
MENU_DEBUG_STEP_INTO=Springe hinein
|
||||||
|
MENU_DEBUG_STEP_OVER=Springe hinweg
|
||||||
|
MENU_DEBUG_STEP_OUT=Springe heraus
|
||||||
|
MENU_DEBUG_BREAKPOINT_TOGGLE=Haltepunkt umschalten
|
||||||
|
MENU_DEBUG_BREAKPOINT_ENABLE=Aktiviere Haltepunkt
|
||||||
|
MENU_DEBUG_BREAKPOINT_DISABLE=Deaktiviere Haltepunkt
|
||||||
|
|
||||||
|
MENU_WINDOW=Fenster
|
||||||
|
MENU_WINDOW_PREFERENCES=Einstellungen
|
||||||
|
MENU_WINDOW_CLOSE_DOCUMENT=Schließe Dokument
|
||||||
|
MENU_WINDOW_CLOSE_ALL_DOCUMENTS=Schließe alle Dokumente
|
||||||
|
MENU_WINDOW_SHOW_HOME_SCREEN=Zeige Homescreen
|
||||||
|
MENU_WINDOW_SHOW_WORKSPACE_EXPLORER=Workspace-Explorer
|
||||||
|
MENU_WINDOW_SHOW_LOG_WINDOW=Log-Fenster
|
||||||
|
|
||||||
|
MENU_HELP=&Hilfe
|
||||||
|
MENU_HELP_VIEW_HELP=Online Hilfe
|
||||||
|
MENU_HELP_ABOUT=Über
|
||||||
|
MENU_HELP_DONATE=Spenden über PayPal
|
||||||
|
|
||||||
|
MENU_VIEW=Anzeige
|
||||||
|
MENU_VIEW_LANGUAGE=Oberflächensprache
|
||||||
|
MENU_VIEW_LANGUAGE_EN=English
|
||||||
|
MENU_VIEW_LANGUAGE_RU=Русский
|
||||||
|
MENU_VIEW_LANGUAGE_CS=Čeština
|
||||||
|
MENU_VIEW_LANGUAGE_ES=Spanish
|
||||||
|
MENU_VIEW_LANGUAGE_DE=Deutsch
|
||||||
|
MENU_VIEW_THEME=&Theme
|
||||||
|
MENU_VIEW_THEME_DEFAULT=Standart
|
||||||
|
MENU_VIEW_THEME_CUSTOM1=&Custom 1
|
||||||
|
|
||||||
|
MENU_TOOLS=Tools
|
||||||
|
OPEN_DMD_TRACE_LOG=Öffne DMD Profiler-Log
|
||||||
|
|
||||||
|
TAB_LONG_LIST=Lange Liste
|
||||||
|
TAB_BUTTONS=Knopf
|
||||||
|
TAB_ANIMATION=Animation
|
||||||
|
TAB_TABLE_LAYOUT=Tabellenlayout
|
||||||
|
TAB_EDITORS=Editoren
|
||||||
|
|
||||||
|
MENU_PROJECT_FOLDER_ADD_ITEM=Hinzufügen...
|
||||||
|
MENU_PROJECT_FOLDER_OPEN_ITEM=Öffnen
|
||||||
|
MENU_PROJECT_FOLDER_REMOVE_ITEM=Umbenennen
|
||||||
|
MENU_PROJECT_FOLDER_RENAME_ITEM=Umbenennen...
|
||||||
|
MENU_PROJECT_FOLDER_REFRESH=Aktualisieren
|
||||||
|
MENU_PROJECT_REVEAL_IN_EXPLORER=Zeige im Dateimanager an
|
||||||
|
MENU_PROJECT_FOLDER_EXPAND_ALL=Alles ausklappen
|
||||||
|
MENU_PROJECT_FOLDER_COLLAPSE_ALL=Alles einklappen
|
||||||
|
|
||||||
|
HEADER_SETTINGS=DlangIDE Einstellungen
|
||||||
|
HEADER_OPEN_WORKSPACE_OR_PROJECT=Öffne Workspace oder Projekt
|
||||||
|
HEADER_OPEN_TEXT_FILE=Öffne Textdatei
|
||||||
|
HEADER_OPEN_DMD_PROFILER_LOG=Öffne DMD Profiler Logdatei
|
||||||
|
HEADER_CLOSE_FILE=Schließe Datei
|
||||||
|
HEADER_CLOSE_TAB=Schließe Tab
|
||||||
|
HEADER_PROJECT_SETTINGS=Projekteinstellungen
|
||||||
|
HEADER_REMOVE_FILE=Entferne Datei
|
||||||
|
HEADER_SAVE_FILE_AS=Speichere Datei unter
|
||||||
|
|
||||||
|
OPTION_ADD_TO_CURRENT_WORKSPACE=Füge zur momentaner Wokrspace hinzu
|
||||||
|
OPTION_ARCHITECTURE=Architektur
|
||||||
|
OPTION_AUTO_OPEN_LAST_PROJECT=Öffne automatisch das letzte Projekt
|
||||||
|
OPTION_BUILD=Build
|
||||||
|
OPTION_COMMAND_LINE=Kommandozeilenargumente
|
||||||
|
OPTION_COMMON=Standard
|
||||||
|
OPTION_CREATE_NEW_SOLUTION=Erstelle neue Ansicht
|
||||||
|
OPTION_CREATE_NEW_WORKSPACE=Erstelle neue Workspace
|
||||||
|
OPTION_CREATE_SUBDIRECTORY_FOR_PROJECT=Erstelle einen Unterordner für das Projekt
|
||||||
|
OPTION_CREATE_SUBDIRECTORY_FOR_WORKSPACE=Erstelle einen Unterordner für die Workspace
|
||||||
|
OPTION_DARK=Dunkel
|
||||||
|
OPTION_DEBUGGER=Debugger
|
||||||
|
OPTION_DEBUGGER_EXECUTABLE=Debugger-Anwendung
|
||||||
|
OPTION_DEFAULT=Standard
|
||||||
|
OPTION_DIRECTORY_LAYOUT=Ordneransicht
|
||||||
|
OPTION_DMD_EXECUTABLE=DMD-Anwendung
|
||||||
|
OPTION_DUB_ADDITIONAL_PARAMS=DUB zusätzliche Parameter
|
||||||
|
OPTION_DUB_EXECUTABLE=DUB-Anwendung
|
||||||
|
OPTION_EDITORS=Editoren
|
||||||
|
OPTION_INTERFACE=Interface
|
||||||
|
OPTION_FILE_PATH=Dateipfad
|
||||||
|
OPTION_FONT_ANTIALIASING=Minimale Schriftgröße für Antialiasing
|
||||||
|
OPTION_FONT_ANTIALIASING_ALWAYS_OFF=Immer AUS
|
||||||
|
OPTION_FONT_ANTIALIASING_ALWAYS_ON=Immer AN
|
||||||
|
OPTION_FONT_HINTING=Schrift-Hinting
|
||||||
|
OPTION_FONT_HINTING_DISABLED=Abgeschaltet
|
||||||
|
OPTION_FONT_HINTING_FORCE=Erzwinge automatische Hints
|
||||||
|
OPTION_FONT_HINTING_NORMAL=Normal
|
||||||
|
OPTION_FONT_HINTING_LIGHT=LIGHT
|
||||||
|
OPTION_FONT_FACE=Schriftart
|
||||||
|
OPTION_FONT_SIZE=Schriftgröße
|
||||||
|
OPTION_FONT_GAMMA=Schrift-Gamma
|
||||||
|
OPTION_SCREEN_DPI_OVERRIDE=Überschreibe Bildschirm DPI
|
||||||
|
OPTION_SCREEN_DPI_OVERRIDE_NONE=Standard Bildschirm DPI
|
||||||
|
OPTION_GDC_EXECUTABLE=GDC-Anwendung
|
||||||
|
OPTION_LANGUAGE=Sprache
|
||||||
|
OPTION_LDC2_EXECUTABLE=LDC2-Anwendung
|
||||||
|
OPTION_LDMD2_EXECUTABLE=LDMD2-Anwendung
|
||||||
|
OPTION_MODULE_NAME=Modulname
|
||||||
|
OPTION_NEW_PROJECT=Neues Projekt
|
||||||
|
OPTION_NEW_SOURCE_FILE=Neue Quelldatei
|
||||||
|
OPTION_NEW_WORKSPACE=Neue Workspace
|
||||||
|
OPTION_PROJECT_NAME=Projektname
|
||||||
|
OPTION_PROJECT_TEMPLATE=Projektvorlage
|
||||||
|
OPTION_RDMD_ADDITIONAL_PARAMS=rdmd zusätzliche Parameter
|
||||||
|
OPTION_RDMD_EXECUTABLE=rdmd-Anwendung
|
||||||
|
OPTION_RUN_IN_EXTERNAL_CONSOLE=Starte in externen Konsole
|
||||||
|
OPTION_RUN_DEBUG=Starte und debugge
|
||||||
|
OPTION_SHOW_SPACES=Zeige Leerzeichenmarkierungen an
|
||||||
|
OPTION_SHOW_TABS=Zeige Tabpositionsmarkierungen an
|
||||||
|
OPTION_SMART_INDENTS=Schlaues Einrücken
|
||||||
|
OPTION_SMART_INDENTS_PASTE=Schlaues Einrücken nach Einfügen
|
||||||
|
OPTION_TAB=Tabgröße
|
||||||
|
OPTION_TEMPLATE_DESCR=Vorlagenbeschreibung
|
||||||
|
OPTION_TEXT_EDITORS=Texteditor
|
||||||
|
OPTION_TERMINAL=Terminal
|
||||||
|
OPTION_TERMINAL_EXECUTABLE=Terminal-Anwendung
|
||||||
|
OPTION_THEME=Theme
|
||||||
|
OPTION_TOOLCHAIN=Toolchain
|
||||||
|
OPTION_TOOLCHAINS=Toolchains
|
||||||
|
OPTION_VERBOSE=Verbose
|
||||||
|
OPTION_WORKING_DIR=Arbeitsverzeichnis
|
||||||
|
OPTION_WORKSPACE_NAME=Workspace-Name
|
||||||
|
OPTION_USE_SPACES=Nutze Leerzeichen für Tabs
|
||||||
|
|
||||||
|
ERROR=Fehler
|
||||||
|
ERROR_CANNOT_CREATE_PROJECT=Projekte konnte nicht erstellt werden
|
||||||
|
ERROR_CANNOT_DEBUG_PROJECT=Projekt konnte nicht gedebuggt werden
|
||||||
|
ERROR_CANNOT_FIND_EXEC=Ausführbare Datei nicht gefunden
|
||||||
|
ERROR_CANNOT_RUN_PROJECT=Projekt konnte nicht gestartet werden
|
||||||
|
ERROR_FAILED_CREATE_PROJECT=Projekt konnte nicht erstllt werden
|
||||||
|
ERROR_STARTUP_PROJECT_ABSENT=Kein Startprojekt angegeben
|
||||||
|
ERROR_INVALID_NUMBER=Unzulässige Nummer
|
||||||
|
ERROR_INVALID_PARAMETERS=Ungültiger Parameter
|
||||||
|
ERROR_INVALID_WORKSPACE_FILE=Ungültige Workspace-Datei
|
||||||
|
ERROR_INVALID_WS_OR_PROJECT_FILE=Diese Datei ist keine gültige Workspace-/Projektdatei
|
||||||
|
ERROR_NO_DEBUGGER=Kein Debugger in den Einstellungen angegeben
|
||||||
|
ERROR_NO_SUCH_LINE=Keine solche Zeile
|
||||||
|
ERROR_OPEN_FILE=Datei konnte nicht geöffnet werden
|
||||||
|
ERROR_OPEN_PROJECT=Projekt konnte nicht geöffnet werden
|
||||||
|
ERROR_OPEN_WORKSPACE=Workspace konnte nicht geöffnet werden
|
||||||
|
ERROR_OPENING_FILE=Datei konnte nicht geöffnet werden
|
||||||
|
ERROR_OPENING_PROJECT=Ein Fehler trat auf beim öffnen des Projekts
|
||||||
|
ERROR_OPENING_WORKSPACE=Ein Fehler trat auf beim öffnen der Workspace
|
||||||
|
ERROR_FAILED_TO_PARSE_TRACE_LOG_FILE=Fehler beim Verarbeiten vom Trace-Log
|
||||||
|
|
||||||
|
MSG_FILE_CONTENT_CHANGED=Dateiinhalt hat sich verändert.
|
||||||
|
MSG_TAB_CONTENT_CHANGED=Tabinhalt hat sich verändert
|
||||||
|
MSG_OK_BUTTON=OK-Knopf gedrückt
|
||||||
|
MSG_OPEN_PROJECT=Öffne Projekt
|
||||||
|
MSG_PROJECT_ALREADY_OPENED=Projekt ist schon in der Workspace
|
||||||
|
MSG_SELECT_DIR=Ordner auswählen
|
||||||
|
MSG_STARTING=Starte
|
||||||
|
MSG_STARTING_DEBUGGER=Starte Debugger für
|
||||||
|
MSG_TRY_OPEN_PROJECT=Versuche Projekt zu öffnen von
|
||||||
|
DEBUGGING=debugge...
|
||||||
|
RUNNING=läuft...
|
||||||
|
|
||||||
|
QUESTION_CREATE_DIR=Der Zielpfad existiert nicht. Soll der Ordner angelegt werden?
|
||||||
|
QUESTION_NEW_WORKSPACE=Soll ein neuer Workspace anglegt werden oder der momentane verwendet werden?
|
||||||
|
QUESTION_REMOVE_FILE=Soll die Datei gelöscht werden
|
||||||
|
|
||||||
|
BUILD_OP_DESCRIPTION_BUILD=Baue Projekt {projectName}...
|
||||||
|
BUILD_OP_DESCRIPTION_CLEAN=Säubere Projekt {projectName}...
|
||||||
|
BUILD_OP_DESCRIPTION_REBUILD=Baue erneut Projekt {projectName}...
|
||||||
|
BUILD_OP_DESCRIPTION_RUN=Starte Projekt {projectName}...
|
||||||
|
BUILD_OP_DESCRIPTION_UPGRADE=Aktualisiere Pakte für das Projekt {projectName}...
|
|
@ -34,6 +34,7 @@ NAME=Name
|
||||||
MENU_FILE=&File
|
MENU_FILE=&File
|
||||||
MENU_FILE_NEW=&Create
|
MENU_FILE_NEW=&Create
|
||||||
MENU_FILE_NEW_SOURCE_FILE=New file
|
MENU_FILE_NEW_SOURCE_FILE=New file
|
||||||
|
MENU_FILE_NEW_DIRECTORY=New directory
|
||||||
MENU_FILE_NEW_PROJECT=New project
|
MENU_FILE_NEW_PROJECT=New project
|
||||||
MENU_FILE_NEW_WORKSPACE=New workspace
|
MENU_FILE_NEW_WORKSPACE=New workspace
|
||||||
MENU_FILE_OPEN=&Open file...
|
MENU_FILE_OPEN=&Open file...
|
||||||
|
@ -77,6 +78,8 @@ SHOW_COMPLETIONS=Get autocompletions
|
||||||
SHOW_DOC_COMMENTS=Show documentation
|
SHOW_DOC_COMMENTS=Show documentation
|
||||||
SHOW_PAREN_COMPLETION=Call hints
|
SHOW_PAREN_COMPLETION=Call hints
|
||||||
GO_TO_LINE=Go to line
|
GO_TO_LINE=Go to line
|
||||||
|
GO_TO_PREV_POSITION=Go to previous position
|
||||||
|
GO_TO_NEXT_POSITION=Go to next position
|
||||||
|
|
||||||
FIND_IN_FILES=Find in files...
|
FIND_IN_FILES=Find in files...
|
||||||
|
|
||||||
|
@ -126,6 +129,7 @@ MENU_VIEW_LANGUAGE_EN=English
|
||||||
MENU_VIEW_LANGUAGE_RU=Русский
|
MENU_VIEW_LANGUAGE_RU=Русский
|
||||||
MENU_VIEW_LANGUAGE_CS=Čeština
|
MENU_VIEW_LANGUAGE_CS=Čeština
|
||||||
MENU_VIEW_LANGUAGE_ES=Spanish
|
MENU_VIEW_LANGUAGE_ES=Spanish
|
||||||
|
MENU_VIEW_LANGUAGE_DE=Deutsch
|
||||||
MENU_VIEW_THEME=&Theme
|
MENU_VIEW_THEME=&Theme
|
||||||
MENU_VIEW_THEME_DEFAULT=&Default
|
MENU_VIEW_THEME_DEFAULT=&Default
|
||||||
MENU_VIEW_THEME_CUSTOM1=&Custom 1
|
MENU_VIEW_THEME_CUSTOM1=&Custom 1
|
||||||
|
@ -196,6 +200,7 @@ OPTION_GDC_EXECUTABLE=GDC executable
|
||||||
OPTION_LANGUAGE=Language
|
OPTION_LANGUAGE=Language
|
||||||
OPTION_LDC2_EXECUTABLE=LDC2 executable
|
OPTION_LDC2_EXECUTABLE=LDC2 executable
|
||||||
OPTION_LDMD2_EXECUTABLE=LDMD2 executable
|
OPTION_LDMD2_EXECUTABLE=LDMD2 executable
|
||||||
|
OPTION_MAKE_PACKAGE=Create package.d
|
||||||
OPTION_MODULE_NAME=Module name
|
OPTION_MODULE_NAME=Module name
|
||||||
OPTION_NEW_PROJECT=New project
|
OPTION_NEW_PROJECT=New project
|
||||||
OPTION_NEW_SOURCE_FILE=New source file
|
OPTION_NEW_SOURCE_FILE=New source file
|
||||||
|
@ -222,6 +227,7 @@ OPTION_VERBOSE=Verbose
|
||||||
OPTION_WORKING_DIR=Working directory
|
OPTION_WORKING_DIR=Working directory
|
||||||
OPTION_WORKSPACE_NAME=Workspace name
|
OPTION_WORKSPACE_NAME=Workspace name
|
||||||
OPTION_USE_SPACES=Use spaces for tabs
|
OPTION_USE_SPACES=Use spaces for tabs
|
||||||
|
OPTION_AUTO_AUTOCOMPLETE=Automatically suggest auto completion
|
||||||
|
|
||||||
ERROR=Error
|
ERROR=Error
|
||||||
ERROR_CANNOT_CREATE_PROJECT=Cannot create project
|
ERROR_CANNOT_CREATE_PROJECT=Cannot create project
|
||||||
|
|
|
@ -49,6 +49,7 @@ MENU_VIEW_LANGUAGE_ES=Spanish
|
||||||
MENU_VIEW_LANGUAGE_EN=English
|
MENU_VIEW_LANGUAGE_EN=English
|
||||||
MENU_VIEW_LANGUAGE_RU=Русский
|
MENU_VIEW_LANGUAGE_RU=Русский
|
||||||
MENU_VIEW_LANGUAGE_CS=Čeština
|
MENU_VIEW_LANGUAGE_CS=Čeština
|
||||||
|
MENU_VIEW_LANGUAGE_DE=Deutsch
|
||||||
MENU_VIEW_THEME=&Tema
|
MENU_VIEW_THEME=&Tema
|
||||||
MENU_VIEW_THEME_DEFAULT=&Por Defecto
|
MENU_VIEW_THEME_DEFAULT=&Por Defecto
|
||||||
MENU_VIEW_THEME_CUSTOM1=&Personalizado 1
|
MENU_VIEW_THEME_CUSTOM1=&Personalizado 1
|
||||||
|
|
|
@ -125,6 +125,7 @@ MENU_VIEW_LANGUAGE_ES=Spanish
|
||||||
MENU_VIEW_LANGUAGE_EN=English
|
MENU_VIEW_LANGUAGE_EN=English
|
||||||
MENU_VIEW_LANGUAGE_RU=Русский
|
MENU_VIEW_LANGUAGE_RU=Русский
|
||||||
MENU_VIEW_LANGUAGE_CS=Čeština
|
MENU_VIEW_LANGUAGE_CS=Čeština
|
||||||
|
MENU_VIEW_LANGUAGE_DE=Deutsch
|
||||||
MENU_VIEW_THEME=&Тема
|
MENU_VIEW_THEME=&Тема
|
||||||
MENU_VIEW_THEME_DEFAULT=Стандартная
|
MENU_VIEW_THEME_DEFAULT=Стандартная
|
||||||
MENU_VIEW_THEME_CUSTOM1=Пример 1
|
MENU_VIEW_THEME_CUSTOM1=Пример 1
|
||||||
|
@ -220,6 +221,7 @@ OPTION_VERBOSE=Показать подробности
|
||||||
OPTION_WORKING_DIR=Рабочий каталог
|
OPTION_WORKING_DIR=Рабочий каталог
|
||||||
OPTION_WORKSPACE_NAME=Имя рабочего пространства
|
OPTION_WORKSPACE_NAME=Имя рабочего пространства
|
||||||
OPTION_USE_SPACES=Использовать пробелы вместо табуляции
|
OPTION_USE_SPACES=Использовать пробелы вместо табуляции
|
||||||
|
OPTION_AUTO_AUTOCOMPLETE=Автоматически предлагать дополнение кода
|
||||||
|
|
||||||
ERROR=Ошибка
|
ERROR=Ошибка
|
||||||
ERROR_CANNOT_CREATE_PROJECT=Не могу создать проект
|
ERROR_CANNOT_CREATE_PROJECT=Не могу создать проект
|
||||||
|
|
After Width: | Height: | Size: 920 B |
|
@ -4,8 +4,15 @@ res/i18n/en.ini
|
||||||
res/i18n/ru.ini
|
res/i18n/ru.ini
|
||||||
res/i18n/es.ini
|
res/i18n/es.ini
|
||||||
res/i18n/cs.ini
|
res/i18n/cs.ini
|
||||||
|
res/i18n/de.ini
|
||||||
res/hdpi/hdpi_configure.png
|
res/hdpi/hdpi_configure.png
|
||||||
res/hdpi/hdpi_debug-run.png
|
res/hdpi/hdpi_debug-run.png
|
||||||
|
res/hdpi/hdpi_debug-pause.png
|
||||||
|
res/hdpi/hdpi_debug-stop.png
|
||||||
|
res/hdpi/hdpi_debug-restart.png
|
||||||
|
res/hdpi/hdpi_debug-step-into.png
|
||||||
|
res/hdpi/hdpi_debug-step-out.png
|
||||||
|
res/hdpi/hdpi_debug-step-over.png
|
||||||
res/hdpi/hdpi_document-close.png
|
res/hdpi/hdpi_document-close.png
|
||||||
res/hdpi/hdpi_document-open-recent.png
|
res/hdpi/hdpi_document-open-recent.png
|
||||||
res/hdpi/hdpi_document-open.png
|
res/hdpi/hdpi_document-open.png
|
||||||
|
|