本文整理汇总了C++中SharedKObject::GetString方法的典型用法代码示例。如果您正苦于以下问题:C++ SharedKObject::GetString方法的具体用法?C++ SharedKObject::GetString怎么用?C++ SharedKObject::GetString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SharedKObject
的用法示例。
在下文中一共展示了SharedKObject::GetString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ReadChooserDialogObject
void UserWindow::ReadChooserDialogObject(
SharedKObject o,
bool& multiple,
std::string& title,
std::string& path,
std::string& defaultName,
std::vector<std::string>& types,
std::string& typesDescription)
{
// Pass in a set of properties for chooser dialogs like this:
// var selected = Titanium.UI.OpenFileChooserDialog(callback,
// {
// multiple:true,
// title: "Select file to delete...",
// defaultFile: "autoexec.bat",
// path: "C:\"
// types:['js','html']
// });
multiple = o->GetBool("multiple", true);
title = o->GetString("title", title);
path = o->GetString("path", path);
defaultName = o->GetString("defaultName", defaultName);
SharedKList listTypes = new StaticBoundList();
listTypes = o->GetList("types", listTypes);
for (size_t i = 0; i < listTypes->Size(); i++)
{
if (listTypes->At(i)->IsString())
{
types.push_back(listTypes->At(i)->ToString());
std::cout << "Found " << listTypes->At(i)->ToString() << std::endl;
}
}
typesDescription = o->GetString("typesDescription", defaultName);
}
示例2: Callback
void MonkeyBinding::Callback(const ValueList &args, SharedValue result)
{
SharedKObject event = args.at(0)->ToObject();
if (!event->Get("url")->IsString() ||
!event->Get("scope")->IsObject() ||
!event->GetObject("scope")->Get("window"))
{
throw ValueException::FromString(
"ti.Monkey could not find required components of PAGE_LOADED events");
}
std::string url = event->GetString("url");
SharedKObject windowObject = event->GetObject("scope")->GetObject("window");
vector<Script*>::iterator iter = scripts.begin();
while (iter != scripts.end())
{
Script* script = (*iter++);
if (script->Matches(url))
{
EvaluateUserScript(event, url, windowObject, script->source);
}
}
}