2002-01-21 23:30:43 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-01-21 23:30:43 +03:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html 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 above copyright notices 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"
|
|
|
|
|
2001-11-05 02:05:21 +03: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)
|
|
|
|
{
|
2006-03-16 18:44:55 +03:00
|
|
|
this->Type = cmCacheManager::PATH;
|
|
|
|
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 + "*";
|
|
|
|
}
|
2003-12-16 01:26:00 +03:00
|
|
|
std::vector<cmStdString> dirs;
|
2002-11-05 01:37:21 +03:00
|
|
|
|
2006-03-16 18:44:55 +03:00
|
|
|
cmSystemTools::SimpleGlob(glob.c_str(), dirs, (this->Type == cmCacheManager::PATH?-1:0));
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2002-11-19 21:19:40 +03:00
|
|
|
if ( cmSystemTools::FileIsDirectory(cstr.c_str()) )
|
|
|
|
{
|
|
|
|
cstr += "/";
|
|
|
|
}
|
|
|
|
|
2002-11-05 01:37:21 +03:00
|
|
|
this->SetString(cstr.c_str());
|
|
|
|
touchwin(w);
|
|
|
|
wrefresh(w);
|
|
|
|
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);
|
|
|
|
}
|