CMake/Source/CursesDialog/cmCursesMainForm.cxx

939 lines
24 KiB
C++
Raw Normal View History

2002-01-21 23:30:43 +03:00
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Insight Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
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.
=========================================================================*/
#include "../cmCacheManager.h"
#include "../cmSystemTools.h"
#include "../cmake.h"
2001-11-05 02:05:21 +03:00
#include "cmCursesMainForm.h"
#include "cmCursesStringWidget.h"
#include "cmCursesLabelWidget.h"
#include "cmCursesBoolWidget.h"
#include "cmCursesPathWidget.h"
#include "cmCursesFilePathWidget.h"
#include "cmCursesDummyWidget.h"
#include "cmCursesCacheEntryComposite.h"
2001-11-30 00:44:22 +03:00
#include "cmCursesLongMessageForm.h"
2001-11-05 02:05:21 +03:00
2001-11-06 06:10:52 +03:00
inline int ctrl(int z)
{
return (z&037);
}
cmCursesMainForm::cmCursesMainForm(std::vector<std::string> const& args,
int initWidth) :
m_Args(args), m_InitialWidth(initWidth)
2001-11-05 02:05:21 +03:00
{
2001-12-13 21:28:41 +03:00
m_NumberOfPages = 0;
2001-11-05 02:05:21 +03:00
m_Fields = 0;
m_Entries = 0;
2001-11-30 00:44:22 +03:00
m_AdvancedMode = false;
m_NumberOfVisibleEntries = 0;
m_OkToGenerate = false;
2001-11-30 22:16:28 +03:00
m_HelpMessage.push_back("Welcome to ccmake, curses based user interface for CMake.");
m_HelpMessage.push_back("");
2001-11-30 00:44:22 +03:00
m_HelpMessage.push_back(s_ConstHelpMessage);
2001-11-05 02:05:21 +03:00
}
cmCursesMainForm::~cmCursesMainForm()
{
if (m_Form)
{
unpost_form(m_Form);
free_form(m_Form);
m_Form = 0;
}
delete[] m_Fields;
// Clean-up composites
if (m_Entries)
{
std::vector<cmCursesCacheEntryComposite*>::iterator it;
for (it = m_Entries->begin(); it != m_Entries->end(); ++it)
{
delete *it;
}
}
delete m_Entries;
}
2001-12-13 21:28:41 +03:00
// See if a cache entry is in the list of entries in the ui.
2001-11-05 02:05:21 +03:00
bool cmCursesMainForm::LookForCacheEntry(const char* key)
{
if (!key || !m_Entries)
{
return false;
}
std::vector<cmCursesCacheEntryComposite*>::iterator it;
for (it = m_Entries->begin(); it != m_Entries->end(); ++it)
{
if (!strcmp(key, (*it)->m_Key.c_str()))
{
return true;
}
}
return false;
}
2001-12-13 21:28:41 +03:00
// Create new cmCursesCacheEntryComposite entries from the cache
2001-11-30 00:44:22 +03:00
void cmCursesMainForm::InitializeUI()
2001-11-05 02:05:21 +03:00
{
// Get the cache entries.
const cmCacheManager::CacheEntryMap &cache =
cmCacheManager::GetInstance()->GetCacheMap();
2001-12-13 21:28:41 +03:00
// Create a vector of cmCursesCacheEntryComposite's
// which contain labels, entries and new entry markers
2001-11-05 02:05:21 +03:00
std::vector<cmCursesCacheEntryComposite*>* newEntries =
new std::vector<cmCursesCacheEntryComposite*>;
newEntries->reserve(cache.size());
// Count non-internal and non-static entries
int count=0;
for(cmCacheManager::CacheEntryMap::const_iterator i = cache.begin();
i != cache.end(); ++i)
{
const cmCacheManager::CacheEntry& value = i->second;
if ( value.m_Type != cmCacheManager::INTERNAL &&
value.m_Type != cmCacheManager::STATIC )
{
++count;
}
}
int entrywidth = m_InitialWidth - 35;
2001-11-05 02:05:21 +03:00
cmCursesCacheEntryComposite* comp;
if ( count == 0 )
{
// If cache is empty, display a label saying so and a
// dummy entry widget (does not respond to input)
comp = new cmCursesCacheEntryComposite("EMPTY CACHE", 30, 30);
2001-11-05 02:05:21 +03:00
comp->m_Entry = new cmCursesDummyWidget(1, 1, 1, 1);
newEntries->push_back(comp);
}
else
{
// Create the composites.
// First add entries which are new
for(cmCacheManager::CacheEntryMap::const_iterator i = cache.begin();
i != cache.end(); ++i)
{
const char* key = i->first.c_str();
const cmCacheManager::CacheEntry& value = i->second;
if ( value.m_Type == cmCacheManager::INTERNAL ||
value.m_Type == cmCacheManager::STATIC )
{
continue;
}
if (!this->LookForCacheEntry(key))
{
newEntries->push_back(new cmCursesCacheEntryComposite(key, value,
true, 30,
entrywidth));
2001-11-30 00:44:22 +03:00
m_OkToGenerate = false;
2001-11-05 02:05:21 +03:00
}
}
// then add entries which are old
for(cmCacheManager::CacheEntryMap::const_iterator i = cache.begin();
i != cache.end(); ++i)
{
const char* key = i->first.c_str();
const cmCacheManager::CacheEntry& value = i->second;
if ( value.m_Type == cmCacheManager::INTERNAL ||
value.m_Type == cmCacheManager::STATIC )
{
continue;
}
if (this->LookForCacheEntry(key))
{
newEntries->push_back(new cmCursesCacheEntryComposite(key, value,
false, 30,
entrywidth));
2001-11-05 02:05:21 +03:00
}
}
}
2001-12-13 21:28:41 +03:00
// Clean old entries
2001-11-05 02:05:21 +03:00
if (m_Entries)
{
2001-12-13 21:28:41 +03:00
// Have to call delete on each pointer
2001-11-05 02:05:21 +03:00
std::vector<cmCursesCacheEntryComposite*>::iterator it;
for (it = m_Entries->begin(); it != m_Entries->end(); ++it)
{
delete *it;
}
}
delete m_Entries;
m_Entries = newEntries;
2001-12-13 21:28:41 +03:00
// Compute fields from composites
2001-11-30 00:44:22 +03:00
this->RePost();
}
void cmCursesMainForm::RePost()
{
2001-11-05 02:05:21 +03:00
// Create the fields to be passed to the form.
if (m_Form)
{
unpost_form(m_Form);
free_form(m_Form);
m_Form = 0;
}
delete[] m_Fields;
2001-11-30 00:44:22 +03:00
if (m_AdvancedMode)
{
m_NumberOfVisibleEntries = m_Entries->size();
}
else
{
2001-12-13 21:28:41 +03:00
// If normal mode, count only non-advanced entries
2001-11-30 00:44:22 +03:00
m_NumberOfVisibleEntries = 0;
std::vector<cmCursesCacheEntryComposite*>::iterator it;
for (it = m_Entries->begin(); it != m_Entries->end(); ++it)
{
if (!m_AdvancedMode && cmCacheManager::GetInstance()->IsAdvanced(
(*it)->GetValue()))
{
continue;
}
m_NumberOfVisibleEntries++;
}
}
2001-12-13 21:28:41 +03:00
// Assign the fields: 3 for each entry: label, new entry marker
// ('*' or ' ') and entry widget
2001-11-30 00:44:22 +03:00
m_Fields = new FIELD*[3*m_NumberOfVisibleEntries+1];
2001-12-13 21:28:41 +03:00
// Assign fields
2001-11-30 00:44:22 +03:00
int j=0;
std::vector<cmCursesCacheEntryComposite*>::iterator it;
for (it = m_Entries->begin(); it != m_Entries->end(); ++it)
2001-11-05 02:05:21 +03:00
{
2001-11-30 00:44:22 +03:00
if (!m_AdvancedMode && cmCacheManager::GetInstance()->IsAdvanced(
(*it)->GetValue()))
{
continue;
}
m_Fields[3*j] = (*it)->m_Label->m_Field;
m_Fields[3*j+1] = (*it)->m_IsNewLabel->m_Field;
m_Fields[3*j+2] = (*it)->m_Entry->m_Field;
j++;
2001-11-05 02:05:21 +03:00
}
2001-11-30 00:44:22 +03:00
2001-11-05 02:05:21 +03:00
// Has to be null terminated.
2001-11-30 00:44:22 +03:00
m_Fields[3*m_NumberOfVisibleEntries] = 0;
2001-11-05 02:05:21 +03:00
}
void cmCursesMainForm::Render(int left, int top, int width, int height)
{
if (m_Form)
{
FIELD* currentField = current_field(m_Form);
cmCursesWidget* cw = reinterpret_cast<cmCursesWidget*>
(field_userptr(currentField));
2001-12-13 21:28:41 +03:00
// If in edit mode, get out of it
2001-11-05 02:05:21 +03:00
if ( cw->GetType() == cmCacheManager::STRING ||
cw->GetType() == cmCacheManager::PATH ||
cw->GetType() == cmCacheManager::FILEPATH )
{
cmCursesStringWidget* sw = static_cast<cmCursesStringWidget*>(cw);
sw->SetInEdit(false);
}
2001-12-13 21:28:41 +03:00
// Delete the previous form
2001-11-05 02:05:21 +03:00
unpost_form(m_Form);
free_form(m_Form);
m_Form = 0;
}
2001-12-13 21:28:41 +03:00
// Wrong window size
2001-11-06 06:10:52 +03:00
if ( width < cmCursesMainForm::MIN_WIDTH ||
width < m_InitialWidth ||
2001-11-06 06:10:52 +03:00
height < cmCursesMainForm::MIN_HEIGHT )
2001-11-05 02:05:21 +03:00
{
return;
}
2001-12-13 21:28:41 +03:00
// Leave room for toolbar
height -= 7;
2001-11-05 02:05:21 +03:00
2001-11-30 00:44:22 +03:00
if (m_AdvancedMode)
{
m_NumberOfVisibleEntries = m_Entries->size();
}
else
{
2001-12-13 21:28:41 +03:00
// If normal, display only non-advanced entries
2001-11-30 00:44:22 +03:00
m_NumberOfVisibleEntries = 0;
std::vector<cmCursesCacheEntryComposite*>::iterator it;
for (it = m_Entries->begin(); it != m_Entries->end(); ++it)
{
if (!m_AdvancedMode && cmCacheManager::GetInstance()->IsAdvanced(
(*it)->GetValue()))
{
continue;
}
m_NumberOfVisibleEntries++;
}
}
2001-12-13 21:28:41 +03:00
// Re-adjust the fields according to their place
2001-11-05 02:05:21 +03:00
bool isNewPage;
2001-11-30 00:44:22 +03:00
int i=0;
2001-12-13 21:28:41 +03:00
m_NumberOfPages = 1;
2001-11-30 00:44:22 +03:00
std::vector<cmCursesCacheEntryComposite*>::iterator it;
for (it = m_Entries->begin(); it != m_Entries->end(); ++it)
2001-11-05 02:05:21 +03:00
{
2001-11-30 00:44:22 +03:00
if (!m_AdvancedMode && cmCacheManager::GetInstance()->IsAdvanced(
(*it)->GetValue()))
{
continue;
}
2001-11-05 02:05:21 +03:00
int row = (i % height) + 1;
int page = (i / height) + 1;
isNewPage = ( page > 1 ) && ( row == 1 );
2001-12-13 21:28:41 +03:00
if (isNewPage)
{
m_NumberOfPages++;
}
2001-11-30 00:44:22 +03:00
(*it)->m_Label->Move(left, top+row-1, isNewPage);
(*it)->m_IsNewLabel->Move(left+32, top+row-1, false);
(*it)->m_Entry->Move(left+33, top+row-1, false);
2001-12-13 21:28:41 +03:00
(*it)->m_Entry->SetPage(m_NumberOfPages);
2001-11-30 00:44:22 +03:00
i++;
2001-11-05 02:05:21 +03:00
}
2001-11-30 00:44:22 +03:00
2001-12-13 21:28:41 +03:00
// Post the form
2001-11-05 02:05:21 +03:00
m_Form = new_form(m_Fields);
post_form(m_Form);
2001-12-13 21:28:41 +03:00
// Update toolbar
2001-11-06 06:10:52 +03:00
this->UpdateStatusBar();
this->PrintKeys();
2001-11-30 00:44:22 +03:00
touchwin(stdscr);
2001-11-05 02:05:21 +03:00
refresh();
}
2001-11-06 06:10:52 +03:00
void cmCursesMainForm::PrintKeys()
2001-11-05 02:05:21 +03:00
{
int x,y;
2001-11-30 00:44:22 +03:00
getmaxyx(stdscr, y, x);
2001-11-06 06:10:52 +03:00
if ( x < cmCursesMainForm::MIN_WIDTH ||
x < m_InitialWidth ||
2001-11-06 06:10:52 +03:00
y < cmCursesMainForm::MIN_HEIGHT )
{
return;
}
2001-12-13 21:28:41 +03:00
// Give the current widget (if it exists), a chance to print keys
cmCursesWidget* cw = 0;
if (m_Form)
2001-11-30 00:44:22 +03:00
{
2001-12-13 21:28:41 +03:00
FIELD* currentField = current_field(m_Form);
cw = reinterpret_cast<cmCursesWidget*>(field_userptr(currentField));
2001-11-30 00:44:22 +03:00
}
2001-12-13 21:28:41 +03:00
if (cw && cw->PrintKeys())
2001-11-30 00:44:22 +03:00
{
}
else
{
2001-12-13 21:28:41 +03:00
char firstLine[512], secondLine[512], thirdLine[512];
if (m_OkToGenerate)
{
sprintf(firstLine, "Press [c] to configure Press [g] to generate and exit");
}
else
{
sprintf(firstLine, "Press [c] to configure");
}
if (m_AdvancedMode)
{
sprintf(thirdLine, "Press [t] to toggle advanced mode (Currently On)");
}
else
{
sprintf(thirdLine, "Press [t] to toggle advanced mode (Currently Off)");
}
sprintf(secondLine, "Press [h] for help Press [q] to quit without generating");
curses_move(y-4,0);
printw("Press [enter] to edit option");
curses_move(y-3,0);
printw(firstLine);
curses_move(y-2,0);
printw(secondLine);
curses_move(y-1,0);
printw(thirdLine);
if (cw)
{
sprintf(firstLine, "Page %d of %d", cw->GetPage(), m_NumberOfPages);
curses_move(0,65-strlen(firstLine)-1);
printw(firstLine);
}
2001-11-30 00:44:22 +03:00
}
2001-11-06 06:10:52 +03:00
pos_form_cursor(m_Form);
}
// Print the key of the current entry and the CMake version
// on the status bar. Designed for a width of 80 chars.
void cmCursesMainForm::UpdateStatusBar()
{
int x,y;
2001-11-30 00:44:22 +03:00
getmaxyx(stdscr, y, x);
2001-12-13 21:28:41 +03:00
// If window size is too small, display error and return
2001-11-06 06:10:52 +03:00
if ( x < cmCursesMainForm::MIN_WIDTH ||
x < m_InitialWidth ||
2001-11-06 06:10:52 +03:00
y < cmCursesMainForm::MIN_HEIGHT )
{
curses_clear();
curses_move(0,0);
2001-11-06 06:10:52 +03:00
printw("Window is too small. A size of at least %dx%d is required.",
(cmCursesMainForm::MIN_WIDTH < m_InitialWidth ?
m_InitialWidth : cmCursesMainForm::MIN_WIDTH),
cmCursesMainForm::MIN_HEIGHT);
2001-11-30 00:44:22 +03:00
touchwin(stdscr);
wrefresh(stdscr);
2001-11-06 06:10:52 +03:00
return;
}
2001-12-13 21:28:41 +03:00
// Get the key of the current entry
2001-11-06 06:10:52 +03:00
FIELD* cur = current_field(m_Form);
int index = field_index(cur);
2001-11-30 00:44:22 +03:00
cmCursesWidget* lbl = reinterpret_cast<cmCursesWidget*>(field_userptr(
m_Fields[index-2]));
const char* curField = lbl->GetValue();
2001-12-13 21:28:41 +03:00
// Get the help string of the current entry
// and add it to the help string
2001-11-30 00:44:22 +03:00
char help[128];
const char* helpString;
cmCacheManager::CacheEntry *entry =
cmCacheManager::GetInstance()->GetCacheEntry(curField);
if (entry)
{
helpString = entry->m_HelpString.c_str();
2001-12-04 23:53:33 +03:00
strncpy(help, helpString, 127);
help[127] = '\0';
2001-11-30 00:44:22 +03:00
}
else
{
sprintf(help," ");
}
2001-11-05 02:05:21 +03:00
2001-12-13 21:28:41 +03:00
// Join the key, help string and pad with spaces
// (or truncate) as necessary
2001-11-06 06:10:52 +03:00
char bar[cmCursesMainForm::MAX_WIDTH];
int i, curFieldLen = strlen(curField);
2001-11-30 00:44:22 +03:00
int helpLen = strlen(help);
int width;
if (x < cmCursesMainForm::MAX_WIDTH )
2001-11-06 06:10:52 +03:00
{
2001-11-30 00:44:22 +03:00
width = x;
2001-11-06 06:10:52 +03:00
}
else
{
2001-11-30 00:44:22 +03:00
width = cmCursesMainForm::MAX_WIDTH;
2001-11-06 06:10:52 +03:00
}
2001-11-30 00:44:22 +03:00
if (curFieldLen >= width)
2001-11-06 06:10:52 +03:00
{
2001-11-30 00:44:22 +03:00
strncpy(bar, curField, width);
2001-11-06 06:10:52 +03:00
}
else
{
2001-11-30 00:44:22 +03:00
strcpy(bar, curField);
bar[curFieldLen] = ':';
bar[curFieldLen+1] = ' ';
if (curFieldLen + helpLen + 2 >= width)
2001-11-06 06:10:52 +03:00
{
2001-11-30 00:44:22 +03:00
strncpy(bar+curFieldLen+2, help, width
- curFieldLen - 2);
}
else
{
strcpy(bar+curFieldLen+2, help);
for(i=curFieldLen+helpLen+2; i < width; ++i)
{
bar[i] = ' ';
}
2001-11-06 06:10:52 +03:00
}
}
2001-11-30 00:44:22 +03:00
bar[width] = '\0';
2001-12-13 21:28:41 +03:00
// Display CMake version info on the next line
2001-12-05 00:19:33 +03:00
// We want to display this on the right
2001-11-30 00:44:22 +03:00
char version[cmCursesMainForm::MAX_WIDTH];
char vertmp[128];
2002-01-03 00:45:30 +03:00
sprintf(vertmp,"CMake Version %d.%d - %s", cmMakefile::GetMajorVersion(),
cmMakefile::GetMinorVersion(),cmMakefile::GetReleaseVersion());
2001-11-30 00:44:22 +03:00
int sideSpace = (width-strlen(vertmp));
for(i=0; i<sideSpace; i++) { version[i] = ' '; }
sprintf(version+sideSpace, "%s", vertmp);
version[width] = '\0';
2001-12-13 21:28:41 +03:00
// Now print both lines
curses_move(y-5,0);
2001-11-06 06:10:52 +03:00
attron(A_STANDOUT);
printw(bar);
attroff(A_STANDOUT);
2001-12-13 21:28:41 +03:00
curses_move(y-4,0);
2001-11-30 00:44:22 +03:00
printw(version);
2001-11-05 02:05:21 +03:00
pos_form_cursor(m_Form);
}
2002-04-24 00:16:48 +04:00
int cmCursesMainForm::RunCMake(bool generateMakefiles)
2001-11-05 02:05:21 +03:00
{
int x,y;
2001-11-30 00:44:22 +03:00
getmaxyx(stdscr, y, x);
curses_clear();
2001-11-30 00:44:22 +03:00
curses_move(1,1);
touchwin(stdscr);
refresh();
2001-11-05 02:05:21 +03:00
endwin();
2001-11-30 22:50:57 +03:00
std::cerr << "Running CMake, please wait...\n\r";
2001-11-05 02:05:21 +03:00
// always save the current gui values to disk
this->FillCacheManagerFromUI();
cmCacheManager::GetInstance()->SaveCache(cmSystemTools::GetCurrentWorkingDirectory().c_str());
// create a cmake object
cmake make;
// create the arguments for the cmake object
2001-11-30 00:44:22 +03:00
std::string whereCMake = cmSystemTools::GetProgramPath(m_Args[0].c_str());
whereCMake += "/cmake";
m_Args[0] = whereCMake;
// Get rid of previous errors
m_Errors = std::vector<std::string>();
2001-11-05 02:05:21 +03:00
// run the generate process
2001-11-30 00:44:22 +03:00
m_OkToGenerate = true;
int retVal = make.Generate(m_Args, generateMakefiles);
initscr(); /* Initialization */
noecho(); /* Echo off */
cbreak(); /* nl- or cr not needed */
keypad(stdscr,TRUE); /* Use key symbols as
KEY_DOWN*/
if( retVal != 0 || !m_Errors.empty())
2001-11-05 02:05:21 +03:00
{
// see if there was an error
if(cmSystemTools::GetErrorOccuredFlag())
{
m_OkToGenerate = false;
}
// reset error condition
2001-11-05 02:05:21 +03:00
cmSystemTools::ResetErrorOccuredFlag();
2001-11-30 00:44:22 +03:00
int x,y;
getmaxyx(stdscr, y, x);
cmCursesLongMessageForm* msgs = new cmCursesLongMessageForm(m_Errors,
"Errors which during last pass.");
CurrentForm = msgs;
msgs->Render(1,1,x,y);
msgs->HandleInput();
2002-04-24 00:16:48 +04:00
// If they typed the wrong source directory, we report
// an error and exit
if ( retVal == -2 )
{
return retVal;
}
2001-11-30 00:44:22 +03:00
CurrentForm = this;
this->Render(1,1,x,y);
2001-11-05 02:05:21 +03:00
}
2001-11-06 06:10:52 +03:00
2001-11-30 00:44:22 +03:00
this->InitializeUI();
2001-11-05 02:05:21 +03:00
this->Render(1, 1, x, y);
2002-04-24 00:16:48 +04:00
return 0;
2001-11-05 02:05:21 +03:00
}
2001-11-30 00:44:22 +03:00
void cmCursesMainForm::AddError(const char* message, const char* title)
{
m_Errors.push_back(message);
}
void cmCursesMainForm::RemoveEntry(const char* value)
{
if (!value)
{
return;
}
std::vector<cmCursesCacheEntryComposite*>::iterator it;
for (it = m_Entries->begin(); it != m_Entries->end(); ++it)
{
const char* val = (*it)->GetValue();
if ( val && !strcmp(value, val) )
{
m_Entries->erase(it);
break;
}
}
}
2001-11-05 02:05:21 +03:00
// copy from the list box to the cache manager
void cmCursesMainForm::FillCacheManagerFromUI()
{
2001-11-05 23:55:24 +03:00
std::string tmpString;
2001-11-05 02:05:21 +03:00
cmCacheManager::GetInstance()->GetCacheMap();
int size = m_Entries->size();
for(int i=0; i < size; i++)
{
cmCacheManager::CacheEntry *entry =
cmCacheManager::GetInstance()->GetCacheEntry(
(*m_Entries)[i]->m_Key.c_str());
if (entry)
{
2001-11-05 23:55:24 +03:00
tmpString = (*m_Entries)[i]->m_Entry->GetValue();
2001-12-07 01:07:18 +03:00
// Remove trailing spaces, convert path to unix slashes
2001-12-07 01:40:25 +03:00
std::string tmpSubString =
2001-12-07 01:07:18 +03:00
tmpString.substr(0,tmpString.find_last_not_of(" ")+1);
if ( entry->m_Type == cmCacheManager::PATH ||
entry->m_Type == cmCacheManager::FILEPATH )
{
cmSystemTools::ConvertToUnixSlashes(tmpSubString);
}
entry->m_Value = tmpSubString;
2001-11-05 02:05:21 +03:00
}
}
}
void cmCursesMainForm::HandleInput()
{
2001-12-13 21:28:41 +03:00
int x,y;
2001-11-05 02:05:21 +03:00
if (!m_Form)
{
return;
}
FIELD* currentField;
cmCursesWidget* currentWidget;
2001-12-04 19:16:04 +03:00
char debugMessage[128];
2001-11-05 02:05:21 +03:00
while(1)
{
2001-11-06 06:10:52 +03:00
this->UpdateStatusBar();
this->PrintKeys();
2001-11-05 02:05:21 +03:00
int key = getch();
2001-12-13 21:28:41 +03:00
getmaxyx(stdscr, y, x);
// If window too small, handle 'q' only
if ( x < cmCursesMainForm::MIN_WIDTH ||
y < cmCursesMainForm::MIN_HEIGHT )
{
// quit
if ( key == 'q' )
{
break;
}
else
{
continue;
}
}
2001-11-05 02:05:21 +03:00
currentField = current_field(m_Form);
currentWidget = reinterpret_cast<cmCursesWidget*>(field_userptr(
currentField));
2001-12-13 21:28:41 +03:00
// Ask the current widget if it wants to handle input
if (!currentWidget || !currentWidget->HandleInput(key, this, stdscr))
2001-11-05 02:05:21 +03:00
{
2001-12-13 21:28:41 +03:00
// If the current widget does not want to handle input,
// we handle it.
2001-12-04 19:16:04 +03:00
sprintf(debugMessage, "Main form handling input, key: %d", key);
cmCursesForm::LogMessage(debugMessage);
2001-11-06 06:10:52 +03:00
// quit
2001-11-05 02:05:21 +03:00
if ( key == 'q' )
{
break;
}
2001-11-06 06:10:52 +03:00
// if not end of page, next field otherwise next page
2001-11-30 00:44:22 +03:00
// each entry consists of fields: label, isnew, value
// therefore, the label field for the prev. entry is index-5
// and the label field for the next entry is index+1
// (index always corresponds to the value field)
2001-11-06 06:10:52 +03:00
else if ( key == KEY_DOWN || key == ctrl('n') )
2001-11-05 02:05:21 +03:00
{
FIELD* cur = current_field(m_Form);
2001-11-30 18:54:04 +03:00
int index = field_index(cur);
2001-11-30 00:44:22 +03:00
if ( index == 3*m_NumberOfVisibleEntries-1 )
2001-11-05 02:05:21 +03:00
{
continue;
}
2001-11-30 00:44:22 +03:00
if (new_page(m_Fields[index+1]))
2001-11-05 02:05:21 +03:00
{
form_driver(m_Form, REQ_NEXT_PAGE);
}
else
{
form_driver(m_Form, REQ_NEXT_FIELD);
}
}
2001-11-06 06:10:52 +03:00
// if not beginning of page, previous field, otherwise previous page
2001-11-30 00:44:22 +03:00
// each entry consists of fields: label, isnew, value
// therefore, the label field for the prev. entry is index-5
// and the label field for the next entry is index+1
// (index always corresponds to the value field)
2001-11-06 06:10:52 +03:00
else if ( key == KEY_UP || key == ctrl('p') )
2001-11-05 02:05:21 +03:00
{
FIELD* cur = current_field(m_Form);
int index = field_index(cur);
if ( index == 2 )
{
continue;
}
if ( new_page(m_Fields[index-2]) )
{
form_driver(m_Form, REQ_PREV_PAGE);
set_current_field(m_Form, m_Fields[index-3]);
}
else
{
form_driver(m_Form, REQ_PREV_FIELD);
}
}
2001-11-06 06:10:52 +03:00
// pg down
else if ( key == KEY_NPAGE || key == ctrl('d') )
2001-11-05 02:05:21 +03:00
{
form_driver(m_Form, REQ_NEXT_PAGE);
}
2001-11-06 06:10:52 +03:00
// pg up
else if ( key == KEY_PPAGE || key == ctrl('u') )
2001-11-05 02:05:21 +03:00
{
form_driver(m_Form, REQ_PREV_PAGE);
}
2001-11-06 06:10:52 +03:00
// configure
2001-11-05 02:05:21 +03:00
else if ( key == 'c' )
{
this->RunCMake(false);
}
2001-11-30 00:44:22 +03:00
// display help
else if ( key == 'h' )
{
getmaxyx(stdscr, y, x);
2001-11-30 22:16:28 +03:00
FIELD* cur = current_field(m_Form);
int index = field_index(cur);
cmCursesWidget* lbl = reinterpret_cast<cmCursesWidget*>(field_userptr(
m_Fields[index-2]));
const char* curField = lbl->GetValue();
const char* helpString=0;
cmCacheManager::CacheEntry *entry =
cmCacheManager::GetInstance()->GetCacheEntry(curField);
if (entry)
{
helpString = entry->m_HelpString.c_str();
}
if (helpString)
{
char* message = new char[strlen(curField)+strlen(helpString)
+strlen("Current option is: \n Help string for this option is: \n")+10];
sprintf(message,"Current option is: %s\nHelp string for this option is: %s\n", curField, helpString);
m_HelpMessage[1] = message;
delete[] message;
}
else
{
m_HelpMessage[1] = "";
}
2001-11-30 00:44:22 +03:00
cmCursesLongMessageForm* msgs = new cmCursesLongMessageForm(m_HelpMessage,
"Help.");
CurrentForm = msgs;
msgs->Render(1,1,x,y);
msgs->HandleInput();
CurrentForm = this;
this->Render(1,1,x,y);
}
// display last errors
else if ( key == 'l' )
{
getmaxyx(stdscr, y, x);
cmCursesLongMessageForm* msgs = new cmCursesLongMessageForm(m_Errors,
"Errors which during last pass.");
CurrentForm = msgs;
msgs->Render(1,1,x,y);
msgs->HandleInput();
CurrentForm = this;
this->Render(1,1,x,y);
}
// switch advanced on/off
else if ( key == 't' )
{
if (m_AdvancedMode)
{
m_AdvancedMode = false;
}
else
{
m_AdvancedMode = true;
}
getmaxyx(stdscr, y, x);
this->RePost();
this->Render(1, 1, x, y);
}
2001-11-06 06:10:52 +03:00
// generate and exit
else if ( key == 'g' )
2001-11-05 02:05:21 +03:00
{
2001-11-30 00:44:22 +03:00
if ( m_OkToGenerate )
{
this->RunCMake(true);
break;
}
2001-11-05 02:05:21 +03:00
}
2001-11-06 06:10:52 +03:00
// delete cache entry
else if ( key == 'd' )
{
FIELD* cur = current_field(m_Form);
2001-11-30 18:54:04 +03:00
int index = field_index(cur);
2001-11-06 06:10:52 +03:00
// make the next or prev. current field after deletion
2001-11-30 00:44:22 +03:00
// each entry consists of fields: label, isnew, value
// therefore, the label field for the prev. entry is index-5
// and the label field for the next entry is index+1
// (index always corresponds to the value field)
2001-11-06 06:10:52 +03:00
FIELD* nextCur;
if ( index == 2 )
{
2001-11-30 00:44:22 +03:00
nextCur=0;
2001-11-06 06:10:52 +03:00
}
2001-11-30 00:44:22 +03:00
else if ( index == 3*m_NumberOfVisibleEntries-1 )
2001-11-06 06:10:52 +03:00
{
nextCur = m_Fields[index-5];
}
else
{
nextCur = m_Fields[index+1];
}
// Get the label widget
2001-11-30 00:44:22 +03:00
// each entry consists of fields: label, isnew, value
// therefore, the label field for the is index-2
// (index always corresponds to the value field)
2001-11-06 06:10:52 +03:00
cmCursesWidget* lbl = reinterpret_cast<cmCursesWidget*>(field_userptr(
m_Fields[index-2]));
cmCacheManager::GetInstance()->RemoveCacheEntry(lbl->GetValue());
2001-11-30 00:44:22 +03:00
std::string nextVal;
if (nextCur)
{
nextVal = (reinterpret_cast<cmCursesWidget*>(field_userptr(nextCur))->GetValue());
}
2001-11-06 06:10:52 +03:00
2001-11-30 00:44:22 +03:00
getmaxyx(stdscr, y, x);
this->RemoveEntry(lbl->GetValue());
this->RePost();
2001-11-06 06:10:52 +03:00
this->Render(1, 1, x, y);
2001-11-30 00:44:22 +03:00
if (nextCur)
2001-11-06 06:10:52 +03:00
{
2001-11-30 00:44:22 +03:00
// make the next or prev. current field after deletion
nextCur = 0;
std::vector<cmCursesCacheEntryComposite*>::iterator it;
for (it = m_Entries->begin(); it != m_Entries->end(); ++it)
2001-11-06 06:10:52 +03:00
{
2001-11-30 00:44:22 +03:00
if (nextVal == (*it)->m_Key)
{
nextCur = (*it)->m_Entry->m_Field;
}
}
if (nextCur)
{
set_current_field(m_Form, nextCur);
2001-11-06 06:10:52 +03:00
}
}
}
2001-11-05 02:05:21 +03:00
}
2001-11-30 00:44:22 +03:00
touchwin(stdscr);
wrefresh(stdscr);
2001-11-05 02:05:21 +03:00
}
}
2001-11-30 00:44:22 +03:00
2001-11-30 22:16:28 +03:00
const char* cmCursesMainForm::s_ConstHelpMessage =
2001-11-30 21:59:36 +03:00
"CMake is used to configure and generate build files for software projects. "
"The basic steps for configuring a project with ccmake are as follows:\n\n"
"1. Run ccmake in the directory where you want the object and executable files to be placed (build directory). If the source directory is not the same as this build directory, you have to specify it as an argument on the command line.\n\n"
"2. When ccmake is run, it will read the configuration files and display the current build options. "
"If you have run CMake before and have updated the configuration files since then, any new entries will be displayed on top and will be marked with a *. "
"On the other hand, the first time you run ccmake, all build options will be new and will be marked as such. "
"At this point, you can modify any options (see keys below) you want to change. "
"When you are satisfied with your changes, press 'c' to have CMake process the configuration files. "
"Please note that changing some options may cause new ones to appear. These will be shown on top and will be marked with *. "
"Repeat this procedure until you are satisfied with all the options and there are no new entries. "
"At this point, a new command will appear: G)enerate and Exit. You can now hit 'g' to have CMake generate all the build files (i.e. makefiles or project files) and exit. "
"At any point during the process, you can exit ccmake with 'q'. However, this will not generate/change any build files.\n\n"
"ccmake KEYS:\n\n"
"Navigation: "
"You can use the arrow keys and page up, down to navigate the options. Alternatively, you can use the following keys: \n"
" C-n : next option\n"
" C-p : previous options\n"
" C-d : down one page\n"
" C-u : up one page\n\n"
"Editing options: "
"To change an option press enter or return. If the current options is a boolean, this will toggle it's value. "
"Otherwise, ccmake will enter edit mode. In this mode you can edit an option using arrow keys and backspace. Alternatively, you can use the following keys:\n"
" C-b : back one character\n"
" C-f : forward one character\n"
" C-a : go to the beginning of the field\n"
" C-e : go to the end of the field\n"
" C-d : delete previous character\n"
" C-k : kill the rest of the field\n"
2001-11-30 22:24:37 +03:00
" Esc : Restore field (discard last changes)\n"
2001-11-30 23:04:25 +03:00
" Enter : Leave edit mode\n"
2001-11-30 21:59:36 +03:00
"You can also delete an option by pressing 'd'\n\n"
"Commands:\n"
" q : quit ccmake without generating build files\n"
" h : help, shows this screen\n"
" c : process the configuration files with the current options\n"
" g : generate build files and exit, only available when there are no "
"new options and no errors have been detected during last configuration.\n"
" l : shows last errors\n"
" t : toggles advanced mode. In normal mode, only the most important options are shown. In advanced mode, all options are shown. We recommend using normal mode unless you are an expert.\n";