[GRASS-SVN] r35867 - grass/trunk/gui/wxpython/vdigit

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Feb 14 06:42:44 EST 2009


Author: martinl
Date: 2009-02-14 06:42:44 -0500 (Sat, 14 Feb 2009)
New Revision: 35867

Modified:
   grass/trunk/gui/wxpython/vdigit/cats.cpp
   grass/trunk/gui/wxpython/vdigit/digit.cpp
   grass/trunk/gui/wxpython/vdigit/driver.cpp
   grass/trunk/gui/wxpython/vdigit/driver_draw.cpp
   grass/trunk/gui/wxpython/vdigit/driver_select.cpp
   grass/trunk/gui/wxpython/vdigit/line.cpp
   grass/trunk/gui/wxpython/vdigit/message.cpp
   grass/trunk/gui/wxpython/vdigit/select.cpp
   grass/trunk/gui/wxpython/vdigit/undo.cpp
   grass/trunk/gui/wxpython/vdigit/vertex.cpp
Log:
wxGUI/vdigit: cosmetics in headers


Modified: grass/trunk/gui/wxpython/vdigit/cats.cpp
===================================================================
--- grass/trunk/gui/wxpython/vdigit/cats.cpp	2009-02-12 23:34:39 UTC (rev 35866)
+++ grass/trunk/gui/wxpython/vdigit/cats.cpp	2009-02-14 11:42:44 UTC (rev 35867)
@@ -1,17 +1,15 @@
 /**
    \file cats.cpp
 
-   \brief Category management
+   \brief wxvdigit - category management
 
    This program is free software under the GNU General Public
    License (>=v2). Read the file COPYING that comes with GRASS
    for details.
 
-   (C) 2008 by The GRASS development team
+   (C) 2008-2009 by Martin Landa, and the GRASS development team
 
    \author Martin Landa <landa.martin gmail.com>
-
-   \date 2008 
 */
 
 extern "C" {

Modified: grass/trunk/gui/wxpython/vdigit/digit.cpp
===================================================================
--- grass/trunk/gui/wxpython/vdigit/digit.cpp	2009-02-12 23:34:39 UTC (rev 35866)
+++ grass/trunk/gui/wxpython/vdigit/digit.cpp	2009-02-14 11:42:44 UTC (rev 35867)
@@ -1,17 +1,15 @@
 /**
    \file digit.cpp
 
-   \brief Experimental C++ interace for vector digitization used
-   by wxPython GUI.
+   \brief wxvdigit - C++ interace for wxGUI vector digitizer.
 
    This program is free software under the GNU General Public
    License (>=v2). Read the file COPYING that comes with GRASS
    for details.
 
-   \author (C) by the GRASS Development Team
-   Martin Landa <landa.martin gmail.com>
+   (C) 2008-2009 by Martin Landa, and the GRASS development team
 
-   \date 2008
+   \author Martin Landa <landa.martin gmail.com>
 */
 
 #include "driver.h"

Modified: grass/trunk/gui/wxpython/vdigit/driver.cpp
===================================================================
--- grass/trunk/gui/wxpython/vdigit/driver.cpp	2009-02-12 23:34:39 UTC (rev 35866)
+++ grass/trunk/gui/wxpython/vdigit/driver.cpp	2009-02-14 11:42:44 UTC (rev 35867)
@@ -1,19 +1,18 @@
 /**
    \file driver.cpp
    
-   \brief Experimental C++ wxWidgets display driver
+   \brief wxvdigit - Display driver
 
-   This driver is designed for wxPython GRASS GUI (digitization tool).
-   Draw vector map layer to PseudoDC.
+   This driver is designed for wxGUI (vector digitizer) - to draw
+   vector map layer to PseudoDC.
 
-   (C) by the GRASS Development Team
    This program is free software under the GNU General Public
    License (>=v2). Read the file COPYING that comes with GRASS
    for details.
 
-   \author Martin Landa <landa.martin gmail.com>
+   (C) 2008-2009 by Martin Landa, and the GRASS development team
 
-   \date 2007-2008 
+   \author Martin Landa <landa.martin gmail.com>
 */
 
 #include <cmath>

Modified: grass/trunk/gui/wxpython/vdigit/driver_draw.cpp
===================================================================
--- grass/trunk/gui/wxpython/vdigit/driver_draw.cpp	2009-02-12 23:34:39 UTC (rev 35866)
+++ grass/trunk/gui/wxpython/vdigit/driver_draw.cpp	2009-02-14 11:42:44 UTC (rev 35867)
@@ -1,19 +1,18 @@
 /**
    \file driver_draw.cpp
    
-   \brief Experimental C++ wxWidgets display driver
+   \brief wxvdigit - Display driver (draw methods)
 
-   This driver is designed for wxPython GRASS GUI (digitization tool).
-   Draw vector map layer to PseudoDC.
+   This driver is designed for wxGUI (vector digitizer) - to draw
+   vector map layer to PseudoDC.
 
-   (C) by the GRASS Development Team
    This program is free software under the GNU General Public
    License (>=v2). Read the file COPYING that comes with GRASS
    for details.
 
-   \author Martin Landa <landa.martin gmail.com>
+   (C) 2008-2009 by Martin Landa, and the GRASS development team
 
-   \date 2007-2008 
+   \author Martin Landa <landa.martin gmail.com>
 */
 
 #include <cmath>

Modified: grass/trunk/gui/wxpython/vdigit/driver_select.cpp
===================================================================
--- grass/trunk/gui/wxpython/vdigit/driver_select.cpp	2009-02-12 23:34:39 UTC (rev 35866)
+++ grass/trunk/gui/wxpython/vdigit/driver_select.cpp	2009-02-14 11:42:44 UTC (rev 35867)
@@ -1,19 +1,18 @@
 /**
    \file driver_select.cpp
    
-   \brief Experimental C++ wxWidgets display driver
+   \brief wxvdigit - Display driver (selection methods)
 
-   This driver is designed for wxPython GRASS GUI (digitization tool).
-   Draw vector map layer to PseudoDC.
+   This driver is designed for wxGUI (vector digitizer) - to draw
+   vector map layer to PseudoDC.
 
-   (C) by the GRASS Development Team
    This program is free software under the GNU General Public
    License (>=v2). Read the file COPYING that comes with GRASS
    for details.
 
-   \author Martin Landa <landa.martin gmail.com>
+   (C) 2008-2009 by Martin Landa, and the GRASS development team
 
-   \date 2007-2008 
+   \author Martin Landa <landa.martin gmail.com>
 */
 
 #include <cmath>

Modified: grass/trunk/gui/wxpython/vdigit/line.cpp
===================================================================
--- grass/trunk/gui/wxpython/vdigit/line.cpp	2009-02-12 23:34:39 UTC (rev 35866)
+++ grass/trunk/gui/wxpython/vdigit/line.cpp	2009-02-14 11:42:44 UTC (rev 35867)
@@ -1,17 +1,15 @@
 /**
    \file line.cpp
 
-   \brief Feature manipulation (add, delete, move)
+   \brief wxvdigit - Feature manipulation (add, delete, move)
 
    This program is free software under the GNU General Public
    License (>=v2). Read the file COPYING that comes with GRASS
    for details.
 
-   (C) 2008 by The GRASS development team
+   (C) 2008-2009 by Martin Landa, and the GRASS development team
 
    \author Martin Landa <landa.martin gmail.com>
-
-   \date 2008 
 */
 
 extern "C" {

Modified: grass/trunk/gui/wxpython/vdigit/message.cpp
===================================================================
--- grass/trunk/gui/wxpython/vdigit/message.cpp	2009-02-12 23:34:39 UTC (rev 35866)
+++ grass/trunk/gui/wxpython/vdigit/message.cpp	2009-02-14 11:42:44 UTC (rev 35867)
@@ -1,17 +1,15 @@
 /**
    \file message.cpp
 
-   \brief Error message dialogs
+   \brief wxvdigit - Error message dialogs
 
    This program is free software under the GNU General Public
    License (>=v2). Read the file COPYING that comes with GRASS
    for details.
 
-   (C) 2008 by The GRASS development team
+   (C) 2008-2009 by Martin Landa, and the GRASS development team
 
    \author Martin Landa <landa.martin gmail.com>
-
-   \date 2008 
 */
 
 #include "driver.h"

Modified: grass/trunk/gui/wxpython/vdigit/select.cpp
===================================================================
--- grass/trunk/gui/wxpython/vdigit/select.cpp	2009-02-12 23:34:39 UTC (rev 35866)
+++ grass/trunk/gui/wxpython/vdigit/select.cpp	2009-02-14 11:42:44 UTC (rev 35867)
@@ -1,17 +1,15 @@
 /**
    \file select.cpp
 
-   \brief Select lines (by query)
+   \brief wxvdigit - Select lines (by query)
 
    This program is free software under the GNU General Public
    License (>=v2). Read the file COPYING that comes with GRASS
    for details.
 
-   (C) 2008 by The GRASS development team
+   (C) 2008-2009 by Martin Landa, and the GRASS development team
 
    \author Martin Landa <landa.martin gmail.com>
-
-   \date 2008 
 */
 
 extern "C" {

Modified: grass/trunk/gui/wxpython/vdigit/undo.cpp
===================================================================
--- grass/trunk/gui/wxpython/vdigit/undo.cpp	2009-02-12 23:34:39 UTC (rev 35866)
+++ grass/trunk/gui/wxpython/vdigit/undo.cpp	2009-02-14 11:42:44 UTC (rev 35867)
@@ -1,17 +1,15 @@
 /**
    \file undo.cpp
 
-   \brief Undo/Redo functionality
+   \brief wxvdigit - Undo/Redo functionality
 
    This program is free software under the GNU General Public
    License (>=v2). Read the file COPYING that comes with GRASS
    for details.
 
-   (C) 2008 by The GRASS development team
+   (C) 2008-2009 by Martin Landa, and the GRASS development team
 
    \author Martin Landa <landa.martin gmail.com>
-
-   \date 2008 
 */
 
 #include "driver.h"

Modified: grass/trunk/gui/wxpython/vdigit/vertex.cpp
===================================================================
--- grass/trunk/gui/wxpython/vdigit/vertex.cpp	2009-02-12 23:34:39 UTC (rev 35866)
+++ grass/trunk/gui/wxpython/vdigit/vertex.cpp	2009-02-14 11:42:44 UTC (rev 35867)
@@ -1,17 +1,15 @@
 /**
    \file vertex.cpp
 
-   \brief Vertex manipulation
+   \brief wxvdigit - Vertex manipulation
 
    This program is free software under the GNU General Public
    License (>=v2). Read the file COPYING that comes with GRASS
    for details.
 
-   (C) 2008 by The GRASS development team
+   (C) 2008-2009 by Martin Landa, and the GRASS development team
 
    \author Martin Landa <landa.martin gmail.com>
-
-   \date 2008 
 */
 
 extern "C" {



More information about the grass-commit mailing list