Changeset 86 for trunk/orca/qt
- Timestamp:
- 03/11/06 17:42:43 (3 years ago)
- Files:
-
- 1 modified
-
trunk/orca/qt/qorca.cpp (modified) (15 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/qt/qorca.cpp
r62 r86 691 691 692 692 693 static void execNative( OValue* a1)693 OR_NATIVE( execNative ) 694 694 { 695 695 if( a1->type == OT_INTEGER ) … … 760 760 761 761 762 static void execExitNative( OValue* a1)762 OR_NATIVE( execExitNative ) 763 763 { 764 764 execExit( qEnv.atom_exec_exit, a1 ); … … 766 766 767 767 768 static void closeNative( OValue* a1)768 OR_NATIVE( closeNative ) 769 769 { 770 770 execExit( qEnv.atom_close, a1 ); … … 772 772 773 773 774 static void showNative( OValue* a1)774 OR_NATIVE( showNative ) 775 775 { 776 776 WIDPool::REC* rec = qEnv.pool.record( a1->integer ); … … 823 823 824 824 825 static void dialogNative( OValue* a1)825 OR_NATIVE( dialogNative ) 826 826 { 827 827 SDialog* dlg = new SDialog; … … 834 834 835 835 836 static void widgetNative( OValue* a1)836 OR_NATIVE( widgetNative ) 837 837 { 838 838 SWidget* wid = new SWidget; … … 844 844 845 845 846 static void destroyNative( OValue* a1)846 OR_NATIVE( destroyNative ) 847 847 { 848 848 WIDPool::REC* rec = qEnv.pool.record( a1->integer ); … … 860 860 #define REF_RF_PATH a1+4 861 861 862 static void requestFileNative( OValue* a1)862 OR_NATIVE( requestFileNative ) 863 863 { 864 864 QString fn; … … 909 909 910 910 911 static void enableNative( OValue* a1)911 OR_NATIVE( enableNative ) 912 912 { 913 913 WIDPool::REC* rec = qEnv.pool.record( a1->integer ); … … 917 917 918 918 919 static void disableNative( OValue* a1)919 OR_NATIVE( disableNative ) 920 920 { 921 921 WIDPool::REC* rec = qEnv.pool.record( a1->integer ); … … 925 925 926 926 927 static void widgetValueNative( OValue* a1)927 OR_NATIVE( widgetValueNative ) 928 928 { 929 929 WIDPool::REC* rec = qEnv.pool.record( a1->integer ); … … 991 991 992 992 993 static void setWidgetValueNative( OValue* a1)993 OR_NATIVE( setWidgetValueNative ) 994 994 { 995 995 WIDPool::REC* rec = qEnv.pool.record( a1->integer ); … … 1067 1067 1068 1068 1069 static void appendTextNative( OValue* a1)1069 OR_NATIVE( appendTextNative ) 1070 1070 { 1071 1071 WIDPool::REC* rec = qEnv.pool.record( a1->integer ); … … 1112 1112 1113 1113 1114 static void messageNative( OValue* a1)1114 OR_NATIVE( messageNative ) 1115 1115 { 1116 1116 #define REF_MSG_WARN a1+2 … … 1241 1241 #ifdef DIR_WATCHER 1242 1242 extern void watchDirNative( OValue* ); 1243 extern void spawnNative( OValue* ); 1243 1244 orNative( (void*) watchDirNative, "watch-dir" ); 1245 orNative( (void*) spawnNative, "spawn" ); 1244 1246 #endif 1245 1247
