implement drag&drop files to application window - issue #24

This commit is contained in:
Vadim Lopatin 2015-02-13 13:38:07 +03:00
parent 2fe2506eca
commit f60032cc4a
2 changed files with 15 additions and 1 deletions

View File

@ -4,7 +4,6 @@ public import dlangui.core.events;
import dlangui.widgets.editors;
enum IDEActions : int {
None = 0,
//ProjectOpen = 1010000,
FileNew = 1010000,
FileNewWorkspace,
@ -43,6 +42,12 @@ enum IDEActions : int {
ProjectFolderRenameItem,
}
__gshared static this() {
// register editor action names and ids
registerActionEnum!IDEActions();
}
const Action ACTION_PROJECT_FOLDER_ADD_ITEM = new Action(IDEActions.ProjectFolderAddItem, "MENU_PROJECT_FOLDER_ADD_ITEM"c);
const Action ACTION_PROJECT_FOLDER_OPEN_ITEM = new Action(IDEActions.ProjectFolderOpenItem, "MENU_PROJECT_FOLDER_OPEN_ITEM"c);
const Action ACTION_PROJECT_FOLDER_REMOVE_ITEM = new Action(IDEActions.ProjectFolderRemoveItem, "MENU_PROJECT_FOLDER_REMOVE_ITEM"c);
@ -87,3 +92,4 @@ const Action ACTION_HELP_ABOUT = new Action(IDEActions.HelpAbout, "MENU_HELP_ABO
const Action ACTION_WINDOW_CLOSE_ALL_DOCUMENTS = new Action(IDEActions.WindowCloseAllDocuments, "MENU_WINDOW_CLOSE_ALL_DOCUMENTS"c);
const Action ACTION_CREATE_NEW_WORKSPACE = new Action(IDEActions.CreateNewWorkspace, "Create new workspace"d);
const Action ACTION_ADD_TO_CURRENT_WORKSPACE = new Action(IDEActions.AddToCurrentWorkspace, "Add to current workspace"d);

View File

@ -66,6 +66,7 @@ class IDEFrame : AppFrame {
this(Window window) {
super();
window.mainWidget = this;
window.onFilesDropped = &onFilesDropped;
}
override protected void init() {
@ -615,6 +616,13 @@ class IDEFrame : AppFrame {
Builder op = new Builder(this, currentWorkspace.startupProject, _logPanel, currentWorkspace.buildConfiguration, buildOp, false);
setBackgroundOperation(op);
}
void onFilesDropped(string[] filenames) {
//Log.d("onFilesDropped(", filenames, ")");
for (int i = 0; i < filenames.length; i++) {
openSourceFile(filenames[i], null, i == 0);
}
}
}
Widget createAboutWidget()