diff --git a/src/GUI/CocoaMouseCursor.hxx b/src/GUI/CocoaMouseCursor.hxx
index 6ee3483c9..bc5f7b8b8 100644
--- a/src/GUI/CocoaMouseCursor.hxx
+++ b/src/GUI/CocoaMouseCursor.hxx
@@ -1,3 +1,22 @@
+// CocoaMouseCursor.hxx - mouse cursor using Cocoa APIs
+
+// Copyright (C) 2013 James Turner <zakalawe@mac.com>
+//
+// 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+//
+
 #ifndef FG_GUI_COCOA_MOUSE_CURSOR_HXX
 #define FG_GUI_COCOA_MOUSE_CURSOR_HXX
 
diff --git a/src/GUI/CocoaMouseCursor.mm b/src/GUI/CocoaMouseCursor.mm
index 7cb631c3b..03798d4f0 100644
--- a/src/GUI/CocoaMouseCursor.mm
+++ b/src/GUI/CocoaMouseCursor.mm
@@ -1,3 +1,22 @@
+// CocoaMouseCursor.cxx - mouse cursor using Cocoa APIs
+
+// Copyright (C) 2013 James Turner <zakalawe@mac.com>
+//
+// 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+//
+
 #include "CocoaMouseCursor.hxx"
 
 #include <Cocoa/Cocoa.h>
diff --git a/src/GUI/MouseCursor.cxx b/src/GUI/MouseCursor.cxx
index 514c6299a..541a725a0 100644
--- a/src/GUI/MouseCursor.cxx
+++ b/src/GUI/MouseCursor.cxx
@@ -1,3 +1,22 @@
+// MouseCursor.cxx - abstract inteface for  mouse cursor control
+
+// Copyright (C) 2013 James Turner <zakalawe@mac.com>
+//
+// 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+//
+
 #ifdef HAVE_CONFIG_H
   #include "config.h"
 #endif
diff --git a/src/GUI/MouseCursor.hxx b/src/GUI/MouseCursor.hxx
index d370c5938..94b7d3032 100644
--- a/src/GUI/MouseCursor.hxx
+++ b/src/GUI/MouseCursor.hxx
@@ -1,6 +1,23 @@
-
 // MouseCursor.hxx - abstract inteface for  mouse cursor control
 
+// Copyright (C) 2013 James Turner <zakalawe@mac.com>
+//
+// 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+//
+
+
 #ifndef FG_GUI_MOUSE_CURSOR_HXX
 #define FG_GUI_MOUSE_CURSOR_HXX 1