1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
/*!
@file
@author Georgiy Evmenov
@date 10/2008
*/
#include "Precompiled.h"
#include "Parse.h"
namespace tools
{
namespace utility
{
bool checkParseFileName(MyGUI::EditBox* _edit)
{
const MyGUI::UString& text = _edit->getOnlyText();
bool success = false;
if (text.find_first_of("*?") == std::string::npos)
{
success = MyGUI::DataManager::getInstance().isDataExist(text);
}
else
{
success = false;
}
_setSuccessText(_edit, text, success);
return success;
}
void _setSuccessText(MyGUI::EditBox* _edit, const MyGUI::UString& _text, bool _success)
{
size_t index = _edit->getTextCursor();
MyGUI::UString text = MyGUI::TextIterator::toTagsString(_text);
if (_success)
_edit->setCaption(text);
else
{
static const MyGUI::UString colour = MyGUI::LanguageManager::getInstance().getTag("ColourError");
_edit->setCaption(colour + text);
}
_edit->setTextCursor(index);
}
bool _checkStreamFail(std::istringstream& str)
{
if (str.fail())
{
return false;
}
else
{
std::string tmp;
str >> tmp;
if (!str.fail() || tmp.find_first_not_of(" \t\r") != std::string::npos)
{
return false;
}
else
{
return true;
}
}
}
}
}
|