feat: spreadsheet cell resizing

This commit is contained in:
2026-03-06 16:46:15 +01:00
parent 3985188baa
commit 729c227b35
15 changed files with 194 additions and 5 deletions
+58
View File
@@ -51,6 +51,11 @@ TrueTypeFont* g_font_bold = nullptr;
bool g_fmt_dropdown_open = false;
bool g_col_resizing = false;
int g_col_resize_idx = -1;
int g_col_resize_start_x = 0;
int g_col_resize_start_w = 0;
UndoEntry* g_undo[UNDO_MAX + 1];
int g_undo_count = 0;
int g_undo_pos = 0;
@@ -499,6 +504,58 @@ extern "C" void _start() {
uint8_t btns = ev.mouse.buttons;
uint8_t prev = ev.mouse.prev_buttons;
bool clicked = (btns & 1) && !(prev & 1);
bool left_held = (btns & 1);
bool left_released = !(btns & 1) && (prev & 1);
int pbh = g_pathbar_open ? PATHBAR_H : 0;
int header_y = TOOLBAR_H + pbh + FORMULA_BAR_H;
// Update cursor style: resize_h when hovering near column border in header
{
int cursor = 0; // arrow
if (g_col_resizing) {
cursor = 1; // resize_h while dragging
} else if (my >= header_y && my < header_y + COL_HEADER_H) {
for (int c = 0; c < MAX_COLS; c++) {
int cx = col_x(c) - g_scroll_x + g_col_widths[c] - 1;
if (mx >= cx - COL_RESIZE_GRAB && mx <= cx + COL_RESIZE_GRAB) {
cursor = 1; // resize_h
break;
}
}
}
montauk::win_setcursor(win_id, cursor);
}
// Column resize: drag in progress
if (g_col_resizing) {
if (left_held) {
int delta = mx - g_col_resize_start_x;
int new_w = g_col_resize_start_w + delta;
if (new_w < MIN_COL_W) new_w = MIN_COL_W;
g_col_widths[g_col_resize_idx] = new_w;
clamp_scroll();
redraw = true;
}
if (left_released) {
g_col_resizing = false;
}
goto done_mouse;
}
// Column resize: start drag (click near right edge of column header)
if (clicked && my >= header_y && my < header_y + COL_HEADER_H) {
for (int c = 0; c < MAX_COLS; c++) {
int cx = col_x(c) - g_scroll_x + g_col_widths[c] - 1;
if (mx >= cx - COL_RESIZE_GRAB && mx <= cx + COL_RESIZE_GRAB) {
g_col_resizing = true;
g_col_resize_idx = c;
g_col_resize_start_x = mx;
g_col_resize_start_w = g_col_widths[c];
goto done_mouse;
}
}
}
if (clicked) {
if (handle_fmt_dropdown_click(mx, my)) {
@@ -526,6 +583,7 @@ extern "C" void _start() {
redraw = true;
}
}
done_mouse:
if (redraw) {
render(pixels);
+11 -2
View File
@@ -249,8 +249,17 @@ void render(uint32_t* pixels) {
else
text_x = x + 6;
if (text_x >= ROW_HEADER_W - tw && text_x < g_win_w)
cf->draw_to_buffer(pixels, g_win_w, g_win_h, text_x, y + (ROW_H - FONT_SIZE) / 2, cell->display, col, FONT_SIZE);
{
// Clip text to cell boundaries
int cell_left = x < ROW_HEADER_W ? ROW_HEADER_W : x;
int cell_right = x + g_col_widths[c] - 1;
if (cell_right > g_win_w) cell_right = g_win_w;
if (text_x < g_win_w && cell_left < cell_right)
cf->draw_to_buffer_clipped(pixels, g_win_w, g_win_h,
text_x, y + (ROW_H - FONT_SIZE) / 2,
cell->display, col, FONT_SIZE,
cell_left, y, cell_right - cell_left, ROW_H);
}
}
// Cell right border
+7
View File
@@ -38,7 +38,9 @@ static constexpr int TB_BTN_RAD = 3;
static constexpr int MAX_COLS = 26; // A-Z
static constexpr int MAX_ROWS = 100;
static constexpr int DEF_COL_W = 100;
static constexpr int MIN_COL_W = 30;
static constexpr int ROW_H = 26;
static constexpr int COL_RESIZE_GRAB = 5; // pixels from border edge for grab zone
static constexpr int CELL_TEXT_MAX = 128;
static constexpr int FONT_SIZE = 18;
@@ -163,6 +165,11 @@ extern TrueTypeFont* g_font_bold;
extern bool g_fmt_dropdown_open;
extern bool g_col_resizing;
extern int g_col_resize_idx;
extern int g_col_resize_start_x;
extern int g_col_resize_start_w;
extern UndoEntry* g_undo[UNDO_MAX + 1];
extern int g_undo_count;
extern int g_undo_pos;