PrefsWindow.C File Reference

#include "GUI/PrefsWindow.H"
#include "Component/ModelComponent.H"
#include "Component/ModelParam.H"
#include "GUI/XWinManaged.H"
#include "Image/Image.H"
#include "Image/Pixels.H"
#include "Image/DrawOps.H"
#include "Util/log.H"
#include "Util/sformat.H"
#include <X11/keysym.h>
Include dependency graph for PrefsWindow.C:

Go to the source code of this file.

Classes

class  PrefItemMPNum< MP, T >
 Template class for numeric preference items based on OModelParam or NModelParam. More...
class  PrefItemMPStr
 Template class for non-numeric preference items based on OModelParam or NModelParam. More...

Defines

#define HANDLE_NUM_PARAM_TYPE(T)

Detailed Description

Definition in file PrefsWindow.C.


Define Documentation

#define HANDLE_NUM_PARAM_TYPE (  ) 
Value:
if (OModelParam<T>* p = dynamic_cast<OModelParam<T>*>(mp))        \
        {                                                               \
          new PrefItemMPNum<OModelParam<T>, T>                          \
            (this, p, comp,                                             \
             /* takeOwnership = */ true);                               \
          return;                                                       \
        }                                                               \
      if (NModelParam<T>* p = dynamic_cast<NModelParam<T>*>(mp))        \
        {                                                               \
          new PrefItemMPNum<NModelParam<T>, T>                          \
            (this, p, comp,                                             \
             /* takeOwnership = */ true);                               \
          return;                                                       \
        }
Generated on Sun May 8 08:42:40 2011 for iLab Neuromorphic Vision Toolkit by  doxygen 1.6.3