Salome HOME
PyEditor refactoring
authorvsr <vsr@opencascade.com>
Thu, 28 Jul 2016 13:45:47 +0000 (16:45 +0300)
committervsr <vsr@opencascade.com>
Tue, 2 Aug 2016 12:53:35 +0000 (15:53 +0300)
commit697be73cb19b395786e76773a7e4e304c8cfa476
treecb6383f9a4f24e1fca58c136d707947043fc73d0
parent06bae2e030b5f8268c39df834a5ec56552ac33e3
PyEditor refactoring
* Remove dependency on Qtx in PyEditor package
* Redesign editor class;
* Change the way preferences are managed;
* Add main window class for PyEditor;
* Add pyeditor standalone executable;
* Redesign build procedure for PyEditor;
* Move PyEditor to standalone project in tools directory;
* Add Python wrappings (via sip) for PyEditor widget.
88 files changed:
src/CMakeLists.txt
src/LightApp/LightApp_Application.cxx
src/PyEditor/CMakeLists.txt [deleted file]
src/PyEditor/PyEditor.h [deleted file]
src/PyEditor/PyEditor_Editor.cxx [deleted file]
src/PyEditor/PyEditor_Editor.h [deleted file]
src/PyEditor/PyEditor_LineNumberArea.cxx [deleted file]
src/PyEditor/PyEditor_LineNumberArea.h [deleted file]
src/PyEditor/PyEditor_PyHighlighter.cxx [deleted file]
src/PyEditor/PyEditor_PyHighlighter.h [deleted file]
src/PyEditor/PyEditor_Settings.cxx [deleted file]
src/PyEditor/PyEditor_Settings.h [deleted file]
src/PyEditor/PyEditor_SettingsDlg.cxx [deleted file]
src/PyEditor/PyEditor_SettingsDlg.h [deleted file]
src/PyEditor/resources/translations/PyEditor_msg_en.ts [deleted file]
src/PyEditor/resources/translations/PyEditor_msg_fr.ts [deleted file]
src/PyEditor/resources/translations/PyEditor_msg_ja.ts [deleted file]
src/PyViewer/CMakeLists.txt
src/PyViewer/PyViewer.cxx [deleted file]
src/PyViewer/PyViewer_Settings.cxx [new file with mode: 0644]
src/PyViewer/PyViewer_Settings.h [new file with mode: 0644]
src/PyViewer/PyViewer_ViewModel.cxx
src/PyViewer/PyViewer_ViewModel.h
src/PyViewer/PyViewer_ViewWindow.cxx
src/PyViewer/PyViewer_ViewWindow.h
src/PyViewer/resources/PyEditor.qrc [deleted file]
src/PyViewer/resources/PyViewer_images.ts [new file with mode: 0644]
src/PyViewer/resources/PyViewer_msg_en.ts [new file with mode: 0644]
src/PyViewer/resources/PyViewer_msg_fr.ts [new file with mode: 0644]
src/PyViewer/resources/PyViewer_msg_ja.ts [new file with mode: 0644]
src/PyViewer/resources/images/py_browser.png [deleted file]
src/PyViewer/resources/images/py_close.png [deleted file]
src/PyViewer/resources/images/py_copy.png [deleted file]
src/PyViewer/resources/images/py_cut.png [deleted file]
src/PyViewer/resources/images/py_delete.png [deleted file]
src/PyViewer/resources/images/py_new.png [deleted file]
src/PyViewer/resources/images/py_open.png [deleted file]
src/PyViewer/resources/images/py_paste.png [deleted file]
src/PyViewer/resources/images/py_preferences.png [deleted file]
src/PyViewer/resources/images/py_redo.png [deleted file]
src/PyViewer/resources/images/py_save.png [deleted file]
src/PyViewer/resources/images/py_save_as.png [deleted file]
src/PyViewer/resources/images/py_select_all.png [deleted file]
src/PyViewer/resources/images/py_undo.png [deleted file]
src/PyViewer/resources/translations/PyViewer_msg_en.ts [deleted file]
src/PyViewer/resources/translations/PyViewer_msg_fr.ts [deleted file]
src/PyViewer/resources/translations/PyViewer_msg_ja.ts [deleted file]
tools/CMakeLists.txt
tools/PyEditor/CMakeLists.txt [new file with mode: 0644]
tools/PyEditor/src/CMakeLists.txt [new file with mode: 0644]
tools/PyEditor/src/PyEditor.cxx [new file with mode: 0644]
tools/PyEditor/src/PyEditor.h [new file with mode: 0644]
tools/PyEditor/src/PyEditor_Editor.cxx [new file with mode: 0644]
tools/PyEditor/src/PyEditor_Editor.h [new file with mode: 0644]
tools/PyEditor/src/PyEditor_LineNumberArea.cxx [new file with mode: 0644]
tools/PyEditor/src/PyEditor_LineNumberArea.h [new file with mode: 0644]
tools/PyEditor/src/PyEditor_PyHighlighter.cxx [new file with mode: 0644]
tools/PyEditor/src/PyEditor_PyHighlighter.h [new file with mode: 0644]
tools/PyEditor/src/PyEditor_Settings.cxx [new file with mode: 0644]
tools/PyEditor/src/PyEditor_Settings.h [new file with mode: 0644]
tools/PyEditor/src/PyEditor_SettingsDlg.cxx [new file with mode: 0644]
tools/PyEditor/src/PyEditor_SettingsDlg.h [new file with mode: 0644]
tools/PyEditor/src/PyEditor_StdSettings.cxx [new file with mode: 0644]
tools/PyEditor/src/PyEditor_StdSettings.h [new file with mode: 0644]
tools/PyEditor/src/PyEditor_Window.cxx [new file with mode: 0644]
tools/PyEditor/src/PyEditor_Window.h [new file with mode: 0644]
tools/PyEditor/src/python/CMakeLists.txt [new file with mode: 0644]
tools/PyEditor/src/python/PyEditorPy.sip [new file with mode: 0644]
tools/PyEditor/src/resources/PyEditor.qrc [new file with mode: 0644]
tools/PyEditor/src/resources/about.txt [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_copy.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_cut.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_delete.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_editor.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_exit.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_help.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_new.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_open.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_paste.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_preferences.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_redo.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_save.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_save_as.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_select_all.png [new file with mode: 0644]
tools/PyEditor/src/resources/images/py_undo.png [new file with mode: 0644]
tools/PyEditor/src/resources/translations/PyEditor_msg_en.ts [new file with mode: 0644]
tools/PyEditor/src/resources/translations/PyEditor_msg_fr.ts [new file with mode: 0644]
tools/PyEditor/src/resources/translations/PyEditor_msg_ja.ts [new file with mode: 0644]