File: Parse.cpp

package info (click to toggle)
mygui 3.4.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 38,792 kB
  • sloc: cpp: 133,849; ansic: 30,249; xml: 15,794; cs: 12,601; tcl: 776; python: 400; makefile: 35; sh: 4
file content (61 lines) | stat: -rw-r--r-- 1,205 bytes parent folder | download
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
/*!
	@file
	@author		Georgiy Evmenov
	@date		10/2008
*/

#include "Precompiled.h"
#include "Parse.h"

namespace tools::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;
		}

		std::string tmp;
		str >> tmp;
		// reading more data must fail, because there should've been no more data
		return str.fail() && tmp.find_first_not_of(" \t\r") == std::string::npos;
	}

}