65 lines
2.1 KiB
C
65 lines
2.1 KiB
C
//
|
|
// draw.h - This file contains definitions for bb column-drawing code.
|
|
//
|
|
|
|
#ifndef FILE_COLUMNS__H
|
|
#define FILE_COLUMNS__H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "types.h"
|
|
|
|
// Colors (using ANSI escape sequences):
|
|
#define TITLE_COLOR "\033[37;1m"
|
|
#define NORMAL_COLOR "\033[37m"
|
|
#define CURSOR_COLOR "\033[43;30;1m"
|
|
#define LINK_COLOR "\033[35m"
|
|
#define DIR_COLOR "\033[34m"
|
|
#define EXECUTABLE_COLOR "\033[31m"
|
|
#define SCROLLBAR_FG "\033[48;5;247m "
|
|
#define SCROLLBAR_BG "\033[48;5;239m "
|
|
|
|
#define TIME_FMT " %T %D "
|
|
#define SELECTED_INDICATOR " \033[31;7m \033[0m"
|
|
#define NOT_SELECTED_INDICATOR " "
|
|
#define SORT_INDICATOR "↓"
|
|
#define RSORT_INDICATOR "↑"
|
|
|
|
typedef struct {
|
|
const char *name;
|
|
void (*render)(entry_t*, const char*, char*, int);
|
|
unsigned int stretchy : 1;
|
|
} column_t;
|
|
|
|
typedef enum {
|
|
COL_NONE = 0,
|
|
COL_NAME = 'n',
|
|
COL_SIZE = 's',
|
|
COL_PERM = 'p',
|
|
COL_MTIME = 'm',
|
|
COL_CTIME = 'c',
|
|
COL_ATIME = 'a',
|
|
COL_RANDOM = 'r',
|
|
COL_SELECTED = '*',
|
|
} column_e;
|
|
|
|
void draw_column_labels(FILE *out, char columns[], char *sort, int width);
|
|
void draw_row(FILE *out, char columns[], entry_t *entry, const char *color, int width);
|
|
int *get_column_widths(char columns[], int width);
|
|
void render(FILE *out, bb_t *bb);
|
|
|
|
void col_mreltime(entry_t *entry, const char *color, char *buf, int width);
|
|
void col_areltime(entry_t *entry, const char *color, char *buf, int width);
|
|
void col_creltime(entry_t *entry, const char *color, char *buf, int width);
|
|
void col_mtime(entry_t *entry, const char *color, char *buf, int width);
|
|
void col_atime(entry_t *entry, const char *color, char *buf, int width);
|
|
void col_ctime(entry_t *entry, const char *color, char *buf, int width);
|
|
void col_selected(entry_t *entry, const char *color, char *buf, int width);
|
|
void col_perm(entry_t *entry, const char *color, char *buf, int width);
|
|
void col_random(entry_t *entry, const char *color, char *buf, int width);
|
|
void col_size(entry_t *entry, const char *color, char *buf, int width);
|
|
void col_name(entry_t *entry, const char *color, char *buf, int width);
|
|
|
|
#endif
|
|
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1
|