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. */
|
2001-11-05 02:05:21 +03:00
|
|
|
#include "cmCursesPathWidget.h"
|
|
|
|
|
2002-11-05 01:37:21 +03:00
|
|
|
#include "cmCursesMainForm.h"
|
2016-09-01 22:55:09 +03:00
|
|
|
#include "cmCursesStringWidget.h"
|
|
|
|
#include "cmState.h"
|
2002-11-05 01:37:21 +03:00
|
|
|
#include "cmSystemTools.h"
|
|
|
|
|
2016-09-01 22:55:09 +03:00
|
|
|
#include <vector>
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCursesPathWidget::cmCursesPathWidget(int width, int height, int left,
|
|
|
|
int top)
|
|
|
|
: cmCursesStringWidget(width, height, left, top)
|
2001-11-05 02:05:21 +03:00
|
|
|
{
|
2015-04-07 23:45:54 +03:00
|
|
|
this->Type = cmState::PATH;
|
2006-03-16 18:44:55 +03:00
|
|
|
this->Cycle = false;
|
|
|
|
this->CurrentIndex = 0;
|
2002-11-05 01:37:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmCursesPathWidget::OnType(int& key, cmCursesMainForm* fm, WINDOW* w)
|
|
|
|
{
|
2006-03-16 18:44:55 +03:00
|
|
|
this->Cycle = false;
|
|
|
|
this->CurrentIndex = 0;
|
|
|
|
this->LastGlob = "";
|
2002-11-05 01:37:21 +03:00
|
|
|
this->cmCursesStringWidget::OnType(key, fm, w);
|
2001-11-05 02:05:21 +03:00
|
|
|
}
|
|
|
|
|
2002-11-05 01:37:21 +03:00
|
|
|
void cmCursesPathWidget::OnTab(cmCursesMainForm* fm, WINDOW* w)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->GetString()) {
|
2002-11-05 01:37:21 +03:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-11-05 01:37:21 +03:00
|
|
|
FORM* form = fm->GetForm();
|
|
|
|
form_driver(form, REQ_NEXT_FIELD);
|
|
|
|
form_driver(form, REQ_PREV_FIELD);
|
|
|
|
std::string cstr = this->GetString();
|
2016-05-16 17:34:04 +03:00
|
|
|
cstr = cstr.substr(0, cstr.find_last_not_of(" \t\n\r") + 1);
|
|
|
|
if (this->LastString != cstr) {
|
2006-03-16 18:44:55 +03:00
|
|
|
this->Cycle = false;
|
|
|
|
this->CurrentIndex = 0;
|
|
|
|
this->LastGlob = "";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-11-05 01:37:21 +03:00
|
|
|
std::string glob;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->Cycle) {
|
2006-03-16 18:44:55 +03:00
|
|
|
glob = this->LastGlob;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2002-11-05 01:37:21 +03:00
|
|
|
glob = cstr + "*";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-02-10 09:21:34 +04:00
|
|
|
std::vector<std::string> dirs;
|
2002-11-05 01:37:21 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmSystemTools::SimpleGlob(glob, dirs,
|
|
|
|
(this->Type == cmState::PATH ? -1 : 0));
|
|
|
|
if (this->CurrentIndex < dirs.size()) {
|
2006-03-16 18:44:55 +03:00
|
|
|
cstr = dirs[this->CurrentIndex];
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (cstr[cstr.size() - 1] == '*') {
|
|
|
|
cstr = cstr.substr(0, cstr.size() - 1);
|
|
|
|
}
|
2002-11-05 01:37:21 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::FileIsDirectory(cstr)) {
|
2002-11-19 21:19:40 +03:00
|
|
|
cstr += "/";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-11-19 21:19:40 +03:00
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetString(cstr);
|
2012-08-13 21:42:58 +04:00
|
|
|
touchwin(w);
|
|
|
|
wrefresh(w);
|
2002-11-05 01:37:21 +03:00
|
|
|
form_driver(form, REQ_END_FIELD);
|
2006-03-16 18:44:55 +03:00
|
|
|
this->LastGlob = glob;
|
|
|
|
this->LastString = cstr;
|
|
|
|
this->Cycle = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->CurrentIndex++;
|
|
|
|
if (this->CurrentIndex >= dirs.size()) {
|
2006-03-16 18:44:55 +03:00
|
|
|
this->CurrentIndex = 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-11-05 01:37:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmCursesPathWidget::OnReturn(cmCursesMainForm* fm, WINDOW* w)
|
|
|
|
{
|
|
|
|
this->cmCursesStringWidget::OnReturn(fm, w);
|
|
|
|
}
|