CMake/Source/CursesDialog/cmCursesPathWidget.cxx

87 lines
2.4 KiB
C++
Raw Normal View History

/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
2002-01-21 23:30:43 +03:00
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
2002-01-21 23:30:43 +03:00
This software is distributed WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License for more information.
============================================================================*/
2001-11-05 02:05:21 +03:00
#include "cmCursesPathWidget.h"
2002-11-05 01:37:21 +03:00
#include "cmCursesMainForm.h"
#include "cmSystemTools.h"
cmCursesPathWidget::cmCursesPathWidget(int width, int height, int left,
int top)
: cmCursesStringWidget(width, height, left, top)
2001-11-05 02:05:21 +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)
{
if (!this->GetString()) {
2002-11-05 01:37:21 +03:00
return;
}
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();
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 = "";
}
2002-11-05 01:37:21 +03:00
std::string glob;
if (this->Cycle) {
2006-03-16 18:44:55 +03:00
glob = this->LastGlob;
} else {
2002-11-05 01:37:21 +03:00
glob = cstr + "*";
}
std::vector<std::string> dirs;
2002-11-05 01:37:21 +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];
}
if (cstr[cstr.size() - 1] == '*') {
cstr = cstr.substr(0, cstr.size() - 1);
}
2002-11-05 01:37:21 +03:00
if (cmSystemTools::FileIsDirectory(cstr)) {
cstr += "/";
}
this->SetString(cstr);
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;
this->CurrentIndex++;
if (this->CurrentIndex >= dirs.size()) {
2006-03-16 18:44:55 +03:00
this->CurrentIndex = 0;
}
2002-11-05 01:37:21 +03:00
}
void cmCursesPathWidget::OnReturn(cmCursesMainForm* fm, WINDOW* w)
{
this->cmCursesStringWidget::OnReturn(fm, w);
}