-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SEBWIN-926: Implemented custom drag handler to suppress drag&drop beh…
…avior.
- Loading branch information
Showing
10 changed files
with
167 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
* Copyright (c) 2024 ETH Zürich, IT Services | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
using System.Collections.Generic; | ||
using CefSharp; | ||
using CefSharp.Enums; | ||
|
||
namespace SafeExamBrowser.Browser.Handlers | ||
{ | ||
internal class DragHandler : IDragHandler | ||
{ | ||
public bool OnDragEnter(IWebBrowser chromiumWebBrowser, IBrowser browser, IDragData dragData, DragOperationsMask mask) | ||
{ | ||
return true; | ||
} | ||
|
||
public void OnDraggableRegionsChanged(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IList<DraggableRegion> regions) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
SafeExamBrowser.Browser/Wrapper/Events/DragEnterEventHandler.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* Copyright (c) 2024 ETH Zürich, IT Services | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
using CefSharp; | ||
using CefSharp.Enums; | ||
|
||
namespace SafeExamBrowser.Browser.Wrapper.Events | ||
{ | ||
internal delegate void DragEnterEventHandler(IWebBrowser webBrowser, IBrowser browser, IDragData dragData, DragOperationsMask mask, GenericEventArgs args); | ||
} |
15 changes: 15 additions & 0 deletions
15
SafeExamBrowser.Browser/Wrapper/Events/DraggableRegionsChangedEventHandler.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* Copyright (c) 2024 ETH Zürich, IT Services | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
using System.Collections.Generic; | ||
using CefSharp; | ||
|
||
namespace SafeExamBrowser.Browser.Wrapper.Events | ||
{ | ||
internal delegate void DraggableRegionsChangedEventHandler(IWebBrowser webBrowser, IBrowser browser, IFrame frame, IList<DraggableRegion> regions); | ||
} |
56 changes: 56 additions & 0 deletions
56
SafeExamBrowser.Browser/Wrapper/Handlers/DragHandlerSwitch.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Copyright (c) 2024 ETH Zürich, IT Services | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
using System.Collections.Generic; | ||
using CefSharp; | ||
using CefSharp.Enums; | ||
using CefSharp.WinForms; | ||
using CefSharp.WinForms.Host; | ||
using SafeExamBrowser.Browser.Wrapper.Events; | ||
|
||
namespace SafeExamBrowser.Browser.Wrapper.Handlers | ||
{ | ||
internal class DragHandlerSwitch : IDragHandler | ||
{ | ||
public bool OnDragEnter(IWebBrowser webBrowser, IBrowser browser, IDragData dragData, DragOperationsMask mask) | ||
{ | ||
var args = new GenericEventArgs(); | ||
|
||
if (browser.IsPopup) | ||
{ | ||
var control = ChromiumHostControl.FromBrowser(browser) as CefSharpPopupControl; | ||
|
||
control?.OnDragEnter(webBrowser, browser, dragData, mask, args); | ||
} | ||
else | ||
{ | ||
var control = ChromiumWebBrowser.FromBrowser(browser) as CefSharpBrowserControl; | ||
|
||
control?.OnDragEnter(webBrowser, browser, dragData, mask, args); | ||
} | ||
|
||
return args.Value; | ||
} | ||
|
||
public void OnDraggableRegionsChanged(IWebBrowser webBrowser, IBrowser browser, IFrame frame, IList<DraggableRegion> regions) | ||
{ | ||
if (browser.IsPopup) | ||
{ | ||
var control = ChromiumHostControl.FromBrowser(browser) as CefSharpPopupControl; | ||
|
||
control?.OnDraggableRegionsChanged(webBrowser, browser, frame, regions); | ||
} | ||
else | ||
{ | ||
var control = ChromiumWebBrowser.FromBrowser(browser) as CefSharpBrowserControl; | ||
|
||
control?.OnDraggableRegionsChanged(webBrowser, browser, frame, regions); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters