summaryrefslogtreecommitdiffstats
path: root/src/cmds/cmds.h
blob: 267abb7373b7a523f67cb573f5df34b93cd33c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*******************************************************************************
 * Copyright (c) 2013-2021, Andrés Martinelli <andmarti@gmail.com>             *
 * All rights reserved.                                                        *
 *                                                                             *
 * This file is a part of sc-im                                                *
 *                                                                             *
 * sc-im is a spreadsheet program that is based on sc. The original authors    *
 * of sc are James Gosling and Mark Weiser, and mods were later added by       *
 * Chuck Martin.                                                               *
 *                                                                             *
 * Redistribution and use in source and binary forms, with or without          *
 * modification, are permitted provided that the following conditions are met: *
 * 1. Redistributions of source code must retain the above copyright           *
 *    notice, this list of conditions and the following disclaimer.            *
 * 2. Redistributions in binary form must reproduce the above copyright        *
 *    notice, this list of conditions and the following disclaimer in the      *
 *    documentation and/or other materials provided with the distribution.     *
 * 3. All advertising materials mentioning features or use of this software    *
 *    must display the following acknowledgement:                              *
 *    This product includes software developed by Andrés Martinelli            *
 *    <andmarti@gmail.com>.                                                    *
 * 4. Neither the name of the Andrés Martinelli nor the                        *
 *   names of other contributors may be used to endorse or promote products    *
 *   derived from this software without specific prior written permission.     *
 *                                                                             *
 * THIS SOFTWARE IS PROVIDED BY ANDRES MARTINELLI ''AS IS'' AND ANY            *
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED   *
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE      *
 * DISCLAIMED. IN NO EVENT SHALL ANDRES MARTINELLI BE LIABLE FOR ANY           *
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES  *
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;*
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND *
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT  *
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE       *
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.           *
 *******************************************************************************/

/**
 * \file cmds.h
 * \author Andrés Martinelli <andmarti@gmail.com>
 * \date 2021-05-02
 * \brief Header file for cmds.c
 */

#include <wchar.h>
#include "../macros.h"
#include "../sc.h"

extern char insert_edit_submode;       // insert or edit submode
extern wchar_t inputline[BUFFERSIZE];
extern int inputline_pos;
extern int real_inputline_pos;
extern struct block * lastcmd_buffer;

int is_single_command (struct block * buf, long timeout);
void enter_cell_content(struct sheet * sh, int r, int c, char * submode,  wchar_t * content);
void send_to_interp(wchar_t * oper);   // Send command to interpreter
void chg_mode(char strcmd);            // Change mode function
int modcheck();                        // Verify if open file has been modified
int savefile();                        // Save open file
void copyent(struct ent * n, struct sheet * sh_p, struct ent * p, int dr, int dc, int r1, int c1, int r2, int c2, int special);
void flush_saved();
void insert_row(struct sheet * sh, int after);
void insert_col(struct sheet * sh, int after);
void deleterow(struct sheet * sh, int row, int mult);
void int_deleterow(struct sheet * sh, int row, int mult);
void deletecol(struct sheet * sh, int col, int mult);
void int_deletecol(struct sheet * sh, int col, int mult);
void formatcol(struct sheet * sh, int c);
void del_selected_cells(struct sheet * sh);
struct ent * lookat(struct sheet * sh, int row, int col); // return pointer to 'ent' of cell. Create it if it doesn't exist
void cleanent(struct ent * p);         // Initialize 'ent' to zero. Won't free memory
void clearent(struct ent * v);         // free 'ent' memory.
int locked_cell(struct sheet * sh, int r, int c);
int any_locked_cells(struct sheet * sh, int r1, int c1, int r2, int c2);
void scroll_left (struct sheet * sh, int n);
void scroll_right (struct sheet * sh, int n);
void scroll_down(struct sheet * sh, int n);
void scroll_up(struct sheet * sh, int n);
struct ent * tick(char c);             // 'tick' ( ' ) command
struct ent * left_limit(struct sheet * sh);
struct ent * right_limit(struct sheet * sh, int row);
struct ent * goto_top(struct sheet * sh);
struct ent * goto_bottom(struct sheet * sh);
struct ent * forw_row(struct sheet * sh, int arg);
struct ent * back_row(struct sheet * sh, int arg);
struct ent * forw_col(struct sheet * sh, int arg);
struct ent * back_col(struct sheet * sh, int arg);
struct ent * go_home(struct sheet * sh);
struct ent * go_end(struct sheet * sh);
struct ent * go_forward(struct sheet * sh);
struct ent * go_backward(struct sheet * sh);
struct ent * vert_top(struct sheet * sh);
struct ent * vert_middle(struct sheet * sh);
struct ent * vert_bottom(struct sheet * sh);
struct ent * go_bol(struct sheet * sh);
struct ent * go_eol(struct sheet * sh);
struct ent * horiz_middle(struct sheet * sh);
struct ent * goto_last_col(struct sheet * sh);
void select_inner_range(struct sheet * sh, int * vir_tlrow, int * vir_tlcol, int * vir_brrow, int * vir_brcol);
void ljustify(struct sheet * sh, int sr, int sc, int er, int ec);
void rjustify(struct sheet * sh, int sr, int sc, int er, int ec);
void center(struct sheet * sh, int sr, int sc, int er, int ec);
void doformat(struct sheet * sh, int c1, int c2, int w, int p, int r);
void dorowformat(struct sheet * sh, int r, unsigned char size);
int etype(struct enode *e);
void erase_area(struct sheet * sh, int sr, int sc, int er, int ec, int ignorelock, int mark_as_deleted);
void auto_fit(struct sheet * sh, int ci, int cf, int min);
void valueize_area(struct sheet * sh, int sr, int sc, int er, int ec);
void sync_refs(struct sheet * sh);
void syncref(struct sheet * sh, struct enode * e);
int fcopy(struct sheet * sh, char * action);
int fsum(struct sheet * sh);
int pad(struct sheet * sh, int n, int r1, int c1, int r2, int c2);
int convert_string_to_number(int r0, int c0, int rn, int cn);

void fix_row_hidden(struct sheet * sh, int deltar, int ri, int rf);
void fix_col_hidden(struct sheet * sh, int deltac, int ci, int cf);
void fix_row_frozen(struct sheet * sh, int deltar, int ri, int rf);
void fix_col_frozen(struct sheet * sh, int deltac, int ci, int cf);

void mark_ent_as_deleted(struct ent * p, int del);
int calc_mobile_rows(struct sheet * sh, int *);
int calc_mobile_cols(struct sheet * sh, int *);

void pad_and_align (char * str_value, char * numeric_value, int col_width, int align, int padding, wchar_t * str_out, int rowfmt);