window_t structure updated to store WINDOW pointer
window_e enum updated to shorten names winprop_e and wins_prop() suppressed
This commit is contained in:
parent
ffd9448ac4
commit
c823b5666b
24
src/wins.h
24
src/wins.h
@ -1,4 +1,4 @@
|
|||||||
/* $Id: wins.h,v 1.3 2007/08/15 15:32:33 culot Exp $ */
|
/* $Id: wins.h,v 1.4 2007/10/21 13:39:07 culot Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Calcurse - text-based organizer
|
* Calcurse - text-based organizer
|
||||||
@ -30,37 +30,31 @@
|
|||||||
#include "vars.h"
|
#include "vars.h"
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
CALENDAR,
|
CAL,
|
||||||
APPOINTMENT,
|
APP,
|
||||||
TODO,
|
TOD,
|
||||||
NOTIFY,
|
NOT,
|
||||||
STATUS,
|
STA,
|
||||||
NBWINS
|
NBWINS
|
||||||
} window_e;
|
} window_e;
|
||||||
|
|
||||||
typedef enum {
|
|
||||||
WIDTH,
|
|
||||||
HEIGHT,
|
|
||||||
XPOS,
|
|
||||||
YPOS,
|
|
||||||
NBPROPS
|
|
||||||
} winprop_e;
|
|
||||||
|
|
||||||
/* Window properties */
|
/* Window properties */
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
WINDOW *p; /* pointer to window */
|
||||||
unsigned w; /* width */
|
unsigned w; /* width */
|
||||||
unsigned h; /* height */
|
unsigned h; /* height */
|
||||||
int x; /* x position */
|
int x; /* x position */
|
||||||
int y; /* y position */
|
int y; /* y position */
|
||||||
} window_t;
|
} window_t;
|
||||||
|
|
||||||
|
extern window_t win[NBWINS];
|
||||||
|
|
||||||
int wins_layout(void);
|
int wins_layout(void);
|
||||||
void wins_set_layout(int);
|
void wins_set_layout(int);
|
||||||
void wins_slctd_init(void);
|
void wins_slctd_init(void);
|
||||||
window_e wins_slctd(void);
|
window_e wins_slctd(void);
|
||||||
void wins_slctd_set(window_e);
|
void wins_slctd_set(window_e);
|
||||||
void wins_slctd_next(void);
|
void wins_slctd_next(void);
|
||||||
int wins_prop(window_e, winprop_e);
|
|
||||||
void wins_init(void);
|
void wins_init(void);
|
||||||
void wins_reinit(void);
|
void wins_reinit(void);
|
||||||
void wins_show(WINDOW *, char *);
|
void wins_show(WINDOW *, char *);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user