mirror of
https://gitlab.com/manzerbredes/cgeditor.git
synced 2025-04-06 10:06:27 +02:00
Debug and clean editor
This commit is contained in:
parent
e9d6188092
commit
cba432b023
2 changed files with 4 additions and 6 deletions
|
@ -71,8 +71,6 @@ typedef struct Status {
|
||||||
double MarginBarWidth = 50;
|
double MarginBarWidth = 50;
|
||||||
double ScrollbarWidth = 30;
|
double ScrollbarWidth = 30;
|
||||||
double MoveIconWidth = 25;
|
double MoveIconWidth = 25;
|
||||||
double MenuX, MenuY;
|
|
||||||
double MoveX, MoveY;
|
|
||||||
std::uint16_t CommentLinePerRow = 2;
|
std::uint16_t CommentLinePerRow = 2;
|
||||||
/// @brief Ask the editor to scroll for a specific amout of pixels
|
/// @brief Ask the editor to scroll for a specific amout of pixels
|
||||||
double EventVScroll = 0, EventHScroll = 0;
|
double EventVScroll = 0, EventHScroll = 0;
|
||||||
|
|
|
@ -60,7 +60,7 @@ std::uint32_t MoveTable::UpdateMoves(CGEHalfMove *m, std::uint32_t line,
|
||||||
if (m->IsBlack) {
|
if (m->IsBlack) {
|
||||||
move_bound.prop |= Property::Black;
|
move_bound.prop |= Property::Black;
|
||||||
}
|
}
|
||||||
move_bound.x = status->MarginBarWidth + status->MoveX +
|
move_bound.x = status->MarginBarWidth +
|
||||||
status->MoveWidth * (indent + indent_black) +
|
status->MoveWidth * (indent + indent_black) +
|
||||||
((indent + 1) / 2 * status->MarginBarWidth);
|
((indent + 1) / 2 * status->MarginBarWidth);
|
||||||
move_bound.y = status->MoveHeight * line;
|
move_bound.y = status->MoveHeight * line;
|
||||||
|
@ -190,7 +190,7 @@ std::uint32_t MoveTable::DrawComment(CGEHalfMove *m, std::uint32_t line,
|
||||||
const char &indent_black) {
|
const char &indent_black) {
|
||||||
// Show three dots
|
// Show three dots
|
||||||
if (!m->IsBlack) {
|
if (!m->IsBlack) {
|
||||||
DRAW_DOTS(status->MarginBarWidth + status->MoveX +
|
DRAW_DOTS(status->MarginBarWidth +
|
||||||
status->MoveWidth * (indent + 1) +
|
status->MoveWidth * (indent + 1) +
|
||||||
((indent + 1) / 2 * status->MarginBarWidth),
|
((indent + 1) / 2 * status->MarginBarWidth),
|
||||||
status->MoveHeight * line);
|
status->MoveHeight * line);
|
||||||
|
@ -237,7 +237,7 @@ std::uint32_t MoveTable::DrawVariations(CGEHalfMove *m, std::uint32_t line,
|
||||||
const char &indent_black) {
|
const char &indent_black) {
|
||||||
// Show three dots next to move if white turn
|
// Show three dots next to move if white turn
|
||||||
if ((m->variations.size() == 0) && !m->IsBlack) {
|
if ((m->variations.size() == 0) && !m->IsBlack) {
|
||||||
DRAW_DOTS(status->MarginBarWidth + status->MoveX +
|
DRAW_DOTS(status->MarginBarWidth +
|
||||||
status->MoveWidth * (indent + 1),
|
status->MoveWidth * (indent + 1),
|
||||||
status->MoveHeight * line);
|
status->MoveHeight * line);
|
||||||
}
|
}
|
||||||
|
@ -266,7 +266,7 @@ std::uint32_t MoveTable::DrawVariations(CGEHalfMove *m, std::uint32_t line,
|
||||||
{
|
{
|
||||||
Element e;
|
Element e;
|
||||||
e.prop = Property::Rectangle | Property::Button;
|
e.prop = Property::Rectangle | Property::Button;
|
||||||
e.x = (status->MarginBarWidth + status->MoveX +
|
e.x = (status->MarginBarWidth +
|
||||||
status->MoveWidth * indent) +
|
status->MoveWidth * indent) +
|
||||||
status->MoveWidth - std::ceil(status->MoveHeight / 2) -
|
status->MoveWidth - std::ceil(status->MoveHeight / 2) -
|
||||||
std::ceil(status->MoveHeight / 4);
|
std::ceil(status->MoveHeight / 4);
|
||||||
|
|
Loading…
Add table
Reference in a new issue