SoFCBackgroundGradient.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef GUI_SOFCBACKGROUNDGRADIENT_H
00025 #define GUI_SOFCBACKGROUNDGRADIENT_H
00026
00027 #ifndef __InventorAll__
00028 # include "InventorAll.h"
00029 #endif
00030
00031 class SbColor;
00032 class SoGLRenderAction;
00033
00034 namespace Gui {
00035
00036 class GuiExport SoFCBackgroundGradient : public SoNode {
00037 typedef SoNode inherited;
00038
00039 SO_NODE_HEADER(Gui::SoFCBackgroundGradient);
00040
00041 public:
00042 static void initClass(void);
00043 static void finish(void);
00044 SoFCBackgroundGradient(void);
00045
00046 void GLRender (SoGLRenderAction *action);
00047 void setColorGradient(const SbColor& fromColor, const SbColor& toColor);
00048 void setColorGradient(const SbColor& fromColor, const SbColor& toColor, const SbColor& midColor);
00049
00050 protected:
00051 virtual ~SoFCBackgroundGradient();
00052
00053 SbColor fCol, tCol, mCol;
00054 };
00055
00056 }
00057
00058
00059 #endif // GUI_SOFCBACKGROUNDGRADIENT_H
00060