From e63beeb5bdb82987b1e00bc35178667786fbad48 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 5 Dec 2011 16:20:48 -0600 Subject: Fix incorrect conversion --- kjsembed/docs/tutorial/kjsembed.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'kjsembed/docs/tutorial') diff --git a/kjsembed/docs/tutorial/kjsembed.html b/kjsembed/docs/tutorial/kjsembed.html index 7e2c38fd..c9ae359e 100644 --- a/kjsembed/docs/tutorial/kjsembed.html +++ b/kjsembed/docs/tutorial/kjsembed.html @@ -54,7 +54,7 @@ pre {
  • Scripts can access the properties and slots of TQObjects as if they were normal Javascript properties and methods.
  • Scripts can load dialogs and widgets created with Qt Designer.
  • -
  • Scripts can create instances of anu TTQWidget subclass supported by TTQWidgetFactory.
  • +
  • Scripts can create instances of anu TQWidget subclass supported by TQWidgetFactory.
  • Making your own TQObjects/TQWidgets available for scripting is one-liner.
  • Scripts can traverse the widget tree, so your entire application can be made scriptable without explicitly binding every object.
  • @@ -88,11 +88,11 @@ JSConsoleWidget (KJSEmbed::JSConsoleWidget) kjs> console.childCount() 4 kjs> console.child(1) -CmdEdit (TTQComboBox) +CmdEdit (TQComboBox) kjs> console.child(2) -RunButton (TTQPushButton) +RunButton (TQPushButton) kjs> console.child("RunButton") -RunButton (TTQPushButton) +RunButton (TQPushButton) kjs> console.child("RunButton").text = "Go!" Go! kjs> console.caption = "Different Title" @@ -149,7 +149,7 @@ print( cmd );

    Listing 1: A Script That Displays the Grep Dialog

    In order to find out what the user asked us to search for we need to extract the contents of the various fields in our dialog. We know that the field for - entering the text to be searched for is a TTQLineEdit called 'search_edit', so + entering the text to be searched for is a TQLineEdit called 'search_edit', so we can use the child() method to get hold of it (this method searches through the children of an object until it finds one with a matching name). Once we've found the right object getting hold of the text is easy because all TQLineEdits -- cgit v1.2.3