Changeset 4073
- Timestamp:
- Nov 30, 2009, 11:15:02 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
neercs/trunk/src/neercs.h
r4072 r4073 212 212 int was_in_bell; 213 213 int dont_update_coords; /* Used by recurrents */ 214 int changed; /* Global redraw needed(e.g. adding a screen) */214 int changed; /* Global redraw (e.g. adding a screen) */ 215 215 int delay; /* Minimal time between two refresh (ms) */ 216 216 int requested_delay; … … 222 222 long long unsigned int last_key_time; 223 223 long long unsigned int last_refresh_time; 224 225 /* Client/Server communications */ 226 struct comm comm; 227 228 /* Lock */ 229 struct lock lock; 230 231 /* Modal windows */ 232 struct modals modals; 233 234 /* Python interpreter */ 235 struct interpreter_props interpreter_props; 236 237 /* Screensaver stuff */ 238 struct screensaver screensaver; 239 224 225 struct comm comm; /* Client/Server communications */ 226 struct lock lock; /* Lock */ 227 struct modals modals; /* Modal windows */ 228 struct interpreter_props interpreter_props; /* Python interpreter */ 229 struct screensaver screensaver;/* Screensaver stuff */ 230 240 231 int pty, prevpty; /* Current and previous window */ 241 232 int count; /* Window count */ 242 int w idth, height; /* caca window size */243 int wm_type; /* Window manager type*/233 int wm_type; /* Window manager type */ 234 int border_size; /* Borders */ 244 235 struct cube_props cube; /* Cube */ 245 236 long long unsigned int last_switch; /* Cube */ 246 int border_size; /* Borders */247 237 248 238 struct screen **screen; /* Windows */ 249 250 /* Option parsing and configuration */ 251 struct option *config; 252 253 struct sys sys; 254 255 struct recurrent_list *recurrent_list; 239 struct option *config; /* Option parsing and configuration */ 240 struct sys sys; /* System stuff */ 241 242 struct recurrent_list *recurrent_list; /* Recurrents functions */ 256 243 257 244 char *title; /* Window title */ 245 int width, height; /* caca window size */ 258 246 caca_canvas_t *cv; 259 247 caca_display_t *dp;
Note: See TracChangeset
for help on using the changeset viewer.