1
0
Fork 0

In progress...

This commit is contained in:
Kolan Sh 2016-04-05 04:28:11 +03:00
parent 90a7f934ad
commit 058e515e1d
1 changed files with 24 additions and 2 deletions

View File

@ -52,11 +52,33 @@ namespace LAview.Core.Plugins {
object_dialog.show_all ();
PluginDataExample data_obj_ex = (host as IHostCore).get_data_object ("DataExample") as PluginDataExample;
stdout.puts ("Compose() called\n");
foreach (var a in answers.entries) {
stdout.printf ("%s ", a.key);
switch (a.key) {
case "MainChart":
break;
case "arr1d":
break;
case "arr2d":
break;
case "AnotherRequest":
case "SampleRequest":
case "Manual.SampleRequest":
if (a.value is AnswerString)
(a.value as AnswerString).value = data_obj_ex.get_string_data (a.key);
break;
default:
break;
}
//stdout.printf ("%s ", a.key);
}
stdout.putc ('\n');
//stdout.putc ('\n');
return true;
}