Browse Source

Merge remote branch 'falconindy/mouse'

master
Bert 14 years ago
parent
commit
0497a7f69d
2 changed files with 28 additions and 1 deletions
  1. +27
    -0
      main.c
  2. +1
    -1
      window.c

+ 27
- 0
main.c View File

@@ -31,10 +31,12 @@

void on_keypress(XEvent*);
void on_configurenotify(XEvent*);
void on_buttonpress(XEvent*);

void update_title();

static void (*handler[LASTEvent])(XEvent*) = {
[ButtonPress] = on_buttonpress,
[KeyPress] = on_keypress,
[ConfigureNotify] = on_configurenotify
};
@@ -126,6 +128,31 @@ void cleanup() {
}
}

void on_buttonpress(XEvent *ev) {
int changed;
XButtonEvent *buttonevent;

changed = 0;
buttonevent = &ev->xbutton;

switch (buttonevent->button) {
case Button4:
changed = img_zoom_in(&img);
break;
case Button5:
changed = img_zoom_out(&img);
break;
default:
return;
}

if (changed) {
img_render(&img, &win);
update_title();
timeout = 0;
}
}

void on_keypress(XEvent *ev) {
char key;
KeySym keysym;


+ 1
- 1
window.c View File

@@ -69,7 +69,7 @@ void win_open(win_t *win) {
DIE("could not create window");
XSelectInput(e->dpy, win->xwin,
StructureNotifyMask | KeyPressMask);
StructureNotifyMask | KeyPressMask | ButtonPressMask);

bgc = XCreateGC(e->dpy, win->xwin, 0, None);



||||||
x
 
000:0
Loading…
Cancel
Save