/* Copyright (C) 2014 Paul Davis 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 2 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, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include "gtkmm2ext/cursors.h" using namespace Gtkmm2ext; CursorInfo::Infos CursorInfo::infos; CursorInfo::CursorInfo (const std::string& n, int hotspot_x, int hotspot_y) : name (n) , x (hotspot_x) , y (hotspot_y) { } int CursorInfo::load_cursor_info (const std::string& path) { std::ifstream infofile (path.c_str()); if (!infofile) { return -1; } std::stringstream s; std::string name; int x; int y; do { s << infofile; if (!infofile) { break; } s >> name; s >> x; s >> y; if (!s) { break; } CursorInfo* ci = new CursorInfo (name, x, y); infos[name] = ci; } while (true); return 0; } void CursorInfo::drop_cursor_info () { infos.clear (); } CursorInfo* CursorInfo::lookup_cursor_info (const std::string& name) { Infos::iterator i = infos.find (name); if (i == infos.end()) { return 0; } return i->second; }