From db7a4a01b3922109a7e757e28c8c9e30cd14ef07 Mon Sep 17 00:00:00 2001 From: Art Haas Date: Wed, 9 May 2007 17:54:49 +0000 Subject: [PATCH] PythonCAD/Generic/tools.py: Add new tool classes for changing Style attributes. --- PythonCAD/Generic/tools.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/PythonCAD/Generic/tools.py b/PythonCAD/Generic/tools.py index 1986b5e..daafb16 100644 --- a/PythonCAD/Generic/tools.py +++ b/PythonCAD/Generic/tools.py @@ -1,5 +1,5 @@ # -# Copyright (c) 2002, 2003, 2004, 2005, 2006 Art Haas +# Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007 Art Haas # # This file is part of PythonCAD. # @@ -3381,6 +3381,22 @@ This method returns the value stored in setValue() or None. """ return self.__value +# +# +# + +class ChangeStyleTool(GraphicObjectTool): + pass + +class ChangeLinetypeTool(GraphicObjectTool): + pass + +class ChangeColorTool(GraphicObjectTool): + pass + +class ChangeThicknessTool(GraphicObjectTool): + pass + class TextTool(RegionTool): """A specialized class for entering text. -- 2.11.4.GIT