X-Git-Url: http://git.mutantstargoat.com?a=blobdiff_plain;f=src%2Ffbdev%2Fmouse.cc;h=1fb2d5599c6513e14b6fca3b60edb35f90149a62;hb=9261ecb0ad85bdf8b21e17b7309ddaeb76a57d96;hp=803e8e0dcbeadbd36a6b9e6e144b05f1b1e6c2c5;hpb=2a5665e9005d05c8d30747f1fcb2c41d0a8f27c8;p=winnie diff --git a/src/fbdev/mouse.cc b/src/fbdev/mouse.cc index 803e8e0..1fb2d55 100644 --- a/src/fbdev/mouse.cc +++ b/src/fbdev/mouse.cc @@ -1,3 +1,24 @@ +/* +winnie - an experimental window system + +Copyright (C) 2013 Eleni Maria Stea + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . + +Author: Eleni Maria Stea +*/ + #ifdef WINNIE_FBDEV #include #include @@ -13,7 +34,9 @@ #include "geom.h" #include "gfx.h" #include "mouse.h" +#include "shalloc.h" #include "window.h" +#include "winnie.h" #include "wm.h" #define BN_LEFT 1 @@ -34,9 +57,11 @@ static Mouse *mouse; bool init_mouse() { - if(!(mouse = (Mouse*)malloc(sizeof *mouse))) { + if(!(mouse = (Mouse*)sh_malloc(sizeof *mouse))) { return false; } + get_subsys()->mouse_offset = (int)((char*)mouse - (char*)get_pool()); + memset(mouse, 0, sizeof *mouse); mouse->dev_fd = -1; @@ -55,7 +80,7 @@ void destroy_mouse() close(mouse->dev_fd); mouse->dev_fd = -1; } - free(mouse); + sh_free(mouse); } void set_mouse_bounds(const Rect &rect)