diff options
author | Frederic Culot <calcurse@culot.org> | 2007-07-23 19:27:28 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-07-23 19:27:28 +0000 |
commit | 6ad12276c41958e6fdc2213c79d193987f1f39bb (patch) | |
tree | 3a25ed5cc4aed3a7abaa4ca49aad17ce80a6cbe1 /src | |
parent | ab0cc2c6065f758f323b177674f020b6be7296e9 (diff) | |
download | calcurse-6ad12276c41958e6fdc2213c79d193987f1f39bb.tar.gz calcurse-6ad12276c41958e6fdc2213c79d193987f1f39bb.zip |
window_e enum and window_t type moved to wins.h
Diffstat (limited to 'src')
-rwxr-xr-x | src/vars.h | 19 |
1 files changed, 1 insertions, 18 deletions
@@ -1,4 +1,4 @@ -/* $calcurse: vars.h,v 1.13 2007/07/21 19:30:25 culot Exp $ */ +/* $calcurse: vars.h,v 1.14 2007/07/23 19:27:28 culot Exp $ */ /* * Calcurse - text-based organizer @@ -53,15 +53,6 @@ #define STATUSHEIGHT 2 -enum window_e { - CALENDAR, - APPOINTMENT, - TODO, - NOTIFY, - STATUS, - NBWINS -}; - struct pad_s { int width; int length; @@ -90,14 +81,6 @@ typedef struct { int layout; } conf_t; -/* Window properties */ -typedef struct { - unsigned w; /* width */ - unsigned h; /* height */ - int x; /* x position */ - int y; /* y position */ -} window_t; - extern int col, row; extern bool colorize; extern int days[12]; |