0

I want to incorporate Adobe Bracket in my python-pyside program. Can it be done? If not, are there any other open source text editor that can be incorporate into my pyside program.

Please, also tell me how it can be done?

1 Answers1

1

Adobe Bracket is a html/css/js editor hosted in a CEF browser. You can embed CEF browser in Python using CEF Python, so theoretically it should be possible. Here is an example of embedding CEF browser in PySide app.

Adobe Bracket's javascript code is communicating with C++ via javascript bindings (to save a file to a hard drive for example), so it would be required to reimplement some set of features in Python.

Czarek Tomczak
  • 20,079
  • 5
  • 49
  • 56