|
|
|
@ -1035,7 +1035,7 @@
|
|
|
|
|
KJS::Value callMethod(const TQString &methodName, KJS::List &args); |
|
|
|
|
void putValue( const TQString &valueName, const KJS::Value &value); |
|
|
|
|
|
|
|
|
|
Rich I have tests, but they retquire being compiled. We need a C++ tests |
|
|
|
|
Rich I have tests, but they require being compiled. We need a C++ tests |
|
|
|
|
directory at this point i think to show off what we are up to. |
|
|
|
|
|
|
|
|
|
2004-05-04 Tuesday 19:52 rich |
|
|
|
@ -1047,7 +1047,7 @@
|
|
|
|
|
- Improved the argument handling of kjscmd so that it will automatically |
|
|
|
|
invoke the console if there is no script to run. It will also call exec |
|
|
|
|
implicitly in this situation, though not if there is a script to invoke |
|
|
|
|
so the exec() call in the graphical scripts is still retquired. |
|
|
|
|
so the exec() call in the graphical scripts is still required. |
|
|
|
|
|
|
|
|
|
- Added a directory for a standard library of javascript utilities and put |
|
|
|
|
the command line prompt script in it - other reusable scripts and objects |
|
|
|
@ -2107,7 +2107,7 @@
|
|
|
|
|
|
|
|
|
|
2003-12-08 Monday 17:53 rich |
|
|
|
|
|
|
|
|
|
- Don't use -no-undefined as this now retquires libkjsembed. |
|
|
|
|
- Don't use -no-undefined as this now requires libkjsembed. |
|
|
|
|
|
|
|
|
|
2003-12-08 Monday 17:16 rich |
|
|
|
|
|
|
|
|
@ -2289,7 +2289,7 @@
|
|
|
|
|
Rich im not sure if this is the correct location for these, but |
|
|
|
|
they currently work. |
|
|
|
|
|
|
|
|
|
Added a demo to show off the new dcop stuff, retquires |
|
|
|
|
Added a demo to show off the new dcop stuff, requires |
|
|
|
|
KWeatherService from tdetoys to be running, since i dont |
|
|
|
|
know how to start a service from KJSEmbed yet. |
|
|
|
|
|
|
|
|
@ -2595,10 +2595,10 @@
|
|
|
|
|
InternalFunctionImp (the internal here refers to the fact they are native |
|
|
|
|
code rather than JS). This change fixes the problem that scripts could not |
|
|
|
|
properly inspect the methods (for example instanceof was broken). The |
|
|
|
|
InternalFunctionImp constructor retquires an ExecState, so a few incidental |
|
|
|
|
changes were retquired to accomodate this. |
|
|
|
|
InternalFunctionImp constructor requires an ExecState, so a few incidental |
|
|
|
|
changes were required to accomodate this. |
|
|
|
|
|
|
|
|
|
NOTE: This change retquires the patch to KJS that I just committed. |
|
|
|
|
NOTE: This change requires the patch to KJS that I just committed. |
|
|
|
|
|
|
|
|
|
- Added some missing d pointers. |
|
|
|
|
|
|
|
|
@ -2681,14 +2681,14 @@
|
|
|
|
|
|
|
|
|
|
- Reworked the handling of the JSFactory object. The factory is now a propery |
|
|
|
|
of the kpart rather than being global. This means that applications can have |
|
|
|
|
multiple active parts, each with their own factory. This change has retquired |
|
|
|
|
multiple active parts, each with their own factory. This change has required |
|
|
|
|
changes throughout KJSEmbed: |
|
|
|
|
|
|
|
|
|
- Changes to allow the static js objects to know which factory they should |
|
|
|
|
be using. |
|
|
|
|
|
|
|
|
|
- Changes to the proxies so they know which part they use rather than just |
|
|
|
|
which interpreter. This has retquired changes all over the place, but |
|
|
|
|
which interpreter. This has required changes all over the place, but |
|
|
|
|
better now than later. |
|
|
|
|
|
|
|
|
|
2003-10-18 Saturday 16:16 geiseri |
|
|
|
@ -2803,7 +2803,7 @@
|
|
|
|
|
more generic - rather than asking the factory if the object is a TQObject, it |
|
|
|
|
should be asking the factory if there is a wrapper available for the class. |
|
|
|
|
|
|
|
|
|
- Did most of the grunt work retquired to handle slot pointer return types |
|
|
|
|
- Did most of the grunt work required to handle slot pointer return types |
|
|
|
|
properly. At the time we bind a slot we extract the return type from the |
|
|
|
|
metaobject, the classname we obtain is stored in the slot binding |
|
|
|
|
implementation. |
|
|
|
@ -3085,7 +3085,7 @@
|
|
|
|
|
|
|
|
|
|
In addition to supporting the standard event handlers needed to |
|
|
|
|
write Qt/KDE wrappers, this code is intended to support weird |
|
|
|
|
compatibility stuff like kaxul. :-) This retquirement means we need |
|
|
|
|
compatibility stuff like kaxul. :-) This requirement means we need |
|
|
|
|
to allow for the possibility of custom event types, events mapping |
|
|
|
|
to custom handler names, and also custom signatures in event |
|
|
|
|
handlers. The same difficulties occur when support for custom |
|
|
|
@ -3668,7 +3668,7 @@
|
|
|
|
|
follows: TQRect -> [x,y,w,h], TQSize -> [w,h], TQPoint -> [x,y] |
|
|
|
|
|
|
|
|
|
- Changed the prototypes of a couple of methods that extract values so |
|
|
|
|
they take a KJS::ExecState parameter. This is retquired for us to |
|
|
|
|
they take a KJS::ExecState parameter. This is required for us to |
|
|
|
|
create arrays etc. in order to return complex values. |
|
|
|
|
|
|
|
|
|
- Began renaming the KJS::ExecState variables to 'exec' rather than |
|
|
|
@ -3686,7 +3686,7 @@
|
|
|
|
|
|
|
|
|
|
- Improved slot publishing code so that overloaded slots are |
|
|
|
|
supported. The first slot is published as before, subsequent slots |
|
|
|
|
with the same name get the number of arguments they retquire |
|
|
|
|
with the same name get the number of arguments they require |
|
|
|
|
appended. |
|
|
|
|
|
|
|
|
|
- Removed the childAt() and findChild() methods from the JSObjectProxy |
|
|
|
|