00001 /**************************************************************************\ 00002 * 00003 * This file is part of the Coin 3D visualization library. 00004 * Copyright (C) 1998-2002 by Systems in Motion. All rights reserved. 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Lesser General Public License 00008 * version 2.1 as published by the Free Software Foundation. See the 00009 * file LICENSE.LGPL at the root directory of the distribution for 00010 * more details. 00011 * 00012 * If you want to use Coin for applications not compatible with the 00013 * LGPL, please contact SIM to acquire a Professional Edition license. 00014 * 00015 * Systems in Motion, Prof Brochs gate 6, 7030 Trondheim, NORWAY 00016 * http://www.sim.no support@sim.no Voice: +47 22114160 Fax: +47 22207097 00017 * 00018 \**************************************************************************/ 00019 00020 #ifndef COIN_SOLINEHIGHLIGHTRENDERACTION_H 00021 #define COIN_SOLINEHIGHLIGHTRENDERACTION_H 00022 00023 #include <Inventor/actions/SoGLRenderAction.h> 00024 #include <Inventor/SbColor.h> 00025 00026 00027 class COIN_DLL_API SoLineHighlightRenderAction : public SoGLRenderAction { 00028 typedef SoGLRenderAction inherited; 00029 00030 SO_ACTION_HEADER(SoLineHighlightRenderAction); 00031 00032 public: 00033 SoLineHighlightRenderAction(void); 00034 SoLineHighlightRenderAction(const SbViewportRegion & viewportregion); 00035 virtual ~SoLineHighlightRenderAction(); 00036 00037 static void initClass(void); 00038 00039 virtual void apply(SoNode * node); 00040 virtual void apply(SoPath * path); 00041 virtual void apply(const SoPathList & pathlist, SbBool obeysrules = FALSE); 00042 void setVisible(const SbBool visible); 00043 SbBool isVisible(void) const; 00044 void setColor(const SbColor & color); 00045 const SbColor & getColor(void); 00046 void setLinePattern(unsigned short pattern); 00047 unsigned short getLinePattern(void) const; 00048 void setLineWidth(const float width); 00049 float getLineWidth(void) const; 00050 00051 protected: 00052 00053 SbBool hlVisible; 00054 // Some protected members are missing compared to OIV here. 00055 // I doubt that anyone will use them though, since it looked 00056 // like they should have been private. We chose to implement this 00057 // action in a different manner. But, if you need the protected members 00058 // provided by OIV here, contact us any we'll consider reimplementing 00059 // the action to conform more to OIV. pederb, 20000222 00060 00061 private: 00062 class SoSearchAction * searchaction; 00063 void init(void); 00064 void drawBoxes(SoPath * pathtothis, const SoPathList * pathlist); 00065 SbColor color; 00066 unsigned short linepattern; 00067 float linewidth; 00068 SoTempPath * postprocpath; 00069 }; 00070 00071 #endif // !COIN_SOLINEHIGHLIGHTRENDERACTION_H