[yast-commit] r67363 - /trunk/ycp-ui-bindings/examples/LogView2.ycp
Author: tgoettlicher Date: Fri Feb 3 17:16:32 2012 New Revision: 67363 URL: http://svn.opensuse.org/viewcvs/yast?rev=67363&view=rev Log: added an example for logview Added: trunk/ycp-ui-bindings/examples/LogView2.ycp Added: trunk/ycp-ui-bindings/examples/LogView2.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/ycp-ui-bindings/examples/LogView2.ycp?rev=67363&view=auto ============================================================================== --- trunk/ycp-ui-bindings/examples/LogView2.ycp (added) +++ trunk/ycp-ui-bindings/examples/LogView2.ycp Fri Feb 3 17:16:32 2012 @@ -0,0 +1,25 @@ +{ + + any button = nil; + + + UI::OpenDialog( + `VBox( + `LogView(`id(`log), + "Log View ", + 15, // visible lines + 0), // lines to store + `PushButton(`id(`ok), "&OK") + ) + ); + + repeat + { + string line = tostring(random(100)); + UI::ChangeWidget(`id(`log), `LastLine, line ); + button = UI::TimeoutUserInput(100); + + } until ( button == `ok ); + + UI::CloseDialog(); +} -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
tgoettlicher@svn2.opensuse.org