A dependency-free chess game editor library written in C++.
Find a file
2023-01-19 13:06:36 +01:00
examples/wxWidgets Integrate CMI 2023-01-19 13:06:36 +01:00
libs Integrate CMI 2023-01-19 13:06:36 +01:00
src Integrate CMI 2023-01-19 13:06:36 +01:00
.gitignore Create project 2022-02-12 19:13:34 +01:00
.gitmodules Integrate CMI 2023-01-19 13:06:36 +01:00
CMakeLists.txt Integrate CMI 2023-01-19 13:06:36 +01:00
LICENSE Create project 2022-02-12 19:13:34 +01:00
README.md Decouple editor event from the Draw class 2023-01-01 17:25:27 +01:00

license

cgeditor: Chess Game Editor

cgeditor is a dependency-free chess game editor library written in C++. It can be used with any library that provides 2D canvas drawing and mouse/keyboard events.

Features

  • Show move, move number, variations, NAGs, comments etc.
  • Delete, Promote and Set as main line menu entries
  • Handle pieces icons
  • Its graphical appareance is entirely customizable

Architecture

To run cgeditor 2 classes need to be extended:

  • CGEditor (To draw and handle events)
  • CGEHalfMove (The data structure displayed by the editor)

See example for more informations.

Example

An example based on wxWidgets is available in the examples/ folder: wxWidgets