Tagged Questions
The qtscript tag has no wiki summary.
8
votes
2answers
1k views
How easy is Lua with Qt, compared to QtScript?
I'm just starting C++ development using Qt. However, I'm also interested in using Lua to script my app, given various articles stating its development speed (ease) for writing the workflow/ui/glue of ...
6
votes
2answers
3k views
Creating GUI application completely in QtScript, what is your opinion?
Since QT license change is announced I started to take a look at the QT framework. It looks nice, but I don't like having to use C++. I know there are different bindings for various languages, but ...
4
votes
1answer
402 views
QtScript: crash on 64-bit windows
I have compiled Qt for 64-bit architecture under windows and all works fine except QtScript. The following simple code, working perfectly with 32-bit Qt for windows installed from qtsoftware.com, ...
3
votes
0answers
121 views
QtScript instanceof with custom class throws prototype-related error
I have a Qt project which uses the QtScript module to make some components of my application scriptable.
After several attempts at making the existing classes directly usable in QtScript, I chose to ...
3
votes
2answers
475 views
Handling C++ exception thrown in function exported to QtScript
I am using the Qt script engine in my application as an alternative way for the user to access its functionality. As such, I export some C++ classes to the Qt ScriptEngine, that will serve as the ...
3
votes
1answer
189 views
Is it possible to use custom c++ classes with overloaded operators in QtScript?
Does anyone know if it is possible to have a C++ class with overloaded operators such as +,-,* and declare it somehow (this is where the magic happens) to a QtScriptEngine such that js-expressions ...
3
votes
2answers
317 views
How to use c++ std complex numbers in QtScript
I try to find out how to use complex numbers in QtScripts such that slots defined with complex arguments can be called from a QtScript. Also basic algebra (+,-,exp, ... ) of complex-numbers should be ...
2
votes
1answer
268 views
Qt: Q_PROPERTY with pointer and forward declaration for QtScript access
Problem
I am making a project using Q_OBJECT and Q_PROPERTY to access some objects from scripts. I have two problems:
making classes that use forward declarations scriptable
returning a property as ...
2
votes
3answers
105 views
Namespacing QScriptEngine extensions
Could someone explain to me how to get namespacing in the QScriptEngine extensions? I've set it up so I have a directory foo/ under script/, with an __init__.js file being executed.
...
2
votes
1answer
185 views
Deep copy of a QScriptValue as Global Object
I have a program using QtScript for some automation. I have added a bunch of C++ functions and classes to the global scope of the script engine so that scripts can access them, like so:
QScriptValue ...
2
votes
2answers
246 views
Problems with QScript
It’s all the day that I’m trying to make this code working. It should be the same code presented in the QScript help page but unfortunately it doesn’t work at all!
class Person
{
public:
QString nm;
...
2
votes
3answers
961 views
STL operator= behavior change with Visual Studio 2010?
I am attempting to compile QtScriptGenerator (gitorious) with Visual Studio 2010 (C++) and have run into a compile error. In searching for a solution, I have seen occasional references to compile ...
2
votes
2answers
279 views
Functions connected to signals in QtScript (on Qt 4.5.2) are not firing
I've injected into a proprietary Qt (4.5.2) application, added my own compatible build of QtScript, and have managed to get access to all the signals I need. However, when connecting to them (via ...
2
votes
1answer
855 views
Any decent QtScript tutorial?
Is there any good QtScript tutorial that isn't about slots or accessing c++ values from script? All I need is one function in external file that uses some regexps on array values and then sends output ...
2
votes
1answer
816 views
Qt: Add UI Elements using Qt Script
Is it possible to add new GUI elements into a Qt program using QtScript? For instance assuming the variable "layout" is a vertical layout would this be acceptable?
var label = new QLabel("Text");
...
1
vote
1answer
120 views
Problem in variable affectation in QtScript
I'm trying to get the result of a script simple operation on the C++ side.
I create a QScriptValue (myvar) and call engine.globalObject().setProperty("result", myvar);
Then I evaluate "result = ...
1
vote
2answers
205 views
QtScript Introspection/Reflection?
Does QtScript support introspection/reflection (i.e. like python's dir() for example) that would enble me to 'map out' an api from the inside by exploring the object model at runtime?
1
vote
2answers
197 views
QtScript output redirection
When I call this code:
QScriptEngine e;
e.evaluate("print('hello, world!')");
the output text (from print method) is written to main application's terminal.
Is there any way to redirect it to a ...
1
vote
1answer
259 views
Error passing custom Object from QtScript to C++
I have written a custom class which is available in QtScript through a Prototype. Also another global class is available which should be used to print the custom class generated in QtScript.
This ...
1
vote
1answer
332 views
Using a member function with QScriptEngine::newFunction
Hey all,
Let's take the case of a simple class:
QScriptEngine engine;
class MyClass {
public:
QScriptValue foo(QScriptContext*, QScriptEngine*);
MyClass();
};
QScriptValue ...
1
vote
2answers
173 views
May one create an open source scripting application using QtScript?
I'd like to implement my own script engine using the QtScript component and other Qt components.
Since this should be an open source (GPL) application I thought I would be free to do this.
But now I ...
0
votes
1answer
33 views
QtScript and threads
I want to run several concurrent jobs from QtScript script:
function job1() { ... }
function job2() { ... }
runConcurrentJobs(job1, job2)
The jobs a essentially sequences of remote procedure calls ...
0
votes
0answers
43 views
How much memory is taking a QScriptEngine environment?
Can i measure the total allocated memory by one QScriptEngine environment? I have a application with many instances of QScriptEngine in the same process and i need to known how much memory each ...
0
votes
2answers
61 views
How to make normal public methods available in QtScript
In my Qt application, all controls of a dialog are accessible to scripts using QtScript.
To do this I use the newQObject method of QScriptEngine, like:
QScriptValue btn = ...
0
votes
1answer
141 views
Qt Qvariantlist conversion into javascript array unsuccessful
I'm currently create an apps in Meego using QML and JS on most of the part. and now I stumbled upon a problem.
From javascript I want to call a C++ function to read text file, parse it, and then ...
0
votes
1answer
75 views
How to create an 'array-like' property that JS code can modify in place?
I have a QObject-derived class that looks like this:
class TestObject : public QObject
{
Q_OBJECT
Q_PROPERTY(QStringList contents READ contents WRITE setContents)
public:
QStringList ...
0
votes
0answers
123 views
QtScript variable interface with C++
I'm trying to interface a QtScript with a custom C++ variables collector. Variables are stored in a memory filesystem way and arrays are not supported. I can store variables with those names "var[0]", ...
0
votes
0answers
78 views
QtScript differences between KDE 4.4 and KDE 4.6
I developed a kde plasmoid in javascript with kde 4.4. Now I installed a new Version( 4.6 ) and the plasmoid no longer works.
1.) I have a (string)variable, and want to test the length. I did it with
...
0
votes
1answer
342 views
Qt: what are the differences between QtScript and Javascript in Webkit
I am familiar with web development so I know exactly what Javascript can do in webkit. If I want to employ the scripting feature in my apps, I think there are two ways:
Employ qtwebkit and open a ...
0
votes
1answer
256 views
Design C++ method that accepts variable number arguments passed from QtScript
I am learning QtScript and wrote several trivial examples. The mapping is straightforward if I limit arguments to simple types.
I now want to be able to pass variable number of arguments from ...
0
votes
2answers
186 views
Chaining constructors in JavaScript
I'm trying to implement some kind of class hierarchy in JavaScript. I
think I understood the prototype chain, but I still have to sort out the
constructor-chaining. Following David Flanagan's ...
0
votes
1answer
153 views
override operator with qtscript
I want do a math editor using qtscript.
It will support array calculating in script. Such as array1 + array2 = array3.({1,2,3}+{3,4,5} = {4,6,8});
Maybe I need override operator+,
I consult the ...
0
votes
1answer
613 views
QtScript: Passing an array of objects to C++
I want to pass an array of objects from my QtScript to C++ but I have not been able to figure out how to achieve this. As soon as I create an array, the elements inside it are converted to strings ...
0
votes
1answer
226 views
Accessing not Non-QObject-based objects from Qt Script
Is there any nice and simple way to access non QObject-based classes, such as QXmlQuery, QDateTime etc. from Qt Script?
The only way I see is to wrap QXmlQuery in another class that inherits QObject ...
0
votes
2answers
303 views
QtScript: how to reload current script?
QScriptEngine has evaluate() method that can be used to load script, execute it and to run a specified function from already loaded script. But how to clear current script and load a new one? For ...
0
votes
2answers
230 views
Can you implement lazy array access in QtScript?
Is it possible to implement a QObject for use in QtScript which overloads [] to implement lazy array population?
I want to implement something like this:
var bar = foo["bar"];
and have the value ...