Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
Immanuel
/
sxiv
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Pull requests
0
Versões
0
Wiki
Atividade
Ver código fonte
React to ConfigureNotify
master
Bert
14 anos atrás
pai
15603c25cf
commit
47d107edb5
3 arquivos alterados
com
24 adições
e
2 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+4
-0
events.c
+16
-0
window.c
+4
-2
window.h
+ 4
- 0
events.c
Ver arquivo
@@ -30,6 +30,10 @@ void on_expose(app_t *app, XEvent *ev) {
}
void on_configurenotify(app_t *app, XEvent *ev) {
if (app == NULL || ev == NULL)
return;
win_configure(&app->win, &ev->xconfigure);
}
void on_keypress(app_t *app, XEvent *ev) {
+ 16
- 0
window.c
Ver arquivo
@@ -84,3 +84,19 @@ void win_close(win_t *win) {
XFreeGC(dpy, gc);
XCloseDisplay(dpy);
}
int win_configure(win_t *win, XConfigureEvent *cev) {
int changed;
if (win == NULL)
return 0;
changed = win->x != cev->x || win->y != cev->y ||
win->w != cev->width || win->h != cev->height;
win->x = cev->x;
win->y = cev->y;
win->w = cev->width;
win->h = cev->height;
win->bw = cev->border_width;
return changed;
}
+ 4
- 2
window.h
Ver arquivo
@@ -33,7 +33,9 @@ typedef struct win_s {
int fullscreen;
} win_t;
void win_open(win_t *win);
void win_close(win_t *win);
void win_open(win_t*);
void win_close(win_t*);
int win_configure(win_t*, XConfigureEvent*);
#endif /* WINDOW_H */
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar