2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-01-21 23:30:43 +03:00
|
|
|
|
2009-09-28 19:43:28 +04: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
|
|
|
|
2009-09-28 19:43:28 +04: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"
|
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
cmCursesPathWidget::cmCursesPathWidget(int width, int height,
|
2002-10-24 02:03:27 +04:00
|
|
|
int left, int top) :
|
2001-11-05 02:05:21 +03:00
|
|
|
cmCursesStringWidget(width, height, left, top)
|
|
|
|
{
|
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)
|
|
|
|
{
|
|
|
|
if ( !this->GetString() )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
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);
|
2006-03-16 18:44:55 +03:00
|
|
|
if ( this->LastString != cstr )
|
2002-11-05 01:37:21 +03:00
|
|
|
{
|
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;
|
2006-03-16 18:44:55 +03:00
|
|
|
if ( this->Cycle )
|
2002-11-05 01:37:21 +03:00
|
|
|
{
|
2006-03-16 18:44:55 +03:00
|
|
|
glob = this->LastGlob;
|
2002-11-05 01:37:21 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
glob = cstr + "*";
|
|
|
|
}
|
2014-02-10 09:21:34 +04:00
|
|
|
std::vector<std::string> dirs;
|
2002-11-05 01:37:21 +03:00
|
|
|
|
2015-04-07 23:45:54 +03:00
|
|
|
cmSystemTools::SimpleGlob(glob, dirs, (this->Type == cmState::PATH?-1:0));
|
2006-03-16 18:44:55 +03:00
|
|
|
if ( this->CurrentIndex < dirs.size() )
|
2002-11-05 01:37:21 +03:00
|
|
|
{
|
2006-03-16 18:44:55 +03:00
|
|
|
cstr = dirs[this->CurrentIndex];
|
2002-11-05 01:37:21 +03:00
|
|
|
}
|
|
|
|
if ( cstr[cstr.size()-1] == '*' )
|
|
|
|
{
|
|
|
|
cstr = cstr.substr(0, cstr.size()-1);
|
|
|
|
}
|
|
|
|
|
2014-10-15 16:54:05 +04:00
|
|
|
if ( cmSystemTools::FileIsDirectory(cstr) )
|
2002-11-19 21:19:40 +03:00
|
|
|
{
|
|
|
|
cstr += "/";
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
this->CurrentIndex ++;
|
|
|
|
if ( this->CurrentIndex >= dirs.size() )
|
2002-11-05 01:37:21 +03:00
|
|
|
{
|
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);
|
|
|
|
}
|