#ifndef ICL_INT_HANDLE_H #define ICL_INT_HANDLE_H #include /** \cond */ class QLineEdit; /** \endcond */ namespace icl{ /// Class for handling "int" textfield components \ingroup HANDLES class IntHandle : public GUIHandle{ public: /// Create an empty handle IntHandle(){} /// Create a new Int handle IntHandle(QLineEdit *le, GUIWidget *w):GUIHandle(le,w){} /// makes the associated textfield show the given value void operator=(int i); /// returns the current text as int int getValue() const; }; } #endif