2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2014-12-11 21:10:03 +03:00
|
|
|
#ifndef cmCursesFilePathWidget_h
|
|
|
|
#define cmCursesFilePathWidget_h
|
2001-11-05 02:05:21 +03:00
|
|
|
|
2016-09-01 22:55:09 +03:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
|
|
|
|
2002-11-05 16:52:31 +03:00
|
|
|
#include "cmCursesPathWidget.h"
|
2001-11-05 02:05:21 +03:00
|
|
|
|
2002-11-05 16:52:31 +03:00
|
|
|
class cmCursesFilePathWidget : public cmCursesPathWidget
|
2001-11-05 02:05:21 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmCursesFilePathWidget(int width, int height, int left, int top);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
cmCursesFilePathWidget(const cmCursesFilePathWidget& from);
|
|
|
|
void operator=(const cmCursesFilePathWidget&);
|
|
|
|
};
|
|
|
|
|
2014-12-11 21:10:03 +03:00
|
|
|
#endif // cmCursesFilePathWidget_h
|