]> git.tdb.fi Git - libs/gui.git/blobdiff - source/input/keys.cpp
Remove modifier constants
[libs/gui.git] / source / input / keys.cpp
index d7de3b1b326ae007168a4ca324edda30d66356f3..38d94807b03fcc0d982f641a433f8aa98e4ae513 100644 (file)
@@ -1,15 +1,11 @@
-/* $Id$
-
-This file is part of libmspgbase
-Copyright © 2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #include <map>
-#ifndef WIN32
+#include <stdexcept>
+#ifdef WIN32
+#include <windows.h>
+#else
+#include <X11/X.h>
 #include <X11/keysym.h>
 #endif
-#include <msp/core/except.h>
 #include "keys.h"
 
 using namespace std;
@@ -108,19 +104,19 @@ namespace Input {
 
 unsigned key_from_sys(unsigned code)
 {
-       static bool init_done=false;
+       static bool init_done = false;
        static map<unsigned, unsigned> reverse_map;
 
        if(!init_done)
        {
                for(unsigned i=0; i<N_KEYS_; ++i)
                        if(keymap[i])
-                               reverse_map[keymap[i]]=i;
+                               reverse_map[keymap[i]] = i;
 
-               init_done=true;
+               init_done = true;
        }
 
-       map<unsigned, unsigned>::const_iterator i=reverse_map.find(code);
+       map<unsigned, unsigned>::const_iterator i = reverse_map.find(code);
        if(i!=reverse_map.end())
                return i->second;
 
@@ -129,8 +125,8 @@ unsigned key_from_sys(unsigned code)
 
 unsigned key_to_sys(unsigned key)
 {
-       if(key>N_KEYS_)
-               throw InvalidParameterValue("Key out of range");
+       if(key>=N_KEYS_)
+               throw invalid_argument("key_to_sys");
        return keymap[key];
 }