mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-17 05:54:59 +02:00
38 lines
710 B
C
38 lines
710 B
C
/*
|
|
* history.h
|
|
* Copyright (C) 2024 Kovid Goyal <kovid at kovidgoyal.net>
|
|
*
|
|
* Distributed under terms of the GPL3 license.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "line.h"
|
|
|
|
typedef struct {
|
|
GPUCell *gpu_cells;
|
|
CPUCell *cpu_cells;
|
|
LineAttrs *line_attrs;
|
|
} HistoryBufSegment;
|
|
|
|
typedef struct {
|
|
void *ringbuf;
|
|
size_t maximum_size;
|
|
bool rewrap_needed;
|
|
} PagerHistoryBuf;
|
|
|
|
|
|
typedef struct {
|
|
PyObject_HEAD
|
|
|
|
index_type xnum, ynum, num_segments;
|
|
HistoryBufSegment *segments;
|
|
PagerHistoryBuf *pagerhist;
|
|
Line *line;
|
|
TextCache *text_cache;
|
|
index_type start_of_data, count;
|
|
} HistoryBuf;
|
|
|
|
|
|
HistoryBuf* alloc_historybuf(unsigned int, unsigned int, unsigned int, TextCache *tc);
|