mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -06:00
Adding curses support.
This commit is contained in:
17
Source/CursesDialog/cmCursesFilePathWidget.h
Normal file
17
Source/CursesDialog/cmCursesFilePathWidget.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef __cmCursesFilePathWidget_h
|
||||
#define __cmCursesFilePathWidget_h
|
||||
|
||||
#include "cmCursesStringWidget.h"
|
||||
|
||||
class cmCursesFilePathWidget : public cmCursesStringWidget
|
||||
{
|
||||
public:
|
||||
cmCursesFilePathWidget(int width, int height, int left, int top);
|
||||
|
||||
protected:
|
||||
cmCursesFilePathWidget(const cmCursesFilePathWidget& from);
|
||||
void operator=(const cmCursesFilePathWidget&);
|
||||
|
||||
};
|
||||
|
||||
#endif // __cmCursesFilePathWidget_h
|
||||
Reference in New Issue
Block a user