X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=edit.h;h=3beed6501f7bff5ef4afb3903d9737c604d3c795;hb=b1c882049db5d6d7d5770134cd93e14934ace6c1;hp=5a8db0735b30fb5c58d65e822625173bdbe4a82d;hpb=0dd1d38a222a5e2e95879ab2397a83d4108d3379;p=pkg%2Fabook.git diff --git a/edit.h b/edit.h index 5a8db07..3beed65 100644 --- a/edit.h +++ b/edit.h @@ -1,35 +1,29 @@ #ifndef _EDIT_H #define _EDIT_H +#include "misc.h" /* for rotate_dir enum definition */ + + void edit_item(int item); void get_first_email(char *str, int item); +void roll_emails(int item, enum rotate_dir dir); void add_item(); +int parse_date_string(char *s, int *day, int *month, int *year); #define EDITW_COLS (COLS - 6) #define EDITW_LINES (LINES - 5) #define EDITW_TOP 2 #define EDITW_X 3 -#define EDITOR_HELPLINE "?:help c:contact a:address p:phone o:other" +#define EDITOR_HELPLINE N_("?:help q:quit editor") #define TABLINE 1 -#define MAX_TAB_FIELDS 7 - #define TAB_COLON_POS 28 +#define FIELDNAME_MAX_WIDTH 20 +#define FIELD_MAX_WIDTH (EDITW_COLS - TAB_COLON_POS - FIELDS_START_X - 2) + #define FIELDS_START_Y 4 #define FIELDS_START_X 4 -enum { - TAB_CONTACT, - TAB_ADDRESS, - TAB_PHONE, - TAB_OTHER, - TAB_CUSTOM -}; - -#define MAX_TAB TAB_CUSTOM - -#define TABS (MAX_TAB+1) - #endif