├── CMakeLists.txt ├── LICENSE ├── README.md ├── chipEditor_ru_RU.ts ├── delegates.cpp ├── delegates.h ├── ezp2023_fle_editor.pro ├── ezp2023_fle_editor.pro.user ├── ezp_chip_editor.cpp ├── ezp_chip_editor.h ├── ezp_chip_editor.ui ├── img ├── arrow.png ├── chipEdit64.png ├── del.png ├── excel.png ├── exit.png ├── ezp_editor.png ├── import.png ├── open.png ├── plus.jpeg ├── plus.png ├── redo.png ├── save.png ├── tocsv.png └── undo.png ├── languages └── chipEditor_ru_RU.qm ├── main.cpp ├── other └── ezp_editor.desktop └── resources.qrc /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/README.md -------------------------------------------------------------------------------- /chipEditor_ru_RU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/chipEditor_ru_RU.ts -------------------------------------------------------------------------------- /delegates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/delegates.cpp -------------------------------------------------------------------------------- /delegates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/delegates.h -------------------------------------------------------------------------------- /ezp2023_fle_editor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/ezp2023_fle_editor.pro -------------------------------------------------------------------------------- /ezp2023_fle_editor.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/ezp2023_fle_editor.pro.user -------------------------------------------------------------------------------- /ezp_chip_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/ezp_chip_editor.cpp -------------------------------------------------------------------------------- /ezp_chip_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/ezp_chip_editor.h -------------------------------------------------------------------------------- /ezp_chip_editor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/ezp_chip_editor.ui -------------------------------------------------------------------------------- /img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/arrow.png -------------------------------------------------------------------------------- /img/chipEdit64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/chipEdit64.png -------------------------------------------------------------------------------- /img/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/del.png -------------------------------------------------------------------------------- /img/excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/excel.png -------------------------------------------------------------------------------- /img/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/exit.png -------------------------------------------------------------------------------- /img/ezp_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/ezp_editor.png -------------------------------------------------------------------------------- /img/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/import.png -------------------------------------------------------------------------------- /img/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/open.png -------------------------------------------------------------------------------- /img/plus.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/plus.jpeg -------------------------------------------------------------------------------- /img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/plus.png -------------------------------------------------------------------------------- /img/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/redo.png -------------------------------------------------------------------------------- /img/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/save.png -------------------------------------------------------------------------------- /img/tocsv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/tocsv.png -------------------------------------------------------------------------------- /img/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/img/undo.png -------------------------------------------------------------------------------- /languages/chipEditor_ru_RU.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/languages/chipEditor_ru_RU.qm -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/main.cpp -------------------------------------------------------------------------------- /other/ezp_editor.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/other/ezp_editor.desktop -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbigmdm/EZP2019-EZP2025_chip_data_editor/HEAD/resources.qrc --------------------------------------------------------------------------------