| 123456789101112131415161718192021 | 
							- #include "cmCursesLabelWidget.h"
 
- cmCursesLabelWidget::cmCursesLabelWidget(int width, int height, 
 
- 					 int left, int top,
 
- 					 const std::string& name) :
 
-   cmCursesWidget(width, height, left, top)
 
- {
 
-   field_opts_off(m_Field,  O_EDIT);
 
-   field_opts_off(m_Field,  O_ACTIVE);
 
-   this->SetValue(name.c_str());
 
- }
 
- cmCursesLabelWidget::~cmCursesLabelWidget()
 
- {
 
- }
 
- bool cmCursesLabelWidget::HandleInput(int& key, FORM* form, WINDOW* w)
 
- {
 
-   // Static text. No input is handled here.
 
-   return false;
 
- }
 
 
  |