rhodes 3.0.2 → 3.1.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1393) hide show
  1. data/CHANGELOG +13 -2
  2. data/Rakefile +200 -18
  3. data/bin/get-rhodes-info +1 -1
  4. data/doc/build.txt +174 -98
  5. data/doc/configuration.txt +13 -2
  6. data/doc/device-caps.txt +184 -24
  7. data/doc/extensions.txt +19 -1
  8. data/doc/generator.txt +18 -18
  9. data/doc/install.txt +15 -4
  10. data/doc/introduction.txt +19 -20
  11. data/doc/nfc.txt +1617 -513
  12. data/doc/release.txt +85 -41
  13. data/doc/rhom.txt +11 -1
  14. data/doc/simulator.txt +15 -5
  15. data/doc/synchronization.txt +21 -7
  16. data/doc/ui.txt +4 -0
  17. data/installer/rhostudio.nsi +464 -0
  18. data/lib/build/compileERB/bb.rb +26 -0
  19. data/lib/build/compileERB/default.rb +26 -0
  20. data/lib/build/compileRB/compileRB.rb +26 -0
  21. data/lib/build/jake.rb +27 -2
  22. data/lib/build/rhodes-build.rb +26 -0
  23. data/lib/extensions/barcode/ext.yml +3 -0
  24. data/lib/extensions/barcode/ext/barcode/platform/android/AndroidManifest.xml +27 -0
  25. data/lib/extensions/barcode/ext/barcode/platform/android/Rakefile +13 -13
  26. data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/drawable-hdpi/cancel_icon.png +0 -0
  27. data/{platform/wp7/WPApplication/rho/apps/public/images/android/btn_check_on.png → lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/drawable-hdpi/ok_icon.png} +0 -0
  28. data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/drawable-hdpi/retake_icon.png +0 -0
  29. data/{platform/wp7/WPApplication/rho/apps/public/images/android/btn_radio_on.png → lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/drawable/cancel_icon.png} +0 -0
  30. data/{platform/wp7/WPApplication/rho/apps/public/images/android/disclosure.png → lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/drawable/ok_icon.png} +0 -0
  31. data/{platform/wp7/WPApplication/rho/apps/public/images/android/btn_radio_off.png → lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/drawable/retake_icon.png} +0 -0
  32. data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/layout/capture.xml +122 -0
  33. data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/raw/beep.ogg +0 -0
  34. data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/values/attrs.xml +20 -0
  35. data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/values/colors.xml +42 -0
  36. data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/values/ids.xml +31 -0
  37. data/lib/extensions/barcode/ext/barcode/platform/android/ext_build.files +15 -0
  38. data/lib/extensions/barcode/ext/barcode/platform/android/jni/src/barcode.cpp +16 -0
  39. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/CaptureActivity.java +778 -0
  40. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/CaptureActivityHandler.java +136 -0
  41. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/DecodeHandler.java +99 -0
  42. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/DecodeThread.java +121 -0
  43. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/FinishListener.java +48 -0
  44. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/InactivityTimer.java +71 -0
  45. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/LocaleManager.java +97 -0
  46. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/PlanarYUVLuminanceSource.java +133 -0
  47. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/ViewfinderResultPointCallback.java +34 -0
  48. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/ViewfinderView.java +157 -0
  49. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/camera/AutoFocusCallback.java +51 -0
  50. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/camera/CameraConfigurationManager.java +280 -0
  51. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/camera/CameraManager.java +318 -0
  52. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/camera/FlashlightManager.java +148 -0
  53. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/camera/PreviewCallback.java +59 -0
  54. data/lib/extensions/barcode/ext/barcode/platform/android/src/com/rhomobile/barcode/Barcode.java +44 -1
  55. data/lib/extensions/barcode/ext/barcode/platform/bb/Rakefile +1 -1
  56. data/lib/extensions/barcode/ext/barcode/platform/iphone/Classes/barcode.m +4 -0
  57. data/lib/extensions/barcode/ext/barcode/shared/ruby/barcode.i +5 -0
  58. data/lib/extensions/barcode/ext/barcode/shared/ruby/barcode_wrap.c +138 -389
  59. data/lib/extensions/barcode/ext/barcode/shared/src/zbar.c +5 -0
  60. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/README.TXT +5 -0
  61. data/lib/extensions/debugger/CHANGELOG +10 -0
  62. data/lib/extensions/debugger/LICENSE +21 -0
  63. data/lib/extensions/debugger/README.md +8 -0
  64. data/lib/extensions/debugger/debugger.rb +57 -9
  65. data/lib/extensions/esri/ext/esri/platform/iphone/Classes/MapViewControllerESRI.h +24 -7
  66. data/lib/extensions/esri/ext/esri/platform/iphone/Classes/MapViewControllerESRI.m +18 -17
  67. data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/Nfc.java +9 -4
  68. data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/NfcActivity.java +1 -1
  69. data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/NfcMessage.java +0 -1
  70. data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/NfcMessagePack.java +0 -1
  71. data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/NfcRecord.java +1 -1
  72. data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/NfcTechActivity.java +0 -1
  73. data/lib/extensions/nfc/nfc.rb +9 -3
  74. data/lib/extensions/rholang/rholang/lang_cs.rb +3 -3
  75. data/lib/extensions/rholang/rholang/lang_da.rb +3 -3
  76. data/lib/extensions/rholang/rholang/lang_de.rb +3 -3
  77. data/lib/extensions/rholang/rholang/lang_es.rb +3 -3
  78. data/lib/extensions/rholang/rholang/lang_es_ar.rb +3 -3
  79. data/lib/extensions/rholang/rholang/lang_ko.rb +3 -3
  80. data/lib/extensions/rholang/rholang/lang_nl.rb +3 -3
  81. data/lib/extensions/rholang/rholang/lang_no.rb +3 -3
  82. data/lib/extensions/rholang/rholang/lang_pt_br.rb +4 -4
  83. data/lib/extensions/rholang/rholang/lang_se.rb +3 -3
  84. data/lib/extensions/rholang/rholang/lang_sr.rb +3 -3
  85. data/lib/framework/builtinME.rb +31 -2
  86. data/lib/framework/dateME.rb +26 -0
  87. data/lib/framework/res/back_btn.sym.png +0 -0
  88. data/lib/framework/res/blue_pushpin_small.sym.png +0 -0
  89. data/lib/framework/res/callout.sym.png +0 -0
  90. data/lib/framework/res/callout_link.sym.png +0 -0
  91. data/lib/framework/res/esri.sym.png +0 -0
  92. data/lib/framework/res/forward_btn.sym.png +0 -0
  93. data/lib/framework/res/home_btn.sym.png +0 -0
  94. data/{platform/wp7/WPApplication/rho/apps/public/images/android/btn_check_off.png → lib/framework/res/options_btn.sym.png} +0 -0
  95. data/lib/framework/res/refresh_btn.sym.png +0 -0
  96. data/lib/framework/rho/mapview.rb +26 -0
  97. data/lib/framework/rho/render.rb +34 -2
  98. data/lib/framework/rho/rho.rb +28 -2
  99. data/lib/framework/rho/rhoapplication.rb +26 -0
  100. data/lib/framework/rho/rhobluetooth.rb +70 -0
  101. data/lib/framework/rho/rhocontact.rb +26 -0
  102. data/lib/framework/rho/rhocontroller.rb +26 -0
  103. data/lib/framework/rho/rhoerror.rb +26 -0
  104. data/lib/framework/rho/rhoevent.rb +26 -0
  105. data/lib/framework/rho/rhoevent_bb.rb +26 -0
  106. data/lib/framework/rho/rhoevent_c.rb +26 -0
  107. data/lib/framework/rho/rhofsconnector.rb +25 -0
  108. data/lib/framework/rho/rhomsg.rb +26 -0
  109. data/lib/framework/rho/rhonativeviewmanager.rb +25 -0
  110. data/lib/framework/rho/rhosupport.rb +32 -1
  111. data/lib/framework/rho/rhotabbar.rb +27 -1
  112. data/lib/framework/rho/rhotoolbar.rb +26 -1
  113. data/lib/framework/rho/rhoutils.rb +26 -0
  114. data/lib/framework/rho/rhoviewhelpers.rb +26 -0
  115. data/lib/framework/rhoappmanifest.rb +26 -0
  116. data/lib/framework/rhodes.rb +1 -1
  117. data/lib/framework/rhoframework.rb +77 -0
  118. data/lib/framework/rhom/rhom.rb +30 -19
  119. data/lib/framework/rhom/rhom_db_adapter.rb +26 -19
  120. data/lib/framework/rhom/rhom_model.rb +25 -0
  121. data/lib/framework/rhom/rhom_object.rb +26 -19
  122. data/lib/framework/rhom/rhom_object_factory.rb +73 -55
  123. data/lib/framework/rhom/rhom_source.rb +26 -0
  124. data/lib/framework/rhosystem.rb +47 -16
  125. data/lib/framework/version.rb +1 -1
  126. data/lib/rhodes.rb +1 -1
  127. data/platform/android/Rhodes/AndroidManifest.xml +5 -4
  128. data/platform/android/Rhodes/default.properties +1 -1
  129. data/platform/android/Rhodes/jni/Android.mk +365 -0
  130. data/platform/android/Rhodes/jni/Application.mk +3 -0
  131. data/platform/android/Rhodes/jni/genconfig.h +17 -0
  132. data/platform/android/Rhodes/jni/include/rhodes.h +26 -0
  133. data/platform/android/Rhodes/jni/include/rhodes/JNIRhoRuby.h +71 -0
  134. data/platform/android/Rhodes/jni/include/rhodes/JNIRhodes.h +47 -33
  135. data/platform/android/Rhodes/jni/include/rhodes/RhoClassFactory.h +46 -1
  136. data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_RhoLogConf.h +11 -11
  137. data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_RhodesService.h +1 -9
  138. data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_camera_Camera.h +2 -2
  139. data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_file_RhoFileApi.h +8 -0
  140. data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_mainview_SplashScreen.h +39 -0
  141. data/platform/android/Rhodes/jni/include/rhodes/rhocryptimpl.h +26 -0
  142. data/platform/android/Rhodes/jni/include/rhodes/sslimpl.h +26 -0
  143. data/platform/android/Rhodes/jni/rhocaps.inc +12 -0
  144. data/platform/android/Rhodes/jni/src/JNIRhoRuby.cpp +204 -0
  145. data/platform/android/Rhodes/jni/src/RhoClassFactory.cpp +32 -5
  146. data/platform/android/Rhodes/jni/src/alert.cpp +29 -5
  147. data/platform/android/Rhodes/jni/src/bluetooth.cpp +68 -3
  148. data/platform/android/Rhodes/jni/src/callbacks.cpp +40 -15
  149. data/platform/android/Rhodes/jni/src/camera.cpp +84 -7
  150. data/platform/android/Rhodes/jni/src/datetimepicker.cpp +26 -0
  151. data/platform/android/Rhodes/jni/src/event.cpp +27 -0
  152. data/platform/android/Rhodes/jni/src/fileapi.cpp +66 -2
  153. data/platform/android/Rhodes/jni/src/geolocation.cpp +26 -0
  154. data/platform/android/Rhodes/jni/src/logconf.cpp +44 -29
  155. data/platform/android/Rhodes/jni/src/logger.cpp +26 -0
  156. data/platform/android/Rhodes/jni/src/mapview.cpp +30 -0
  157. data/platform/android/Rhodes/jni/src/menu.cpp +26 -0
  158. data/platform/android/Rhodes/jni/src/nativebar.cpp +27 -8
  159. data/platform/android/Rhodes/jni/src/nativeview.cpp +26 -0
  160. data/platform/android/Rhodes/jni/src/navbar.cpp +27 -0
  161. data/platform/android/Rhodes/jni/src/phonebook.cpp +27 -0
  162. data/platform/android/Rhodes/jni/src/rhoconf.cpp +26 -0
  163. data/platform/android/Rhodes/jni/src/rhocryptimpl.cpp +26 -0
  164. data/platform/android/Rhodes/jni/src/rhodes.cpp +40 -593
  165. data/platform/android/Rhodes/jni/src/rhodesapp.cpp +326 -0
  166. data/platform/android/Rhodes/jni/src/rhodessystem.cpp +186 -0
  167. data/platform/android/Rhodes/jni/src/ringtones.cpp +27 -0
  168. data/platform/android/Rhodes/jni/src/signature.cpp +26 -0
  169. data/platform/android/Rhodes/jni/src/socketimpl.cpp +26 -0
  170. data/platform/android/Rhodes/jni/src/splashscreen.cpp +30 -4
  171. data/platform/android/Rhodes/jni/src/sslimpl.cpp +27 -0
  172. data/platform/android/Rhodes/jni/src/webview.cpp +27 -0
  173. data/platform/android/Rhodes/src/com/rhomobile/rhodes/BaseActivity.java +26 -0
  174. data/platform/android/Rhodes/src/com/rhomobile/rhodes/HttpLog.java +25 -19
  175. data/platform/android/Rhodes/src/com/rhomobile/rhodes/LocalFileProvider.java +26 -0
  176. data/platform/android/Rhodes/src/com/rhomobile/rhodes/Logger.java +25 -19
  177. data/platform/android/Rhodes/src/com/rhomobile/rhodes/NativeBar.java +25 -19
  178. data/platform/android/Rhodes/src/com/rhomobile/rhodes/NativeLibraries.java +26 -0
  179. data/platform/android/Rhodes/src/com/rhomobile/rhodes/NavBar.java +26 -0
  180. data/platform/android/Rhodes/src/com/rhomobile/rhodes/Push.java +27 -0
  181. data/platform/android/Rhodes/src/com/rhomobile/rhodes/PushReceiver.java +26 -0
  182. data/platform/android/Rhodes/src/com/rhomobile/rhodes/PushService.java +26 -0
  183. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoConf.java +26 -0
  184. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoCryptImpl.java +29 -2
  185. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoLogConf.java +36 -30
  186. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoMenu.java +26 -0
  187. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesActivity.java +81 -73
  188. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesActivityListener.java +26 -0
  189. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesActivityStartupListeners.java +1 -0
  190. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesAppOptions.java +26 -0
  191. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesApplication.java +26 -0
  192. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesService.java +83 -38
  193. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RingtoneManager.java +25 -19
  194. data/platform/android/Rhodes/src/com/rhomobile/rhodes/WebView.java +25 -19
  195. data/platform/android/Rhodes/src/com/rhomobile/rhodes/alert/Alert.java +25 -19
  196. data/platform/android/Rhodes/src/com/rhomobile/rhodes/alert/PopupActivity.java +26 -0
  197. data/platform/android/Rhodes/src/com/rhomobile/rhodes/alert/StatusNotification.java +26 -0
  198. data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/IRhoBluetoothManager.java +33 -0
  199. data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothDeviceListActivity.java +35 -2
  200. data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothManager.java +52 -3
  201. data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothManagerNew.java +182 -56
  202. data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothManagerOld.java +41 -2
  203. data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothSession.java +60 -23
  204. data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/UUIDHelper.java +26 -0
  205. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/Camera.java +162 -27
  206. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraNewService.java +152 -0
  207. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraOldService.java +49 -0
  208. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraSemiService.java +140 -0
  209. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraService.java +49 -0
  210. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraSettings.java +147 -0
  211. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/FileList.java +27 -21
  212. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/ImageCapture.java +124 -53
  213. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/ImageCaptureCallback.java +39 -25
  214. data/platform/android/Rhodes/src/com/rhomobile/rhodes/datetime/DateTimePicker.java +25 -19
  215. data/platform/android/Rhodes/src/com/rhomobile/rhodes/datetime/DateTimePickerScreen.java +25 -19
  216. data/platform/android/Rhodes/src/com/rhomobile/rhodes/event/Event.java +26 -0
  217. data/platform/android/Rhodes/src/com/rhomobile/rhodes/event/EventStore.java +26 -0
  218. data/platform/android/Rhodes/src/com/rhomobile/rhodes/file/RhoFileApi.java +75 -9
  219. data/platform/android/Rhodes/src/com/rhomobile/rhodes/geolocation/GeoLocation.java +25 -20
  220. data/platform/android/Rhodes/src/com/rhomobile/rhodes/geolocation/GeoLocationImpl.java +25 -20
  221. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/MainView.java +25 -19
  222. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/SimpleMainView.java +28 -22
  223. data/platform/android/Rhodes/src/com/rhomobile/rhodes/{SplashScreen.java → mainview/SplashScreen.java} +73 -22
  224. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/TabbedMainView.java +27 -21
  225. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/Annotation.java +26 -0
  226. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/AnnotationsOverlay.java +26 -0
  227. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/ExtrasHolder.java +51 -0
  228. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/GoogleMapView.java +41 -3
  229. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java +26 -0
  230. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapView.java +26 -0
  231. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MultiTouchHandler.java +26 -0
  232. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/OneTouchHandler.java +26 -0
  233. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/TouchHandler.java +26 -0
  234. data/platform/android/Rhodes/src/com/rhomobile/rhodes/nativeview/RhoNativeViewManager.java +26 -0
  235. data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/Contact.java +25 -19
  236. data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/ContactAccessor.java +26 -0
  237. data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/ContactAccessorNew.java +26 -0
  238. data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/ContactAccessorOld.java +26 -0
  239. data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/ContactField.java +25 -19
  240. data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/Phonebook.java +25 -19
  241. data/platform/android/Rhodes/src/com/rhomobile/rhodes/signature/ImageCapture.java +26 -20
  242. data/platform/android/Rhodes/src/com/rhomobile/rhodes/signature/Signature.java +25 -19
  243. data/platform/android/Rhodes/src/com/rhomobile/rhodes/signature/SignatureView.java +25 -19
  244. data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/RhoSockAddr.java +26 -0
  245. data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/RhoSocket.java +26 -0
  246. data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/RhoSocketImpl.java +28 -0
  247. data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/SSLImpl.java +85 -30
  248. data/platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java +25 -20
  249. data/platform/android/Rhodes/src/com/rhomobile/rhodes/ui/LogOptionsDialog.java +32 -30
  250. data/platform/android/Rhodes/src/com/rhomobile/rhodes/ui/LogViewDialog.java +29 -28
  251. data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/ExternalHttpHandler.java +26 -0
  252. data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/LocalFileHandler.java +26 -0
  253. data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/MailUriHandler.java +25 -20
  254. data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/SmsUriHandler.java +25 -20
  255. data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/TelUriHandler.java +25 -20
  256. data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/UriHandler.java +25 -20
  257. data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/VideoUriHandler.java +25 -20
  258. data/platform/android/Rhodes/src/com/rhomobile/rhodes/util/ContextFactory.java +38 -0
  259. data/platform/android/Rhodes/src/com/rhomobile/rhodes/util/PerformOnUiThread.java +26 -0
  260. data/platform/android/Rhodes/src/com/rhomobile/rhodes/util/PhoneId.java +137 -0
  261. data/platform/android/Rhodes/src/com/rhomobile/rhodes/{Utils.java → util/Utils.java} +27 -17
  262. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/ChromeClientNew.java +26 -0
  263. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/ChromeClientOld.java +26 -0
  264. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettings.java +26 -0
  265. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java +27 -0
  266. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsOld.java +26 -0
  267. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebViewClient.java +107 -0
  268. data/platform/android/build/RhodesSRC_build.files +11 -4
  269. data/platform/android/build/android.rake +79 -116
  270. data/platform/android/build/android_tools.rb +117 -0
  271. data/platform/android/build/androidcommon.rb +30 -4
  272. data/platform/android/build/libjson_build.files +1 -1
  273. data/platform/android/build/librhodes_build.files +3 -0
  274. data/platform/bb/Hsqldb/src/com/rho/db/FileUtilBB.java +26 -0
  275. data/platform/bb/Hsqldb/src/com/rho/db/HsqlDBResult.java +26 -0
  276. data/platform/bb/Hsqldb/src/com/rho/db/HsqlDBRowResult.java +26 -0
  277. data/platform/bb/Hsqldb/src/com/rho/db/HsqlDBStorage.java +26 -0
  278. data/platform/bb/Hsqldb/src/com/rho/db/Journal.java +26 -0
  279. data/platform/bb/Hsqldb/src/j2me/math/BigDecimal.java +26 -0
  280. data/platform/bb/Hsqldb/src/j2me/math/BigInteger.java +26 -0
  281. data/platform/bb/Hsqldb/src/j2me/sql/Date.java +26 -0
  282. data/platform/bb/Hsqldb/src/j2me/sql/Time.java +26 -0
  283. data/platform/bb/Hsqldb/src/j2me/sql/Timestamp.java +26 -0
  284. data/platform/bb/RubyVM/src/com/rho/DateTimeTokenizer.java +26 -0
  285. data/platform/bb/RubyVM/src/com/rho/FilePath.java +26 -0
  286. data/platform/bb/RubyVM/src/com/rho/IRhoLogSink.java +26 -0
  287. data/platform/bb/RubyVM/src/com/rho/IRhoRubyHelper.java +27 -0
  288. data/platform/bb/RubyVM/src/com/rho/Mutex.java +26 -0
  289. data/platform/bb/RubyVM/src/com/rho/Properties.java +26 -0
  290. data/platform/bb/RubyVM/src/com/rho/RhoAppAdapter.java +26 -0
  291. data/platform/bb/RubyVM/src/com/rho/RhoClassFactory.java +26 -0
  292. data/platform/bb/RubyVM/src/com/rho/RhoConf.java +26 -0
  293. data/platform/bb/RubyVM/src/com/rho/RhoCrypto.java +26 -0
  294. data/platform/bb/RubyVM/src/com/rho/RhoEmptyLogger.java +26 -0
  295. data/platform/bb/RubyVM/src/com/rho/RhoEmptyProfiler.java +26 -0
  296. data/platform/bb/RubyVM/src/com/rho/RhoLogConf.java +52 -1
  297. data/platform/bb/RubyVM/src/com/rho/RhoLogFileSink.java +26 -0
  298. data/platform/bb/RubyVM/src/com/rho/RhoLogOutputSink.java +26 -0
  299. data/platform/bb/RubyVM/src/com/rho/RhoLogger.java +111 -2
  300. data/platform/bb/RubyVM/src/com/rho/RhoParamArray.java +26 -0
  301. data/platform/bb/RubyVM/src/com/rho/RhoParams.java +26 -0
  302. data/platform/bb/RubyVM/src/com/rho/RhoProfiler.java +26 -0
  303. data/platform/bb/RubyVM/src/com/rho/RhoRuby.java +26 -0
  304. data/platform/bb/RubyVM/src/com/rho/RhoThread.java +26 -0
  305. data/platform/bb/RubyVM/src/com/rho/RhoTimer.java +26 -0
  306. data/platform/bb/RubyVM/src/com/rho/RhodesApp.java +32 -3
  307. data/platform/bb/RubyVM/src/com/rho/SplashScreen.java +26 -0
  308. data/platform/bb/RubyVM/src/com/rho/Sprintf.java +26 -0
  309. data/platform/bb/RubyVM/src/com/rho/StringScanner.java +26 -0
  310. data/platform/bb/RubyVM/src/com/rho/TestProfiler.java +26 -0
  311. data/platform/bb/RubyVM/src/com/rho/TestRhoLog.java +26 -0
  312. data/platform/bb/RubyVM/src/com/rho/ThreadQueue.java +26 -0
  313. data/platform/bb/RubyVM/src/com/rho/TimeInterval.java +26 -0
  314. data/platform/bb/RubyVM/src/com/rho/Tokenizer.java +26 -0
  315. data/platform/bb/RubyVM/src/com/rho/db/DBAdapter.java +32 -0
  316. data/platform/bb/RubyVM/src/com/rho/db/DBAttrManager.java +26 -0
  317. data/platform/bb/RubyVM/src/com/rho/db/DBException.java +26 -0
  318. data/platform/bb/RubyVM/src/com/rho/db/IDBCallback.java +26 -0
  319. data/platform/bb/RubyVM/src/com/rho/db/IDBResult.java +26 -0
  320. data/platform/bb/RubyVM/src/com/rho/db/IDBStorage.java +26 -0
  321. data/platform/bb/RubyVM/src/com/rho/file/FileAccessBB.java +26 -0
  322. data/platform/bb/RubyVM/src/com/rho/file/IFile.java +26 -0
  323. data/platform/bb/RubyVM/src/com/rho/file/IFileAccess.java +26 -0
  324. data/platform/bb/RubyVM/src/com/rho/file/IRAFile.java +26 -0
  325. data/platform/bb/RubyVM/src/com/rho/file/RandomAccessFile.java +26 -0
  326. data/platform/bb/RubyVM/src/com/rho/file/RhoFile.java +26 -0
  327. data/platform/bb/RubyVM/src/com/rho/file/SimpleFile.java +26 -0
  328. data/platform/bb/RubyVM/src/com/rho/net/AsyncHttp.java +26 -0
  329. data/platform/bb/RubyVM/src/com/rho/net/IHttpConnection.java +26 -0
  330. data/platform/bb/RubyVM/src/com/rho/net/NetRequest.java +295 -230
  331. data/platform/bb/RubyVM/src/com/rho/net/RhoConnection.java +29 -16
  332. data/platform/bb/RubyVM/src/com/rho/rjson/RJSONTokener.java +26 -0
  333. data/platform/bb/RubyVM/src/com/rho/sync/ISyncProtocol.java +26 -0
  334. data/platform/bb/RubyVM/src/com/rho/sync/ISyncStatusListener.java +26 -0
  335. data/platform/bb/RubyVM/src/com/rho/sync/JSONArrayIterator.java +26 -0
  336. data/platform/bb/RubyVM/src/com/rho/sync/JSONEntry.java +26 -0
  337. data/platform/bb/RubyVM/src/com/rho/sync/JSONStructIterator.java +26 -0
  338. data/platform/bb/RubyVM/src/com/rho/sync/SyncEngine.java +26 -19
  339. data/platform/bb/RubyVM/src/com/rho/sync/SyncNotify.java +26 -0
  340. data/platform/bb/RubyVM/src/com/rho/sync/SyncProtocol_3.java +31 -5
  341. data/platform/bb/RubyVM/src/com/rho/sync/SyncSource.java +49 -37
  342. data/platform/bb/RubyVM/src/com/rho/sync/SyncThread.java +40 -18
  343. data/platform/bb/RubyVM/src/com/xruby/runtime/builtin/RubyDir.java +2 -1
  344. data/platform/bb/RubyVM/src/com/xruby/runtime/builtin/RubyIOFileExecutor.java +7 -2
  345. data/platform/bb/RubyVM/src/com/xruby/runtime/builtin/RubyTime.java +43 -13
  346. data/platform/bb/RubyVM/src/j2me/lang/ArrayMe.java +26 -0
  347. data/platform/bb/RubyVM/src/j2me/lang/AssertMe.java +26 -0
  348. data/platform/bb/RubyVM/src/j2me/lang/CalendarMe.java +28 -1
  349. data/platform/bb/RubyVM/src/j2me/lang/CharacterDataLatin1.java +26 -0
  350. data/platform/bb/RubyVM/src/j2me/lang/CharacterMe.java +26 -0
  351. data/platform/bb/RubyVM/src/j2me/lang/Convert.java +26 -0
  352. data/platform/bb/RubyVM/src/j2me/lang/MathEx.java +26 -0
  353. data/platform/bb/RubyVM/src/j2me/lang/PrintStreamMe.java +26 -0
  354. data/platform/bb/RubyVM/src/j2me/lang/StringBufferMe.java +26 -0
  355. data/platform/bb/RubyVM/src/j2me/lang/StringMe.java +26 -0
  356. data/platform/bb/RubyVM/src/j2me/lang/SystemMe.java +26 -0
  357. data/platform/bb/RubyVM/src/j2me/lang/TimeZoneMe.java +26 -0
  358. data/platform/bb/RubyVM/src/j2me/math/HugeDigit.java +26 -0
  359. data/platform/bb/RubyVM/src/j2me/math/HugeInt.java +26 -0
  360. data/platform/bb/RubyVM/src/j2me/math/HugeIntHelper.java +26 -0
  361. data/platform/bb/RubyVM/src/j2me/math/Number.java +26 -0
  362. data/platform/bb/RubyVM/src/j2me/nio/channels/FileChannel.java +26 -0
  363. data/platform/bb/RubyVM/src/j2me/nio/channels/Pipe.java +26 -0
  364. data/platform/bb/RubyVM/src/j2me/util/WeakHashMap.java +26 -0
  365. data/platform/bb/RubyVM/src/j2me/util/concurrent/ConcurrentHashMap.java +26 -0
  366. data/platform/bb/RubyVM/src/j2me/util/concurrent/locks/ReentrantLock.java +26 -0
  367. data/platform/bb/build/bb.rake +45 -6
  368. data/platform/bb/rhodes/platform/4.2.0/com/rho/BBVersionSpecific.java +26 -0
  369. data/platform/bb/rhodes/platform/4.2.1/com/rho/BBVersionSpecific.java +26 -0
  370. data/platform/bb/rhodes/platform/4.2.2/com/rho/BBVersionSpecific.java +26 -0
  371. data/platform/bb/rhodes/platform/4.2/com/rho/BBVersionSpecific.java +26 -0
  372. data/platform/bb/rhodes/platform/4.7/com/rho/RhoMainScreen.java +26 -0
  373. data/platform/bb/rhodes/platform/5.0/com/rho/BrowserAdapter5.java +26 -0
  374. data/platform/bb/rhodes/platform/5.0/com/rho/RhodesApplicationPlatform.java +26 -0
  375. data/platform/bb/rhodes/platform/5.0/com/rho/db/SqliteCopyResult.java +26 -0
  376. data/platform/bb/rhodes/platform/5.0/com/rho/db/SqliteResult.java +26 -0
  377. data/platform/bb/rhodes/platform/5.0/com/rho/db/SqliteStorage.java +26 -0
  378. data/platform/bb/rhodes/platform/common/com/rho/BBVersionSpecific.java +26 -0
  379. data/platform/bb/rhodes/platform/common/com/rho/BrowserAdapter5.java +26 -0
  380. data/platform/bb/rhodes/platform/common/com/rho/RhoMainScreen.java +26 -0
  381. data/platform/bb/rhodes/platform/common/com/rho/RhodesApplicationPlatform.java +26 -0
  382. data/platform/bb/rhodes/platform/common/com/rho/db/SqliteCopyResult.java +26 -0
  383. data/platform/bb/rhodes/platform/common/com/rho/db/SqliteResult.java +26 -0
  384. data/platform/bb/rhodes/platform/common/com/rho/db/SqliteStorage.java +26 -0
  385. data/platform/bb/rhodes/src/com/rho/BBVersionSpecific.java +26 -0
  386. data/platform/bb/rhodes/src/com/rho/BrowserAdapter.java +26 -0
  387. data/platform/bb/rhodes/src/com/rho/BrowserAdapter5.java +26 -0
  388. data/platform/bb/rhodes/src/com/rho/IBrowserAdapter.java +26 -0
  389. data/platform/bb/rhodes/src/com/rho/RhoMainScreen.java +26 -0
  390. data/platform/bb/rhodes/src/com/rho/RhoRubyHelper.java +45 -1
  391. data/platform/bb/rhodes/src/com/rho/RhodesApplicationPlatform.java +26 -0
  392. data/platform/bb/rhodes/src/com/rho/Version.java +26 -0
  393. data/platform/bb/rhodes/src/com/rho/db/SqliteCopyResult.java +26 -0
  394. data/platform/bb/rhodes/src/com/rho/db/SqliteResult.java +26 -0
  395. data/platform/bb/rhodes/src/com/rho/db/SqliteStorage.java +26 -0
  396. data/platform/bb/rhodes/src/com/rho/file/Jsr75File.java +26 -0
  397. data/platform/bb/rhodes/src/com/rho/file/Jsr75RAFileImpl.java +28 -2
  398. data/platform/bb/rhodes/src/com/rho/file/PersistRAFileImpl.java +29 -2
  399. data/platform/bb/rhodes/src/com/rho/net/BaseSocket.java +26 -0
  400. data/platform/bb/rhodes/src/com/rho/net/NetworkAccess.java +26 -0
  401. data/platform/bb/rhodes/src/com/rho/net/SSLSocket.java +26 -0
  402. data/platform/bb/rhodes/src/com/rho/net/TCPSocket.java +26 -0
  403. data/platform/bb/rhodes/src/com/rho/net/bb/BBHttpConnection.java +26 -0
  404. data/platform/bb/rhodes/src/com/rho/net/bb/NativeBBHttpConnection.java +26 -0
  405. data/platform/bb/rhodes/src/com/rho/rubyext/Alert.java +26 -0
  406. data/platform/bb/rhodes/src/com/rho/rubyext/GeoLocation.java +26 -0
  407. data/platform/bb/rhodes/src/com/rho/rubyext/RhoCalendar.java +26 -0
  408. data/platform/bb/rhodes/src/com/rho/rubyext/RhoPhonebook.java +26 -0
  409. data/platform/bb/rhodes/src/com/rho/rubyext/System.java +27 -1
  410. data/platform/bb/rhodes/src/com/rho/rubyext/WebView.java +59 -0
  411. data/platform/bb/rhodes/src/com/rho/rubyext/XMLParser.java +26 -0
  412. data/platform/bb/rhodes/src/rhomobile/LogOptionsScreen.java +26 -0
  413. data/platform/bb/rhodes/src/rhomobile/LogScreen.java +26 -0
  414. data/platform/bb/rhodes/src/rhomobile/NativeBar.java +26 -0
  415. data/platform/bb/rhodes/src/rhomobile/PushListeningThread.java +27 -1
  416. data/platform/bb/rhodes/src/rhomobile/RhodesApplication.java +26 -0
  417. data/platform/bb/rhodes/src/rhomobile/RingtoneManager.java +26 -0
  418. data/platform/bb/rhodes/src/rhomobile/SecondaryResourceFetchThread.java +26 -0
  419. data/platform/bb/rhodes/src/rhomobile/Utilities.java +26 -0
  420. data/platform/bb/rhodes/src/rhomobile/bluetooth/BluetoothManager.java +26 -0
  421. data/platform/bb/rhodes/src/rhomobile/bluetooth/BluetoothPort.java +26 -0
  422. data/platform/bb/rhodes/src/rhomobile/bluetooth/BluetoothScreen.java +26 -0
  423. data/platform/bb/rhodes/src/rhomobile/camera/Camera.java +26 -0
  424. data/platform/bb/rhodes/src/rhomobile/camera/CameraFilesListener.java +26 -0
  425. data/platform/bb/rhodes/src/rhomobile/camera/CameraScreen.java +26 -0
  426. data/platform/bb/rhodes/src/rhomobile/camera/ImageBrowserScreen.java +26 -0
  427. data/platform/bb/rhodes/src/rhomobile/datetime/DateTimePicker.java +26 -0
  428. data/platform/bb/rhodes/src/rhomobile/datetime/DateTimeScreen.java +26 -0
  429. data/platform/bb/rhodes/src/rhomobile/mapview/Annotation.java +26 -0
  430. data/platform/bb/rhodes/src/rhomobile/mapview/ESRIMapField.java +736 -695
  431. data/platform/bb/rhodes/src/rhomobile/mapview/ESRIMapProvider.java +40 -14
  432. data/platform/bb/rhodes/src/rhomobile/mapview/GeoCoding.java +39 -13
  433. data/platform/bb/rhodes/src/rhomobile/mapview/GoogleGeoCoding.java +216 -174
  434. data/platform/bb/rhodes/src/rhomobile/mapview/GoogleMapField.java +87 -45
  435. data/platform/bb/rhodes/src/rhomobile/mapview/GoogleMapProvider.java +26 -0
  436. data/platform/bb/rhodes/src/rhomobile/mapview/MapProvider.java +26 -0
  437. data/platform/bb/rhodes/src/rhomobile/mapview/MapTools.java +105 -79
  438. data/platform/bb/rhodes/src/rhomobile/mapview/MapView.java +26 -0
  439. data/platform/bb/rhodes/src/rhomobile/mapview/MapViewParent.java +26 -0
  440. data/platform/bb/rhodes/src/rhomobile/mapview/MapViewScreen.java +26 -0
  441. data/platform/bb/rhodes/src/rhomobile/mapview/RhoMapField.java +26 -0
  442. data/platform/iphone/Classes/AppManager/AppLoader.h +25 -7
  443. data/platform/iphone/Classes/AppManager/AppLoader.m +26 -7
  444. data/platform/iphone/Classes/AppManager/AppManager.h +25 -7
  445. data/platform/iphone/Classes/AppManager/AppManager.m +26 -8
  446. data/platform/iphone/Classes/AppManager/AppManagerI.h +25 -8
  447. data/platform/iphone/Classes/Bluetooth/Bluetooth.h +39 -10
  448. data/platform/iphone/Classes/Bluetooth/Bluetooth.m +158 -28
  449. data/platform/iphone/Classes/Camera/PickImageDelegate.h +72 -9
  450. data/platform/iphone/Classes/Camera/PickImageDelegate.m +432 -15
  451. data/platform/iphone/Classes/DateTime.h +25 -7
  452. data/platform/iphone/Classes/DateTime.m +25 -7
  453. data/platform/iphone/Classes/DateTimePicker.m +25 -7
  454. data/platform/iphone/Classes/DateTimePickerDelegate.h +25 -7
  455. data/platform/iphone/Classes/DateTimePickerDelegate.m +25 -7
  456. data/platform/iphone/Classes/Dispatcher/Dispatcher.c +26 -8
  457. data/platform/iphone/Classes/Dispatcher/Dispatcher.h +25 -8
  458. data/platform/iphone/Classes/Event/Event.h +25 -7
  459. data/platform/iphone/Classes/GeoLocation/LocationController.h +25 -7
  460. data/platform/iphone/Classes/LogOptionsController.h +25 -7
  461. data/platform/iphone/Classes/LogOptionsController.m +25 -7
  462. data/platform/iphone/Classes/LogViewController.h +25 -7
  463. data/platform/iphone/Classes/LogViewController.m +27 -9
  464. data/platform/iphone/Classes/MapView/GoogleGeocoder.h +26 -0
  465. data/platform/iphone/Classes/MapView/GoogleGeocoder.m +26 -0
  466. data/platform/iphone/Classes/MapView/MapAnnotation.h +26 -6
  467. data/platform/iphone/Classes/MapView/MapAnnotation.m +25 -6
  468. data/platform/iphone/Classes/MapView/MapViewController.h +27 -8
  469. data/platform/iphone/Classes/MapView/MapViewController.m +26 -6
  470. data/platform/iphone/Classes/MapView/MapViewManager.h +26 -4
  471. data/platform/iphone/Classes/MapView/MapViewManager.m +25 -5
  472. data/platform/iphone/Classes/NativeBar.h +25 -7
  473. data/platform/iphone/Classes/NativeBar.m +54 -39
  474. data/platform/iphone/Classes/NativeView/NVDelegate.h +25 -7
  475. data/platform/iphone/Classes/NativeView/NVDelegate.m +25 -7
  476. data/platform/iphone/Classes/NativeView/NVViewController.h +25 -7
  477. data/platform/iphone/Classes/NativeView/NVViewController.m +25 -7
  478. data/platform/iphone/Classes/NativeView/RhoNativeViewManager.mm +27 -10
  479. data/platform/iphone/Classes/NativeView/RhoNativeViewManagerOC.h +25 -7
  480. data/platform/iphone/Classes/NavBar.h +25 -7
  481. data/platform/iphone/Classes/NavBar.m +25 -7
  482. data/platform/iphone/Classes/Phonebook/phonebook.h +26 -8
  483. data/platform/iphone/Classes/Phonebook/phonebook.m +25 -8
  484. data/platform/iphone/Classes/RhoAlert.h +25 -7
  485. data/platform/iphone/Classes/RhoAlert.m +27 -9
  486. data/platform/iphone/Classes/RhoDelegate.h +25 -7
  487. data/platform/iphone/Classes/RhoDelegate.m +25 -7
  488. data/platform/iphone/Classes/RhoMainView.h +26 -8
  489. data/platform/iphone/Classes/RhoViewController.h +25 -7
  490. data/platform/iphone/Classes/RhoViewController.m +25 -7
  491. data/platform/iphone/Classes/Rhodes.h +25 -8
  492. data/platform/iphone/Classes/Rhodes.m +50 -6
  493. data/platform/iphone/Classes/RingtoneManager.h +25 -7
  494. data/platform/iphone/Classes/RingtoneManager.m +25 -7
  495. data/platform/iphone/Classes/Signature/SignatureDelegate.h +25 -7
  496. data/platform/iphone/Classes/Signature/SignatureDelegate.m +25 -7
  497. data/platform/iphone/Classes/Signature/SignatureView.h +25 -7
  498. data/platform/iphone/Classes/Signature/SignatureView.m +25 -15
  499. data/platform/iphone/Classes/Signature/SignatureViewController.h +25 -7
  500. data/platform/iphone/Classes/Signature/SignatureViewController.m +25 -7
  501. data/platform/iphone/Classes/SimpleMainView.h +25 -7
  502. data/platform/iphone/Classes/SimpleMainView.m +31 -7
  503. data/platform/iphone/Classes/SplashViewController.h +25 -7
  504. data/platform/iphone/Classes/SplashViewController.m +25 -7
  505. data/platform/iphone/Classes/SplitView/LeftViewController.h +25 -7
  506. data/platform/iphone/Classes/SplitView/LeftViewController.m +25 -7
  507. data/platform/iphone/Classes/SplitView/RightViewController.h +25 -7
  508. data/platform/iphone/Classes/SplitView/RightViewController.m +25 -7
  509. data/platform/iphone/Classes/SplitView/SplitViewDelegate.h +25 -7
  510. data/platform/iphone/Classes/SplitView/SplitViewDelegate.m +25 -7
  511. data/platform/iphone/Classes/SplitView/SplittedMainView.h +25 -7
  512. data/platform/iphone/Classes/SplitView/SplittedMainView.m +29 -7
  513. data/platform/iphone/Classes/TabbedMainView.h +25 -7
  514. data/platform/iphone/Classes/TabbedMainView.m +42 -20
  515. data/platform/iphone/Classes/Utils/ParamsWrapper.h +25 -7
  516. data/platform/iphone/Classes/Utils/ParamsWrapper.m +25 -7
  517. data/platform/iphone/Classes/WebView.m +25 -7
  518. data/platform/iphone/Classes/rho/common/SplashScreenImpl.cpp +25 -8
  519. data/platform/iphone/Classes/rho/common/SplashScreenImpl.h +25 -8
  520. data/platform/iphone/Classes/rho/net/NetRequestImpl.m +26 -19
  521. data/platform/iphone/Info.plist +1 -1
  522. data/platform/iphone/Tests/Classes/TestsAppDelegate.h +25 -7
  523. data/platform/iphone/Tests/Classes/TestsAppDelegate.m +25 -7
  524. data/platform/iphone/main.m +25 -7
  525. data/platform/iphone/rbuild/findRhodesGuid.rb +26 -0
  526. data/platform/iphone/rbuild/iphone.rake +42 -6
  527. data/platform/iphone/rhoextlib/dosyscall.c +26 -0
  528. data/platform/iphone/rhoextlib/syscall.c +26 -0
  529. data/platform/iphone/rhoextlib/syscall.h +26 -7
  530. data/platform/iphone/rhorubylib/rhorubylib.xcodeproj/project.pbxproj +2 -0
  531. data/platform/iphone/rhosynclib/rhosynclib.xcodeproj/project.pbxproj +8 -8
  532. data/platform/linux/Rakefile +26 -0
  533. data/platform/linux/tasks/linux.rake +26 -0
  534. data/platform/osx/Rhodes Debugger/DataSource.h +26 -0
  535. data/platform/osx/Rhodes Debugger/DebugConnection.h +25 -4
  536. data/platform/osx/Rhodes Debugger/DebuggerController.h +26 -0
  537. data/platform/osx/Rhodes Debugger/FileSystemItem.h +26 -0
  538. data/platform/osx/Rhodes Debugger/GdbConnection.h +25 -7
  539. data/platform/osx/Rhodes Debugger/LogController.h +25 -3
  540. data/platform/osx/Rhodes Debugger/TcpConnection.h +25 -4
  541. data/platform/osx/Rhodes Launcher/RhodesController.h +25 -7
  542. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore +0 -0
  543. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtGui.framework/Resources/qt_menu.nib/classes.nib +59 -0
  544. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtGui.framework/Resources/qt_menu.nib/info.nib +18 -0
  545. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtGui.framework/Resources/qt_menu.nib/keyedobjects.nib +0 -0
  546. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui +0 -0
  547. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtNetwork.framework/Versions/4/QtNetwork +0 -0
  548. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtWebKit.framework/Versions/4/QtWebKit +0 -0
  549. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/phonon.framework/Versions/4/phonon +0 -0
  550. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Info.plist +20 -0
  551. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/MacOS/RhoSimulator +0 -0
  552. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PkgInfo +1 -0
  553. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqgif.dylib +0 -0
  554. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqico.dylib +0 -0
  555. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqjpeg.dylib +0 -0
  556. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqmng.dylib +0 -0
  557. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqtiff.dylib +0 -0
  558. data/platform/{symbian/build/rhologpath.txt → osx/bin/RhoSimulator/RhoSimulator.app/Contents/Resources/empty.lproj} +0 -0
  559. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Resources/qt.conf +2 -0
  560. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Resources/rho.icns +0 -0
  561. data/platform/osx/build/osx.rake +88 -0
  562. data/platform/shared/{SyncClient/SyncClient.cpp → RhoConnectClient/RhoConnectClient.cpp} +78 -52
  563. data/platform/shared/RhoConnectClient/RhoConnectClient.h +121 -0
  564. data/platform/shared/RhoConnectClient/RhoError.h +55 -0
  565. data/platform/shared/common/AppMenu.cpp +26 -0
  566. data/platform/shared/common/AppMenu.h +26 -0
  567. data/platform/shared/common/AutoPointer.h +26 -0
  568. data/platform/shared/common/IRhoBrowser.h +26 -0
  569. data/platform/shared/common/IRhoClassFactory.h +26 -0
  570. data/platform/shared/common/IRhoCrypt.h +26 -0
  571. data/platform/shared/common/IRhoThreadImpl.h +26 -0
  572. data/platform/shared/common/InputStream.h +26 -0
  573. data/platform/shared/common/PosixThreadImpl.cpp +31 -0
  574. data/platform/shared/common/PosixThreadImpl.h +26 -0
  575. data/platform/shared/common/RhoAppAdapter.h +26 -0
  576. data/platform/shared/common/RhoConf.cpp +28 -2
  577. data/platform/shared/common/RhoConf.h +32 -1
  578. data/platform/shared/common/RhoDefs.h +32 -0
  579. data/platform/shared/common/RhoFatalError.h +27 -1
  580. data/platform/shared/common/RhoFile.cpp +30 -4
  581. data/platform/shared/common/RhoFile.h +26 -0
  582. data/platform/shared/common/RhoFilePath.h +26 -0
  583. data/platform/shared/common/RhoMath.cpp +26 -0
  584. data/platform/shared/common/RhoMath.h +26 -0
  585. data/platform/shared/common/RhoMutexLock.h +39 -3
  586. data/platform/shared/common/RhoNativeViewManager.h +26 -0
  587. data/platform/shared/common/RhoPort.h +55 -17
  588. data/platform/shared/common/RhoSimConf.cpp +58 -0
  589. data/platform/shared/common/RhoSimConf.h +62 -0
  590. data/platform/shared/common/RhoStd.h +26 -0
  591. data/platform/shared/common/RhoSystem.h +28 -2
  592. data/platform/shared/common/RhoThread.cpp +26 -0
  593. data/platform/shared/common/RhoThread.h +26 -0
  594. data/platform/shared/common/RhoTime.cpp +26 -0
  595. data/platform/shared/common/RhoTime.h +33 -4
  596. data/platform/shared/common/RhodesApp.cpp +170 -68
  597. data/platform/shared/common/RhodesApp.h +34 -6
  598. data/platform/shared/common/RhodesAppBase.cpp +77 -8
  599. data/platform/shared/common/RhodesAppBase.h +31 -4
  600. data/platform/shared/common/SplashScreen.cpp +29 -0
  601. data/platform/shared/common/SplashScreen.h +26 -0
  602. data/platform/shared/common/StringConverter.h +26 -0
  603. data/platform/shared/common/ThreadQueue.cpp +26 -0
  604. data/platform/shared/common/ThreadQueue.h +26 -0
  605. data/platform/shared/common/Tokenizer.cpp +26 -0
  606. data/platform/shared/common/Tokenizer.h +26 -0
  607. data/platform/shared/common/iphone/RhoClassFactory.cpp +26 -0
  608. data/platform/shared/common/iphone/RhoClassfactory.h +44 -4
  609. data/platform/shared/common/iphone/RhoCryptImpl.h +26 -0
  610. data/platform/shared/common/iphone/RhoCryptImpl.mm +26 -0
  611. data/platform/shared/common/iphone/RhoFileImpl.m +26 -7
  612. data/platform/shared/common/iphone/RhoThreadImpl.m +26 -7
  613. data/platform/shared/common/map/ESRIMapEngine.cpp +26 -0
  614. data/platform/shared/common/map/ESRIMapEngine.h +26 -0
  615. data/platform/shared/common/map/GoogleMapEngine.cpp +26 -0
  616. data/platform/shared/common/map/GoogleMapEngine.h +26 -0
  617. data/platform/shared/common/map/MapEngine.cpp +28 -2
  618. data/platform/shared/common/map/MapEngine.h +26 -0
  619. data/platform/shared/common/rhoparams.cpp +26 -0
  620. data/platform/shared/common/rhoparams.h +26 -0
  621. data/platform/shared/common/stat.h +26 -0
  622. data/platform/shared/curl/lib/config-symbian.h +824 -0
  623. data/platform/shared/curl/lib/hostip.c +7 -0
  624. data/platform/shared/curl/lib/http.c +6 -0
  625. data/platform/shared/curl/lib/setup_once.h +4 -0
  626. data/platform/shared/db/DBAdapter.cpp +34 -2
  627. data/platform/shared/db/DBAdapter.h +26 -0
  628. data/platform/shared/db/DBAttrManager.cpp +26 -0
  629. data/platform/shared/db/DBAttrManager.h +26 -0
  630. data/platform/shared/db/DBResult.cpp +26 -0
  631. data/platform/shared/db/DBResult.h +26 -0
  632. data/platform/shared/json/JSONIterator.cpp +26 -0
  633. data/platform/shared/json/JSONIterator.h +26 -0
  634. data/platform/shared/json/RJSONTokener.c +3 -3
  635. data/platform/shared/json/json.h +1 -1
  636. data/platform/shared/json/{debug.c → json_debug.c} +2 -2
  637. data/platform/shared/json/{debug.h → json_debug.h} +1 -1
  638. data/platform/shared/json/json_object.c +1 -1
  639. data/platform/shared/json/json_tokener.c +1 -1
  640. data/platform/shared/json/json_util.c +1 -1
  641. data/platform/shared/json/printbuf.c +1 -1
  642. data/platform/shared/logging/RhoATLTrace.h +26 -0
  643. data/platform/shared/logging/RhoLog.cpp +90 -0
  644. data/platform/shared/logging/RhoLog.h +29 -1
  645. data/platform/shared/logging/RhoLogCat.h +26 -0
  646. data/platform/shared/logging/RhoLogConf.cpp +72 -10
  647. data/platform/shared/logging/RhoLogConf.h +39 -5
  648. data/platform/shared/logging/RhoLogSink.cpp +26 -0
  649. data/platform/shared/logging/RhoLogSink.h +26 -0
  650. data/platform/shared/logging/RhoPlainLog.cpp +36 -8
  651. data/platform/shared/logging/test/TestLog.cpp +26 -0
  652. data/platform/shared/logging/test/TestPlainLog.c +26 -0
  653. data/platform/shared/logging/test/main.cpp +26 -0
  654. data/platform/shared/net/AsyncHttp.cpp +27 -0
  655. data/platform/shared/net/AsyncHttp.h +28 -1
  656. data/platform/shared/net/CURLNetRequest.cpp +81 -11
  657. data/platform/shared/net/CURLNetRequest.h +30 -0
  658. data/platform/shared/net/CompatWince.cpp +26 -0
  659. data/platform/shared/net/CompatWince.h +26 -0
  660. data/platform/shared/net/HttpServer.cpp +82 -23
  661. data/platform/shared/net/HttpServer.h +27 -1
  662. data/platform/shared/net/INetRequest.cpp +26 -0
  663. data/platform/shared/net/INetRequest.h +26 -0
  664. data/platform/shared/net/RawSocket.cpp +38 -12
  665. data/platform/shared/net/RawSocket.h +28 -2
  666. data/platform/shared/net/URI.cpp +26 -6
  667. data/platform/shared/net/URI.h +26 -2
  668. data/platform/shared/net/iphone/sslimpl.cpp +39 -10
  669. data/platform/shared/net/iphone/sslimpl.h +25 -8
  670. data/platform/shared/net/ssl.cpp +26 -0
  671. data/platform/shared/net/ssl.h +26 -0
  672. data/platform/shared/qt/RhoSimulator.pro +7 -0
  673. data/platform/shared/qt/curl/curl.pro +181 -0
  674. data/platform/shared/qt/pbxproj2pro.pl +21 -0
  675. data/platform/shared/qt/pro_vcproj_diff.pl +59 -0
  676. data/platform/shared/qt/rhodes/DateTimeDialog.cpp +91 -0
  677. data/platform/shared/qt/rhodes/DateTimeDialog.h +54 -0
  678. data/platform/shared/qt/rhodes/DateTimeDialog.ui +68 -0
  679. data/platform/shared/qt/rhodes/ExternalWebView.cpp +46 -0
  680. data/platform/shared/qt/rhodes/ExternalWebView.h +49 -0
  681. data/platform/{wm/rhodes/emulator → shared/qt/rhodes}/ExternalWebView.ui +0 -0
  682. data/platform/shared/qt/rhodes/MainWindowCallback.h +51 -0
  683. data/platform/shared/qt/rhodes/QtMainWindow.cpp +819 -0
  684. data/platform/shared/qt/rhodes/QtMainWindow.h +148 -0
  685. data/platform/{wm/rhodes/emulator → shared/qt/rhodes}/QtMainWindow.ui +13 -1
  686. data/platform/shared/qt/rhodes/QtNativeTabBar.cpp +112 -0
  687. data/platform/shared/qt/rhodes/QtNativeTabBar.h +37 -0
  688. data/platform/shared/qt/rhodes/QtWebInspector.cpp +71 -0
  689. data/platform/shared/qt/rhodes/QtWebInspector.h +53 -0
  690. data/platform/shared/qt/rhodes/QtWebInspector.ui +41 -0
  691. data/platform/shared/qt/rhodes/impl/AlertImpl.cpp +153 -0
  692. data/platform/shared/qt/rhodes/impl/AlertImpl.h +65 -0
  693. data/platform/shared/qt/rhodes/impl/BluetoothImpl.cpp +109 -0
  694. data/platform/shared/qt/rhodes/impl/CalendarImpl.cpp +52 -0
  695. data/platform/shared/qt/rhodes/impl/CameraImpl.cpp +54 -0
  696. data/platform/shared/qt/rhodes/impl/DateTimePickerImpl.cpp +61 -0
  697. data/platform/shared/qt/rhodes/impl/DateTimePickerImpl.h +70 -0
  698. data/platform/shared/qt/rhodes/impl/GeoLocationImpl.cpp +65 -0
  699. data/platform/shared/qt/rhodes/impl/MainWindowImpl.cpp +727 -0
  700. data/platform/shared/qt/rhodes/impl/MainWindowImpl.h +160 -0
  701. data/platform/shared/qt/rhodes/impl/MapViewImpl.cpp +60 -0
  702. data/platform/shared/qt/rhodes/impl/NativeTabbarImpl.cpp +131 -0
  703. data/platform/shared/qt/rhodes/impl/NativeTabbarImpl.h +96 -0
  704. data/platform/shared/qt/rhodes/impl/NativeToolbarImpl.cpp +124 -0
  705. data/platform/shared/qt/rhodes/impl/NativeToolbarImpl.h +71 -0
  706. data/platform/shared/qt/rhodes/impl/PhonebookImpl.cpp +103 -0
  707. data/platform/shared/qt/rhodes/impl/RhoClassFactoryImpl.cpp +56 -0
  708. data/platform/shared/qt/rhodes/impl/RhoClassFactoryImpl.h +82 -0
  709. data/platform/shared/qt/rhodes/impl/RhoFileImpl.cpp +63 -0
  710. data/platform/shared/qt/rhodes/impl/RhoNativeViewManagerImpl.cpp +86 -0
  711. data/platform/shared/qt/rhodes/impl/RhoThreadImpl.cpp +114 -0
  712. data/platform/shared/qt/rhodes/impl/RhoThreadImpl.h +72 -0
  713. data/platform/shared/qt/rhodes/impl/RhodesImpl.cpp +193 -0
  714. data/platform/shared/qt/rhodes/impl/RingtoneManagerImpl.cpp +51 -0
  715. data/platform/shared/qt/rhodes/impl/SignatureImpl.cpp +43 -0
  716. data/platform/shared/qt/rhodes/impl/SystemImpl.cpp +229 -0
  717. data/platform/shared/qt/rhodes/impl/WebViewImpl.cpp +114 -0
  718. data/platform/shared/qt/rhodes/main.cpp +208 -0
  719. data/platform/shared/qt/rhodes/resources/rho.icns +0 -0
  720. data/platform/shared/qt/rhodes/resources/rho.ico +0 -0
  721. data/platform/shared/qt/rhodes/rhodes.pro +133 -0
  722. data/platform/shared/qt/rholib/rholib.pro +138 -0
  723. data/platform/shared/qt/rubylib/rubylib.pro +183 -0
  724. data/platform/shared/qt/sqlite3/sqlite3.pro +40 -0
  725. data/platform/shared/qt/syncengine/syncengine.pro +82 -0
  726. data/platform/shared/ruby/ext/alert/alert.i +13 -5
  727. data/platform/shared/ruby/ext/alert/alert_wrap.c +100 -11
  728. data/platform/shared/ruby/ext/asynchttp/asynchttp_wrap.c +391 -111
  729. data/platform/shared/ruby/ext/bluetooth/bluetooth.i +28 -14
  730. data/platform/shared/ruby/ext/bluetooth/bluetooth_wrap.c +311 -424
  731. data/platform/shared/ruby/ext/calendar/calendar_wrap.c +2278 -2278
  732. data/platform/shared/ruby/ext/calendar/event_wrap.c +2152 -2151
  733. data/platform/shared/ruby/ext/camera/camera.i +22 -2
  734. data/platform/shared/ruby/ext/camera/camera_wrap.c +448 -115
  735. data/platform/shared/ruby/ext/datetimepicker/datetimepicker_wrap.c +404 -126
  736. data/platform/shared/ruby/ext/geolocation/geolocation_wrap.c +17 -14
  737. data/platform/shared/ruby/ext/mapview/mapview_wrap.c +384 -104
  738. data/platform/shared/ruby/ext/nativebar/nativebar.i +0 -3
  739. data/platform/shared/ruby/ext/nativebar/nativebar_wrap.c +0 -35
  740. data/platform/shared/ruby/ext/nativeviewmanager/nativeviewmanager_wrap.c +5 -5
  741. data/platform/shared/ruby/ext/navbar/navbar_wrap.c +384 -104
  742. data/platform/shared/ruby/ext/phonebook/phonebook.h +26 -0
  743. data/platform/shared/ruby/ext/phonebook/phonebook_wrap.c +422 -144
  744. data/platform/shared/ruby/ext/rho/rhoruby.c +56 -13
  745. data/platform/shared/ruby/ext/rho/rhoruby.h +30 -10
  746. data/platform/shared/ruby/ext/rho/rhosupport.c +106 -33
  747. data/platform/shared/ruby/ext/rhoconf/rhoconf.i +6 -2
  748. data/platform/shared/ruby/ext/rhoconf/rhoconf_wrap.c +24 -8
  749. data/platform/shared/ruby/ext/ringtones/ringtones_wrap.c +389 -109
  750. data/platform/shared/ruby/ext/signature/signature.i +1 -1
  751. data/platform/shared/ruby/ext/signature/signature_wrap.c +5 -5
  752. data/platform/shared/ruby/ext/sqlite3_api/sqlite3_api_wrap.c +26 -0
  753. data/platform/shared/ruby/ext/syncengine/syncengine.i +4 -0
  754. data/platform/shared/ruby/ext/syncengine/syncengine_wrap.c +25 -5
  755. data/platform/shared/ruby/ext/system/system_wrap.c +3 -3
  756. data/platform/shared/ruby/ext/webview/webview.i +4 -0
  757. data/platform/shared/ruby/ext/webview/webview_wrap.c +428 -134
  758. data/platform/shared/ruby/gc.c +4 -0
  759. data/platform/shared/ruby/hash.c +3 -0
  760. data/platform/shared/ruby/include/ruby/defines.h +20 -1
  761. data/platform/shared/ruby/include/ruby/intern.h +2 -0
  762. data/platform/shared/ruby/include/ruby/ruby.h +7 -4
  763. data/platform/shared/ruby/io.c +2 -1
  764. data/platform/shared/ruby/iphone/ruby/config.h +2 -0
  765. data/platform/shared/ruby/missing/dup2.c +1 -0
  766. data/platform/shared/ruby/signal.c +5 -5
  767. data/platform/shared/ruby/symbian/assert.h +2 -2
  768. data/platform/shared/ruby/symbian/ruby/config.h +13 -3
  769. data/platform/shared/ruby/symbian/symbian.h +2 -2
  770. data/platform/shared/ruby/thread_pthread.c +1 -1
  771. data/platform/shared/ruby/win32/assert.h +27 -1
  772. data/platform/shared/rubyext/GeoLocation.cpp +26 -0
  773. data/platform/shared/rubyext/GeoLocation.h +26 -0
  774. data/platform/shared/rubyext/NativeToolbarExt.h +35 -0
  775. data/platform/shared/rubyext/RhoAppAdapter.cpp +26 -0
  776. data/platform/shared/rubyext/System.cpp +54 -1
  777. data/platform/shared/rubyext/WebView.h +26 -0
  778. data/platform/shared/sqlite/crypto.c +26 -0
  779. data/platform/shared/sqlite/sqlite3.c +9706 -4596
  780. data/platform/shared/sqlite/sqlite3.h +521 -119
  781. data/platform/shared/statistic/RhoProfiler.cpp +26 -0
  782. data/platform/shared/statistic/RhoProfiler.h +26 -0
  783. data/platform/shared/statistic/test/TestProfiling.cpp +26 -0
  784. data/platform/shared/sync/ClientRegister.cpp +29 -1
  785. data/platform/shared/sync/ClientRegister.h +26 -0
  786. data/platform/shared/sync/ISyncProtocol.h +27 -1
  787. data/platform/shared/sync/SyncEngine.cpp +26 -0
  788. data/platform/shared/sync/SyncEngine.h +27 -1
  789. data/platform/shared/sync/SyncNotify.cpp +28 -1
  790. data/platform/shared/sync/SyncNotify.h +26 -0
  791. data/platform/shared/sync/SyncProtocol_3.h +34 -6
  792. data/platform/shared/sync/SyncSource.cpp +52 -17
  793. data/platform/shared/sync/SyncSource.h +26 -0
  794. data/platform/shared/sync/SyncThread.cpp +41 -0
  795. data/platform/shared/sync/SyncThread.h +27 -2
  796. data/platform/shared/sync/Test/NetDataStub.h +26 -0
  797. data/platform/shared/sync/Test/SyncEngine_test.cpp +26 -0
  798. data/platform/shared/sync/Test/SyncSource_test.cpp +26 -0
  799. data/platform/shared/tcmalloc/rhomem.h +1 -1
  800. data/platform/shared/test/Tests.cpp +28 -2
  801. data/platform/shared/test/test_helper.cpp +26 -0
  802. data/platform/shared/test/test_helper.h +26 -0
  803. data/platform/shared/unzip/unzip.cpp +10 -4
  804. data/platform/shared/unzip/unzip.h +8 -0
  805. data/platform/shared/xruby/src/com/xruby/compiler/parser/RubyParser.java +97 -97
  806. data/platform/symbian/build/symbian.rake +202 -0
  807. data/platform/symbian/curl/curl.pro +179 -0
  808. data/platform/symbian/qtscroller/include/QtScrollEvent +5 -0
  809. data/platform/symbian/qtscroller/include/QtScrollPrepareEvent +5 -0
  810. data/platform/symbian/qtscroller/include/QtScroller +5 -0
  811. data/platform/symbian/qtscroller/include/QtScrollerProperties +5 -0
  812. data/platform/symbian/qtscroller/qtscroller.pri +13 -0
  813. data/platform/symbian/qtscroller/qtscroller.pro +3 -0
  814. data/platform/symbian/qtscroller/src/qtflickgesture.cpp +696 -0
  815. data/platform/symbian/qtscroller/src/qtflickgesture_p.h +107 -0
  816. data/platform/symbian/qtscroller/src/qtscroller.cpp +2081 -0
  817. data/platform/symbian/qtscroller/src/qtscroller.h +138 -0
  818. data/platform/symbian/qtscroller/src/qtscroller_p.h +206 -0
  819. data/platform/symbian/qtscroller/src/qtscrollerfilter.cpp +351 -0
  820. data/platform/symbian/qtscroller/src/qtscrollerfilter_p.h +111 -0
  821. data/platform/symbian/qtscroller/src/qtscrollerproperties.cpp +413 -0
  822. data/platform/symbian/qtscroller/src/qtscrollerproperties.h +135 -0
  823. data/platform/symbian/qtscroller/src/qtscrollerproperties_p.h +91 -0
  824. data/platform/symbian/qtscroller/src/qtscrollevent.cpp +191 -0
  825. data/platform/symbian/qtscroller/src/qtscrollevent.h +100 -0
  826. data/platform/symbian/qtscroller/src/qtscrollevent_p.h +33 -0
  827. data/platform/symbian/qtscroller/src/src.pro +24 -0
  828. data/platform/symbian/rhodes.pro +4 -0
  829. data/platform/symbian/rhodes.sln +72 -0
  830. data/platform/symbian/rhodes/deployment.pri +115 -0
  831. data/platform/symbian/rhodes/rhodes.pro +141 -0
  832. data/platform/symbian/rhodes/rhodes.vcproj +385 -0
  833. data/platform/symbian/rhodes/{inc → src}/ContactsConstants.h +0 -0
  834. data/platform/symbian/rhodes/src/RhoThreadImpl.cpp +19 -0
  835. data/platform/symbian/rhodes/src/phonebook/Phonebook.cpp +19 -19
  836. data/platform/symbian/rhodes/{inc → src}/phonebook/Phonebook.h +1 -1
  837. data/platform/symbian/rhodes/src/qkineticscroller.cpp +1245 -0
  838. data/platform/symbian/rhodes/src/qkineticscroller.h +165 -0
  839. data/platform/symbian/rhodes/src/qkineticscroller_p.h +168 -0
  840. data/platform/symbian/rhodes/src/qwebviewkineticscroller.cpp +347 -0
  841. data/platform/symbian/rhodes/src/qwebviewkineticscroller.h +89 -0
  842. data/platform/symbian/rhodes/src/qwebviewselectionsuppressor.h +113 -0
  843. data/platform/symbian/rhodes_win32.pro +4 -0
  844. data/platform/symbian/rholib/rholib.pro +108 -0
  845. data/platform/symbian/rholib/rholib.vcproj +1466 -0
  846. data/platform/symbian/rubylib/rubylib.pro +163 -0
  847. data/platform/symbian/rubylib/rubylib.vcproj +1166 -0
  848. data/platform/symbian/rubylib/src/symbian_stubs.c +45 -3
  849. data/platform/symbian/sqlite3/sqlite3.pro +38 -0
  850. data/platform/symbian/sqlite3/sqlite3.vcproj +254 -0
  851. data/platform/symbian/{SQLite60 → sqlite3}/src/mutex.cpp +0 -0
  852. data/platform/symbian/{SQLite60 → sqlite3}/src/os_symbian.cpp +0 -0
  853. data/platform/symbian/{SQLite60 → sqlite3}/src/os_symbian.h +0 -0
  854. data/platform/symbian/{SQLite60 → sqlite3}/src/sqlite3.c +1 -0
  855. data/platform/symbian/{SQLite60 → sqlite3}/src/sqlite3.h +0 -0
  856. data/platform/symbian/syncengine/syncengine.pro +64 -0
  857. data/platform/symbian/syncengine/syncengine.vcproj +842 -0
  858. data/platform/win32/RhoSimulator/RhoSimulator.exe +0 -0
  859. data/platform/win32/replaceicon/replaceicon.cpp +25 -2
  860. data/platform/win32/replaceicon/stdafx.cpp +25 -3
  861. data/platform/win32/replaceicon/stdafx.h +25 -4
  862. data/platform/win32/updateresstring/stdafx.cpp +25 -3
  863. data/platform/win32/updateresstring/stdafx.h +25 -4
  864. data/platform/win32/updateresstring/updateresstring.cpp +25 -2
  865. data/platform/wm/RhoLib/RhoLib.vcproj +38 -8
  866. data/platform/wm/build/wm.rake +92 -76
  867. data/platform/wm/rhodes.sln +139 -139
  868. data/platform/wm/rhodes/Alert.cpp +31 -5
  869. data/platform/wm/rhodes/Alert.h +27 -1
  870. data/platform/wm/rhodes/AppManager.cpp +26 -0
  871. data/platform/wm/rhodes/AppManager.h +26 -0
  872. data/platform/wm/rhodes/DateTimePicker.cpp +26 -0
  873. data/platform/wm/rhodes/DateTimePicker.h +30 -0
  874. data/platform/wm/rhodes/LogOptionsDlg.cpp +26 -0
  875. data/platform/wm/rhodes/LogOptionsDlg.h +26 -0
  876. data/platform/wm/rhodes/LogView.cpp +26 -2
  877. data/platform/wm/rhodes/LogView.h +25 -1
  878. data/platform/wm/rhodes/Macros.h +25 -1
  879. data/platform/wm/rhodes/MainWindow.cpp +37 -2
  880. data/platform/wm/rhodes/MainWindow.h +29 -2
  881. data/platform/wm/rhodes/MapView/Graphics.cpp +25 -1
  882. data/platform/wm/rhodes/MapView/Graphics.h +26 -0
  883. data/platform/wm/rhodes/MapView/MapViewManager.cpp +26 -0
  884. data/platform/wm/rhodes/MapView/MapViewManager.h +25 -0
  885. data/platform/wm/rhodes/MetaHandler.cpp +26 -0
  886. data/platform/wm/rhodes/MetaHandler.h +26 -0
  887. data/platform/wm/rhodes/OkCancelModalDialog.h +26 -0
  888. data/platform/wm/rhodes/OutlookApp.cpp +26 -0
  889. data/platform/wm/rhodes/OutlookApp.h +26 -0
  890. data/platform/wm/rhodes/RhoNativeViewManager.cpp +26 -0
  891. data/platform/wm/rhodes/RhoNativeViewManagerWM.h +25 -8
  892. data/platform/wm/rhodes/Rhodes.cpp +127 -24
  893. data/platform/wm/rhodes/RingtoneManager.cpp +26 -0
  894. data/platform/wm/rhodes/RingtoneManager.h +26 -0
  895. data/platform/wm/rhodes/SyncStatusDlg.cpp +26 -0
  896. data/platform/wm/rhodes/SyncStatusDlg.h +26 -0
  897. data/platform/wm/rhodes/Utils.cpp +26 -0
  898. data/platform/wm/rhodes/Utils.h +26 -0
  899. data/platform/wm/rhodes/Vibrate.cpp +30 -9
  900. data/platform/wm/rhodes/Vibrate.h +27 -2
  901. data/platform/wm/rhodes/bluetooth/Bluetooth.cpp +63 -4
  902. data/platform/wm/rhodes/bluetooth/Bluetooth.h +32 -1
  903. data/platform/wm/rhodes/camera/Camera.cpp +40 -6
  904. data/platform/wm/rhodes/camera/Camera.h +32 -1
  905. data/platform/wm/rhodes/memory_helper.cpp +26 -0
  906. data/platform/wm/rhodes/menubar.cpp +26 -0
  907. data/platform/wm/rhodes/menubar.h +26 -0
  908. data/platform/wm/rhodes/phonebook/NativeAddressBook.cpp +26 -0
  909. data/platform/wm/rhodes/phonebook/NativeAddressBook.h +26 -0
  910. data/platform/wm/rhodes/phonebook/phonebook.cpp +26 -8
  911. data/platform/wm/rhodes/phonebook/phonebook.h +26 -8
  912. data/platform/wm/rhodes/resource.h +1 -0
  913. data/platform/wm/rhodes/rho/common/RhoClassFactory.cpp +26 -0
  914. data/platform/wm/rhodes/rho/common/RhoClassFactory.h +26 -0
  915. data/platform/wm/rhodes/rho/common/RhoCryptImpl.cpp +26 -0
  916. data/platform/wm/rhodes/rho/common/RhoCryptImpl.h +26 -0
  917. data/platform/wm/rhodes/rho/common/RhoThreadImpl.cpp +26 -0
  918. data/platform/wm/rhodes/rho/common/RhoThreadImpl.h +26 -0
  919. data/platform/wm/rhodes/rho/net/NetRequestImpl.cpp +30 -1
  920. data/platform/wm/rhodes/rho/net/NetRequestImpl.h +29 -0
  921. data/platform/wm/rhodes/rho/rubyext/GeoLocationImpl.cpp +26 -0
  922. data/platform/wm/rhodes/rho/rubyext/GeoLocationImpl.h +26 -0
  923. data/platform/wm/rhodes/rho/rubyext/NativeToolbar.cpp +27 -1
  924. data/platform/wm/rhodes/rho/rubyext/NativeToolbar.h +26 -0
  925. data/platform/wm/rhodes/rho/rubyext/NativeToolbarExt.cpp +71 -7
  926. data/platform/wm/rhodes/rho/rubyext/SystemImpl.cpp +36 -4
  927. data/platform/wm/rhodes/rho/rubyext/WebView.cpp +48 -2
  928. data/platform/wm/rhodes/rho/rubyext/calendar.cpp +26 -0
  929. data/platform/wm/rhodes/rhodes.vcproj +2491 -579
  930. data/platform/wm/rhodes/signature/Signature.cpp +26 -0
  931. data/platform/wm/rhodes/signature/Signature.h +26 -0
  932. data/platform/wm/rhodes/simulator/MainWindowQt.cpp +852 -0
  933. data/platform/wm/rhodes/{emulator → simulator}/MainWindowQt.h +76 -11
  934. data/platform/wm/rhodes/simulator/NativeTabbarQt.cpp +91 -0
  935. data/platform/wm/rhodes/simulator/NativeTabbarQt.h +102 -0
  936. data/platform/wm/rhodes/simulator/NativeToolbarQt.cpp +82 -0
  937. data/platform/wm/rhodes/simulator/NativeToolbarQt.h +78 -0
  938. data/platform/wm/rhodes/stdafx.cpp +25 -16
  939. data/platform/wm/rhodes/stdafx.h +26 -4
  940. data/platform/wm/rubylib/rubylib.vcproj +94 -78
  941. data/platform/wm/sqlite3/sqlite3.vcproj +8 -8
  942. data/platform/wm/syncengine/syncengine.vcproj +33 -11
  943. data/platform/wm/tools/detool/LogServer.cpp +33 -3
  944. data/platform/wm/tools/detool/LogServer.h +29 -1
  945. data/platform/wm/tools/detool/detool.cpp +105 -14
  946. data/platform/wm/tools/detool/detool.h +26 -0
  947. data/platform/wm/tools/detool/detool.vcproj +243 -242
  948. data/platform/wm/tools/detool/stdafx.cpp +25 -3
  949. data/platform/wm/tools/detool/stdafx.h +26 -0
  950. data/platform/wm/tools/detool/targetver.h +26 -0
  951. data/platform/wm/tools/rhosetup/rhosetup.cpp +25 -2
  952. data/platform/wm/tools/rhosetup/stdafx.cpp +25 -3
  953. data/platform/wm/tools/rhosetup/stdafx.h +25 -4
  954. data/platform/wp7/IronRuby/bin/Silverlight3Release/IronRuby.Libraries.dll +0 -0
  955. data/platform/wp7/IronRuby/bin/Silverlight3Release/IronRuby.dll +0 -0
  956. data/platform/wp7/RhoAppRunner/Program.cs +27 -1
  957. data/platform/wp7/RhoLogServer/Program.cs +27 -1
  958. data/platform/wp7/RhoLogServer/SocketServer.cs +27 -1
  959. data/platform/wp7/RhoRubyExtGen/RhoAsyncHttp.cs +27 -1
  960. data/platform/wp7/RhoRubyExtGen/RhoConfig.cs +84 -0
  961. data/platform/wp7/RhoRubyExtGen/RhoDatabase.cs +27 -1
  962. data/platform/wp7/RhoRubyExtGen/RhoJSON.cs +26 -0
  963. data/platform/wp7/RhoRubyExtGen/RhoNativeBar.cs +35 -3
  964. data/platform/wp7/RhoRubyExtGen/RhoRubyExtGen.csproj +2 -0
  965. data/platform/wp7/RhoRubyExtGen/RhoSyncEngine.cs +34 -2
  966. data/platform/wp7/RhoRubyExtGen/RhoSystem.cs +144 -0
  967. data/platform/wp7/RhoRubyExtGen/RhoWebView.cs +33 -2
  968. data/platform/wp7/RhoRubyLib/Initializers.Generated.cs +149 -5
  969. data/platform/wp7/RhoRubyLib/RhoAppAdapter.cs +27 -1
  970. data/platform/wp7/RhoRubyLib/RhoRuby.cs +27 -1
  971. data/platform/wp7/RhoRubyLib/RhoRubyLib.csproj +24 -1
  972. data/platform/wp7/RhoRubyLib/WP_PlatformAdaptationLayer.cs +26 -15
  973. data/platform/wp7/RhoRubyLib/common/IInputStream.cs +27 -1
  974. data/platform/wp7/RhoRubyLib/common/Mutex.cs +27 -1
  975. data/platform/wp7/RhoRubyLib/common/RhoConf.cs +27 -1
  976. data/platform/wp7/RhoRubyLib/common/RhoEmptyProfiler.cs +27 -1
  977. data/platform/wp7/RhoRubyLib/common/RhoFile.cs +27 -1
  978. data/platform/wp7/RhoRubyLib/common/RhoFilePath.cs +27 -1
  979. data/platform/wp7/RhoRubyLib/common/RhoParamArray.cs +27 -1
  980. data/platform/wp7/RhoRubyLib/common/RhoParams.cs +27 -1
  981. data/platform/wp7/RhoRubyLib/common/RhoProfiler.cs +27 -1
  982. data/platform/wp7/RhoRubyLib/common/RhoResourceMap.cs +27 -1
  983. data/platform/wp7/RhoRubyLib/common/RhoStd.cs +27 -1
  984. data/platform/wp7/RhoRubyLib/common/RhoThread.cs +27 -1
  985. data/platform/wp7/RhoRubyLib/common/RhodesApp.cs +232 -16
  986. data/platform/wp7/RhoRubyLib/common/ThreadQueue.cs +27 -1
  987. data/platform/wp7/RhoRubyLib/common/TimeInterval.cs +27 -1
  988. data/platform/wp7/RhoRubyLib/common/Tokenizer.cs +27 -1
  989. data/platform/wp7/RhoRubyLib/db/DBAdapter.cs +33 -1
  990. data/platform/wp7/RhoRubyLib/db/DBAttrManager.cs +27 -1
  991. data/platform/wp7/RhoRubyLib/db/DBCommand.cs +428 -0
  992. data/platform/wp7/RhoRubyLib/db/DBException.cs +27 -1
  993. data/platform/wp7/RhoRubyLib/db/IDBCallback.cs +27 -1
  994. data/platform/wp7/RhoRubyLib/db/IDBResult.cs +27 -1
  995. data/platform/wp7/RhoRubyLib/db/IDBStorage.cs +27 -1
  996. data/platform/wp7/RhoRubyLib/db/SqliteCopyResult.cs +27 -1
  997. data/platform/wp7/RhoRubyLib/db/SqliteResult.cs +27 -1
  998. data/platform/wp7/RhoRubyLib/db/SqliteStorage.cs +27 -1
  999. data/platform/wp7/RhoRubyLib/json/JSONArrayIterator.cs +27 -1
  1000. data/platform/wp7/RhoRubyLib/json/JSONEntry.cs +27 -1
  1001. data/platform/wp7/RhoRubyLib/json/JSONStructIterator.cs +27 -1
  1002. data/platform/wp7/RhoRubyLib/json/JsonParser.cs +26 -0
  1003. data/platform/wp7/RhoRubyLib/json/RJSONTokener.cs +26 -0
  1004. data/platform/wp7/RhoRubyLib/logging/IRhoLogSink.cs +27 -1
  1005. data/platform/wp7/RhoRubyLib/logging/RhoEmptyLogger.cs +26 -0
  1006. data/platform/wp7/RhoRubyLib/logging/RhoLogConf.cs +27 -1
  1007. data/platform/wp7/RhoRubyLib/logging/RhoLogFileSink.cs +27 -1
  1008. data/platform/wp7/RhoRubyLib/logging/RhoLogServerSink.cs +27 -1
  1009. data/platform/wp7/RhoRubyLib/logging/RhoLogger.cs +27 -1
  1010. data/platform/wp7/RhoRubyLib/net/AsyncHttp.cs +27 -1
  1011. data/platform/wp7/RhoRubyLib/net/HttpServer.cs +28 -2
  1012. data/platform/wp7/RhoRubyLib/net/NetRequest.cs +28 -2
  1013. data/platform/wp7/RhoRubyLib/net/NetResponse.cs +27 -1
  1014. data/platform/wp7/RhoRubyLib/net/URI.cs +27 -1
  1015. data/platform/wp7/RhoRubyLib/rubyext/RhoAsyncHttp.cs +27 -1
  1016. data/platform/wp7/RhoRubyLib/rubyext/RhoConfig.cs +188 -0
  1017. data/platform/wp7/RhoRubyLib/rubyext/RhoDatabase.cs +27 -1
  1018. data/platform/wp7/RhoRubyLib/rubyext/RhoJSON.cs +26 -0
  1019. data/platform/wp7/RhoRubyLib/rubyext/RhoKernelOps.cs +27 -1
  1020. data/platform/wp7/RhoRubyLib/rubyext/RhoNativeBar.cs +130 -6
  1021. data/platform/wp7/RhoRubyLib/rubyext/RhoSyncEngine.cs +42 -2
  1022. data/platform/wp7/RhoRubyLib/rubyext/RhoSystem.cs +153 -0
  1023. data/platform/wp7/RhoRubyLib/rubyext/RhoWebView.cs +49 -4
  1024. data/platform/wp7/RhoRubyLib/sync/SyncSource.cs +17 -17
  1025. data/platform/wp7/RhoRubyLib/views/RhoTabHeader.xaml +18 -0
  1026. data/platform/wp7/RhoRubyLib/views/RhoTabHeader.xaml.cs +56 -0
  1027. data/platform/wp7/RhoRubyLib/views/RhoView.xaml +16 -0
  1028. data/platform/wp7/RhoRubyLib/views/RhoView.xaml.cs +153 -0
  1029. data/platform/wp7/build/wp.rake +31 -0
  1030. data/platform/wp7/rhodes/App.xaml.cs +28 -2
  1031. data/platform/wp7/rhodes/MainPage.xaml +4 -3
  1032. data/platform/wp7/rhodes/MainPage.xaml.cs +50 -11
  1033. data/platform/wp7/sqlite3/SQLiteClient.cs +27 -1
  1034. data/rakefile.rb +200 -18
  1035. data/res/build-tools/detool.exe +0 -0
  1036. data/res/generators/rhogen.rb +2 -1
  1037. data/res/generators/templates/application/app/Settings/home.bb.erb +14 -13
  1038. data/res/generators/templates/application/app/Settings/home.erb +16 -17
  1039. data/res/generators/templates/application/app/Settings/index.bb.erb +26 -27
  1040. data/res/generators/templates/application/app/Settings/index.erb +28 -27
  1041. data/res/generators/templates/application/app/Settings/login.bb.erb +25 -31
  1042. data/res/generators/templates/application/app/Settings/login.erb +20 -22
  1043. data/res/generators/templates/application/app/Settings/reset.bb.erb +12 -11
  1044. data/res/generators/templates/application/app/Settings/reset.erb +10 -13
  1045. data/res/generators/templates/application/app/Settings/wait.bb.erb +9 -2
  1046. data/res/generators/templates/application/app/Settings/wait.erb +9 -4
  1047. data/res/generators/templates/application/app/index.erb +17 -24
  1048. data/res/generators/templates/application/app/layout.erb +51 -21
  1049. data/res/generators/templates/application/build.yml +3 -1
  1050. data/res/generators/templates/application/icon/icon.svg +5334 -0
  1051. data/res/generators/templates/application/public/css/android.css +6 -1
  1052. data/res/generators/templates/application/public/css/blackberry.css +6 -1
  1053. data/res/generators/templates/application/public/css/iphone.css +4 -0
  1054. data/res/generators/templates/application/public/jqmobile/images/ajax-loader.png +0 -0
  1055. data/res/generators/templates/application/public/jqmobile/images/icon-search-black.png +0 -0
  1056. data/res/generators/templates/application/public/jqmobile/images/icons-18-black.png +0 -0
  1057. data/res/generators/templates/application/public/jqmobile/images/icons-18-white.png +0 -0
  1058. data/res/generators/templates/application/public/jqmobile/images/icons-36-black.png +0 -0
  1059. data/res/generators/templates/application/public/jqmobile/images/icons-36-white.png +0 -0
  1060. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0b1.css +1661 -0
  1061. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0b1.js +5626 -0
  1062. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0b1.min.css +8 -0
  1063. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0b1.min.js +146 -0
  1064. data/res/generators/templates/application/public/{jqtouch/jqtouch-iphone.css → jqmobile/jquery.mobile.iphone.css} +1 -1
  1065. data/res/generators/templates/application/public/jquery/jquery-1.6.2.js +8981 -0
  1066. data/res/generators/templates/application/public/jquery/jquery-1.6.2.min.js +18 -0
  1067. data/res/generators/templates/application/public/js/jqmobile-patch.js +231 -0
  1068. data/res/generators/templates/model/controller.rb +3 -2
  1069. data/res/generators/templates/model/edit.bb.erb +17 -17
  1070. data/res/generators/templates/model/edit.erb +15 -20
  1071. data/res/generators/templates/model/index.bb.erb +19 -19
  1072. data/res/generators/templates/model/index.erb +23 -26
  1073. data/res/generators/templates/model/new.bb.erb +18 -19
  1074. data/res/generators/templates/model/new.erb +17 -19
  1075. data/res/generators/templates/model/show.bb.erb +10 -11
  1076. data/res/generators/templates/model/show.erb +16 -19
  1077. data/rhobuild.yml.example +2 -1
  1078. data/rhodes.gemspec +4 -3
  1079. data/rhomobile-debug.gemspec +22 -0
  1080. data/spec/framework_spec/app/layout.erb +1 -1
  1081. data/spec/perfomance_spec/app/layout.erb +1 -1
  1082. data/spec/phone_spec/app/spec/asynchttp_spec.rb +1 -1
  1083. data/spec/phone_spec/app/spec/mapview_spec.rb +43 -0
  1084. data/spec/phone_spec/app/spec/rho_spec.rb +23 -0
  1085. data/spec/phone_spec/app/spec/syncengine_spec.rb +49 -8
  1086. metadata +244 -344
  1087. data/Manifest.txt +0 -6409
  1088. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/COPYING +0 -27
  1089. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/README +0 -95
  1090. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar.h +0 -1415
  1091. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Decoder.h +0 -201
  1092. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Exception.h +0 -187
  1093. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Image.h +0 -321
  1094. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ImageScanner.h +0 -130
  1095. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Processor.h +0 -223
  1096. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/QZBar.h +0 -169
  1097. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/QZBarImage.h +0 -72
  1098. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Scanner.h +0 -162
  1099. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Symbol.h +0 -529
  1100. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Video.h +0 -170
  1101. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Window.h +0 -136
  1102. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarCaptureReader.h +0 -99
  1103. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarImage.h +0 -69
  1104. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarImageScanner.h +0 -50
  1105. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarReaderController.h +0 -142
  1106. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarReaderView.h +0 -119
  1107. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarReaderViewController.h +0 -99
  1108. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarSymbol.h +0 -67
  1109. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/zbargtk.h +0 -205
  1110. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/config.c +0 -157
  1111. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/convert.c +0 -1172
  1112. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/debug.h +0 -87
  1113. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder.c +0 -409
  1114. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder.h +0 -219
  1115. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/code128.c +0 -528
  1116. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/code128.h +0 -49
  1117. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/code39.c +0 -335
  1118. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/code39.h +0 -50
  1119. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/ean.c +0 -660
  1120. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/ean.h +0 -86
  1121. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/i25.c +0 -243
  1122. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/i25.h +0 -50
  1123. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/pdf417.c +0 -223
  1124. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/pdf417.h +0 -49
  1125. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/pdf417_hash.h +0 -545
  1126. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/qr_finder.c +0 -102
  1127. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/qr_finder.h +0 -23
  1128. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/error.c +0 -183
  1129. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/error.h +0 -240
  1130. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/event.h +0 -62
  1131. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/image.c +0 -358
  1132. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/image.h +0 -142
  1133. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/img_scanner.c +0 -819
  1134. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/img_scanner.h +0 -38
  1135. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/jpeg.c +0 -241
  1136. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/mutex.h +0 -160
  1137. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor.c +0 -700
  1138. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor.h +0 -126
  1139. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor/lock.c +0 -227
  1140. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor/null.c +0 -62
  1141. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor/posix.c +0 -337
  1142. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor/posix.h +0 -138
  1143. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor/win.c +0 -335
  1144. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor/x.c +0 -269
  1145. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode.h +0 -66
  1146. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/bch15_5.c +0 -184
  1147. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/bch15_5.h +0 -20
  1148. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/binarize.c +0 -639
  1149. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/binarize.h +0 -17
  1150. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/isaac.c +0 -139
  1151. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/isaac.h +0 -41
  1152. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/qrdec.c +0 -3957
  1153. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/qrdec.h +0 -168
  1154. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/qrdectxt.c +0 -405
  1155. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/rs.c +0 -799
  1156. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/rs.h +0 -66
  1157. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/util.c +0 -140
  1158. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/util.h +0 -48
  1159. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/refcnt.c +0 -48
  1160. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/refcnt.h +0 -96
  1161. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/scanner.c +0 -317
  1162. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/svg.c +0 -184
  1163. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/svg.h +0 -65
  1164. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/symbol.c +0 -325
  1165. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/symbol.h +0 -93
  1166. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/thread.h +0 -127
  1167. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/timer.h +0 -151
  1168. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/unistd.h +0 -1
  1169. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/video.c +0 -384
  1170. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/video.h +0 -160
  1171. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/video/null.c +0 -37
  1172. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/video/v4l1.c +0 -435
  1173. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/video/v4l2.c +0 -509
  1174. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/video/vfw.c +0 -494
  1175. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window.c +0 -318
  1176. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window.h +0 -144
  1177. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/dib.c +0 -75
  1178. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/null.c +0 -103
  1179. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/vfw.c +0 -104
  1180. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/win.c +0 -334
  1181. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/win.h +0 -46
  1182. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/x.c +0 -356
  1183. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/x.h +0 -74
  1184. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/ximage.c +0 -219
  1185. data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/xv.c +0 -273
  1186. data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_SplashScreen.h +0 -39
  1187. data/platform/android/Rhodes/src/com/rhomobile/rhodes/NetworkConnectivityListener.java +0 -222
  1188. data/platform/android/Rhodes/src/com/rhomobile/rhodes/NetworkStateTracker.java +0 -185
  1189. data/platform/shared/SyncClient/RhoError.h +0 -29
  1190. data/platform/shared/SyncClient/SyncClient.h +0 -95
  1191. data/platform/symbian/RhoLib/group/RhoLib.mmp +0 -41
  1192. data/platform/symbian/RhoLib/group/bld.inf +0 -15
  1193. data/platform/symbian/SQLite60/group/SQLite60.mmp +0 -21
  1194. data/platform/symbian/SQLite60/group/bld.inf +0 -7
  1195. data/platform/symbian/build/build.properties +0 -80
  1196. data/platform/symbian/build/build.xml +0 -649
  1197. data/platform/symbian/build/insertRhoBundle2pkg.rb +0 -26
  1198. data/platform/symbian/build/lib/stlport.zip +0 -0
  1199. data/platform/symbian/build/logfile.template +0 -1
  1200. data/platform/symbian/build/release.properties +0 -7
  1201. data/platform/symbian/lib/pips_nokia_1_3_ss.sis +0 -0
  1202. data/platform/symbian/rhodes/data/loading.html +0 -11
  1203. data/platform/symbian/rhodes/data/rhodes.rls +0 -91
  1204. data/platform/symbian/rhodes/data/rhodes.rss +0 -537
  1205. data/platform/symbian/rhodes/data/rhodes_reg.rss +0 -40
  1206. data/platform/symbian/rhodes/gfx/qgn_menu_rhodes.svg +0 -55
  1207. data/platform/symbian/rhodes/group/Icons_scalable_dc.mk +0 -50
  1208. data/platform/symbian/rhodes/group/bld.inf +0 -10
  1209. data/platform/symbian/rhodes/group/rhodes.mmp +0 -180
  1210. data/platform/symbian/rhodes/help/Custom.xml +0 -18
  1211. data/platform/symbian/rhodes/help/build_help.mk +0 -45
  1212. data/platform/symbian/rhodes/help/rhodes.cshlp +0 -19
  1213. data/platform/symbian/rhodes/help/rhodes.xml +0 -13
  1214. data/platform/symbian/rhodes/inc/AppManager.h +0 -89
  1215. data/platform/symbian/rhodes/inc/AppSoftkeysObserver.h +0 -95
  1216. data/platform/symbian/rhodes/inc/ConnectionManager.h +0 -115
  1217. data/platform/symbian/rhodes/inc/GeoLocationService.h +0 -89
  1218. data/platform/symbian/rhodes/inc/HttpClient.h +0 -161
  1219. data/platform/symbian/rhodes/inc/HttpConstants.h +0 -72
  1220. data/platform/symbian/rhodes/inc/HttpEventHandler.h +0 -130
  1221. data/platform/symbian/rhodes/inc/HttpFileManager.h +0 -116
  1222. data/platform/symbian/rhodes/inc/HttpServer.h +0 -119
  1223. data/platform/symbian/rhodes/inc/LogOptionsDialog.h +0 -59
  1224. data/platform/symbian/rhodes/inc/RhoCamera.h +0 -321
  1225. data/platform/symbian/rhodes/inc/SpecialLoadObserver.h +0 -115
  1226. data/platform/symbian/rhodes/inc/SyncEngineWrap.h +0 -107
  1227. data/platform/symbian/rhodes/inc/geolocation/GeoLocation.h +0 -91
  1228. data/platform/symbian/rhodes/inc/ports_mngt.h +0 -23
  1229. data/platform/symbian/rhodes/inc/posix_http_client.h +0 -37
  1230. data/platform/symbian/rhodes/inc/rhodes.hrh +0 -106
  1231. data/platform/symbian/rhodes/inc/rhodes.pan +0 -42
  1232. data/platform/symbian/rhodes/inc/rhodesAppUi.h +0 -153
  1233. data/platform/symbian/rhodes/inc/rhodesAppView.h +0 -242
  1234. data/platform/symbian/rhodes/inc/rhodesApplication.h +0 -69
  1235. data/platform/symbian/rhodes/inc/rhodesDocument.h +0 -103
  1236. data/platform/symbian/rhodes/sis/backup_registration.xml +0 -5
  1237. data/platform/symbian/rhodes/sis/cert/rhodes_cert.cer +0 -27
  1238. data/platform/symbian/rhodes/sis/cert/rhodes_pid.key +0 -23
  1239. data/platform/symbian/rhodes/sis/rhodes.pkg +0 -42
  1240. data/platform/symbian/rhodes/src/AppManager.cpp +0 -153
  1241. data/platform/symbian/rhodes/src/AppSoftkeysObserver.cpp +0 -88
  1242. data/platform/symbian/rhodes/src/ConnectionManager.cpp +0 -337
  1243. data/platform/symbian/rhodes/src/GeoLocationService.cpp +0 -151
  1244. data/platform/symbian/rhodes/src/HttpClient.cpp +0 -489
  1245. data/platform/symbian/rhodes/src/HttpConstants.cpp +0 -35
  1246. data/platform/symbian/rhodes/src/HttpEventHandler.cpp +0 -587
  1247. data/platform/symbian/rhodes/src/HttpFileManager.cpp +0 -282
  1248. data/platform/symbian/rhodes/src/HttpServer.cpp +0 -275
  1249. data/platform/symbian/rhodes/src/LogOptionsDialog.cpp +0 -179
  1250. data/platform/symbian/rhodes/src/RhoCamera.cpp +0 -675
  1251. data/platform/symbian/rhodes/src/SpecialLoadObserver.cpp +0 -95
  1252. data/platform/symbian/rhodes/src/SyncEngineWrap.cpp +0 -400
  1253. data/platform/symbian/rhodes/src/camera/camera.cpp +0 -23
  1254. data/platform/symbian/rhodes/src/geolocation/GeoLocation.cpp +0 -110
  1255. data/platform/symbian/rhodes/src/geolocation/ruby_geolocation.cpp +0 -38
  1256. data/platform/symbian/rhodes/src/notification.cpp +0 -117
  1257. data/platform/symbian/rhodes/src/ports_mngt.c +0 -103
  1258. data/platform/symbian/rhodes/src/posix_http_client.c +0 -460
  1259. data/platform/symbian/rhodes/src/rhodes.cpp +0 -43
  1260. data/platform/symbian/rhodes/src/rhodesAppUi.cpp +0 -436
  1261. data/platform/symbian/rhodes/src/rhodesAppView.cpp +0 -851
  1262. data/platform/symbian/rhodes/src/rhodesApplication.cpp +0 -51
  1263. data/platform/symbian/rhodes/src/rhodesDocument.cpp +0 -97
  1264. data/platform/symbian/rhodes/src/rsyncengine.c +0 -11
  1265. data/platform/symbian/rhodes/src/webview/webview.cpp +0 -44
  1266. data/platform/symbian/rubylib/group/bld.inf +0 -7
  1267. data/platform/symbian/rubylib/group/rubylib.mmp +0 -143
  1268. data/platform/symbian/shttpd/group/bld.inf +0 -5
  1269. data/platform/symbian/shttpd/group/shttpd.mmp +0 -24
  1270. data/platform/symbian/tcmalloc/group/bld.inf +0 -15
  1271. data/platform/symbian/tcmalloc/group/tcmalloc.mmp +0 -31
  1272. data/platform/wm/rhodes/emulator/ExternalWebView.cpp +0 -20
  1273. data/platform/wm/rhodes/emulator/ExternalWebView.h +0 -23
  1274. data/platform/wm/rhodes/emulator/MainWindowCallback.h +0 -19
  1275. data/platform/wm/rhodes/emulator/MainWindowProxy.cpp +0 -270
  1276. data/platform/wm/rhodes/emulator/MainWindowProxy.h +0 -34
  1277. data/platform/wm/rhodes/emulator/MainWindowQt.cpp +0 -356
  1278. data/platform/wm/rhodes/emulator/NativeToolbarQt.cpp +0 -57
  1279. data/platform/wm/rhodes/emulator/NativeToolbarQt.h +0 -52
  1280. data/platform/wm/rhodes/emulator/QtMainWindow.cpp +0 -252
  1281. data/platform/wm/rhodes/emulator/QtMainWindow.h +0 -62
  1282. data/platform/wm/rhodes/rho/rubyext/NativeToolbarExt.h +0 -6
  1283. data/platform/wp7/WPApplication.sln +0 -50
  1284. data/platform/wp7/WPApplication/App.xaml +0 -19
  1285. data/platform/wp7/WPApplication/App.xaml.cs +0 -211
  1286. data/platform/wp7/WPApplication/ApplicationIcon.png +0 -0
  1287. data/platform/wp7/WPApplication/Background.png +0 -0
  1288. data/platform/wp7/WPApplication/MainPage.xaml +0 -44
  1289. data/platform/wp7/WPApplication/MainPage.xaml.cs +0 -132
  1290. data/platform/wp7/WPApplication/Properties/AppManifest.xml +0 -6
  1291. data/platform/wp7/WPApplication/Properties/AssemblyInfo.cs +0 -35
  1292. data/platform/wp7/WPApplication/Properties/WMAppManifest.xml +0 -32
  1293. data/platform/wp7/WPApplication/SplashScreenImage.jpg +0 -0
  1294. data/platform/wp7/WPApplication/WPApplication.csproj +0 -201
  1295. data/platform/wp7/WPApplication/WP_PlatformAdaptationLayer.cs +0 -88
  1296. data/platform/wp7/WPApplication/app_manifest.txt +0 -1
  1297. data/platform/wp7/WPApplication/readme.htm +0 -40
  1298. data/platform/wp7/WPApplication/readme2.htm +0 -37
  1299. data/platform/wp7/WPApplication/rho/apps/app/Model1/edit.bb.erb +0 -29
  1300. data/platform/wp7/WPApplication/rho/apps/app/Model1/edit.erb +0 -32
  1301. data/platform/wp7/WPApplication/rho/apps/app/Model1/index.bb.erb +0 -21
  1302. data/platform/wp7/WPApplication/rho/apps/app/Model1/index.erb +0 -26
  1303. data/platform/wp7/WPApplication/rho/apps/app/Model1/model1.rb +0 -10
  1304. data/platform/wp7/WPApplication/rho/apps/app/Model1/model1_controller.rb +0 -58
  1305. data/platform/wp7/WPApplication/rho/apps/app/Model1/new.bb.erb +0 -29
  1306. data/platform/wp7/WPApplication/rho/apps/app/Model1/new.erb +0 -31
  1307. data/platform/wp7/WPApplication/rho/apps/app/Model1/show.bb.erb +0 -26
  1308. data/platform/wp7/WPApplication/rho/apps/app/Model1/show.erb +0 -28
  1309. data/platform/wp7/WPApplication/rho/apps/app/Settings/controller.rb +0 -75
  1310. data/platform/wp7/WPApplication/rho/apps/app/Settings/home.bb.erb +0 -17
  1311. data/platform/wp7/WPApplication/rho/apps/app/Settings/home.erb +0 -20
  1312. data/platform/wp7/WPApplication/rho/apps/app/Settings/index.bb.erb +0 -32
  1313. data/platform/wp7/WPApplication/rho/apps/app/Settings/index.erb +0 -30
  1314. data/platform/wp7/WPApplication/rho/apps/app/Settings/login.bb.erb +0 -35
  1315. data/platform/wp7/WPApplication/rho/apps/app/Settings/login.erb +0 -27
  1316. data/platform/wp7/WPApplication/rho/apps/app/Settings/reset.bb.erb +0 -15
  1317. data/platform/wp7/WPApplication/rho/apps/app/Settings/reset.erb +0 -17
  1318. data/platform/wp7/WPApplication/rho/apps/app/Settings/wait.bb.erb +0 -3
  1319. data/platform/wp7/WPApplication/rho/apps/app/Settings/wait.erb +0 -5
  1320. data/platform/wp7/WPApplication/rho/apps/app/application.rb +0 -16
  1321. data/platform/wp7/WPApplication/rho/apps/app/helpers/application_helper.rb +0 -126
  1322. data/platform/wp7/WPApplication/rho/apps/app/helpers/browser_helper.rb +0 -18
  1323. data/platform/wp7/WPApplication/rho/apps/app/index.bb.erb +0 -26
  1324. data/platform/wp7/WPApplication/rho/apps/app/index.erb +0 -26
  1325. data/platform/wp7/WPApplication/rho/apps/app/layout.erb +0 -47
  1326. data/platform/wp7/WPApplication/rho/apps/app/loading.html +0 -11
  1327. data/platform/wp7/WPApplication/rho/apps/app_manifest.txt +0 -1
  1328. data/platform/wp7/WPApplication/rho/apps/public/css/android.css +0 -330
  1329. data/platform/wp7/WPApplication/rho/apps/public/css/blackberry.css +0 -115
  1330. data/platform/wp7/WPApplication/rho/apps/public/css/iphone.css +0 -410
  1331. data/platform/wp7/WPApplication/rho/apps/public/css/windows_mobile.css +0 -222
  1332. data/platform/wp7/WPApplication/rho/apps/public/images/IUI_LICENSE.txt +0 -21
  1333. data/platform/wp7/WPApplication/rho/apps/public/images/android/ic_menu_more.png +0 -0
  1334. data/platform/wp7/WPApplication/rho/apps/public/images/backButton.png +0 -0
  1335. data/platform/wp7/WPApplication/rho/apps/public/images/blueButton.png +0 -0
  1336. data/platform/wp7/WPApplication/rho/apps/public/images/cancel.png +0 -0
  1337. data/platform/wp7/WPApplication/rho/apps/public/images/grayButton.png +0 -0
  1338. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/disclosure.png +0 -0
  1339. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/disclosure_detail.png +0 -0
  1340. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/backButton.png +0 -0
  1341. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/blueButton.png +0 -0
  1342. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/cancel.png +0 -0
  1343. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/chevron.png +0 -0
  1344. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/grayButton.png +0 -0
  1345. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/listArrowSel.png +0 -0
  1346. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/listGroup.png +0 -0
  1347. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/loading.gif +0 -0
  1348. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/on_off.png +0 -0
  1349. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/pinstripes.png +0 -0
  1350. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/selection.png +0 -0
  1351. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/thumb.png +0 -0
  1352. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/toggle.png +0 -0
  1353. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/toggleOn.png +0 -0
  1354. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/toolButton.png +0 -0
  1355. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/toolbar.png +0 -0
  1356. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/whiteButton.png +0 -0
  1357. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/radiobutton.png +0 -0
  1358. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/select.png +0 -0
  1359. data/platform/wp7/WPApplication/rho/apps/public/images/iphone/switch.png +0 -0
  1360. data/platform/wp7/WPApplication/rho/apps/public/images/iui-logo-touch-icon.png +0 -0
  1361. data/platform/wp7/WPApplication/rho/apps/public/images/listArrow.png +0 -0
  1362. data/platform/wp7/WPApplication/rho/apps/public/images/listArrowDown.png +0 -0
  1363. data/platform/wp7/WPApplication/rho/apps/public/images/listArrowSel.png +0 -0
  1364. data/platform/wp7/WPApplication/rho/apps/public/images/listGroup.png +0 -0
  1365. data/platform/wp7/WPApplication/rho/apps/public/images/loading.gif +0 -0
  1366. data/platform/wp7/WPApplication/rho/apps/public/images/pinstripes.png +0 -0
  1367. data/platform/wp7/WPApplication/rho/apps/public/images/right_button.png +0 -0
  1368. data/platform/wp7/WPApplication/rho/apps/public/images/selection.png +0 -0
  1369. data/platform/wp7/WPApplication/rho/apps/public/images/thumb.png +0 -0
  1370. data/platform/wp7/WPApplication/rho/apps/public/images/toggle.png +0 -0
  1371. data/platform/wp7/WPApplication/rho/apps/public/images/toggleOn.png +0 -0
  1372. data/platform/wp7/WPApplication/rho/apps/public/images/toolButton.png +0 -0
  1373. data/platform/wp7/WPApplication/rho/apps/public/images/toolButton_new.png +0 -0
  1374. data/platform/wp7/WPApplication/rho/apps/public/images/toolbar.png +0 -0
  1375. data/platform/wp7/WPApplication/rho/apps/public/images/whiteButton.png +0 -0
  1376. data/platform/wp7/WPApplication/rho/apps/public/jqtouch/jqtouch-iphone.css +0 -9
  1377. data/platform/wp7/WPApplication/rho/apps/public/jqtouch/jqtouch.css +0 -374
  1378. data/platform/wp7/WPApplication/rho/apps/public/jqtouch/jqtouch.js +0 -742
  1379. data/platform/wp7/WPApplication/rho/apps/public/jqtouch/jqtouch.transitions.js +0 -60
  1380. data/platform/wp7/WPApplication/rho/apps/public/jqtouch/jquery.1.3.2.min.js +0 -19
  1381. data/platform/wp7/WPApplication/rho/apps/public/js/application.js +0 -1
  1382. data/platform/wp7/WPApplication/rho/apps/public/js/rho.js +0 -4
  1383. data/platform/wp7/WPApplication/rho/apps/public/js/rhogeolocation-wm.js +0 -59
  1384. data/platform/wp7/WPApplication/rho/apps/public/js/rhogeolocation.js +0 -11
  1385. data/platform/wp7/WPApplication/rho/apps/rhoconfig.txt +0 -32
  1386. data/platform/wp7/WPApplication/rhoconfig.txt +0 -32
  1387. data/platform/wp7/WPApplication/windows_mobile.css +0 -222
  1388. data/res/generators/templates/application/public/jqtouch/changes.txt +0 -20
  1389. data/res/generators/templates/application/public/jqtouch/jqtouch.css +0 -374
  1390. data/res/generators/templates/application/public/jqtouch/jqtouch.js +0 -771
  1391. data/res/generators/templates/application/public/jqtouch/jqtouch.transitions.js +0 -60
  1392. data/res/generators/templates/application/public/jqtouch/jquery.1.3.2.min.js +0 -19
  1393. data/res/generators/templates/application/public/js/wp7.js +0 -7
@@ -1,3 +1,29 @@
1
+ /*------------------------------------------------------------------------
2
+ * (The MIT License)
3
+ *
4
+ * Copyright (c) 2008-2011 Rhomobile, Inc.
5
+ *
6
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ * of this software and associated documentation files (the "Software"), to deal
8
+ * in the Software without restriction, including without limitation the rights
9
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ * copies of the Software, and to permit persons to whom the Software is
11
+ * furnished to do so, subject to the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be included in
14
+ * all copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ * THE SOFTWARE.
23
+ *
24
+ * http://rhomobile.com
25
+ *------------------------------------------------------------------------*/
26
+
1
27
  #include "stdafx.h"
2
28
 
3
29
  #include "ruby/ext/rho/rhoruby.h"
@@ -76,6 +76,7 @@
76
76
  UsePrecompiledHeader="2"
77
77
  WarningLevel="3"
78
78
  DebugInformationFormat="3"
79
+ DisableSpecificWarnings="4996"
79
80
  />
80
81
  <Tool
81
82
  Name="VCManagedResourceCompilerTool"
@@ -174,6 +175,7 @@
174
175
  UsePrecompiledHeader="2"
175
176
  WarningLevel="3"
176
177
  DebugInformationFormat="3"
178
+ DisableSpecificWarnings="4996"
177
179
  />
178
180
  <Tool
179
181
  Name="VCManagedResourceCompilerTool"
@@ -271,6 +273,7 @@
271
273
  UsePrecompiledHeader="2"
272
274
  WarningLevel="3"
273
275
  DebugInformationFormat="3"
276
+ DisableSpecificWarnings="4996"
274
277
  />
275
278
  <Tool
276
279
  Name="VCManagedResourceCompilerTool"
@@ -372,6 +375,7 @@
372
375
  UsePrecompiledHeader="2"
373
376
  WarningLevel="3"
374
377
  DebugInformationFormat="3"
378
+ DisableSpecificWarnings="4996"
375
379
  />
376
380
  <Tool
377
381
  Name="VCManagedResourceCompilerTool"
@@ -471,6 +475,7 @@
471
475
  UsePrecompiledHeader="2"
472
476
  WarningLevel="3"
473
477
  DebugInformationFormat="3"
478
+ DisableSpecificWarnings="4996"
474
479
  />
475
480
  <Tool
476
481
  Name="VCManagedResourceCompilerTool"
@@ -567,6 +572,7 @@
567
572
  UsePrecompiledHeader="2"
568
573
  WarningLevel="3"
569
574
  DebugInformationFormat="3"
575
+ DisableSpecificWarnings="4996"
570
576
  />
571
577
  <Tool
572
578
  Name="VCManagedResourceCompilerTool"
@@ -666,6 +672,7 @@
666
672
  UsePrecompiledHeader="2"
667
673
  WarningLevel="3"
668
674
  DebugInformationFormat="3"
675
+ DisableSpecificWarnings="4996"
669
676
  />
670
677
  <Tool
671
678
  Name="VCManagedResourceCompilerTool"
@@ -765,6 +772,7 @@
765
772
  UsePrecompiledHeader="2"
766
773
  WarningLevel="3"
767
774
  DebugInformationFormat="3"
775
+ DisableSpecificWarnings="4996"
768
776
  />
769
777
  <Tool
770
778
  Name="VCManagedResourceCompilerTool"
@@ -822,7 +830,7 @@
822
830
  />
823
831
  </Configuration>
824
832
  <Configuration
825
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
833
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
826
834
  OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
827
835
  IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
828
836
  ConfigurationType="1"
@@ -865,6 +873,7 @@
865
873
  UsePrecompiledHeader="2"
866
874
  WarningLevel="3"
867
875
  DebugInformationFormat="3"
876
+ DisableSpecificWarnings="4996"
868
877
  />
869
878
  <Tool
870
879
  Name="VCManagedResourceCompilerTool"
@@ -923,7 +932,7 @@
923
932
  />
924
933
  </Configuration>
925
934
  <Configuration
926
- Name="EmulatorDebug|Win32"
935
+ Name="SimulatorDebug|Win32"
927
936
  OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
928
937
  IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
929
938
  ConfigurationType="1"
@@ -957,14 +966,15 @@
957
966
  <Tool
958
967
  Name="VCCLCompilerTool"
959
968
  Optimization="0"
960
- AdditionalIncludeDirectories="../../shared;./rho;../../shared/ruby;../../shared/wtl80/include;.;&quot;.\emulator\GeneratedFiles&quot;;&quot;$(QTDIR)\include&quot;;&quot;.\emulator\GeneratedFiles\$(ConfigurationName)&quot;;&quot;$(QTDIR)\include\qtmain&quot;;&quot;$(QTDIR)\include\QtCore&quot;;&quot;$(QTDIR)\include\QtGui&quot;;&quot;$(QTDIR)\include\QtWebKit&quot;"
961
- PreprocessorDefinitions="_DEBUG;DEBUG;WIN32;_WINDOWS;RHODES_EMULATOR;UNICODE;QT_LARGEFILE_SUPPORT;QT_CORE_LIB;QT_GUI_LIB;QT_WEBKIT_LIB"
969
+ AdditionalIncludeDirectories="../../shared;./rho;../../shared/ruby;../../shared/wtl80/include;.;&quot;..\..\shared\qt\rhodes\GeneratedFiles&quot;;&quot;$(QTDIR)\include&quot;;&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)&quot;;&quot;$(QTDIR)\include\qtmain&quot;;&quot;$(QTDIR)\include\QtCore&quot;;&quot;$(QTDIR)\include\QtGui&quot;;&quot;$(QTDIR)\include\QtWebKit&quot;"
970
+ PreprocessorDefinitions="_DEBUG;DEBUG;WIN32;_WINDOWS;RHODES_EMULATOR;UNICODE;QT_LARGEFILE_SUPPORT;QT_CORE_LIB;QT_GUI_LIB;QT_NETWORK_LIB;QT_WEBKIT_LIB"
962
971
  MinimalRebuild="true"
963
972
  RuntimeLibrary="1"
964
973
  TreatWChar_tAsBuiltInType="false"
965
974
  UsePrecompiledHeader="2"
966
975
  WarningLevel="3"
967
976
  DebugInformationFormat="3"
977
+ DisableSpecificWarnings="4996"
968
978
  />
969
979
  <Tool
970
980
  Name="VCManagedResourceCompilerTool"
@@ -983,7 +993,7 @@
983
993
  RegisterOutput="false"
984
994
  IgnoreImportLibrary="true"
985
995
  UseUnicodeResponseFiles="false"
986
- AdditionalDependencies="wininet.lib comsuppwd.lib ws2_32.lib Crypt32.lib gdiplus.lib qtmaind.lib QtCored4.lib QtGuid4.lib QtWebKitd4.lib"
996
+ AdditionalDependencies="wininet.lib comsuppwd.lib ws2_32.lib Crypt32.lib gdiplus.lib qtmaind.lib QtCored4.lib QtGuid4.lib QtNetworkd4.lib QtWebKitd4.lib"
987
997
  OutputFile="$(OutDir)/rhosimulator.exe"
988
998
  LinkIncremental="2"
989
999
  AdditionalLibraryDirectories="&quot;$(OutDir)&quot;;&quot;$(QTDIR)\lib&quot;"
@@ -1019,7 +1029,7 @@
1019
1029
  />
1020
1030
  </Configuration>
1021
1031
  <Configuration
1022
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
1032
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
1023
1033
  OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
1024
1034
  IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
1025
1035
  ConfigurationType="1"
@@ -1062,6 +1072,7 @@
1062
1072
  UsePrecompiledHeader="2"
1063
1073
  WarningLevel="3"
1064
1074
  DebugInformationFormat="3"
1075
+ DisableSpecificWarnings="4996"
1065
1076
  />
1066
1077
  <Tool
1067
1078
  Name="VCManagedResourceCompilerTool"
@@ -1120,7 +1131,7 @@
1120
1131
  />
1121
1132
  </Configuration>
1122
1133
  <Configuration
1123
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
1134
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
1124
1135
  OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
1125
1136
  IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
1126
1137
  ConfigurationType="1"
@@ -1163,6 +1174,7 @@
1163
1174
  UsePrecompiledHeader="2"
1164
1175
  WarningLevel="3"
1165
1176
  DebugInformationFormat="3"
1177
+ DisableSpecificWarnings="4996"
1166
1178
  />
1167
1179
  <Tool
1168
1180
  Name="VCManagedResourceCompilerTool"
@@ -1221,7 +1233,7 @@
1221
1233
  />
1222
1234
  </Configuration>
1223
1235
  <Configuration
1224
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
1236
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
1225
1237
  OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
1226
1238
  IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
1227
1239
  ConfigurationType="1"
@@ -1263,6 +1275,7 @@
1263
1275
  UsePrecompiledHeader="2"
1264
1276
  WarningLevel="3"
1265
1277
  DebugInformationFormat="3"
1278
+ DisableSpecificWarnings="4996"
1266
1279
  />
1267
1280
  <Tool
1268
1281
  Name="VCManagedResourceCompilerTool"
@@ -1320,7 +1333,7 @@
1320
1333
  />
1321
1334
  </Configuration>
1322
1335
  <Configuration
1323
- Name="EmulatorRelease|Win32"
1336
+ Name="SimulatorRelease|Win32"
1324
1337
  OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
1325
1338
  IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
1326
1339
  ConfigurationType="1"
@@ -1354,13 +1367,14 @@
1354
1367
  <Tool
1355
1368
  Name="VCCLCompilerTool"
1356
1369
  Optimization="2"
1357
- AdditionalIncludeDirectories="../../shared;./rho;../../shared/ruby;../../shared/wtl80/include;.;&quot;.\emulator\GeneratedFiles&quot;;&quot;$(QTDIR)\include&quot;;&quot;.\emulator\GeneratedFiles\$(ConfigurationName)&quot;;&quot;$(QTDIR)\include\qtmain&quot;;&quot;$(QTDIR)\include\QtCore&quot;;&quot;$(QTDIR)\include\QtGui&quot;;&quot;$(QTDIR)\include\QtWebKit&quot;"
1358
- PreprocessorDefinitions="_NDEBUG;NDEBUG;WIN32;_WINDOWS;RHODES_EMULATOR;UNICODE;QT_LARGEFILE_SUPPORT;QT_NO_DEBUG;QT_CORE_LIB;QT_GUI_LIB;QT_WEBKIT_LIB"
1370
+ AdditionalIncludeDirectories="../../shared;./rho;../../shared/ruby;../../shared/wtl80/include;.;&quot;..\..\shared\qt\rhodes\GeneratedFiles&quot;;&quot;$(QTDIR)\include&quot;;&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)&quot;;&quot;$(QTDIR)\include\qtmain&quot;;&quot;$(QTDIR)\include\QtCore&quot;;&quot;$(QTDIR)\include\QtGui&quot;;&quot;$(QTDIR)\include\QtWebKit&quot;"
1371
+ PreprocessorDefinitions="_NDEBUG;NDEBUG;WIN32;_WINDOWS;RHODES_EMULATOR;UNICODE;QT_LARGEFILE_SUPPORT;QT_NO_DEBUG;QT_CORE_LIB;QT_GUI_LIB;QT_NETWORK_LIB;QT_WEBKIT_LIB"
1359
1372
  RuntimeLibrary="0"
1360
1373
  TreatWChar_tAsBuiltInType="false"
1361
1374
  UsePrecompiledHeader="2"
1362
1375
  WarningLevel="3"
1363
1376
  DebugInformationFormat="3"
1377
+ DisableSpecificWarnings="4996"
1364
1378
  />
1365
1379
  <Tool
1366
1380
  Name="VCManagedResourceCompilerTool"
@@ -1379,7 +1393,7 @@
1379
1393
  RegisterOutput="false"
1380
1394
  IgnoreImportLibrary="true"
1381
1395
  UseUnicodeResponseFiles="false"
1382
- AdditionalDependencies="wininet.lib comsuppwd.lib ws2_32.lib Crypt32.lib gdiplus.lib qtmain.lib QtCore4.lib QtGui4.lib QtWebKit4.lib"
1396
+ AdditionalDependencies="wininet.lib comsuppwd.lib ws2_32.lib Crypt32.lib gdiplus.lib qtmain.lib QtCore4.lib QtGui4.lib QtNetwork4.lib QtWebKit4.lib"
1383
1397
  OutputFile="$(OutDir)/rhosimulator.exe"
1384
1398
  LinkIncremental="1"
1385
1399
  AdditionalLibraryDirectories="&quot;$(OutDir)&quot;;&quot;$(QTDIR)\lib&quot;"
@@ -1418,7 +1432,7 @@
1418
1432
  />
1419
1433
  </Configuration>
1420
1434
  <Configuration
1421
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
1435
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
1422
1436
  OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
1423
1437
  IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
1424
1438
  ConfigurationType="1"
@@ -1460,6 +1474,7 @@
1460
1474
  UsePrecompiledHeader="2"
1461
1475
  WarningLevel="3"
1462
1476
  DebugInformationFormat="3"
1477
+ DisableSpecificWarnings="4996"
1463
1478
  />
1464
1479
  <Tool
1465
1480
  Name="VCManagedResourceCompilerTool"
@@ -1517,7 +1532,7 @@
1517
1532
  />
1518
1533
  </Configuration>
1519
1534
  <Configuration
1520
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
1535
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
1521
1536
  OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
1522
1537
  IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
1523
1538
  ConfigurationType="1"
@@ -1559,6 +1574,7 @@
1559
1574
  UsePrecompiledHeader="2"
1560
1575
  WarningLevel="3"
1561
1576
  DebugInformationFormat="3"
1577
+ DisableSpecificWarnings="4996"
1562
1578
  />
1563
1579
  <Tool
1564
1580
  Name="VCManagedResourceCompilerTool"
@@ -1659,6 +1675,7 @@
1659
1675
  UsePrecompiledHeader="2"
1660
1676
  WarningLevel="3"
1661
1677
  DebugInformationFormat="3"
1678
+ DisableSpecificWarnings="4996"
1662
1679
  />
1663
1680
  <Tool
1664
1681
  Name="VCManagedResourceCompilerTool"
@@ -1753,6 +1770,7 @@
1753
1770
  RuntimeLibrary="1"
1754
1771
  WarningLevel="3"
1755
1772
  DebugInformationFormat="3"
1773
+ DisableSpecificWarnings="4996"
1756
1774
  />
1757
1775
  <Tool
1758
1776
  Name="VCManagedResourceCompilerTool"
@@ -1849,6 +1867,7 @@
1849
1867
  RuntimeLibrary="1"
1850
1868
  WarningLevel="3"
1851
1869
  DebugInformationFormat="3"
1870
+ DisableSpecificWarnings="4996"
1852
1871
  />
1853
1872
  <Tool
1854
1873
  Name="VCManagedResourceCompilerTool"
@@ -1944,6 +1963,7 @@
1944
1963
  UsePrecompiledHeader="2"
1945
1964
  WarningLevel="3"
1946
1965
  DebugInformationFormat="3"
1966
+ DisableSpecificWarnings="4996"
1947
1967
  />
1948
1968
  <Tool
1949
1969
  Name="VCManagedResourceCompilerTool"
@@ -2039,6 +2059,7 @@
2039
2059
  RuntimeLibrary="0"
2040
2060
  WarningLevel="3"
2041
2061
  DebugInformationFormat="3"
2062
+ DisableSpecificWarnings="4996"
2042
2063
  />
2043
2064
  <Tool
2044
2065
  Name="VCManagedResourceCompilerTool"
@@ -2136,6 +2157,7 @@
2136
2157
  RuntimeLibrary="0"
2137
2158
  WarningLevel="3"
2138
2159
  DebugInformationFormat="3"
2160
+ DisableSpecificWarnings="4996"
2139
2161
  />
2140
2162
  <Tool
2141
2163
  Name="VCManagedResourceCompilerTool"
@@ -2224,7 +2246,7 @@
2224
2246
  RelativePath=".\MainWindow.cpp"
2225
2247
  >
2226
2248
  <FileConfiguration
2227
- Name="EmulatorDebug|Win32"
2249
+ Name="SimulatorDebug|Win32"
2228
2250
  ExcludedFromBuild="true"
2229
2251
  >
2230
2252
  <Tool
@@ -2232,7 +2254,7 @@
2232
2254
  />
2233
2255
  </FileConfiguration>
2234
2256
  <FileConfiguration
2235
- Name="EmulatorRelease|Win32"
2257
+ Name="SimulatorRelease|Win32"
2236
2258
  ExcludedFromBuild="true"
2237
2259
  >
2238
2260
  <Tool
@@ -2324,7 +2346,7 @@
2324
2346
  />
2325
2347
  </FileConfiguration>
2326
2348
  <FileConfiguration
2327
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
2349
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
2328
2350
  >
2329
2351
  <Tool
2330
2352
  Name="VCCLCompilerTool"
@@ -2332,7 +2354,7 @@
2332
2354
  />
2333
2355
  </FileConfiguration>
2334
2356
  <FileConfiguration
2335
- Name="EmulatorDebug|Win32"
2357
+ Name="SimulatorDebug|Win32"
2336
2358
  >
2337
2359
  <Tool
2338
2360
  Name="VCCLCompilerTool"
@@ -2340,7 +2362,7 @@
2340
2362
  />
2341
2363
  </FileConfiguration>
2342
2364
  <FileConfiguration
2343
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
2365
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
2344
2366
  >
2345
2367
  <Tool
2346
2368
  Name="VCCLCompilerTool"
@@ -2348,7 +2370,7 @@
2348
2370
  />
2349
2371
  </FileConfiguration>
2350
2372
  <FileConfiguration
2351
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
2373
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
2352
2374
  >
2353
2375
  <Tool
2354
2376
  Name="VCCLCompilerTool"
@@ -2356,7 +2378,7 @@
2356
2378
  />
2357
2379
  </FileConfiguration>
2358
2380
  <FileConfiguration
2359
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
2381
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
2360
2382
  >
2361
2383
  <Tool
2362
2384
  Name="VCCLCompilerTool"
@@ -2364,7 +2386,7 @@
2364
2386
  />
2365
2387
  </FileConfiguration>
2366
2388
  <FileConfiguration
2367
- Name="EmulatorRelease|Win32"
2389
+ Name="SimulatorRelease|Win32"
2368
2390
  >
2369
2391
  <Tool
2370
2392
  Name="VCCLCompilerTool"
@@ -2372,7 +2394,7 @@
2372
2394
  />
2373
2395
  </FileConfiguration>
2374
2396
  <FileConfiguration
2375
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
2397
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
2376
2398
  >
2377
2399
  <Tool
2378
2400
  Name="VCCLCompilerTool"
@@ -2380,7 +2402,7 @@
2380
2402
  />
2381
2403
  </FileConfiguration>
2382
2404
  <FileConfiguration
2383
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
2405
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
2384
2406
  >
2385
2407
  <Tool
2386
2408
  Name="VCCLCompilerTool"
@@ -2599,7 +2621,7 @@
2599
2621
  RelativePath=".\rho\rubyext\NativeToolbar.cpp"
2600
2622
  >
2601
2623
  <FileConfiguration
2602
- Name="EmulatorDebug|Win32"
2624
+ Name="SimulatorDebug|Win32"
2603
2625
  ExcludedFromBuild="true"
2604
2626
  >
2605
2627
  <Tool
@@ -2607,7 +2629,7 @@
2607
2629
  />
2608
2630
  </FileConfiguration>
2609
2631
  <FileConfiguration
2610
- Name="EmulatorRelease|Win32"
2632
+ Name="SimulatorRelease|Win32"
2611
2633
  ExcludedFromBuild="true"
2612
2634
  >
2613
2635
  <Tool
@@ -2624,7 +2646,7 @@
2624
2646
  >
2625
2647
  </File>
2626
2648
  <File
2627
- RelativePath=".\rho\rubyext\NativeToolbarExt.h"
2649
+ RelativePath="..\..\shared\rubyext\NativeToolbarExt.h"
2628
2650
  >
2629
2651
  </File>
2630
2652
  <File
@@ -2660,7 +2682,7 @@
2660
2682
  />
2661
2683
  </FileConfiguration>
2662
2684
  <FileConfiguration
2663
- Name="EmulatorDebug|Win32"
2685
+ Name="SimulatorDebug|Win32"
2664
2686
  ExcludedFromBuild="true"
2665
2687
  >
2666
2688
  <Tool
@@ -2668,7 +2690,7 @@
2668
2690
  />
2669
2691
  </FileConfiguration>
2670
2692
  <FileConfiguration
2671
- Name="EmulatorRelease|Win32"
2693
+ Name="SimulatorRelease|Win32"
2672
2694
  ExcludedFromBuild="true"
2673
2695
  >
2674
2696
  <Tool
@@ -2696,7 +2718,7 @@
2696
2718
  />
2697
2719
  </FileConfiguration>
2698
2720
  <FileConfiguration
2699
- Name="EmulatorDebug|Win32"
2721
+ Name="SimulatorDebug|Win32"
2700
2722
  ExcludedFromBuild="true"
2701
2723
  >
2702
2724
  <Tool
@@ -2704,7 +2726,7 @@
2704
2726
  />
2705
2727
  </FileConfiguration>
2706
2728
  <FileConfiguration
2707
- Name="EmulatorRelease|Win32"
2729
+ Name="SimulatorRelease|Win32"
2708
2730
  ExcludedFromBuild="true"
2709
2731
  >
2710
2732
  <Tool
@@ -2739,7 +2761,7 @@
2739
2761
  />
2740
2762
  </FileConfiguration>
2741
2763
  <FileConfiguration
2742
- Name="EmulatorDebug|Win32"
2764
+ Name="SimulatorDebug|Win32"
2743
2765
  >
2744
2766
  <Tool
2745
2767
  Name="VCCustomBuildTool"
@@ -2800,10 +2822,10 @@
2800
2822
  </File>
2801
2823
  </Filter>
2802
2824
  <Filter
2803
- Name="emulator"
2825
+ Name="simulator"
2804
2826
  >
2805
2827
  <File
2806
- RelativePath=".\emulator\ExternalWebView.cpp"
2828
+ RelativePath=".\simulator\MainWindowQt.cpp"
2807
2829
  >
2808
2830
  <FileConfiguration
2809
2831
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
@@ -2870,7 +2892,7 @@
2870
2892
  />
2871
2893
  </FileConfiguration>
2872
2894
  <FileConfiguration
2873
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
2895
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
2874
2896
  ExcludedFromBuild="true"
2875
2897
  >
2876
2898
  <Tool
@@ -2878,15 +2900,7 @@
2878
2900
  />
2879
2901
  </FileConfiguration>
2880
2902
  <FileConfiguration
2881
- Name="EmulatorDebug|Win32"
2882
- >
2883
- <Tool
2884
- Name="VCCLCompilerTool"
2885
- UsePrecompiledHeader="0"
2886
- />
2887
- </FileConfiguration>
2888
- <FileConfiguration
2889
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
2903
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
2890
2904
  ExcludedFromBuild="true"
2891
2905
  >
2892
2906
  <Tool
@@ -2894,7 +2908,7 @@
2894
2908
  />
2895
2909
  </FileConfiguration>
2896
2910
  <FileConfiguration
2897
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
2911
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
2898
2912
  ExcludedFromBuild="true"
2899
2913
  >
2900
2914
  <Tool
@@ -2902,7 +2916,7 @@
2902
2916
  />
2903
2917
  </FileConfiguration>
2904
2918
  <FileConfiguration
2905
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
2919
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
2906
2920
  ExcludedFromBuild="true"
2907
2921
  >
2908
2922
  <Tool
@@ -2910,15 +2924,7 @@
2910
2924
  />
2911
2925
  </FileConfiguration>
2912
2926
  <FileConfiguration
2913
- Name="EmulatorRelease|Win32"
2914
- >
2915
- <Tool
2916
- Name="VCCLCompilerTool"
2917
- UsePrecompiledHeader="0"
2918
- />
2919
- </FileConfiguration>
2920
- <FileConfiguration
2921
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
2927
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
2922
2928
  ExcludedFromBuild="true"
2923
2929
  >
2924
2930
  <Tool
@@ -2926,7 +2932,7 @@
2926
2932
  />
2927
2933
  </FileConfiguration>
2928
2934
  <FileConfiguration
2929
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
2935
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
2930
2936
  ExcludedFromBuild="true"
2931
2937
  >
2932
2938
  <Tool
@@ -2935,7 +2941,7 @@
2935
2941
  </FileConfiguration>
2936
2942
  </File>
2937
2943
  <File
2938
- RelativePath=".\emulator\ExternalWebView.h"
2944
+ RelativePath=".\simulator\MainWindowQt.h"
2939
2945
  >
2940
2946
  <FileConfiguration
2941
2947
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
@@ -3002,7 +3008,7 @@
3002
3008
  />
3003
3009
  </FileConfiguration>
3004
3010
  <FileConfiguration
3005
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3011
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3006
3012
  ExcludedFromBuild="true"
3007
3013
  >
3008
3014
  <Tool
@@ -3010,18 +3016,14 @@
3010
3016
  />
3011
3017
  </FileConfiguration>
3012
3018
  <FileConfiguration
3013
- Name="EmulatorDebug|Win32"
3019
+ Name="SimulatorDebug|Win32"
3014
3020
  >
3015
3021
  <Tool
3016
3022
  Name="VCCustomBuildTool"
3017
- Description="Moc&apos;ing $(InputFileName)..."
3018
- CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WEBKIT_LIB &quot;-I.&quot; &quot;-I.\emulator\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I.\emulator\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;.\emulator\ExternalWebView.h&quot; -o &quot;.\emulator\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
3019
- AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
3020
- Outputs="&quot;.\emulator\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
3021
3023
  />
3022
3024
  </FileConfiguration>
3023
3025
  <FileConfiguration
3024
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
3026
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
3025
3027
  ExcludedFromBuild="true"
3026
3028
  >
3027
3029
  <Tool
@@ -3029,7 +3031,7 @@
3029
3031
  />
3030
3032
  </FileConfiguration>
3031
3033
  <FileConfiguration
3032
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
3034
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
3033
3035
  ExcludedFromBuild="true"
3034
3036
  >
3035
3037
  <Tool
@@ -3037,7 +3039,7 @@
3037
3039
  />
3038
3040
  </FileConfiguration>
3039
3041
  <FileConfiguration
3040
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3042
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3041
3043
  ExcludedFromBuild="true"
3042
3044
  >
3043
3045
  <Tool
@@ -3045,18 +3047,14 @@
3045
3047
  />
3046
3048
  </FileConfiguration>
3047
3049
  <FileConfiguration
3048
- Name="EmulatorRelease|Win32"
3050
+ Name="SimulatorRelease|Win32"
3049
3051
  >
3050
3052
  <Tool
3051
3053
  Name="VCCustomBuildTool"
3052
- Description="Moc&apos;ing $(InputFileName)..."
3053
- CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WEBKIT_LIB &quot;-I.\emulator\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I.\emulator\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;-I.&quot; &quot;.\emulator\ExternalWebView.h&quot; -o &quot;.\emulator\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
3054
- AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
3055
- Outputs="&quot;.\emulator\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
3056
3054
  />
3057
3055
  </FileConfiguration>
3058
3056
  <FileConfiguration
3059
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
3057
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
3060
3058
  ExcludedFromBuild="true"
3061
3059
  >
3062
3060
  <Tool
@@ -3064,7 +3062,7 @@
3064
3062
  />
3065
3063
  </FileConfiguration>
3066
3064
  <FileConfiguration
3067
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
3065
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
3068
3066
  ExcludedFromBuild="true"
3069
3067
  >
3070
3068
  <Tool
@@ -3073,14 +3071,14 @@
3073
3071
  </FileConfiguration>
3074
3072
  </File>
3075
3073
  <File
3076
- RelativePath=".\emulator\ExternalWebView.ui"
3074
+ RelativePath=".\simulator\NativeTabbarQt.cpp"
3077
3075
  >
3078
3076
  <FileConfiguration
3079
3077
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
3080
3078
  ExcludedFromBuild="true"
3081
3079
  >
3082
3080
  <Tool
3083
- Name="VCCustomBuildTool"
3081
+ Name="VCCLCompilerTool"
3084
3082
  />
3085
3083
  </FileConfiguration>
3086
3084
  <FileConfiguration
@@ -3088,7 +3086,7 @@
3088
3086
  ExcludedFromBuild="true"
3089
3087
  >
3090
3088
  <Tool
3091
- Name="VCCustomBuildTool"
3089
+ Name="VCCLCompilerTool"
3092
3090
  />
3093
3091
  </FileConfiguration>
3094
3092
  <FileConfiguration
@@ -3096,7 +3094,7 @@
3096
3094
  ExcludedFromBuild="true"
3097
3095
  >
3098
3096
  <Tool
3099
- Name="VCCustomBuildTool"
3097
+ Name="VCCLCompilerTool"
3100
3098
  />
3101
3099
  </FileConfiguration>
3102
3100
  <FileConfiguration
@@ -3104,7 +3102,7 @@
3104
3102
  ExcludedFromBuild="true"
3105
3103
  >
3106
3104
  <Tool
3107
- Name="VCCustomBuildTool"
3105
+ Name="VCCLCompilerTool"
3108
3106
  />
3109
3107
  </FileConfiguration>
3110
3108
  <FileConfiguration
@@ -3112,7 +3110,7 @@
3112
3110
  ExcludedFromBuild="true"
3113
3111
  >
3114
3112
  <Tool
3115
- Name="VCCustomBuildTool"
3113
+ Name="VCCLCompilerTool"
3116
3114
  />
3117
3115
  </FileConfiguration>
3118
3116
  <FileConfiguration
@@ -3120,7 +3118,7 @@
3120
3118
  ExcludedFromBuild="true"
3121
3119
  >
3122
3120
  <Tool
3123
- Name="VCCustomBuildTool"
3121
+ Name="VCCLCompilerTool"
3124
3122
  />
3125
3123
  </FileConfiguration>
3126
3124
  <FileConfiguration
@@ -3128,7 +3126,7 @@
3128
3126
  ExcludedFromBuild="true"
3129
3127
  >
3130
3128
  <Tool
3131
- Name="VCCustomBuildTool"
3129
+ Name="VCCLCompilerTool"
3132
3130
  />
3133
3131
  </FileConfiguration>
3134
3132
  <FileConfiguration
@@ -3136,82 +3134,60 @@
3136
3134
  ExcludedFromBuild="true"
3137
3135
  >
3138
3136
  <Tool
3139
- Name="VCCustomBuildTool"
3137
+ Name="VCCLCompilerTool"
3140
3138
  />
3141
3139
  </FileConfiguration>
3142
3140
  <FileConfiguration
3143
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3141
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3144
3142
  ExcludedFromBuild="true"
3145
3143
  >
3146
3144
  <Tool
3147
- Name="VCCustomBuildTool"
3148
- />
3149
- </FileConfiguration>
3150
- <FileConfiguration
3151
- Name="EmulatorDebug|Win32"
3152
- >
3153
- <Tool
3154
- Name="VCCustomBuildTool"
3155
- Description="Uic&apos;ing $(InputFileName)..."
3156
- CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;.\emulator\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
3157
- AdditionalDependencies="$(QTDIR)\bin\uic.exe"
3158
- Outputs="&quot;.\emulator\GeneratedFiles\ui_$(InputName).h&quot;"
3145
+ Name="VCCLCompilerTool"
3159
3146
  />
3160
3147
  </FileConfiguration>
3161
3148
  <FileConfiguration
3162
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
3149
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
3163
3150
  ExcludedFromBuild="true"
3164
3151
  >
3165
3152
  <Tool
3166
- Name="VCCustomBuildTool"
3153
+ Name="VCCLCompilerTool"
3167
3154
  />
3168
3155
  </FileConfiguration>
3169
3156
  <FileConfiguration
3170
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
3157
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
3171
3158
  ExcludedFromBuild="true"
3172
3159
  >
3173
3160
  <Tool
3174
- Name="VCCustomBuildTool"
3161
+ Name="VCCLCompilerTool"
3175
3162
  />
3176
3163
  </FileConfiguration>
3177
3164
  <FileConfiguration
3178
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3165
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3179
3166
  ExcludedFromBuild="true"
3180
3167
  >
3181
3168
  <Tool
3182
- Name="VCCustomBuildTool"
3183
- />
3184
- </FileConfiguration>
3185
- <FileConfiguration
3186
- Name="EmulatorRelease|Win32"
3187
- >
3188
- <Tool
3189
- Name="VCCustomBuildTool"
3190
- Description="Uic&apos;ing $(InputFileName)..."
3191
- CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;.\emulator\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
3192
- AdditionalDependencies="$(QTDIR)\bin\uic.exe"
3193
- Outputs="&quot;.\emulator\GeneratedFiles\ui_$(InputName).h&quot;"
3169
+ Name="VCCLCompilerTool"
3194
3170
  />
3195
3171
  </FileConfiguration>
3196
3172
  <FileConfiguration
3197
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
3173
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
3198
3174
  ExcludedFromBuild="true"
3199
3175
  >
3200
3176
  <Tool
3201
- Name="VCCustomBuildTool"
3177
+ Name="VCCLCompilerTool"
3202
3178
  />
3203
3179
  </FileConfiguration>
3204
3180
  <FileConfiguration
3205
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
3181
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
3206
3182
  ExcludedFromBuild="true"
3207
3183
  >
3208
3184
  <Tool
3209
- Name="VCCustomBuildTool"
3185
+ Name="VCCLCompilerTool"
3210
3186
  />
3211
3187
  </FileConfiguration>
3212
3188
  </File>
3213
3189
  <File
3214
- RelativePath=".\emulator\MainWindowCallback.h"
3190
+ RelativePath=".\simulator\NativeTabbarQt.h"
3215
3191
  >
3216
3192
  <FileConfiguration
3217
3193
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
@@ -3278,7 +3254,7 @@
3278
3254
  />
3279
3255
  </FileConfiguration>
3280
3256
  <FileConfiguration
3281
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3257
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3282
3258
  ExcludedFromBuild="true"
3283
3259
  >
3284
3260
  <Tool
@@ -3286,14 +3262,14 @@
3286
3262
  />
3287
3263
  </FileConfiguration>
3288
3264
  <FileConfiguration
3289
- Name="EmulatorDebug|Win32"
3265
+ Name="SimulatorDebug|Win32"
3290
3266
  >
3291
3267
  <Tool
3292
3268
  Name="VCCustomBuildTool"
3293
3269
  />
3294
3270
  </FileConfiguration>
3295
3271
  <FileConfiguration
3296
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
3272
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
3297
3273
  ExcludedFromBuild="true"
3298
3274
  >
3299
3275
  <Tool
@@ -3301,7 +3277,7 @@
3301
3277
  />
3302
3278
  </FileConfiguration>
3303
3279
  <FileConfiguration
3304
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
3280
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
3305
3281
  ExcludedFromBuild="true"
3306
3282
  >
3307
3283
  <Tool
@@ -3309,7 +3285,7 @@
3309
3285
  />
3310
3286
  </FileConfiguration>
3311
3287
  <FileConfiguration
3312
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3288
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3313
3289
  ExcludedFromBuild="true"
3314
3290
  >
3315
3291
  <Tool
@@ -3317,14 +3293,14 @@
3317
3293
  />
3318
3294
  </FileConfiguration>
3319
3295
  <FileConfiguration
3320
- Name="EmulatorRelease|Win32"
3296
+ Name="SimulatorRelease|Win32"
3321
3297
  >
3322
3298
  <Tool
3323
3299
  Name="VCCustomBuildTool"
3324
3300
  />
3325
3301
  </FileConfiguration>
3326
3302
  <FileConfiguration
3327
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
3303
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
3328
3304
  ExcludedFromBuild="true"
3329
3305
  >
3330
3306
  <Tool
@@ -3332,7 +3308,7 @@
3332
3308
  />
3333
3309
  </FileConfiguration>
3334
3310
  <FileConfiguration
3335
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
3311
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
3336
3312
  ExcludedFromBuild="true"
3337
3313
  >
3338
3314
  <Tool
@@ -3341,7 +3317,7 @@
3341
3317
  </FileConfiguration>
3342
3318
  </File>
3343
3319
  <File
3344
- RelativePath=".\emulator\MainWindowProxy.cpp"
3320
+ RelativePath=".\simulator\NativeToolbarQt.cpp"
3345
3321
  >
3346
3322
  <FileConfiguration
3347
3323
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
@@ -3408,7 +3384,7 @@
3408
3384
  />
3409
3385
  </FileConfiguration>
3410
3386
  <FileConfiguration
3411
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3387
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3412
3388
  ExcludedFromBuild="true"
3413
3389
  >
3414
3390
  <Tool
@@ -3416,15 +3392,7 @@
3416
3392
  />
3417
3393
  </FileConfiguration>
3418
3394
  <FileConfiguration
3419
- Name="EmulatorDebug|Win32"
3420
- >
3421
- <Tool
3422
- Name="VCCLCompilerTool"
3423
- UsePrecompiledHeader="0"
3424
- />
3425
- </FileConfiguration>
3426
- <FileConfiguration
3427
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
3395
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
3428
3396
  ExcludedFromBuild="true"
3429
3397
  >
3430
3398
  <Tool
@@ -3432,7 +3400,7 @@
3432
3400
  />
3433
3401
  </FileConfiguration>
3434
3402
  <FileConfiguration
3435
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
3403
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
3436
3404
  ExcludedFromBuild="true"
3437
3405
  >
3438
3406
  <Tool
@@ -3440,7 +3408,7 @@
3440
3408
  />
3441
3409
  </FileConfiguration>
3442
3410
  <FileConfiguration
3443
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3411
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3444
3412
  ExcludedFromBuild="true"
3445
3413
  >
3446
3414
  <Tool
@@ -3448,15 +3416,7 @@
3448
3416
  />
3449
3417
  </FileConfiguration>
3450
3418
  <FileConfiguration
3451
- Name="EmulatorRelease|Win32"
3452
- >
3453
- <Tool
3454
- Name="VCCLCompilerTool"
3455
- UsePrecompiledHeader="0"
3456
- />
3457
- </FileConfiguration>
3458
- <FileConfiguration
3459
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
3419
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
3460
3420
  ExcludedFromBuild="true"
3461
3421
  >
3462
3422
  <Tool
@@ -3464,7 +3424,7 @@
3464
3424
  />
3465
3425
  </FileConfiguration>
3466
3426
  <FileConfiguration
3467
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
3427
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
3468
3428
  ExcludedFromBuild="true"
3469
3429
  >
3470
3430
  <Tool
@@ -3473,7 +3433,7 @@
3473
3433
  </FileConfiguration>
3474
3434
  </File>
3475
3435
  <File
3476
- RelativePath=".\emulator\MainWindowProxy.h"
3436
+ RelativePath=".\simulator\NativeToolbarQt.h"
3477
3437
  >
3478
3438
  <FileConfiguration
3479
3439
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
@@ -3540,7 +3500,7 @@
3540
3500
  />
3541
3501
  </FileConfiguration>
3542
3502
  <FileConfiguration
3543
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3503
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3544
3504
  ExcludedFromBuild="true"
3545
3505
  >
3546
3506
  <Tool
@@ -3548,14 +3508,14 @@
3548
3508
  />
3549
3509
  </FileConfiguration>
3550
3510
  <FileConfiguration
3551
- Name="EmulatorDebug|Win32"
3511
+ Name="SimulatorDebug|Win32"
3552
3512
  >
3553
3513
  <Tool
3554
3514
  Name="VCCustomBuildTool"
3555
3515
  />
3556
3516
  </FileConfiguration>
3557
3517
  <FileConfiguration
3558
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
3518
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
3559
3519
  ExcludedFromBuild="true"
3560
3520
  >
3561
3521
  <Tool
@@ -3563,7 +3523,7 @@
3563
3523
  />
3564
3524
  </FileConfiguration>
3565
3525
  <FileConfiguration
3566
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
3526
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
3567
3527
  ExcludedFromBuild="true"
3568
3528
  >
3569
3529
  <Tool
@@ -3571,7 +3531,7 @@
3571
3531
  />
3572
3532
  </FileConfiguration>
3573
3533
  <FileConfiguration
3574
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3534
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3575
3535
  ExcludedFromBuild="true"
3576
3536
  >
3577
3537
  <Tool
@@ -3579,14 +3539,14 @@
3579
3539
  />
3580
3540
  </FileConfiguration>
3581
3541
  <FileConfiguration
3582
- Name="EmulatorRelease|Win32"
3542
+ Name="SimulatorRelease|Win32"
3583
3543
  >
3584
3544
  <Tool
3585
3545
  Name="VCCustomBuildTool"
3586
3546
  />
3587
3547
  </FileConfiguration>
3588
3548
  <FileConfiguration
3589
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
3549
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
3590
3550
  ExcludedFromBuild="true"
3591
3551
  >
3592
3552
  <Tool
@@ -3594,7 +3554,7 @@
3594
3554
  />
3595
3555
  </FileConfiguration>
3596
3556
  <FileConfiguration
3597
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
3557
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
3598
3558
  ExcludedFromBuild="true"
3599
3559
  >
3600
3560
  <Tool
@@ -3602,8 +3562,12 @@
3602
3562
  />
3603
3563
  </FileConfiguration>
3604
3564
  </File>
3565
+ </Filter>
3566
+ <Filter
3567
+ Name="qtrhodes"
3568
+ >
3605
3569
  <File
3606
- RelativePath=".\emulator\MainWindowQt.cpp"
3570
+ RelativePath="..\..\shared\qt\rhodes\DateTimeDialog.cpp"
3607
3571
  >
3608
3572
  <FileConfiguration
3609
3573
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
@@ -3670,7 +3634,7 @@
3670
3634
  />
3671
3635
  </FileConfiguration>
3672
3636
  <FileConfiguration
3673
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3637
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3674
3638
  ExcludedFromBuild="true"
3675
3639
  >
3676
3640
  <Tool
@@ -3678,7 +3642,15 @@
3678
3642
  />
3679
3643
  </FileConfiguration>
3680
3644
  <FileConfiguration
3681
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
3645
+ Name="SimulatorDebug|Win32"
3646
+ >
3647
+ <Tool
3648
+ Name="VCCLCompilerTool"
3649
+ UsePrecompiledHeader="0"
3650
+ />
3651
+ </FileConfiguration>
3652
+ <FileConfiguration
3653
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
3682
3654
  ExcludedFromBuild="true"
3683
3655
  >
3684
3656
  <Tool
@@ -3686,7 +3658,7 @@
3686
3658
  />
3687
3659
  </FileConfiguration>
3688
3660
  <FileConfiguration
3689
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
3661
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
3690
3662
  ExcludedFromBuild="true"
3691
3663
  >
3692
3664
  <Tool
@@ -3694,7 +3666,7 @@
3694
3666
  />
3695
3667
  </FileConfiguration>
3696
3668
  <FileConfiguration
3697
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3669
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3698
3670
  ExcludedFromBuild="true"
3699
3671
  >
3700
3672
  <Tool
@@ -3702,7 +3674,15 @@
3702
3674
  />
3703
3675
  </FileConfiguration>
3704
3676
  <FileConfiguration
3705
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
3677
+ Name="SimulatorRelease|Win32"
3678
+ >
3679
+ <Tool
3680
+ Name="VCCLCompilerTool"
3681
+ UsePrecompiledHeader="0"
3682
+ />
3683
+ </FileConfiguration>
3684
+ <FileConfiguration
3685
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
3706
3686
  ExcludedFromBuild="true"
3707
3687
  >
3708
3688
  <Tool
@@ -3710,7 +3690,7 @@
3710
3690
  />
3711
3691
  </FileConfiguration>
3712
3692
  <FileConfiguration
3713
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
3693
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
3714
3694
  ExcludedFromBuild="true"
3715
3695
  >
3716
3696
  <Tool
@@ -3719,7 +3699,7 @@
3719
3699
  </FileConfiguration>
3720
3700
  </File>
3721
3701
  <File
3722
- RelativePath=".\emulator\MainWindowQt.h"
3702
+ RelativePath="..\..\shared\qt\rhodes\DateTimeDialog.h"
3723
3703
  >
3724
3704
  <FileConfiguration
3725
3705
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
@@ -3786,7 +3766,7 @@
3786
3766
  />
3787
3767
  </FileConfiguration>
3788
3768
  <FileConfiguration
3789
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3769
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3790
3770
  ExcludedFromBuild="true"
3791
3771
  >
3792
3772
  <Tool
@@ -3794,14 +3774,18 @@
3794
3774
  />
3795
3775
  </FileConfiguration>
3796
3776
  <FileConfiguration
3797
- Name="EmulatorDebug|Win32"
3777
+ Name="SimulatorDebug|Win32"
3798
3778
  >
3799
3779
  <Tool
3800
3780
  Name="VCCustomBuildTool"
3781
+ Description="Moc&apos;ing $(InputFileName)..."
3782
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I.&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;..\..\shared\qt\rhodes\DateTimeDialog.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
3783
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
3784
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
3801
3785
  />
3802
3786
  </FileConfiguration>
3803
3787
  <FileConfiguration
3804
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
3788
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
3805
3789
  ExcludedFromBuild="true"
3806
3790
  >
3807
3791
  <Tool
@@ -3809,7 +3793,7 @@
3809
3793
  />
3810
3794
  </FileConfiguration>
3811
3795
  <FileConfiguration
3812
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
3796
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
3813
3797
  ExcludedFromBuild="true"
3814
3798
  >
3815
3799
  <Tool
@@ -3817,7 +3801,7 @@
3817
3801
  />
3818
3802
  </FileConfiguration>
3819
3803
  <FileConfiguration
3820
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3804
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3821
3805
  ExcludedFromBuild="true"
3822
3806
  >
3823
3807
  <Tool
@@ -3825,14 +3809,18 @@
3825
3809
  />
3826
3810
  </FileConfiguration>
3827
3811
  <FileConfiguration
3828
- Name="EmulatorRelease|Win32"
3812
+ Name="SimulatorRelease|Win32"
3829
3813
  >
3830
3814
  <Tool
3831
3815
  Name="VCCustomBuildTool"
3816
+ Description="Moc&apos;ing $(InputFileName)..."
3817
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;-I.&quot; &quot;..\..\shared\qt\rhodes\DateTimeDialog.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
3818
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
3819
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
3832
3820
  />
3833
3821
  </FileConfiguration>
3834
3822
  <FileConfiguration
3835
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
3823
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
3836
3824
  ExcludedFromBuild="true"
3837
3825
  >
3838
3826
  <Tool
@@ -3840,7 +3828,7 @@
3840
3828
  />
3841
3829
  </FileConfiguration>
3842
3830
  <FileConfiguration
3843
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
3831
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
3844
3832
  ExcludedFromBuild="true"
3845
3833
  >
3846
3834
  <Tool
@@ -3849,14 +3837,14 @@
3849
3837
  </FileConfiguration>
3850
3838
  </File>
3851
3839
  <File
3852
- RelativePath=".\emulator\NativeToolbarQt.cpp"
3840
+ RelativePath="..\..\shared\qt\rhodes\DateTimeDialog.ui"
3853
3841
  >
3854
3842
  <FileConfiguration
3855
3843
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
3856
3844
  ExcludedFromBuild="true"
3857
3845
  >
3858
3846
  <Tool
3859
- Name="VCCLCompilerTool"
3847
+ Name="VCCustomBuildTool"
3860
3848
  />
3861
3849
  </FileConfiguration>
3862
3850
  <FileConfiguration
@@ -3864,7 +3852,7 @@
3864
3852
  ExcludedFromBuild="true"
3865
3853
  >
3866
3854
  <Tool
3867
- Name="VCCLCompilerTool"
3855
+ Name="VCCustomBuildTool"
3868
3856
  />
3869
3857
  </FileConfiguration>
3870
3858
  <FileConfiguration
@@ -3872,7 +3860,7 @@
3872
3860
  ExcludedFromBuild="true"
3873
3861
  >
3874
3862
  <Tool
3875
- Name="VCCLCompilerTool"
3863
+ Name="VCCustomBuildTool"
3876
3864
  />
3877
3865
  </FileConfiguration>
3878
3866
  <FileConfiguration
@@ -3880,7 +3868,7 @@
3880
3868
  ExcludedFromBuild="true"
3881
3869
  >
3882
3870
  <Tool
3883
- Name="VCCLCompilerTool"
3871
+ Name="VCCustomBuildTool"
3884
3872
  />
3885
3873
  </FileConfiguration>
3886
3874
  <FileConfiguration
@@ -3888,7 +3876,7 @@
3888
3876
  ExcludedFromBuild="true"
3889
3877
  >
3890
3878
  <Tool
3891
- Name="VCCLCompilerTool"
3879
+ Name="VCCustomBuildTool"
3892
3880
  />
3893
3881
  </FileConfiguration>
3894
3882
  <FileConfiguration
@@ -3896,7 +3884,7 @@
3896
3884
  ExcludedFromBuild="true"
3897
3885
  >
3898
3886
  <Tool
3899
- Name="VCCLCompilerTool"
3887
+ Name="VCCustomBuildTool"
3900
3888
  />
3901
3889
  </FileConfiguration>
3902
3890
  <FileConfiguration
@@ -3904,7 +3892,7 @@
3904
3892
  ExcludedFromBuild="true"
3905
3893
  >
3906
3894
  <Tool
3907
- Name="VCCLCompilerTool"
3895
+ Name="VCCustomBuildTool"
3908
3896
  />
3909
3897
  </FileConfiguration>
3910
3898
  <FileConfiguration
@@ -3912,67 +3900,89 @@
3912
3900
  ExcludedFromBuild="true"
3913
3901
  >
3914
3902
  <Tool
3915
- Name="VCCLCompilerTool"
3903
+ Name="VCCustomBuildTool"
3916
3904
  />
3917
3905
  </FileConfiguration>
3918
3906
  <FileConfiguration
3919
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3907
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
3920
3908
  ExcludedFromBuild="true"
3921
3909
  >
3922
3910
  <Tool
3923
- Name="VCCLCompilerTool"
3911
+ Name="VCCustomBuildTool"
3912
+ />
3913
+ </FileConfiguration>
3914
+ <FileConfiguration
3915
+ Name="SimulatorDebug|Win32"
3916
+ >
3917
+ <Tool
3918
+ Name="VCCustomBuildTool"
3919
+ Description="Uic&apos;ing $(InputFileName)..."
3920
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
3921
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
3922
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
3924
3923
  />
3925
3924
  </FileConfiguration>
3926
3925
  <FileConfiguration
3927
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
3926
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
3928
3927
  ExcludedFromBuild="true"
3929
3928
  >
3930
3929
  <Tool
3931
- Name="VCCLCompilerTool"
3930
+ Name="VCCustomBuildTool"
3932
3931
  />
3933
3932
  </FileConfiguration>
3934
3933
  <FileConfiguration
3935
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
3934
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
3936
3935
  ExcludedFromBuild="true"
3937
3936
  >
3938
3937
  <Tool
3939
- Name="VCCLCompilerTool"
3938
+ Name="VCCustomBuildTool"
3940
3939
  />
3941
3940
  </FileConfiguration>
3942
3941
  <FileConfiguration
3943
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3942
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
3944
3943
  ExcludedFromBuild="true"
3945
3944
  >
3946
3945
  <Tool
3947
- Name="VCCLCompilerTool"
3946
+ Name="VCCustomBuildTool"
3947
+ />
3948
+ </FileConfiguration>
3949
+ <FileConfiguration
3950
+ Name="SimulatorRelease|Win32"
3951
+ >
3952
+ <Tool
3953
+ Name="VCCustomBuildTool"
3954
+ Description="Uic&apos;ing $(InputFileName)..."
3955
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
3956
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
3957
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
3948
3958
  />
3949
3959
  </FileConfiguration>
3950
3960
  <FileConfiguration
3951
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
3961
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
3952
3962
  ExcludedFromBuild="true"
3953
3963
  >
3954
3964
  <Tool
3955
- Name="VCCLCompilerTool"
3965
+ Name="VCCustomBuildTool"
3956
3966
  />
3957
3967
  </FileConfiguration>
3958
3968
  <FileConfiguration
3959
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
3969
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
3960
3970
  ExcludedFromBuild="true"
3961
3971
  >
3962
3972
  <Tool
3963
- Name="VCCLCompilerTool"
3973
+ Name="VCCustomBuildTool"
3964
3974
  />
3965
3975
  </FileConfiguration>
3966
3976
  </File>
3967
3977
  <File
3968
- RelativePath=".\emulator\NativeToolbarQt.h"
3978
+ RelativePath="..\..\shared\qt\rhodes\ExternalWebView.cpp"
3969
3979
  >
3970
3980
  <FileConfiguration
3971
3981
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
3972
3982
  ExcludedFromBuild="true"
3973
3983
  >
3974
3984
  <Tool
3975
- Name="VCCustomBuildTool"
3985
+ Name="VCCLCompilerTool"
3976
3986
  />
3977
3987
  </FileConfiguration>
3978
3988
  <FileConfiguration
@@ -3980,7 +3990,7 @@
3980
3990
  ExcludedFromBuild="true"
3981
3991
  >
3982
3992
  <Tool
3983
- Name="VCCustomBuildTool"
3993
+ Name="VCCLCompilerTool"
3984
3994
  />
3985
3995
  </FileConfiguration>
3986
3996
  <FileConfiguration
@@ -3988,7 +3998,7 @@
3988
3998
  ExcludedFromBuild="true"
3989
3999
  >
3990
4000
  <Tool
3991
- Name="VCCustomBuildTool"
4001
+ Name="VCCLCompilerTool"
3992
4002
  />
3993
4003
  </FileConfiguration>
3994
4004
  <FileConfiguration
@@ -3996,7 +4006,7 @@
3996
4006
  ExcludedFromBuild="true"
3997
4007
  >
3998
4008
  <Tool
3999
- Name="VCCustomBuildTool"
4009
+ Name="VCCLCompilerTool"
4000
4010
  />
4001
4011
  </FileConfiguration>
4002
4012
  <FileConfiguration
@@ -4004,7 +4014,7 @@
4004
4014
  ExcludedFromBuild="true"
4005
4015
  >
4006
4016
  <Tool
4007
- Name="VCCustomBuildTool"
4017
+ Name="VCCLCompilerTool"
4008
4018
  />
4009
4019
  </FileConfiguration>
4010
4020
  <FileConfiguration
@@ -4012,7 +4022,7 @@
4012
4022
  ExcludedFromBuild="true"
4013
4023
  >
4014
4024
  <Tool
4015
- Name="VCCustomBuildTool"
4025
+ Name="VCCLCompilerTool"
4016
4026
  />
4017
4027
  </FileConfiguration>
4018
4028
  <FileConfiguration
@@ -4020,7 +4030,7 @@
4020
4030
  ExcludedFromBuild="true"
4021
4031
  >
4022
4032
  <Tool
4023
- Name="VCCustomBuildTool"
4033
+ Name="VCCLCompilerTool"
4024
4034
  />
4025
4035
  </FileConfiguration>
4026
4036
  <FileConfiguration
@@ -4028,81 +4038,83 @@
4028
4038
  ExcludedFromBuild="true"
4029
4039
  >
4030
4040
  <Tool
4031
- Name="VCCustomBuildTool"
4041
+ Name="VCCLCompilerTool"
4032
4042
  />
4033
4043
  </FileConfiguration>
4034
4044
  <FileConfiguration
4035
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4045
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4036
4046
  ExcludedFromBuild="true"
4037
4047
  >
4038
4048
  <Tool
4039
- Name="VCCustomBuildTool"
4049
+ Name="VCCLCompilerTool"
4040
4050
  />
4041
4051
  </FileConfiguration>
4042
4052
  <FileConfiguration
4043
- Name="EmulatorDebug|Win32"
4053
+ Name="SimulatorDebug|Win32"
4044
4054
  >
4045
4055
  <Tool
4046
- Name="VCCustomBuildTool"
4056
+ Name="VCCLCompilerTool"
4057
+ UsePrecompiledHeader="0"
4047
4058
  />
4048
4059
  </FileConfiguration>
4049
4060
  <FileConfiguration
4050
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
4061
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
4051
4062
  ExcludedFromBuild="true"
4052
4063
  >
4053
4064
  <Tool
4054
- Name="VCCustomBuildTool"
4065
+ Name="VCCLCompilerTool"
4055
4066
  />
4056
4067
  </FileConfiguration>
4057
4068
  <FileConfiguration
4058
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
4069
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
4059
4070
  ExcludedFromBuild="true"
4060
4071
  >
4061
4072
  <Tool
4062
- Name="VCCustomBuildTool"
4073
+ Name="VCCLCompilerTool"
4063
4074
  />
4064
4075
  </FileConfiguration>
4065
4076
  <FileConfiguration
4066
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4077
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4067
4078
  ExcludedFromBuild="true"
4068
4079
  >
4069
4080
  <Tool
4070
- Name="VCCustomBuildTool"
4081
+ Name="VCCLCompilerTool"
4071
4082
  />
4072
4083
  </FileConfiguration>
4073
4084
  <FileConfiguration
4074
- Name="EmulatorRelease|Win32"
4085
+ Name="SimulatorRelease|Win32"
4075
4086
  >
4076
4087
  <Tool
4077
- Name="VCCustomBuildTool"
4088
+ Name="VCCLCompilerTool"
4089
+ UsePrecompiledHeader="0"
4078
4090
  />
4079
4091
  </FileConfiguration>
4080
4092
  <FileConfiguration
4081
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
4093
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
4082
4094
  ExcludedFromBuild="true"
4083
4095
  >
4084
4096
  <Tool
4085
- Name="VCCustomBuildTool"
4097
+ Name="VCCLCompilerTool"
4086
4098
  />
4087
4099
  </FileConfiguration>
4088
4100
  <FileConfiguration
4089
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
4101
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
4090
4102
  ExcludedFromBuild="true"
4091
4103
  >
4092
4104
  <Tool
4093
- Name="VCCustomBuildTool"
4105
+ Name="VCCLCompilerTool"
4094
4106
  />
4095
4107
  </FileConfiguration>
4096
4108
  </File>
4097
4109
  <File
4098
- RelativePath=".\emulator\QtMainWindow.cpp"
4110
+ RelativePath="..\..\shared\qt\rhodes\ExternalWebView.h"
4099
4111
  >
4100
4112
  <FileConfiguration
4101
4113
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
4102
4114
  ExcludedFromBuild="true"
4103
4115
  >
4104
4116
  <Tool
4105
- Name="VCCLCompilerTool"
4117
+ Name="VCCustomBuildTool"
4106
4118
  />
4107
4119
  </FileConfiguration>
4108
4120
  <FileConfiguration
@@ -4110,7 +4122,7 @@
4110
4122
  ExcludedFromBuild="true"
4111
4123
  >
4112
4124
  <Tool
4113
- Name="VCCLCompilerTool"
4125
+ Name="VCCustomBuildTool"
4114
4126
  />
4115
4127
  </FileConfiguration>
4116
4128
  <FileConfiguration
@@ -4118,7 +4130,7 @@
4118
4130
  ExcludedFromBuild="true"
4119
4131
  >
4120
4132
  <Tool
4121
- Name="VCCLCompilerTool"
4133
+ Name="VCCustomBuildTool"
4122
4134
  />
4123
4135
  </FileConfiguration>
4124
4136
  <FileConfiguration
@@ -4126,7 +4138,7 @@
4126
4138
  ExcludedFromBuild="true"
4127
4139
  >
4128
4140
  <Tool
4129
- Name="VCCLCompilerTool"
4141
+ Name="VCCustomBuildTool"
4130
4142
  />
4131
4143
  </FileConfiguration>
4132
4144
  <FileConfiguration
@@ -4134,7 +4146,7 @@
4134
4146
  ExcludedFromBuild="true"
4135
4147
  >
4136
4148
  <Tool
4137
- Name="VCCLCompilerTool"
4149
+ Name="VCCustomBuildTool"
4138
4150
  />
4139
4151
  </FileConfiguration>
4140
4152
  <FileConfiguration
@@ -4142,7 +4154,7 @@
4142
4154
  ExcludedFromBuild="true"
4143
4155
  >
4144
4156
  <Tool
4145
- Name="VCCLCompilerTool"
4157
+ Name="VCCustomBuildTool"
4146
4158
  />
4147
4159
  </FileConfiguration>
4148
4160
  <FileConfiguration
@@ -4150,7 +4162,7 @@
4150
4162
  ExcludedFromBuild="true"
4151
4163
  >
4152
4164
  <Tool
4153
- Name="VCCLCompilerTool"
4165
+ Name="VCCustomBuildTool"
4154
4166
  />
4155
4167
  </FileConfiguration>
4156
4168
  <FileConfiguration
@@ -4158,76 +4170,82 @@
4158
4170
  ExcludedFromBuild="true"
4159
4171
  >
4160
4172
  <Tool
4161
- Name="VCCLCompilerTool"
4173
+ Name="VCCustomBuildTool"
4162
4174
  />
4163
4175
  </FileConfiguration>
4164
4176
  <FileConfiguration
4165
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4177
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4166
4178
  ExcludedFromBuild="true"
4167
4179
  >
4168
4180
  <Tool
4169
- Name="VCCLCompilerTool"
4181
+ Name="VCCustomBuildTool"
4170
4182
  />
4171
4183
  </FileConfiguration>
4172
4184
  <FileConfiguration
4173
- Name="EmulatorDebug|Win32"
4185
+ Name="SimulatorDebug|Win32"
4174
4186
  >
4175
4187
  <Tool
4176
- Name="VCCLCompilerTool"
4177
- UsePrecompiledHeader="0"
4188
+ Name="VCCustomBuildTool"
4189
+ Description="Moc&apos;ing $(InputFileName)..."
4190
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I.&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;..\..\shared\qt\rhodes\ExternalWebView.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
4191
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
4192
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
4178
4193
  />
4179
4194
  </FileConfiguration>
4180
4195
  <FileConfiguration
4181
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
4196
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
4182
4197
  ExcludedFromBuild="true"
4183
4198
  >
4184
4199
  <Tool
4185
- Name="VCCLCompilerTool"
4200
+ Name="VCCustomBuildTool"
4186
4201
  />
4187
4202
  </FileConfiguration>
4188
4203
  <FileConfiguration
4189
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
4204
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
4190
4205
  ExcludedFromBuild="true"
4191
4206
  >
4192
4207
  <Tool
4193
- Name="VCCLCompilerTool"
4208
+ Name="VCCustomBuildTool"
4194
4209
  />
4195
4210
  </FileConfiguration>
4196
4211
  <FileConfiguration
4197
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4212
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4198
4213
  ExcludedFromBuild="true"
4199
4214
  >
4200
4215
  <Tool
4201
- Name="VCCLCompilerTool"
4216
+ Name="VCCustomBuildTool"
4202
4217
  />
4203
4218
  </FileConfiguration>
4204
4219
  <FileConfiguration
4205
- Name="EmulatorRelease|Win32"
4220
+ Name="SimulatorRelease|Win32"
4206
4221
  >
4207
4222
  <Tool
4208
- Name="VCCLCompilerTool"
4209
- UsePrecompiledHeader="0"
4223
+ Name="VCCustomBuildTool"
4224
+ Description="Moc&apos;ing $(InputFileName)..."
4225
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;-I.&quot; &quot;..\..\shared\qt\rhodes\ExternalWebView.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
4226
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
4227
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
4210
4228
  />
4211
4229
  </FileConfiguration>
4212
4230
  <FileConfiguration
4213
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
4231
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
4214
4232
  ExcludedFromBuild="true"
4215
4233
  >
4216
4234
  <Tool
4217
- Name="VCCLCompilerTool"
4235
+ Name="VCCustomBuildTool"
4218
4236
  />
4219
4237
  </FileConfiguration>
4220
4238
  <FileConfiguration
4221
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
4239
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
4222
4240
  ExcludedFromBuild="true"
4223
4241
  >
4224
4242
  <Tool
4225
- Name="VCCLCompilerTool"
4243
+ Name="VCCustomBuildTool"
4226
4244
  />
4227
4245
  </FileConfiguration>
4228
4246
  </File>
4229
4247
  <File
4230
- RelativePath=".\emulator\QtMainWindow.h"
4248
+ RelativePath="..\..\shared\qt\rhodes\ExternalWebView.ui"
4231
4249
  >
4232
4250
  <FileConfiguration
4233
4251
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
@@ -4294,7 +4312,7 @@
4294
4312
  />
4295
4313
  </FileConfiguration>
4296
4314
  <FileConfiguration
4297
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4315
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4298
4316
  ExcludedFromBuild="true"
4299
4317
  >
4300
4318
  <Tool
@@ -4302,18 +4320,18 @@
4302
4320
  />
4303
4321
  </FileConfiguration>
4304
4322
  <FileConfiguration
4305
- Name="EmulatorDebug|Win32"
4323
+ Name="SimulatorDebug|Win32"
4306
4324
  >
4307
4325
  <Tool
4308
4326
  Name="VCCustomBuildTool"
4309
- Description="Moc&apos;ing $(InputFileName)..."
4310
- CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WEBKIT_LIB &quot;-I.&quot; &quot;-I.\emulator\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I.\emulator\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;.\emulator\QtMainWindow.h&quot; -o &quot;.\emulator\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
4311
- AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
4312
- Outputs="&quot;.\emulator\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
4327
+ Description="Uic&apos;ing $(InputFileName)..."
4328
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
4329
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
4330
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
4313
4331
  />
4314
4332
  </FileConfiguration>
4315
4333
  <FileConfiguration
4316
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
4334
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
4317
4335
  ExcludedFromBuild="true"
4318
4336
  >
4319
4337
  <Tool
@@ -4321,7 +4339,7 @@
4321
4339
  />
4322
4340
  </FileConfiguration>
4323
4341
  <FileConfiguration
4324
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
4342
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
4325
4343
  ExcludedFromBuild="true"
4326
4344
  >
4327
4345
  <Tool
@@ -4329,7 +4347,7 @@
4329
4347
  />
4330
4348
  </FileConfiguration>
4331
4349
  <FileConfiguration
4332
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4350
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4333
4351
  ExcludedFromBuild="true"
4334
4352
  >
4335
4353
  <Tool
@@ -4337,18 +4355,18 @@
4337
4355
  />
4338
4356
  </FileConfiguration>
4339
4357
  <FileConfiguration
4340
- Name="EmulatorRelease|Win32"
4358
+ Name="SimulatorRelease|Win32"
4341
4359
  >
4342
4360
  <Tool
4343
4361
  Name="VCCustomBuildTool"
4344
- Description="Moc&apos;ing $(InputFileName)..."
4345
- CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WEBKIT_LIB &quot;-I.\emulator\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I.\emulator\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;-I.&quot; &quot;.\emulator\QtMainWindow.h&quot; -o &quot;.\emulator\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
4346
- AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
4347
- Outputs="&quot;.\emulator\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
4362
+ Description="Uic&apos;ing $(InputFileName)..."
4363
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
4364
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
4365
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
4348
4366
  />
4349
4367
  </FileConfiguration>
4350
4368
  <FileConfiguration
4351
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
4369
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
4352
4370
  ExcludedFromBuild="true"
4353
4371
  >
4354
4372
  <Tool
@@ -4356,7 +4374,7 @@
4356
4374
  />
4357
4375
  </FileConfiguration>
4358
4376
  <FileConfiguration
4359
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
4377
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
4360
4378
  ExcludedFromBuild="true"
4361
4379
  >
4362
4380
  <Tool
@@ -4365,7 +4383,7 @@
4365
4383
  </FileConfiguration>
4366
4384
  </File>
4367
4385
  <File
4368
- RelativePath=".\emulator\QtMainWindow.ui"
4386
+ RelativePath="..\..\shared\qt\rhodes\MainWindowCallback.h"
4369
4387
  >
4370
4388
  <FileConfiguration
4371
4389
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
@@ -4432,7 +4450,7 @@
4432
4450
  />
4433
4451
  </FileConfiguration>
4434
4452
  <FileConfiguration
4435
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4453
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4436
4454
  ExcludedFromBuild="true"
4437
4455
  >
4438
4456
  <Tool
@@ -4440,18 +4458,14 @@
4440
4458
  />
4441
4459
  </FileConfiguration>
4442
4460
  <FileConfiguration
4443
- Name="EmulatorDebug|Win32"
4461
+ Name="SimulatorDebug|Win32"
4444
4462
  >
4445
4463
  <Tool
4446
4464
  Name="VCCustomBuildTool"
4447
- Description="Uic&apos;ing $(InputFileName)..."
4448
- CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;.\emulator\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
4449
- AdditionalDependencies="$(QTDIR)\bin\uic.exe"
4450
- Outputs="&quot;.\emulator\GeneratedFiles\ui_$(InputName).h&quot;"
4451
4465
  />
4452
4466
  </FileConfiguration>
4453
4467
  <FileConfiguration
4454
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
4468
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
4455
4469
  ExcludedFromBuild="true"
4456
4470
  >
4457
4471
  <Tool
@@ -4459,7 +4473,7 @@
4459
4473
  />
4460
4474
  </FileConfiguration>
4461
4475
  <FileConfiguration
4462
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
4476
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
4463
4477
  ExcludedFromBuild="true"
4464
4478
  >
4465
4479
  <Tool
@@ -4467,7 +4481,7 @@
4467
4481
  />
4468
4482
  </FileConfiguration>
4469
4483
  <FileConfiguration
4470
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4484
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4471
4485
  ExcludedFromBuild="true"
4472
4486
  >
4473
4487
  <Tool
@@ -4475,18 +4489,14 @@
4475
4489
  />
4476
4490
  </FileConfiguration>
4477
4491
  <FileConfiguration
4478
- Name="EmulatorRelease|Win32"
4492
+ Name="SimulatorRelease|Win32"
4479
4493
  >
4480
4494
  <Tool
4481
4495
  Name="VCCustomBuildTool"
4482
- Description="Uic&apos;ing $(InputFileName)..."
4483
- CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;.\emulator\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
4484
- AdditionalDependencies="$(QTDIR)\bin\uic.exe"
4485
- Outputs="&quot;.\emulator\GeneratedFiles\ui_$(InputName).h&quot;"
4486
4496
  />
4487
4497
  </FileConfiguration>
4488
4498
  <FileConfiguration
4489
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
4499
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
4490
4500
  ExcludedFromBuild="true"
4491
4501
  >
4492
4502
  <Tool
@@ -4494,7 +4504,7 @@
4494
4504
  />
4495
4505
  </FileConfiguration>
4496
4506
  <FileConfiguration
4497
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
4507
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
4498
4508
  ExcludedFromBuild="true"
4499
4509
  >
4500
4510
  <Tool
@@ -4502,275 +4512,1913 @@
4502
4512
  />
4503
4513
  </FileConfiguration>
4504
4514
  </File>
4505
- <Filter
4506
- Name="Generated Files"
4507
- SourceControlFiles="false"
4515
+ <File
4516
+ RelativePath="..\..\shared\qt\rhodes\QtMainWindow.cpp"
4508
4517
  >
4509
- <File
4510
- RelativePath=".\emulator\GeneratedFiles\ui_ExternalWebView.h"
4518
+ <FileConfiguration
4519
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
4520
+ ExcludedFromBuild="true"
4511
4521
  >
4512
- <FileConfiguration
4513
- Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
4514
- ExcludedFromBuild="true"
4515
- >
4516
- <Tool
4517
- Name="VCCustomBuildTool"
4518
- />
4519
- </FileConfiguration>
4520
- <FileConfiguration
4521
- Name="Debug|Win32"
4522
- ExcludedFromBuild="true"
4523
- >
4524
- <Tool
4525
- Name="VCCustomBuildTool"
4526
- />
4527
- </FileConfiguration>
4528
- <FileConfiguration
4529
- Name="Debug|Pocket PC 2003 (ARMV4)"
4530
- ExcludedFromBuild="true"
4531
- >
4532
- <Tool
4533
- Name="VCCustomBuildTool"
4534
- />
4535
- </FileConfiguration>
4536
- <FileConfiguration
4537
- Name="Debug|Smartphone 2003 (ARMV4)"
4538
- ExcludedFromBuild="true"
4539
- >
4540
- <Tool
4541
- Name="VCCustomBuildTool"
4542
- />
4543
- </FileConfiguration>
4544
- <FileConfiguration
4545
- Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
4546
- ExcludedFromBuild="true"
4547
- >
4548
- <Tool
4549
- Name="VCCustomBuildTool"
4550
- />
4551
- </FileConfiguration>
4552
- <FileConfiguration
4553
- Name="Release|Win32"
4554
- ExcludedFromBuild="true"
4555
- >
4556
- <Tool
4557
- Name="VCCustomBuildTool"
4558
- />
4559
- </FileConfiguration>
4560
- <FileConfiguration
4561
- Name="Release|Pocket PC 2003 (ARMV4)"
4562
- ExcludedFromBuild="true"
4563
- >
4564
- <Tool
4565
- Name="VCCustomBuildTool"
4566
- />
4567
- </FileConfiguration>
4568
- <FileConfiguration
4569
- Name="Release|Smartphone 2003 (ARMV4)"
4570
- ExcludedFromBuild="true"
4571
- >
4572
- <Tool
4573
- Name="VCCustomBuildTool"
4574
- />
4575
- </FileConfiguration>
4576
- <FileConfiguration
4577
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4578
- ExcludedFromBuild="true"
4579
- >
4580
- <Tool
4581
- Name="VCCustomBuildTool"
4582
- />
4583
- </FileConfiguration>
4584
- <FileConfiguration
4585
- Name="EmulatorDebug|Win32"
4586
- >
4587
- <Tool
4588
- Name="VCCustomBuildTool"
4589
- />
4590
- </FileConfiguration>
4591
- <FileConfiguration
4592
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
4593
- ExcludedFromBuild="true"
4594
- >
4595
- <Tool
4596
- Name="VCCustomBuildTool"
4597
- />
4598
- </FileConfiguration>
4599
- <FileConfiguration
4600
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
4601
- ExcludedFromBuild="true"
4602
- >
4603
- <Tool
4604
- Name="VCCustomBuildTool"
4605
- />
4606
- </FileConfiguration>
4607
- <FileConfiguration
4608
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4609
- ExcludedFromBuild="true"
4610
- >
4611
- <Tool
4612
- Name="VCCustomBuildTool"
4613
- />
4614
- </FileConfiguration>
4615
- <FileConfiguration
4616
- Name="EmulatorRelease|Win32"
4617
- >
4618
- <Tool
4619
- Name="VCCustomBuildTool"
4620
- />
4621
- </FileConfiguration>
4622
- <FileConfiguration
4623
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
4624
- ExcludedFromBuild="true"
4625
- >
4626
- <Tool
4627
- Name="VCCustomBuildTool"
4628
- />
4629
- </FileConfiguration>
4630
- <FileConfiguration
4631
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
4632
- ExcludedFromBuild="true"
4633
- >
4634
- <Tool
4635
- Name="VCCustomBuildTool"
4636
- />
4637
- </FileConfiguration>
4638
- </File>
4639
- <File
4640
- RelativePath=".\emulator\GeneratedFiles\ui_QtMainWindow.h"
4522
+ <Tool
4523
+ Name="VCCLCompilerTool"
4524
+ />
4525
+ </FileConfiguration>
4526
+ <FileConfiguration
4527
+ Name="Debug|Win32"
4528
+ ExcludedFromBuild="true"
4641
4529
  >
4642
- <FileConfiguration
4643
- Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
4644
- ExcludedFromBuild="true"
4645
- >
4646
- <Tool
4647
- Name="VCCustomBuildTool"
4648
- />
4649
- </FileConfiguration>
4650
- <FileConfiguration
4651
- Name="Debug|Win32"
4652
- ExcludedFromBuild="true"
4653
- >
4654
- <Tool
4655
- Name="VCCustomBuildTool"
4656
- />
4657
- </FileConfiguration>
4658
- <FileConfiguration
4659
- Name="Debug|Pocket PC 2003 (ARMV4)"
4660
- ExcludedFromBuild="true"
4661
- >
4662
- <Tool
4663
- Name="VCCustomBuildTool"
4664
- />
4665
- </FileConfiguration>
4666
- <FileConfiguration
4667
- Name="Debug|Smartphone 2003 (ARMV4)"
4668
- ExcludedFromBuild="true"
4669
- >
4670
- <Tool
4671
- Name="VCCustomBuildTool"
4672
- />
4673
- </FileConfiguration>
4674
- <FileConfiguration
4675
- Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
4676
- ExcludedFromBuild="true"
4677
- >
4678
- <Tool
4679
- Name="VCCustomBuildTool"
4680
- />
4681
- </FileConfiguration>
4682
- <FileConfiguration
4683
- Name="Release|Win32"
4684
- ExcludedFromBuild="true"
4685
- >
4686
- <Tool
4687
- Name="VCCustomBuildTool"
4688
- />
4689
- </FileConfiguration>
4690
- <FileConfiguration
4691
- Name="Release|Pocket PC 2003 (ARMV4)"
4692
- ExcludedFromBuild="true"
4693
- >
4694
- <Tool
4695
- Name="VCCustomBuildTool"
4696
- />
4697
- </FileConfiguration>
4698
- <FileConfiguration
4699
- Name="Release|Smartphone 2003 (ARMV4)"
4700
- ExcludedFromBuild="true"
4701
- >
4702
- <Tool
4703
- Name="VCCustomBuildTool"
4704
- />
4705
- </FileConfiguration>
4706
- <FileConfiguration
4707
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4708
- ExcludedFromBuild="true"
4709
- >
4710
- <Tool
4711
- Name="VCCustomBuildTool"
4712
- />
4713
- </FileConfiguration>
4714
- <FileConfiguration
4715
- Name="EmulatorDebug|Win32"
4716
- >
4717
- <Tool
4718
- Name="VCCustomBuildTool"
4719
- />
4720
- </FileConfiguration>
4721
- <FileConfiguration
4722
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
4723
- ExcludedFromBuild="true"
4724
- >
4725
- <Tool
4726
- Name="VCCustomBuildTool"
4727
- />
4728
- </FileConfiguration>
4729
- <FileConfiguration
4730
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
4731
- ExcludedFromBuild="true"
4732
- >
4733
- <Tool
4734
- Name="VCCustomBuildTool"
4735
- />
4736
- </FileConfiguration>
4737
- <FileConfiguration
4738
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4739
- ExcludedFromBuild="true"
4740
- >
4741
- <Tool
4742
- Name="VCCustomBuildTool"
4743
- />
4744
- </FileConfiguration>
4745
- <FileConfiguration
4746
- Name="EmulatorRelease|Win32"
4747
- >
4748
- <Tool
4749
- Name="VCCustomBuildTool"
4750
- />
4751
- </FileConfiguration>
4752
- <FileConfiguration
4753
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
4754
- ExcludedFromBuild="true"
4755
- >
4756
- <Tool
4757
- Name="VCCustomBuildTool"
4758
- />
4759
- </FileConfiguration>
4760
- <FileConfiguration
4761
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
4762
- ExcludedFromBuild="true"
4763
- >
4764
- <Tool
4765
- Name="VCCustomBuildTool"
4766
- />
4767
- </FileConfiguration>
4768
- </File>
4769
- <Filter
4770
- Name="Debug"
4530
+ <Tool
4531
+ Name="VCCLCompilerTool"
4532
+ />
4533
+ </FileConfiguration>
4534
+ <FileConfiguration
4535
+ Name="Debug|Pocket PC 2003 (ARMV4)"
4536
+ ExcludedFromBuild="true"
4537
+ >
4538
+ <Tool
4539
+ Name="VCCLCompilerTool"
4540
+ />
4541
+ </FileConfiguration>
4542
+ <FileConfiguration
4543
+ Name="Debug|Smartphone 2003 (ARMV4)"
4544
+ ExcludedFromBuild="true"
4545
+ >
4546
+ <Tool
4547
+ Name="VCCLCompilerTool"
4548
+ />
4549
+ </FileConfiguration>
4550
+ <FileConfiguration
4551
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
4552
+ ExcludedFromBuild="true"
4553
+ >
4554
+ <Tool
4555
+ Name="VCCLCompilerTool"
4556
+ />
4557
+ </FileConfiguration>
4558
+ <FileConfiguration
4559
+ Name="Release|Win32"
4560
+ ExcludedFromBuild="true"
4771
4561
  >
4562
+ <Tool
4563
+ Name="VCCLCompilerTool"
4564
+ />
4565
+ </FileConfiguration>
4566
+ <FileConfiguration
4567
+ Name="Release|Pocket PC 2003 (ARMV4)"
4568
+ ExcludedFromBuild="true"
4569
+ >
4570
+ <Tool
4571
+ Name="VCCLCompilerTool"
4572
+ />
4573
+ </FileConfiguration>
4574
+ <FileConfiguration
4575
+ Name="Release|Smartphone 2003 (ARMV4)"
4576
+ ExcludedFromBuild="true"
4577
+ >
4578
+ <Tool
4579
+ Name="VCCLCompilerTool"
4580
+ />
4581
+ </FileConfiguration>
4582
+ <FileConfiguration
4583
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4584
+ ExcludedFromBuild="true"
4585
+ >
4586
+ <Tool
4587
+ Name="VCCLCompilerTool"
4588
+ />
4589
+ </FileConfiguration>
4590
+ <FileConfiguration
4591
+ Name="SimulatorDebug|Win32"
4592
+ >
4593
+ <Tool
4594
+ Name="VCCLCompilerTool"
4595
+ UsePrecompiledHeader="0"
4596
+ />
4597
+ </FileConfiguration>
4598
+ <FileConfiguration
4599
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
4600
+ ExcludedFromBuild="true"
4601
+ >
4602
+ <Tool
4603
+ Name="VCCLCompilerTool"
4604
+ />
4605
+ </FileConfiguration>
4606
+ <FileConfiguration
4607
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
4608
+ ExcludedFromBuild="true"
4609
+ >
4610
+ <Tool
4611
+ Name="VCCLCompilerTool"
4612
+ />
4613
+ </FileConfiguration>
4614
+ <FileConfiguration
4615
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4616
+ ExcludedFromBuild="true"
4617
+ >
4618
+ <Tool
4619
+ Name="VCCLCompilerTool"
4620
+ />
4621
+ </FileConfiguration>
4622
+ <FileConfiguration
4623
+ Name="SimulatorRelease|Win32"
4624
+ >
4625
+ <Tool
4626
+ Name="VCCLCompilerTool"
4627
+ UsePrecompiledHeader="0"
4628
+ />
4629
+ </FileConfiguration>
4630
+ <FileConfiguration
4631
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
4632
+ ExcludedFromBuild="true"
4633
+ >
4634
+ <Tool
4635
+ Name="VCCLCompilerTool"
4636
+ />
4637
+ </FileConfiguration>
4638
+ <FileConfiguration
4639
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
4640
+ ExcludedFromBuild="true"
4641
+ >
4642
+ <Tool
4643
+ Name="VCCLCompilerTool"
4644
+ />
4645
+ </FileConfiguration>
4646
+ </File>
4647
+ <File
4648
+ RelativePath="..\..\shared\qt\rhodes\QtMainWindow.h"
4649
+ >
4650
+ <FileConfiguration
4651
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
4652
+ ExcludedFromBuild="true"
4653
+ >
4654
+ <Tool
4655
+ Name="VCCustomBuildTool"
4656
+ />
4657
+ </FileConfiguration>
4658
+ <FileConfiguration
4659
+ Name="Debug|Win32"
4660
+ ExcludedFromBuild="true"
4661
+ >
4662
+ <Tool
4663
+ Name="VCCustomBuildTool"
4664
+ />
4665
+ </FileConfiguration>
4666
+ <FileConfiguration
4667
+ Name="Debug|Pocket PC 2003 (ARMV4)"
4668
+ ExcludedFromBuild="true"
4669
+ >
4670
+ <Tool
4671
+ Name="VCCustomBuildTool"
4672
+ />
4673
+ </FileConfiguration>
4674
+ <FileConfiguration
4675
+ Name="Debug|Smartphone 2003 (ARMV4)"
4676
+ ExcludedFromBuild="true"
4677
+ >
4678
+ <Tool
4679
+ Name="VCCustomBuildTool"
4680
+ />
4681
+ </FileConfiguration>
4682
+ <FileConfiguration
4683
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
4684
+ ExcludedFromBuild="true"
4685
+ >
4686
+ <Tool
4687
+ Name="VCCustomBuildTool"
4688
+ />
4689
+ </FileConfiguration>
4690
+ <FileConfiguration
4691
+ Name="Release|Win32"
4692
+ ExcludedFromBuild="true"
4693
+ >
4694
+ <Tool
4695
+ Name="VCCustomBuildTool"
4696
+ />
4697
+ </FileConfiguration>
4698
+ <FileConfiguration
4699
+ Name="Release|Pocket PC 2003 (ARMV4)"
4700
+ ExcludedFromBuild="true"
4701
+ >
4702
+ <Tool
4703
+ Name="VCCustomBuildTool"
4704
+ />
4705
+ </FileConfiguration>
4706
+ <FileConfiguration
4707
+ Name="Release|Smartphone 2003 (ARMV4)"
4708
+ ExcludedFromBuild="true"
4709
+ >
4710
+ <Tool
4711
+ Name="VCCustomBuildTool"
4712
+ />
4713
+ </FileConfiguration>
4714
+ <FileConfiguration
4715
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4716
+ ExcludedFromBuild="true"
4717
+ >
4718
+ <Tool
4719
+ Name="VCCustomBuildTool"
4720
+ />
4721
+ </FileConfiguration>
4722
+ <FileConfiguration
4723
+ Name="SimulatorDebug|Win32"
4724
+ >
4725
+ <Tool
4726
+ Name="VCCustomBuildTool"
4727
+ Description="Moc&apos;ing $(InputFileName)..."
4728
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I.&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;..\..\shared\qt\rhodes\QtMainWindow.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
4729
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
4730
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
4731
+ />
4732
+ </FileConfiguration>
4733
+ <FileConfiguration
4734
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
4735
+ ExcludedFromBuild="true"
4736
+ >
4737
+ <Tool
4738
+ Name="VCCustomBuildTool"
4739
+ />
4740
+ </FileConfiguration>
4741
+ <FileConfiguration
4742
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
4743
+ ExcludedFromBuild="true"
4744
+ >
4745
+ <Tool
4746
+ Name="VCCustomBuildTool"
4747
+ />
4748
+ </FileConfiguration>
4749
+ <FileConfiguration
4750
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4751
+ ExcludedFromBuild="true"
4752
+ >
4753
+ <Tool
4754
+ Name="VCCustomBuildTool"
4755
+ />
4756
+ </FileConfiguration>
4757
+ <FileConfiguration
4758
+ Name="SimulatorRelease|Win32"
4759
+ >
4760
+ <Tool
4761
+ Name="VCCustomBuildTool"
4762
+ Description="Moc&apos;ing $(InputFileName)..."
4763
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;-I.&quot; &quot;..\..\shared\qt\rhodes\QtMainWindow.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
4764
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
4765
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
4766
+ />
4767
+ </FileConfiguration>
4768
+ <FileConfiguration
4769
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
4770
+ ExcludedFromBuild="true"
4771
+ >
4772
+ <Tool
4773
+ Name="VCCustomBuildTool"
4774
+ />
4775
+ </FileConfiguration>
4776
+ <FileConfiguration
4777
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
4778
+ ExcludedFromBuild="true"
4779
+ >
4780
+ <Tool
4781
+ Name="VCCustomBuildTool"
4782
+ />
4783
+ </FileConfiguration>
4784
+ </File>
4785
+ <File
4786
+ RelativePath="..\..\shared\qt\rhodes\QtMainWindow.ui"
4787
+ >
4788
+ <FileConfiguration
4789
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
4790
+ ExcludedFromBuild="true"
4791
+ >
4792
+ <Tool
4793
+ Name="VCCustomBuildTool"
4794
+ />
4795
+ </FileConfiguration>
4796
+ <FileConfiguration
4797
+ Name="Debug|Win32"
4798
+ ExcludedFromBuild="true"
4799
+ >
4800
+ <Tool
4801
+ Name="VCCustomBuildTool"
4802
+ />
4803
+ </FileConfiguration>
4804
+ <FileConfiguration
4805
+ Name="Debug|Pocket PC 2003 (ARMV4)"
4806
+ ExcludedFromBuild="true"
4807
+ >
4808
+ <Tool
4809
+ Name="VCCustomBuildTool"
4810
+ />
4811
+ </FileConfiguration>
4812
+ <FileConfiguration
4813
+ Name="Debug|Smartphone 2003 (ARMV4)"
4814
+ ExcludedFromBuild="true"
4815
+ >
4816
+ <Tool
4817
+ Name="VCCustomBuildTool"
4818
+ />
4819
+ </FileConfiguration>
4820
+ <FileConfiguration
4821
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
4822
+ ExcludedFromBuild="true"
4823
+ >
4824
+ <Tool
4825
+ Name="VCCustomBuildTool"
4826
+ />
4827
+ </FileConfiguration>
4828
+ <FileConfiguration
4829
+ Name="Release|Win32"
4830
+ ExcludedFromBuild="true"
4831
+ >
4832
+ <Tool
4833
+ Name="VCCustomBuildTool"
4834
+ />
4835
+ </FileConfiguration>
4836
+ <FileConfiguration
4837
+ Name="Release|Pocket PC 2003 (ARMV4)"
4838
+ ExcludedFromBuild="true"
4839
+ >
4840
+ <Tool
4841
+ Name="VCCustomBuildTool"
4842
+ />
4843
+ </FileConfiguration>
4844
+ <FileConfiguration
4845
+ Name="Release|Smartphone 2003 (ARMV4)"
4846
+ ExcludedFromBuild="true"
4847
+ >
4848
+ <Tool
4849
+ Name="VCCustomBuildTool"
4850
+ />
4851
+ </FileConfiguration>
4852
+ <FileConfiguration
4853
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4854
+ ExcludedFromBuild="true"
4855
+ >
4856
+ <Tool
4857
+ Name="VCCustomBuildTool"
4858
+ />
4859
+ </FileConfiguration>
4860
+ <FileConfiguration
4861
+ Name="SimulatorDebug|Win32"
4862
+ >
4863
+ <Tool
4864
+ Name="VCCustomBuildTool"
4865
+ Description="Uic&apos;ing $(InputFileName)..."
4866
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
4867
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
4868
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
4869
+ />
4870
+ </FileConfiguration>
4871
+ <FileConfiguration
4872
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
4873
+ ExcludedFromBuild="true"
4874
+ >
4875
+ <Tool
4876
+ Name="VCCustomBuildTool"
4877
+ />
4878
+ </FileConfiguration>
4879
+ <FileConfiguration
4880
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
4881
+ ExcludedFromBuild="true"
4882
+ >
4883
+ <Tool
4884
+ Name="VCCustomBuildTool"
4885
+ />
4886
+ </FileConfiguration>
4887
+ <FileConfiguration
4888
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4889
+ ExcludedFromBuild="true"
4890
+ >
4891
+ <Tool
4892
+ Name="VCCustomBuildTool"
4893
+ />
4894
+ </FileConfiguration>
4895
+ <FileConfiguration
4896
+ Name="SimulatorRelease|Win32"
4897
+ >
4898
+ <Tool
4899
+ Name="VCCustomBuildTool"
4900
+ Description="Uic&apos;ing $(InputFileName)..."
4901
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
4902
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
4903
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
4904
+ />
4905
+ </FileConfiguration>
4906
+ <FileConfiguration
4907
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
4908
+ ExcludedFromBuild="true"
4909
+ >
4910
+ <Tool
4911
+ Name="VCCustomBuildTool"
4912
+ />
4913
+ </FileConfiguration>
4914
+ <FileConfiguration
4915
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
4916
+ ExcludedFromBuild="true"
4917
+ >
4918
+ <Tool
4919
+ Name="VCCustomBuildTool"
4920
+ />
4921
+ </FileConfiguration>
4922
+ </File>
4923
+ <File
4924
+ RelativePath="..\..\shared\qt\rhodes\QtNativeTabBar.cpp"
4925
+ >
4926
+ <FileConfiguration
4927
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
4928
+ ExcludedFromBuild="true"
4929
+ >
4930
+ <Tool
4931
+ Name="VCCLCompilerTool"
4932
+ />
4933
+ </FileConfiguration>
4934
+ <FileConfiguration
4935
+ Name="Debug|Win32"
4936
+ ExcludedFromBuild="true"
4937
+ >
4938
+ <Tool
4939
+ Name="VCCLCompilerTool"
4940
+ />
4941
+ </FileConfiguration>
4942
+ <FileConfiguration
4943
+ Name="Debug|Pocket PC 2003 (ARMV4)"
4944
+ ExcludedFromBuild="true"
4945
+ >
4946
+ <Tool
4947
+ Name="VCCLCompilerTool"
4948
+ />
4949
+ </FileConfiguration>
4950
+ <FileConfiguration
4951
+ Name="Debug|Smartphone 2003 (ARMV4)"
4952
+ ExcludedFromBuild="true"
4953
+ >
4954
+ <Tool
4955
+ Name="VCCLCompilerTool"
4956
+ />
4957
+ </FileConfiguration>
4958
+ <FileConfiguration
4959
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
4960
+ ExcludedFromBuild="true"
4961
+ >
4962
+ <Tool
4963
+ Name="VCCLCompilerTool"
4964
+ />
4965
+ </FileConfiguration>
4966
+ <FileConfiguration
4967
+ Name="Release|Win32"
4968
+ ExcludedFromBuild="true"
4969
+ >
4970
+ <Tool
4971
+ Name="VCCLCompilerTool"
4972
+ />
4973
+ </FileConfiguration>
4974
+ <FileConfiguration
4975
+ Name="Release|Pocket PC 2003 (ARMV4)"
4976
+ ExcludedFromBuild="true"
4977
+ >
4978
+ <Tool
4979
+ Name="VCCLCompilerTool"
4980
+ />
4981
+ </FileConfiguration>
4982
+ <FileConfiguration
4983
+ Name="Release|Smartphone 2003 (ARMV4)"
4984
+ ExcludedFromBuild="true"
4985
+ >
4986
+ <Tool
4987
+ Name="VCCLCompilerTool"
4988
+ />
4989
+ </FileConfiguration>
4990
+ <FileConfiguration
4991
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4992
+ ExcludedFromBuild="true"
4993
+ >
4994
+ <Tool
4995
+ Name="VCCLCompilerTool"
4996
+ />
4997
+ </FileConfiguration>
4998
+ <FileConfiguration
4999
+ Name="SimulatorDebug|Win32"
5000
+ >
5001
+ <Tool
5002
+ Name="VCCLCompilerTool"
5003
+ UsePrecompiledHeader="0"
5004
+ />
5005
+ </FileConfiguration>
5006
+ <FileConfiguration
5007
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
5008
+ ExcludedFromBuild="true"
5009
+ >
5010
+ <Tool
5011
+ Name="VCCLCompilerTool"
5012
+ />
5013
+ </FileConfiguration>
5014
+ <FileConfiguration
5015
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
5016
+ ExcludedFromBuild="true"
5017
+ >
5018
+ <Tool
5019
+ Name="VCCLCompilerTool"
5020
+ />
5021
+ </FileConfiguration>
5022
+ <FileConfiguration
5023
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
5024
+ ExcludedFromBuild="true"
5025
+ >
5026
+ <Tool
5027
+ Name="VCCLCompilerTool"
5028
+ />
5029
+ </FileConfiguration>
5030
+ <FileConfiguration
5031
+ Name="SimulatorRelease|Win32"
5032
+ >
5033
+ <Tool
5034
+ Name="VCCLCompilerTool"
5035
+ UsePrecompiledHeader="0"
5036
+ />
5037
+ </FileConfiguration>
5038
+ <FileConfiguration
5039
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
5040
+ ExcludedFromBuild="true"
5041
+ >
5042
+ <Tool
5043
+ Name="VCCLCompilerTool"
5044
+ />
5045
+ </FileConfiguration>
5046
+ <FileConfiguration
5047
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
5048
+ ExcludedFromBuild="true"
5049
+ >
5050
+ <Tool
5051
+ Name="VCCLCompilerTool"
5052
+ />
5053
+ </FileConfiguration>
5054
+ </File>
5055
+ <File
5056
+ RelativePath="..\..\shared\qt\rhodes\QtNativeTabBar.h"
5057
+ >
5058
+ <FileConfiguration
5059
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
5060
+ ExcludedFromBuild="true"
5061
+ >
5062
+ <Tool
5063
+ Name="VCCustomBuildTool"
5064
+ />
5065
+ </FileConfiguration>
5066
+ <FileConfiguration
5067
+ Name="Debug|Win32"
5068
+ ExcludedFromBuild="true"
5069
+ >
5070
+ <Tool
5071
+ Name="VCCustomBuildTool"
5072
+ />
5073
+ </FileConfiguration>
5074
+ <FileConfiguration
5075
+ Name="Debug|Pocket PC 2003 (ARMV4)"
5076
+ ExcludedFromBuild="true"
5077
+ >
5078
+ <Tool
5079
+ Name="VCCustomBuildTool"
5080
+ />
5081
+ </FileConfiguration>
5082
+ <FileConfiguration
5083
+ Name="Debug|Smartphone 2003 (ARMV4)"
5084
+ ExcludedFromBuild="true"
5085
+ >
5086
+ <Tool
5087
+ Name="VCCustomBuildTool"
5088
+ />
5089
+ </FileConfiguration>
5090
+ <FileConfiguration
5091
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
5092
+ ExcludedFromBuild="true"
5093
+ >
5094
+ <Tool
5095
+ Name="VCCustomBuildTool"
5096
+ />
5097
+ </FileConfiguration>
5098
+ <FileConfiguration
5099
+ Name="Release|Win32"
5100
+ ExcludedFromBuild="true"
5101
+ >
5102
+ <Tool
5103
+ Name="VCCustomBuildTool"
5104
+ />
5105
+ </FileConfiguration>
5106
+ <FileConfiguration
5107
+ Name="Release|Pocket PC 2003 (ARMV4)"
5108
+ ExcludedFromBuild="true"
5109
+ >
5110
+ <Tool
5111
+ Name="VCCustomBuildTool"
5112
+ />
5113
+ </FileConfiguration>
5114
+ <FileConfiguration
5115
+ Name="Release|Smartphone 2003 (ARMV4)"
5116
+ ExcludedFromBuild="true"
5117
+ >
5118
+ <Tool
5119
+ Name="VCCustomBuildTool"
5120
+ />
5121
+ </FileConfiguration>
5122
+ <FileConfiguration
5123
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
5124
+ ExcludedFromBuild="true"
5125
+ >
5126
+ <Tool
5127
+ Name="VCCustomBuildTool"
5128
+ />
5129
+ </FileConfiguration>
5130
+ <FileConfiguration
5131
+ Name="SimulatorDebug|Win32"
5132
+ >
5133
+ <Tool
5134
+ Name="VCCustomBuildTool"
5135
+ />
5136
+ </FileConfiguration>
5137
+ <FileConfiguration
5138
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
5139
+ ExcludedFromBuild="true"
5140
+ >
5141
+ <Tool
5142
+ Name="VCCustomBuildTool"
5143
+ />
5144
+ </FileConfiguration>
5145
+ <FileConfiguration
5146
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
5147
+ ExcludedFromBuild="true"
5148
+ >
5149
+ <Tool
5150
+ Name="VCCustomBuildTool"
5151
+ />
5152
+ </FileConfiguration>
5153
+ <FileConfiguration
5154
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
5155
+ ExcludedFromBuild="true"
5156
+ >
5157
+ <Tool
5158
+ Name="VCCustomBuildTool"
5159
+ />
5160
+ </FileConfiguration>
5161
+ <FileConfiguration
5162
+ Name="SimulatorRelease|Win32"
5163
+ >
5164
+ <Tool
5165
+ Name="VCCustomBuildTool"
5166
+ />
5167
+ </FileConfiguration>
5168
+ <FileConfiguration
5169
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
5170
+ ExcludedFromBuild="true"
5171
+ >
5172
+ <Tool
5173
+ Name="VCCustomBuildTool"
5174
+ />
5175
+ </FileConfiguration>
5176
+ <FileConfiguration
5177
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
5178
+ ExcludedFromBuild="true"
5179
+ >
5180
+ <Tool
5181
+ Name="VCCustomBuildTool"
5182
+ />
5183
+ </FileConfiguration>
5184
+ </File>
5185
+ <File
5186
+ RelativePath="..\..\shared\qt\rhodes\QtWebInspector.cpp"
5187
+ >
5188
+ <FileConfiguration
5189
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
5190
+ ExcludedFromBuild="true"
5191
+ >
5192
+ <Tool
5193
+ Name="VCCLCompilerTool"
5194
+ />
5195
+ </FileConfiguration>
5196
+ <FileConfiguration
5197
+ Name="Debug|Win32"
5198
+ ExcludedFromBuild="true"
5199
+ >
5200
+ <Tool
5201
+ Name="VCCLCompilerTool"
5202
+ />
5203
+ </FileConfiguration>
5204
+ <FileConfiguration
5205
+ Name="Debug|Pocket PC 2003 (ARMV4)"
5206
+ ExcludedFromBuild="true"
5207
+ >
5208
+ <Tool
5209
+ Name="VCCLCompilerTool"
5210
+ />
5211
+ </FileConfiguration>
5212
+ <FileConfiguration
5213
+ Name="Debug|Smartphone 2003 (ARMV4)"
5214
+ ExcludedFromBuild="true"
5215
+ >
5216
+ <Tool
5217
+ Name="VCCLCompilerTool"
5218
+ />
5219
+ </FileConfiguration>
5220
+ <FileConfiguration
5221
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
5222
+ ExcludedFromBuild="true"
5223
+ >
5224
+ <Tool
5225
+ Name="VCCLCompilerTool"
5226
+ />
5227
+ </FileConfiguration>
5228
+ <FileConfiguration
5229
+ Name="Release|Win32"
5230
+ ExcludedFromBuild="true"
5231
+ >
5232
+ <Tool
5233
+ Name="VCCLCompilerTool"
5234
+ />
5235
+ </FileConfiguration>
5236
+ <FileConfiguration
5237
+ Name="Release|Pocket PC 2003 (ARMV4)"
5238
+ ExcludedFromBuild="true"
5239
+ >
5240
+ <Tool
5241
+ Name="VCCLCompilerTool"
5242
+ />
5243
+ </FileConfiguration>
5244
+ <FileConfiguration
5245
+ Name="Release|Smartphone 2003 (ARMV4)"
5246
+ ExcludedFromBuild="true"
5247
+ >
5248
+ <Tool
5249
+ Name="VCCLCompilerTool"
5250
+ />
5251
+ </FileConfiguration>
5252
+ <FileConfiguration
5253
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
5254
+ ExcludedFromBuild="true"
5255
+ >
5256
+ <Tool
5257
+ Name="VCCLCompilerTool"
5258
+ />
5259
+ </FileConfiguration>
5260
+ <FileConfiguration
5261
+ Name="SimulatorDebug|Win32"
5262
+ >
5263
+ <Tool
5264
+ Name="VCCLCompilerTool"
5265
+ UsePrecompiledHeader="0"
5266
+ />
5267
+ </FileConfiguration>
5268
+ <FileConfiguration
5269
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
5270
+ ExcludedFromBuild="true"
5271
+ >
5272
+ <Tool
5273
+ Name="VCCLCompilerTool"
5274
+ />
5275
+ </FileConfiguration>
5276
+ <FileConfiguration
5277
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
5278
+ ExcludedFromBuild="true"
5279
+ >
5280
+ <Tool
5281
+ Name="VCCLCompilerTool"
5282
+ />
5283
+ </FileConfiguration>
5284
+ <FileConfiguration
5285
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
5286
+ ExcludedFromBuild="true"
5287
+ >
5288
+ <Tool
5289
+ Name="VCCLCompilerTool"
5290
+ />
5291
+ </FileConfiguration>
5292
+ <FileConfiguration
5293
+ Name="SimulatorRelease|Win32"
5294
+ >
5295
+ <Tool
5296
+ Name="VCCLCompilerTool"
5297
+ UsePrecompiledHeader="0"
5298
+ />
5299
+ </FileConfiguration>
5300
+ <FileConfiguration
5301
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
5302
+ ExcludedFromBuild="true"
5303
+ >
5304
+ <Tool
5305
+ Name="VCCLCompilerTool"
5306
+ />
5307
+ </FileConfiguration>
5308
+ <FileConfiguration
5309
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
5310
+ ExcludedFromBuild="true"
5311
+ >
5312
+ <Tool
5313
+ Name="VCCLCompilerTool"
5314
+ />
5315
+ </FileConfiguration>
5316
+ </File>
5317
+ <File
5318
+ RelativePath="..\..\shared\qt\rhodes\QtWebInspector.h"
5319
+ >
5320
+ <FileConfiguration
5321
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
5322
+ ExcludedFromBuild="true"
5323
+ >
5324
+ <Tool
5325
+ Name="VCCustomBuildTool"
5326
+ />
5327
+ </FileConfiguration>
5328
+ <FileConfiguration
5329
+ Name="Debug|Win32"
5330
+ ExcludedFromBuild="true"
5331
+ >
5332
+ <Tool
5333
+ Name="VCCustomBuildTool"
5334
+ />
5335
+ </FileConfiguration>
5336
+ <FileConfiguration
5337
+ Name="Debug|Pocket PC 2003 (ARMV4)"
5338
+ ExcludedFromBuild="true"
5339
+ >
5340
+ <Tool
5341
+ Name="VCCustomBuildTool"
5342
+ />
5343
+ </FileConfiguration>
5344
+ <FileConfiguration
5345
+ Name="Debug|Smartphone 2003 (ARMV4)"
5346
+ ExcludedFromBuild="true"
5347
+ >
5348
+ <Tool
5349
+ Name="VCCustomBuildTool"
5350
+ />
5351
+ </FileConfiguration>
5352
+ <FileConfiguration
5353
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
5354
+ ExcludedFromBuild="true"
5355
+ >
5356
+ <Tool
5357
+ Name="VCCustomBuildTool"
5358
+ />
5359
+ </FileConfiguration>
5360
+ <FileConfiguration
5361
+ Name="Release|Win32"
5362
+ ExcludedFromBuild="true"
5363
+ >
5364
+ <Tool
5365
+ Name="VCCustomBuildTool"
5366
+ />
5367
+ </FileConfiguration>
5368
+ <FileConfiguration
5369
+ Name="Release|Pocket PC 2003 (ARMV4)"
5370
+ ExcludedFromBuild="true"
5371
+ >
5372
+ <Tool
5373
+ Name="VCCustomBuildTool"
5374
+ />
5375
+ </FileConfiguration>
5376
+ <FileConfiguration
5377
+ Name="Release|Smartphone 2003 (ARMV4)"
5378
+ ExcludedFromBuild="true"
5379
+ >
5380
+ <Tool
5381
+ Name="VCCustomBuildTool"
5382
+ />
5383
+ </FileConfiguration>
5384
+ <FileConfiguration
5385
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
5386
+ ExcludedFromBuild="true"
5387
+ >
5388
+ <Tool
5389
+ Name="VCCustomBuildTool"
5390
+ />
5391
+ </FileConfiguration>
5392
+ <FileConfiguration
5393
+ Name="SimulatorDebug|Win32"
5394
+ >
5395
+ <Tool
5396
+ Name="VCCustomBuildTool"
5397
+ Description="Moc&apos;ing $(InputFileName)..."
5398
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I.&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;..\..\shared\qt\rhodes\QtWebInspector.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
5399
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
5400
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
5401
+ />
5402
+ </FileConfiguration>
5403
+ <FileConfiguration
5404
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
5405
+ ExcludedFromBuild="true"
5406
+ >
5407
+ <Tool
5408
+ Name="VCCustomBuildTool"
5409
+ />
5410
+ </FileConfiguration>
5411
+ <FileConfiguration
5412
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
5413
+ ExcludedFromBuild="true"
5414
+ >
5415
+ <Tool
5416
+ Name="VCCustomBuildTool"
5417
+ />
5418
+ </FileConfiguration>
5419
+ <FileConfiguration
5420
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
5421
+ ExcludedFromBuild="true"
5422
+ >
5423
+ <Tool
5424
+ Name="VCCustomBuildTool"
5425
+ />
5426
+ </FileConfiguration>
5427
+ <FileConfiguration
5428
+ Name="SimulatorRelease|Win32"
5429
+ >
5430
+ <Tool
5431
+ Name="VCCustomBuildTool"
5432
+ Description="Moc&apos;ing $(InputFileName)..."
5433
+ CommandLine="&quot;$(QTDIR)\bin\moc.exe&quot; -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB &quot;-I..\..\shared\qt\rhodes\GeneratedFiles&quot; &quot;-I$(QTDIR)\include&quot; &quot;-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\.&quot; &quot;-I$(QTDIR)\include\qtmain&quot; &quot;-I$(QTDIR)\include\QtCore&quot; &quot;-I$(QTDIR)\include\QtGui&quot; &quot;-I$(QTDIR)\include\QtWebKit&quot; &quot;-I.&quot; &quot;..\..\shared\qt\rhodes\QtWebInspector.h&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;&#x0D;&#x0A;"
5434
+ AdditionalDependencies="&quot;$(QTDIR)\bin\moc.exe&quot;;$(InputPath)"
5435
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp&quot;"
5436
+ />
5437
+ </FileConfiguration>
5438
+ <FileConfiguration
5439
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
5440
+ ExcludedFromBuild="true"
5441
+ >
5442
+ <Tool
5443
+ Name="VCCustomBuildTool"
5444
+ />
5445
+ </FileConfiguration>
5446
+ <FileConfiguration
5447
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
5448
+ ExcludedFromBuild="true"
5449
+ >
5450
+ <Tool
5451
+ Name="VCCustomBuildTool"
5452
+ />
5453
+ </FileConfiguration>
5454
+ </File>
5455
+ <File
5456
+ RelativePath="..\..\shared\qt\rhodes\QtWebInspector.ui"
5457
+ >
5458
+ <FileConfiguration
5459
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
5460
+ ExcludedFromBuild="true"
5461
+ >
5462
+ <Tool
5463
+ Name="VCCustomBuildTool"
5464
+ />
5465
+ </FileConfiguration>
5466
+ <FileConfiguration
5467
+ Name="Debug|Win32"
5468
+ ExcludedFromBuild="true"
5469
+ >
5470
+ <Tool
5471
+ Name="VCCustomBuildTool"
5472
+ />
5473
+ </FileConfiguration>
5474
+ <FileConfiguration
5475
+ Name="Debug|Pocket PC 2003 (ARMV4)"
5476
+ ExcludedFromBuild="true"
5477
+ >
5478
+ <Tool
5479
+ Name="VCCustomBuildTool"
5480
+ />
5481
+ </FileConfiguration>
5482
+ <FileConfiguration
5483
+ Name="Debug|Smartphone 2003 (ARMV4)"
5484
+ ExcludedFromBuild="true"
5485
+ >
5486
+ <Tool
5487
+ Name="VCCustomBuildTool"
5488
+ />
5489
+ </FileConfiguration>
5490
+ <FileConfiguration
5491
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
5492
+ ExcludedFromBuild="true"
5493
+ >
5494
+ <Tool
5495
+ Name="VCCustomBuildTool"
5496
+ />
5497
+ </FileConfiguration>
5498
+ <FileConfiguration
5499
+ Name="Release|Win32"
5500
+ ExcludedFromBuild="true"
5501
+ >
5502
+ <Tool
5503
+ Name="VCCustomBuildTool"
5504
+ />
5505
+ </FileConfiguration>
5506
+ <FileConfiguration
5507
+ Name="Release|Pocket PC 2003 (ARMV4)"
5508
+ ExcludedFromBuild="true"
5509
+ >
5510
+ <Tool
5511
+ Name="VCCustomBuildTool"
5512
+ />
5513
+ </FileConfiguration>
5514
+ <FileConfiguration
5515
+ Name="Release|Smartphone 2003 (ARMV4)"
5516
+ ExcludedFromBuild="true"
5517
+ >
5518
+ <Tool
5519
+ Name="VCCustomBuildTool"
5520
+ />
5521
+ </FileConfiguration>
5522
+ <FileConfiguration
5523
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
5524
+ ExcludedFromBuild="true"
5525
+ >
5526
+ <Tool
5527
+ Name="VCCustomBuildTool"
5528
+ />
5529
+ </FileConfiguration>
5530
+ <FileConfiguration
5531
+ Name="SimulatorDebug|Win32"
5532
+ >
5533
+ <Tool
5534
+ Name="VCCustomBuildTool"
5535
+ Description="Uic&apos;ing $(InputFileName)..."
5536
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
5537
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
5538
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
5539
+ />
5540
+ </FileConfiguration>
5541
+ <FileConfiguration
5542
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
5543
+ ExcludedFromBuild="true"
5544
+ >
5545
+ <Tool
5546
+ Name="VCCustomBuildTool"
5547
+ />
5548
+ </FileConfiguration>
5549
+ <FileConfiguration
5550
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
5551
+ ExcludedFromBuild="true"
5552
+ >
5553
+ <Tool
5554
+ Name="VCCustomBuildTool"
5555
+ />
5556
+ </FileConfiguration>
5557
+ <FileConfiguration
5558
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
5559
+ ExcludedFromBuild="true"
5560
+ >
5561
+ <Tool
5562
+ Name="VCCustomBuildTool"
5563
+ />
5564
+ </FileConfiguration>
5565
+ <FileConfiguration
5566
+ Name="SimulatorRelease|Win32"
5567
+ >
5568
+ <Tool
5569
+ Name="VCCustomBuildTool"
5570
+ Description="Uic&apos;ing $(InputFileName)..."
5571
+ CommandLine="&quot;$(QTDIR)\bin\uic.exe&quot; -o &quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
5572
+ AdditionalDependencies="$(QTDIR)\bin\uic.exe"
5573
+ Outputs="&quot;..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h&quot;"
5574
+ />
5575
+ </FileConfiguration>
5576
+ <FileConfiguration
5577
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
5578
+ ExcludedFromBuild="true"
5579
+ >
5580
+ <Tool
5581
+ Name="VCCustomBuildTool"
5582
+ />
5583
+ </FileConfiguration>
5584
+ <FileConfiguration
5585
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
5586
+ ExcludedFromBuild="true"
5587
+ >
5588
+ <Tool
5589
+ Name="VCCustomBuildTool"
5590
+ />
5591
+ </FileConfiguration>
5592
+ </File>
5593
+ <Filter
5594
+ Name="Generated Files"
5595
+ SourceControlFiles="false"
5596
+ >
5597
+ <File
5598
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\ui_DateTimeDialog.h"
5599
+ >
5600
+ <FileConfiguration
5601
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
5602
+ ExcludedFromBuild="true"
5603
+ >
5604
+ <Tool
5605
+ Name="VCCustomBuildTool"
5606
+ />
5607
+ </FileConfiguration>
5608
+ <FileConfiguration
5609
+ Name="Debug|Win32"
5610
+ ExcludedFromBuild="true"
5611
+ >
5612
+ <Tool
5613
+ Name="VCCustomBuildTool"
5614
+ />
5615
+ </FileConfiguration>
5616
+ <FileConfiguration
5617
+ Name="Debug|Pocket PC 2003 (ARMV4)"
5618
+ ExcludedFromBuild="true"
5619
+ >
5620
+ <Tool
5621
+ Name="VCCustomBuildTool"
5622
+ />
5623
+ </FileConfiguration>
5624
+ <FileConfiguration
5625
+ Name="Debug|Smartphone 2003 (ARMV4)"
5626
+ ExcludedFromBuild="true"
5627
+ >
5628
+ <Tool
5629
+ Name="VCCustomBuildTool"
5630
+ />
5631
+ </FileConfiguration>
5632
+ <FileConfiguration
5633
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
5634
+ ExcludedFromBuild="true"
5635
+ >
5636
+ <Tool
5637
+ Name="VCCustomBuildTool"
5638
+ />
5639
+ </FileConfiguration>
5640
+ <FileConfiguration
5641
+ Name="Release|Win32"
5642
+ ExcludedFromBuild="true"
5643
+ >
5644
+ <Tool
5645
+ Name="VCCustomBuildTool"
5646
+ />
5647
+ </FileConfiguration>
5648
+ <FileConfiguration
5649
+ Name="Release|Pocket PC 2003 (ARMV4)"
5650
+ ExcludedFromBuild="true"
5651
+ >
5652
+ <Tool
5653
+ Name="VCCustomBuildTool"
5654
+ />
5655
+ </FileConfiguration>
5656
+ <FileConfiguration
5657
+ Name="Release|Smartphone 2003 (ARMV4)"
5658
+ ExcludedFromBuild="true"
5659
+ >
5660
+ <Tool
5661
+ Name="VCCustomBuildTool"
5662
+ />
5663
+ </FileConfiguration>
5664
+ <FileConfiguration
5665
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
5666
+ ExcludedFromBuild="true"
5667
+ >
5668
+ <Tool
5669
+ Name="VCCustomBuildTool"
5670
+ />
5671
+ </FileConfiguration>
5672
+ <FileConfiguration
5673
+ Name="SimulatorDebug|Win32"
5674
+ >
5675
+ <Tool
5676
+ Name="VCCustomBuildTool"
5677
+ />
5678
+ </FileConfiguration>
5679
+ <FileConfiguration
5680
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
5681
+ ExcludedFromBuild="true"
5682
+ >
5683
+ <Tool
5684
+ Name="VCCustomBuildTool"
5685
+ />
5686
+ </FileConfiguration>
5687
+ <FileConfiguration
5688
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
5689
+ ExcludedFromBuild="true"
5690
+ >
5691
+ <Tool
5692
+ Name="VCCustomBuildTool"
5693
+ />
5694
+ </FileConfiguration>
5695
+ <FileConfiguration
5696
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
5697
+ ExcludedFromBuild="true"
5698
+ >
5699
+ <Tool
5700
+ Name="VCCustomBuildTool"
5701
+ />
5702
+ </FileConfiguration>
5703
+ <FileConfiguration
5704
+ Name="SimulatorRelease|Win32"
5705
+ >
5706
+ <Tool
5707
+ Name="VCCustomBuildTool"
5708
+ />
5709
+ </FileConfiguration>
5710
+ <FileConfiguration
5711
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
5712
+ ExcludedFromBuild="true"
5713
+ >
5714
+ <Tool
5715
+ Name="VCCustomBuildTool"
5716
+ />
5717
+ </FileConfiguration>
5718
+ <FileConfiguration
5719
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
5720
+ ExcludedFromBuild="true"
5721
+ >
5722
+ <Tool
5723
+ Name="VCCustomBuildTool"
5724
+ />
5725
+ </FileConfiguration>
5726
+ </File>
5727
+ <File
5728
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\ui_ExternalWebView.h"
5729
+ >
5730
+ <FileConfiguration
5731
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
5732
+ ExcludedFromBuild="true"
5733
+ >
5734
+ <Tool
5735
+ Name="VCCustomBuildTool"
5736
+ />
5737
+ </FileConfiguration>
5738
+ <FileConfiguration
5739
+ Name="Debug|Win32"
5740
+ ExcludedFromBuild="true"
5741
+ >
5742
+ <Tool
5743
+ Name="VCCustomBuildTool"
5744
+ />
5745
+ </FileConfiguration>
5746
+ <FileConfiguration
5747
+ Name="Debug|Pocket PC 2003 (ARMV4)"
5748
+ ExcludedFromBuild="true"
5749
+ >
5750
+ <Tool
5751
+ Name="VCCustomBuildTool"
5752
+ />
5753
+ </FileConfiguration>
5754
+ <FileConfiguration
5755
+ Name="Debug|Smartphone 2003 (ARMV4)"
5756
+ ExcludedFromBuild="true"
5757
+ >
5758
+ <Tool
5759
+ Name="VCCustomBuildTool"
5760
+ />
5761
+ </FileConfiguration>
5762
+ <FileConfiguration
5763
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
5764
+ ExcludedFromBuild="true"
5765
+ >
5766
+ <Tool
5767
+ Name="VCCustomBuildTool"
5768
+ />
5769
+ </FileConfiguration>
5770
+ <FileConfiguration
5771
+ Name="Release|Win32"
5772
+ ExcludedFromBuild="true"
5773
+ >
5774
+ <Tool
5775
+ Name="VCCustomBuildTool"
5776
+ />
5777
+ </FileConfiguration>
5778
+ <FileConfiguration
5779
+ Name="Release|Pocket PC 2003 (ARMV4)"
5780
+ ExcludedFromBuild="true"
5781
+ >
5782
+ <Tool
5783
+ Name="VCCustomBuildTool"
5784
+ />
5785
+ </FileConfiguration>
5786
+ <FileConfiguration
5787
+ Name="Release|Smartphone 2003 (ARMV4)"
5788
+ ExcludedFromBuild="true"
5789
+ >
5790
+ <Tool
5791
+ Name="VCCustomBuildTool"
5792
+ />
5793
+ </FileConfiguration>
5794
+ <FileConfiguration
5795
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
5796
+ ExcludedFromBuild="true"
5797
+ >
5798
+ <Tool
5799
+ Name="VCCustomBuildTool"
5800
+ />
5801
+ </FileConfiguration>
5802
+ <FileConfiguration
5803
+ Name="SimulatorDebug|Win32"
5804
+ >
5805
+ <Tool
5806
+ Name="VCCustomBuildTool"
5807
+ />
5808
+ </FileConfiguration>
5809
+ <FileConfiguration
5810
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
5811
+ ExcludedFromBuild="true"
5812
+ >
5813
+ <Tool
5814
+ Name="VCCustomBuildTool"
5815
+ />
5816
+ </FileConfiguration>
5817
+ <FileConfiguration
5818
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
5819
+ ExcludedFromBuild="true"
5820
+ >
5821
+ <Tool
5822
+ Name="VCCustomBuildTool"
5823
+ />
5824
+ </FileConfiguration>
5825
+ <FileConfiguration
5826
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
5827
+ ExcludedFromBuild="true"
5828
+ >
5829
+ <Tool
5830
+ Name="VCCustomBuildTool"
5831
+ />
5832
+ </FileConfiguration>
5833
+ <FileConfiguration
5834
+ Name="SimulatorRelease|Win32"
5835
+ >
5836
+ <Tool
5837
+ Name="VCCustomBuildTool"
5838
+ />
5839
+ </FileConfiguration>
5840
+ <FileConfiguration
5841
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
5842
+ ExcludedFromBuild="true"
5843
+ >
5844
+ <Tool
5845
+ Name="VCCustomBuildTool"
5846
+ />
5847
+ </FileConfiguration>
5848
+ <FileConfiguration
5849
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
5850
+ ExcludedFromBuild="true"
5851
+ >
5852
+ <Tool
5853
+ Name="VCCustomBuildTool"
5854
+ />
5855
+ </FileConfiguration>
5856
+ </File>
5857
+ <File
5858
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\ui_QtMainWindow.h"
5859
+ >
5860
+ <FileConfiguration
5861
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
5862
+ ExcludedFromBuild="true"
5863
+ >
5864
+ <Tool
5865
+ Name="VCCustomBuildTool"
5866
+ />
5867
+ </FileConfiguration>
5868
+ <FileConfiguration
5869
+ Name="Debug|Win32"
5870
+ ExcludedFromBuild="true"
5871
+ >
5872
+ <Tool
5873
+ Name="VCCustomBuildTool"
5874
+ />
5875
+ </FileConfiguration>
5876
+ <FileConfiguration
5877
+ Name="Debug|Pocket PC 2003 (ARMV4)"
5878
+ ExcludedFromBuild="true"
5879
+ >
5880
+ <Tool
5881
+ Name="VCCustomBuildTool"
5882
+ />
5883
+ </FileConfiguration>
5884
+ <FileConfiguration
5885
+ Name="Debug|Smartphone 2003 (ARMV4)"
5886
+ ExcludedFromBuild="true"
5887
+ >
5888
+ <Tool
5889
+ Name="VCCustomBuildTool"
5890
+ />
5891
+ </FileConfiguration>
5892
+ <FileConfiguration
5893
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
5894
+ ExcludedFromBuild="true"
5895
+ >
5896
+ <Tool
5897
+ Name="VCCustomBuildTool"
5898
+ />
5899
+ </FileConfiguration>
5900
+ <FileConfiguration
5901
+ Name="Release|Win32"
5902
+ ExcludedFromBuild="true"
5903
+ >
5904
+ <Tool
5905
+ Name="VCCustomBuildTool"
5906
+ />
5907
+ </FileConfiguration>
5908
+ <FileConfiguration
5909
+ Name="Release|Pocket PC 2003 (ARMV4)"
5910
+ ExcludedFromBuild="true"
5911
+ >
5912
+ <Tool
5913
+ Name="VCCustomBuildTool"
5914
+ />
5915
+ </FileConfiguration>
5916
+ <FileConfiguration
5917
+ Name="Release|Smartphone 2003 (ARMV4)"
5918
+ ExcludedFromBuild="true"
5919
+ >
5920
+ <Tool
5921
+ Name="VCCustomBuildTool"
5922
+ />
5923
+ </FileConfiguration>
5924
+ <FileConfiguration
5925
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
5926
+ ExcludedFromBuild="true"
5927
+ >
5928
+ <Tool
5929
+ Name="VCCustomBuildTool"
5930
+ />
5931
+ </FileConfiguration>
5932
+ <FileConfiguration
5933
+ Name="SimulatorDebug|Win32"
5934
+ >
5935
+ <Tool
5936
+ Name="VCCustomBuildTool"
5937
+ />
5938
+ </FileConfiguration>
5939
+ <FileConfiguration
5940
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
5941
+ ExcludedFromBuild="true"
5942
+ >
5943
+ <Tool
5944
+ Name="VCCustomBuildTool"
5945
+ />
5946
+ </FileConfiguration>
5947
+ <FileConfiguration
5948
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
5949
+ ExcludedFromBuild="true"
5950
+ >
5951
+ <Tool
5952
+ Name="VCCustomBuildTool"
5953
+ />
5954
+ </FileConfiguration>
5955
+ <FileConfiguration
5956
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
5957
+ ExcludedFromBuild="true"
5958
+ >
5959
+ <Tool
5960
+ Name="VCCustomBuildTool"
5961
+ />
5962
+ </FileConfiguration>
5963
+ <FileConfiguration
5964
+ Name="SimulatorRelease|Win32"
5965
+ >
5966
+ <Tool
5967
+ Name="VCCustomBuildTool"
5968
+ />
5969
+ </FileConfiguration>
5970
+ <FileConfiguration
5971
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
5972
+ ExcludedFromBuild="true"
5973
+ >
5974
+ <Tool
5975
+ Name="VCCustomBuildTool"
5976
+ />
5977
+ </FileConfiguration>
5978
+ <FileConfiguration
5979
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
5980
+ ExcludedFromBuild="true"
5981
+ >
5982
+ <Tool
5983
+ Name="VCCustomBuildTool"
5984
+ />
5985
+ </FileConfiguration>
5986
+ </File>
5987
+ <File
5988
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\ui_QtWebInspector.h"
5989
+ >
5990
+ <FileConfiguration
5991
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
5992
+ ExcludedFromBuild="true"
5993
+ >
5994
+ <Tool
5995
+ Name="VCCustomBuildTool"
5996
+ />
5997
+ </FileConfiguration>
5998
+ <FileConfiguration
5999
+ Name="Debug|Win32"
6000
+ ExcludedFromBuild="true"
6001
+ >
6002
+ <Tool
6003
+ Name="VCCustomBuildTool"
6004
+ />
6005
+ </FileConfiguration>
6006
+ <FileConfiguration
6007
+ Name="Debug|Pocket PC 2003 (ARMV4)"
6008
+ ExcludedFromBuild="true"
6009
+ >
6010
+ <Tool
6011
+ Name="VCCustomBuildTool"
6012
+ />
6013
+ </FileConfiguration>
6014
+ <FileConfiguration
6015
+ Name="Debug|Smartphone 2003 (ARMV4)"
6016
+ ExcludedFromBuild="true"
6017
+ >
6018
+ <Tool
6019
+ Name="VCCustomBuildTool"
6020
+ />
6021
+ </FileConfiguration>
6022
+ <FileConfiguration
6023
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
6024
+ ExcludedFromBuild="true"
6025
+ >
6026
+ <Tool
6027
+ Name="VCCustomBuildTool"
6028
+ />
6029
+ </FileConfiguration>
6030
+ <FileConfiguration
6031
+ Name="Release|Win32"
6032
+ ExcludedFromBuild="true"
6033
+ >
6034
+ <Tool
6035
+ Name="VCCustomBuildTool"
6036
+ />
6037
+ </FileConfiguration>
6038
+ <FileConfiguration
6039
+ Name="Release|Pocket PC 2003 (ARMV4)"
6040
+ ExcludedFromBuild="true"
6041
+ >
6042
+ <Tool
6043
+ Name="VCCustomBuildTool"
6044
+ />
6045
+ </FileConfiguration>
6046
+ <FileConfiguration
6047
+ Name="Release|Smartphone 2003 (ARMV4)"
6048
+ ExcludedFromBuild="true"
6049
+ >
6050
+ <Tool
6051
+ Name="VCCustomBuildTool"
6052
+ />
6053
+ </FileConfiguration>
6054
+ <FileConfiguration
6055
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
6056
+ ExcludedFromBuild="true"
6057
+ >
6058
+ <Tool
6059
+ Name="VCCustomBuildTool"
6060
+ />
6061
+ </FileConfiguration>
6062
+ <FileConfiguration
6063
+ Name="SimulatorDebug|Win32"
6064
+ >
6065
+ <Tool
6066
+ Name="VCCustomBuildTool"
6067
+ />
6068
+ </FileConfiguration>
6069
+ <FileConfiguration
6070
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
6071
+ ExcludedFromBuild="true"
6072
+ >
6073
+ <Tool
6074
+ Name="VCCustomBuildTool"
6075
+ />
6076
+ </FileConfiguration>
6077
+ <FileConfiguration
6078
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
6079
+ ExcludedFromBuild="true"
6080
+ >
6081
+ <Tool
6082
+ Name="VCCustomBuildTool"
6083
+ />
6084
+ </FileConfiguration>
6085
+ <FileConfiguration
6086
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
6087
+ ExcludedFromBuild="true"
6088
+ >
6089
+ <Tool
6090
+ Name="VCCustomBuildTool"
6091
+ />
6092
+ </FileConfiguration>
6093
+ <FileConfiguration
6094
+ Name="SimulatorRelease|Win32"
6095
+ >
6096
+ <Tool
6097
+ Name="VCCustomBuildTool"
6098
+ />
6099
+ </FileConfiguration>
6100
+ <FileConfiguration
6101
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
6102
+ ExcludedFromBuild="true"
6103
+ >
6104
+ <Tool
6105
+ Name="VCCustomBuildTool"
6106
+ />
6107
+ </FileConfiguration>
6108
+ <FileConfiguration
6109
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
6110
+ ExcludedFromBuild="true"
6111
+ >
6112
+ <Tool
6113
+ Name="VCCustomBuildTool"
6114
+ />
6115
+ </FileConfiguration>
6116
+ </File>
6117
+ <Filter
6118
+ Name="Debug"
6119
+ >
6120
+ <File
6121
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\moc_DateTimeDialog.cpp"
6122
+ >
6123
+ <FileConfiguration
6124
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
6125
+ ExcludedFromBuild="true"
6126
+ >
6127
+ <Tool
6128
+ Name="VCCLCompilerTool"
6129
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6130
+ />
6131
+ </FileConfiguration>
6132
+ <FileConfiguration
6133
+ Name="Debug|Win32"
6134
+ ExcludedFromBuild="true"
6135
+ >
6136
+ <Tool
6137
+ Name="VCCLCompilerTool"
6138
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
6139
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
6140
+ />
6141
+ </FileConfiguration>
6142
+ <FileConfiguration
6143
+ Name="Debug|Pocket PC 2003 (ARMV4)"
6144
+ ExcludedFromBuild="true"
6145
+ >
6146
+ <Tool
6147
+ Name="VCCLCompilerTool"
6148
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6149
+ />
6150
+ </FileConfiguration>
6151
+ <FileConfiguration
6152
+ Name="Debug|Smartphone 2003 (ARMV4)"
6153
+ ExcludedFromBuild="true"
6154
+ >
6155
+ <Tool
6156
+ Name="VCCLCompilerTool"
6157
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6158
+ />
6159
+ </FileConfiguration>
6160
+ <FileConfiguration
6161
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
6162
+ ExcludedFromBuild="true"
6163
+ >
6164
+ <Tool
6165
+ Name="VCCLCompilerTool"
6166
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6167
+ />
6168
+ </FileConfiguration>
6169
+ <FileConfiguration
6170
+ Name="Release|Win32"
6171
+ ExcludedFromBuild="true"
6172
+ >
6173
+ <Tool
6174
+ Name="VCCLCompilerTool"
6175
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
6176
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
6177
+ />
6178
+ </FileConfiguration>
6179
+ <FileConfiguration
6180
+ Name="Release|Pocket PC 2003 (ARMV4)"
6181
+ ExcludedFromBuild="true"
6182
+ >
6183
+ <Tool
6184
+ Name="VCCLCompilerTool"
6185
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6186
+ />
6187
+ </FileConfiguration>
6188
+ <FileConfiguration
6189
+ Name="Release|Smartphone 2003 (ARMV4)"
6190
+ ExcludedFromBuild="true"
6191
+ >
6192
+ <Tool
6193
+ Name="VCCLCompilerTool"
6194
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6195
+ />
6196
+ </FileConfiguration>
6197
+ <FileConfiguration
6198
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
6199
+ ExcludedFromBuild="true"
6200
+ >
6201
+ <Tool
6202
+ Name="VCCLCompilerTool"
6203
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6204
+ />
6205
+ </FileConfiguration>
6206
+ <FileConfiguration
6207
+ Name="SimulatorDebug|Win32"
6208
+ >
6209
+ <Tool
6210
+ Name="VCCLCompilerTool"
6211
+ UsePrecompiledHeader="0"
6212
+ />
6213
+ </FileConfiguration>
6214
+ <FileConfiguration
6215
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
6216
+ ExcludedFromBuild="true"
6217
+ >
6218
+ <Tool
6219
+ Name="VCCLCompilerTool"
6220
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6221
+ />
6222
+ </FileConfiguration>
6223
+ <FileConfiguration
6224
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
6225
+ ExcludedFromBuild="true"
6226
+ >
6227
+ <Tool
6228
+ Name="VCCLCompilerTool"
6229
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6230
+ />
6231
+ </FileConfiguration>
6232
+ <FileConfiguration
6233
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
6234
+ ExcludedFromBuild="true"
6235
+ >
6236
+ <Tool
6237
+ Name="VCCLCompilerTool"
6238
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6239
+ />
6240
+ </FileConfiguration>
6241
+ <FileConfiguration
6242
+ Name="SimulatorRelease|Win32"
6243
+ ExcludedFromBuild="true"
6244
+ >
6245
+ <Tool
6246
+ Name="VCCLCompilerTool"
6247
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
6248
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
6249
+ />
6250
+ </FileConfiguration>
6251
+ <FileConfiguration
6252
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
6253
+ ExcludedFromBuild="true"
6254
+ >
6255
+ <Tool
6256
+ Name="VCCLCompilerTool"
6257
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6258
+ />
6259
+ </FileConfiguration>
6260
+ <FileConfiguration
6261
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
6262
+ ExcludedFromBuild="true"
6263
+ >
6264
+ <Tool
6265
+ Name="VCCLCompilerTool"
6266
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6267
+ />
6268
+ </FileConfiguration>
6269
+ </File>
6270
+ <File
6271
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\moc_ExternalWebView.cpp"
6272
+ >
6273
+ <FileConfiguration
6274
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
6275
+ ExcludedFromBuild="true"
6276
+ >
6277
+ <Tool
6278
+ Name="VCCLCompilerTool"
6279
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6280
+ />
6281
+ </FileConfiguration>
6282
+ <FileConfiguration
6283
+ Name="Debug|Win32"
6284
+ ExcludedFromBuild="true"
6285
+ >
6286
+ <Tool
6287
+ Name="VCCLCompilerTool"
6288
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
6289
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
6290
+ />
6291
+ </FileConfiguration>
6292
+ <FileConfiguration
6293
+ Name="Debug|Pocket PC 2003 (ARMV4)"
6294
+ ExcludedFromBuild="true"
6295
+ >
6296
+ <Tool
6297
+ Name="VCCLCompilerTool"
6298
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6299
+ />
6300
+ </FileConfiguration>
6301
+ <FileConfiguration
6302
+ Name="Debug|Smartphone 2003 (ARMV4)"
6303
+ ExcludedFromBuild="true"
6304
+ >
6305
+ <Tool
6306
+ Name="VCCLCompilerTool"
6307
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6308
+ />
6309
+ </FileConfiguration>
6310
+ <FileConfiguration
6311
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
6312
+ ExcludedFromBuild="true"
6313
+ >
6314
+ <Tool
6315
+ Name="VCCLCompilerTool"
6316
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6317
+ />
6318
+ </FileConfiguration>
6319
+ <FileConfiguration
6320
+ Name="Release|Win32"
6321
+ ExcludedFromBuild="true"
6322
+ >
6323
+ <Tool
6324
+ Name="VCCLCompilerTool"
6325
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
6326
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
6327
+ />
6328
+ </FileConfiguration>
6329
+ <FileConfiguration
6330
+ Name="Release|Pocket PC 2003 (ARMV4)"
6331
+ ExcludedFromBuild="true"
6332
+ >
6333
+ <Tool
6334
+ Name="VCCLCompilerTool"
6335
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6336
+ />
6337
+ </FileConfiguration>
6338
+ <FileConfiguration
6339
+ Name="Release|Smartphone 2003 (ARMV4)"
6340
+ ExcludedFromBuild="true"
6341
+ >
6342
+ <Tool
6343
+ Name="VCCLCompilerTool"
6344
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6345
+ />
6346
+ </FileConfiguration>
6347
+ <FileConfiguration
6348
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
6349
+ ExcludedFromBuild="true"
6350
+ >
6351
+ <Tool
6352
+ Name="VCCLCompilerTool"
6353
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6354
+ />
6355
+ </FileConfiguration>
6356
+ <FileConfiguration
6357
+ Name="SimulatorDebug|Win32"
6358
+ >
6359
+ <Tool
6360
+ Name="VCCLCompilerTool"
6361
+ UsePrecompiledHeader="0"
6362
+ />
6363
+ </FileConfiguration>
6364
+ <FileConfiguration
6365
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
6366
+ ExcludedFromBuild="true"
6367
+ >
6368
+ <Tool
6369
+ Name="VCCLCompilerTool"
6370
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6371
+ />
6372
+ </FileConfiguration>
6373
+ <FileConfiguration
6374
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
6375
+ ExcludedFromBuild="true"
6376
+ >
6377
+ <Tool
6378
+ Name="VCCLCompilerTool"
6379
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6380
+ />
6381
+ </FileConfiguration>
6382
+ <FileConfiguration
6383
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
6384
+ ExcludedFromBuild="true"
6385
+ >
6386
+ <Tool
6387
+ Name="VCCLCompilerTool"
6388
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6389
+ />
6390
+ </FileConfiguration>
6391
+ <FileConfiguration
6392
+ Name="SimulatorRelease|Win32"
6393
+ ExcludedFromBuild="true"
6394
+ >
6395
+ <Tool
6396
+ Name="VCCLCompilerTool"
6397
+ ObjectFile="$(IntDir)\$(InputName)1.obj"
6398
+ XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
6399
+ />
6400
+ </FileConfiguration>
6401
+ <FileConfiguration
6402
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
6403
+ ExcludedFromBuild="true"
6404
+ >
6405
+ <Tool
6406
+ Name="VCCLCompilerTool"
6407
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6408
+ />
6409
+ </FileConfiguration>
6410
+ <FileConfiguration
6411
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
6412
+ ExcludedFromBuild="true"
6413
+ >
6414
+ <Tool
6415
+ Name="VCCLCompilerTool"
6416
+ ObjectFile="$(IntDir)/$(InputName)1.obj"
6417
+ />
6418
+ </FileConfiguration>
6419
+ </File>
4772
6420
  <File
4773
- RelativePath=".\emulator\GeneratedFiles\EmulatorDebug\moc_ExternalWebView.cpp"
6421
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\moc_QtMainWindow.cpp"
4774
6422
  >
4775
6423
  <FileConfiguration
4776
6424
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
@@ -4847,7 +6495,7 @@
4847
6495
  />
4848
6496
  </FileConfiguration>
4849
6497
  <FileConfiguration
4850
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
6498
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
4851
6499
  ExcludedFromBuild="true"
4852
6500
  >
4853
6501
  <Tool
@@ -4856,7 +6504,7 @@
4856
6504
  />
4857
6505
  </FileConfiguration>
4858
6506
  <FileConfiguration
4859
- Name="EmulatorDebug|Win32"
6507
+ Name="SimulatorDebug|Win32"
4860
6508
  >
4861
6509
  <Tool
4862
6510
  Name="VCCLCompilerTool"
@@ -4864,7 +6512,7 @@
4864
6512
  />
4865
6513
  </FileConfiguration>
4866
6514
  <FileConfiguration
4867
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
6515
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
4868
6516
  ExcludedFromBuild="true"
4869
6517
  >
4870
6518
  <Tool
@@ -4873,7 +6521,7 @@
4873
6521
  />
4874
6522
  </FileConfiguration>
4875
6523
  <FileConfiguration
4876
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
6524
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
4877
6525
  ExcludedFromBuild="true"
4878
6526
  >
4879
6527
  <Tool
@@ -4882,7 +6530,7 @@
4882
6530
  />
4883
6531
  </FileConfiguration>
4884
6532
  <FileConfiguration
4885
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
6533
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
4886
6534
  ExcludedFromBuild="true"
4887
6535
  >
4888
6536
  <Tool
@@ -4891,7 +6539,7 @@
4891
6539
  />
4892
6540
  </FileConfiguration>
4893
6541
  <FileConfiguration
4894
- Name="EmulatorRelease|Win32"
6542
+ Name="SimulatorRelease|Win32"
4895
6543
  ExcludedFromBuild="true"
4896
6544
  >
4897
6545
  <Tool
@@ -4901,7 +6549,7 @@
4901
6549
  />
4902
6550
  </FileConfiguration>
4903
6551
  <FileConfiguration
4904
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
6552
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
4905
6553
  ExcludedFromBuild="true"
4906
6554
  >
4907
6555
  <Tool
@@ -4910,7 +6558,7 @@
4910
6558
  />
4911
6559
  </FileConfiguration>
4912
6560
  <FileConfiguration
4913
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
6561
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
4914
6562
  ExcludedFromBuild="true"
4915
6563
  >
4916
6564
  <Tool
@@ -4920,7 +6568,7 @@
4920
6568
  </FileConfiguration>
4921
6569
  </File>
4922
6570
  <File
4923
- RelativePath=".\emulator\GeneratedFiles\EmulatorDebug\moc_QtMainWindow.cpp"
6571
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorDebug\moc_QtWebInspector.cpp"
4924
6572
  >
4925
6573
  <FileConfiguration
4926
6574
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
@@ -4997,7 +6645,7 @@
4997
6645
  />
4998
6646
  </FileConfiguration>
4999
6647
  <FileConfiguration
5000
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
6648
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
5001
6649
  ExcludedFromBuild="true"
5002
6650
  >
5003
6651
  <Tool
@@ -5006,7 +6654,7 @@
5006
6654
  />
5007
6655
  </FileConfiguration>
5008
6656
  <FileConfiguration
5009
- Name="EmulatorDebug|Win32"
6657
+ Name="SimulatorDebug|Win32"
5010
6658
  >
5011
6659
  <Tool
5012
6660
  Name="VCCLCompilerTool"
@@ -5014,7 +6662,7 @@
5014
6662
  />
5015
6663
  </FileConfiguration>
5016
6664
  <FileConfiguration
5017
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
6665
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
5018
6666
  ExcludedFromBuild="true"
5019
6667
  >
5020
6668
  <Tool
@@ -5023,7 +6671,7 @@
5023
6671
  />
5024
6672
  </FileConfiguration>
5025
6673
  <FileConfiguration
5026
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
6674
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
5027
6675
  ExcludedFromBuild="true"
5028
6676
  >
5029
6677
  <Tool
@@ -5032,7 +6680,7 @@
5032
6680
  />
5033
6681
  </FileConfiguration>
5034
6682
  <FileConfiguration
5035
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
6683
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
5036
6684
  ExcludedFromBuild="true"
5037
6685
  >
5038
6686
  <Tool
@@ -5041,7 +6689,7 @@
5041
6689
  />
5042
6690
  </FileConfiguration>
5043
6691
  <FileConfiguration
5044
- Name="EmulatorRelease|Win32"
6692
+ Name="SimulatorRelease|Win32"
5045
6693
  ExcludedFromBuild="true"
5046
6694
  >
5047
6695
  <Tool
@@ -5051,7 +6699,7 @@
5051
6699
  />
5052
6700
  </FileConfiguration>
5053
6701
  <FileConfiguration
5054
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
6702
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
5055
6703
  ExcludedFromBuild="true"
5056
6704
  >
5057
6705
  <Tool
@@ -5060,7 +6708,7 @@
5060
6708
  />
5061
6709
  </FileConfiguration>
5062
6710
  <FileConfiguration
5063
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
6711
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
5064
6712
  ExcludedFromBuild="true"
5065
6713
  >
5066
6714
  <Tool
@@ -5074,7 +6722,271 @@
5074
6722
  Name="Release"
5075
6723
  >
5076
6724
  <File
5077
- RelativePath=".\emulator\GeneratedFiles\EmulatorRelease\moc_ExternalWebView.cpp"
6725
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorRelease\moc_DateTimeDialog.cpp"
6726
+ >
6727
+ <FileConfiguration
6728
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
6729
+ ExcludedFromBuild="true"
6730
+ >
6731
+ <Tool
6732
+ Name="VCCLCompilerTool"
6733
+ />
6734
+ </FileConfiguration>
6735
+ <FileConfiguration
6736
+ Name="Debug|Win32"
6737
+ ExcludedFromBuild="true"
6738
+ >
6739
+ <Tool
6740
+ Name="VCCLCompilerTool"
6741
+ />
6742
+ </FileConfiguration>
6743
+ <FileConfiguration
6744
+ Name="Debug|Pocket PC 2003 (ARMV4)"
6745
+ ExcludedFromBuild="true"
6746
+ >
6747
+ <Tool
6748
+ Name="VCCLCompilerTool"
6749
+ />
6750
+ </FileConfiguration>
6751
+ <FileConfiguration
6752
+ Name="Debug|Smartphone 2003 (ARMV4)"
6753
+ ExcludedFromBuild="true"
6754
+ >
6755
+ <Tool
6756
+ Name="VCCLCompilerTool"
6757
+ />
6758
+ </FileConfiguration>
6759
+ <FileConfiguration
6760
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
6761
+ ExcludedFromBuild="true"
6762
+ >
6763
+ <Tool
6764
+ Name="VCCLCompilerTool"
6765
+ />
6766
+ </FileConfiguration>
6767
+ <FileConfiguration
6768
+ Name="Release|Win32"
6769
+ ExcludedFromBuild="true"
6770
+ >
6771
+ <Tool
6772
+ Name="VCCLCompilerTool"
6773
+ />
6774
+ </FileConfiguration>
6775
+ <FileConfiguration
6776
+ Name="Release|Pocket PC 2003 (ARMV4)"
6777
+ ExcludedFromBuild="true"
6778
+ >
6779
+ <Tool
6780
+ Name="VCCLCompilerTool"
6781
+ />
6782
+ </FileConfiguration>
6783
+ <FileConfiguration
6784
+ Name="Release|Smartphone 2003 (ARMV4)"
6785
+ ExcludedFromBuild="true"
6786
+ >
6787
+ <Tool
6788
+ Name="VCCLCompilerTool"
6789
+ />
6790
+ </FileConfiguration>
6791
+ <FileConfiguration
6792
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
6793
+ ExcludedFromBuild="true"
6794
+ >
6795
+ <Tool
6796
+ Name="VCCLCompilerTool"
6797
+ />
6798
+ </FileConfiguration>
6799
+ <FileConfiguration
6800
+ Name="SimulatorDebug|Win32"
6801
+ ExcludedFromBuild="true"
6802
+ >
6803
+ <Tool
6804
+ Name="VCCLCompilerTool"
6805
+ />
6806
+ </FileConfiguration>
6807
+ <FileConfiguration
6808
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
6809
+ ExcludedFromBuild="true"
6810
+ >
6811
+ <Tool
6812
+ Name="VCCLCompilerTool"
6813
+ />
6814
+ </FileConfiguration>
6815
+ <FileConfiguration
6816
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
6817
+ ExcludedFromBuild="true"
6818
+ >
6819
+ <Tool
6820
+ Name="VCCLCompilerTool"
6821
+ />
6822
+ </FileConfiguration>
6823
+ <FileConfiguration
6824
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
6825
+ ExcludedFromBuild="true"
6826
+ >
6827
+ <Tool
6828
+ Name="VCCLCompilerTool"
6829
+ />
6830
+ </FileConfiguration>
6831
+ <FileConfiguration
6832
+ Name="SimulatorRelease|Win32"
6833
+ >
6834
+ <Tool
6835
+ Name="VCCLCompilerTool"
6836
+ UsePrecompiledHeader="0"
6837
+ />
6838
+ </FileConfiguration>
6839
+ <FileConfiguration
6840
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
6841
+ ExcludedFromBuild="true"
6842
+ >
6843
+ <Tool
6844
+ Name="VCCLCompilerTool"
6845
+ />
6846
+ </FileConfiguration>
6847
+ <FileConfiguration
6848
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
6849
+ ExcludedFromBuild="true"
6850
+ >
6851
+ <Tool
6852
+ Name="VCCLCompilerTool"
6853
+ />
6854
+ </FileConfiguration>
6855
+ </File>
6856
+ <File
6857
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorRelease\moc_ExternalWebView.cpp"
6858
+ >
6859
+ <FileConfiguration
6860
+ Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
6861
+ ExcludedFromBuild="true"
6862
+ >
6863
+ <Tool
6864
+ Name="VCCLCompilerTool"
6865
+ />
6866
+ </FileConfiguration>
6867
+ <FileConfiguration
6868
+ Name="Debug|Win32"
6869
+ ExcludedFromBuild="true"
6870
+ >
6871
+ <Tool
6872
+ Name="VCCLCompilerTool"
6873
+ />
6874
+ </FileConfiguration>
6875
+ <FileConfiguration
6876
+ Name="Debug|Pocket PC 2003 (ARMV4)"
6877
+ ExcludedFromBuild="true"
6878
+ >
6879
+ <Tool
6880
+ Name="VCCLCompilerTool"
6881
+ />
6882
+ </FileConfiguration>
6883
+ <FileConfiguration
6884
+ Name="Debug|Smartphone 2003 (ARMV4)"
6885
+ ExcludedFromBuild="true"
6886
+ >
6887
+ <Tool
6888
+ Name="VCCLCompilerTool"
6889
+ />
6890
+ </FileConfiguration>
6891
+ <FileConfiguration
6892
+ Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
6893
+ ExcludedFromBuild="true"
6894
+ >
6895
+ <Tool
6896
+ Name="VCCLCompilerTool"
6897
+ />
6898
+ </FileConfiguration>
6899
+ <FileConfiguration
6900
+ Name="Release|Win32"
6901
+ ExcludedFromBuild="true"
6902
+ >
6903
+ <Tool
6904
+ Name="VCCLCompilerTool"
6905
+ />
6906
+ </FileConfiguration>
6907
+ <FileConfiguration
6908
+ Name="Release|Pocket PC 2003 (ARMV4)"
6909
+ ExcludedFromBuild="true"
6910
+ >
6911
+ <Tool
6912
+ Name="VCCLCompilerTool"
6913
+ />
6914
+ </FileConfiguration>
6915
+ <FileConfiguration
6916
+ Name="Release|Smartphone 2003 (ARMV4)"
6917
+ ExcludedFromBuild="true"
6918
+ >
6919
+ <Tool
6920
+ Name="VCCLCompilerTool"
6921
+ />
6922
+ </FileConfiguration>
6923
+ <FileConfiguration
6924
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
6925
+ ExcludedFromBuild="true"
6926
+ >
6927
+ <Tool
6928
+ Name="VCCLCompilerTool"
6929
+ />
6930
+ </FileConfiguration>
6931
+ <FileConfiguration
6932
+ Name="SimulatorDebug|Win32"
6933
+ ExcludedFromBuild="true"
6934
+ >
6935
+ <Tool
6936
+ Name="VCCLCompilerTool"
6937
+ />
6938
+ </FileConfiguration>
6939
+ <FileConfiguration
6940
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
6941
+ ExcludedFromBuild="true"
6942
+ >
6943
+ <Tool
6944
+ Name="VCCLCompilerTool"
6945
+ />
6946
+ </FileConfiguration>
6947
+ <FileConfiguration
6948
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
6949
+ ExcludedFromBuild="true"
6950
+ >
6951
+ <Tool
6952
+ Name="VCCLCompilerTool"
6953
+ />
6954
+ </FileConfiguration>
6955
+ <FileConfiguration
6956
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
6957
+ ExcludedFromBuild="true"
6958
+ >
6959
+ <Tool
6960
+ Name="VCCLCompilerTool"
6961
+ />
6962
+ </FileConfiguration>
6963
+ <FileConfiguration
6964
+ Name="SimulatorRelease|Win32"
6965
+ >
6966
+ <Tool
6967
+ Name="VCCLCompilerTool"
6968
+ UsePrecompiledHeader="0"
6969
+ />
6970
+ </FileConfiguration>
6971
+ <FileConfiguration
6972
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
6973
+ ExcludedFromBuild="true"
6974
+ >
6975
+ <Tool
6976
+ Name="VCCLCompilerTool"
6977
+ />
6978
+ </FileConfiguration>
6979
+ <FileConfiguration
6980
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
6981
+ ExcludedFromBuild="true"
6982
+ >
6983
+ <Tool
6984
+ Name="VCCLCompilerTool"
6985
+ />
6986
+ </FileConfiguration>
6987
+ </File>
6988
+ <File
6989
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorRelease\moc_QtMainWindow.cpp"
5078
6990
  >
5079
6991
  <FileConfiguration
5080
6992
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
@@ -5141,7 +7053,7 @@
5141
7053
  />
5142
7054
  </FileConfiguration>
5143
7055
  <FileConfiguration
5144
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
7056
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
5145
7057
  ExcludedFromBuild="true"
5146
7058
  >
5147
7059
  <Tool
@@ -5149,7 +7061,7 @@
5149
7061
  />
5150
7062
  </FileConfiguration>
5151
7063
  <FileConfiguration
5152
- Name="EmulatorDebug|Win32"
7064
+ Name="SimulatorDebug|Win32"
5153
7065
  ExcludedFromBuild="true"
5154
7066
  >
5155
7067
  <Tool
@@ -5157,7 +7069,7 @@
5157
7069
  />
5158
7070
  </FileConfiguration>
5159
7071
  <FileConfiguration
5160
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
7072
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
5161
7073
  ExcludedFromBuild="true"
5162
7074
  >
5163
7075
  <Tool
@@ -5165,7 +7077,7 @@
5165
7077
  />
5166
7078
  </FileConfiguration>
5167
7079
  <FileConfiguration
5168
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
7080
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
5169
7081
  ExcludedFromBuild="true"
5170
7082
  >
5171
7083
  <Tool
@@ -5173,7 +7085,7 @@
5173
7085
  />
5174
7086
  </FileConfiguration>
5175
7087
  <FileConfiguration
5176
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
7088
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
5177
7089
  ExcludedFromBuild="true"
5178
7090
  >
5179
7091
  <Tool
@@ -5181,7 +7093,7 @@
5181
7093
  />
5182
7094
  </FileConfiguration>
5183
7095
  <FileConfiguration
5184
- Name="EmulatorRelease|Win32"
7096
+ Name="SimulatorRelease|Win32"
5185
7097
  >
5186
7098
  <Tool
5187
7099
  Name="VCCLCompilerTool"
@@ -5189,7 +7101,7 @@
5189
7101
  />
5190
7102
  </FileConfiguration>
5191
7103
  <FileConfiguration
5192
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
7104
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
5193
7105
  ExcludedFromBuild="true"
5194
7106
  >
5195
7107
  <Tool
@@ -5197,7 +7109,7 @@
5197
7109
  />
5198
7110
  </FileConfiguration>
5199
7111
  <FileConfiguration
5200
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
7112
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
5201
7113
  ExcludedFromBuild="true"
5202
7114
  >
5203
7115
  <Tool
@@ -5206,7 +7118,7 @@
5206
7118
  </FileConfiguration>
5207
7119
  </File>
5208
7120
  <File
5209
- RelativePath=".\emulator\GeneratedFiles\EmulatorRelease\moc_QtMainWindow.cpp"
7121
+ RelativePath="..\..\shared\qt\rhodes\GeneratedFiles\SimulatorRelease\moc_QtWebInspector.cpp"
5210
7122
  >
5211
7123
  <FileConfiguration
5212
7124
  Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
@@ -5273,7 +7185,7 @@
5273
7185
  />
5274
7186
  </FileConfiguration>
5275
7187
  <FileConfiguration
5276
- Name="EmulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
7188
+ Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
5277
7189
  ExcludedFromBuild="true"
5278
7190
  >
5279
7191
  <Tool
@@ -5281,7 +7193,7 @@
5281
7193
  />
5282
7194
  </FileConfiguration>
5283
7195
  <FileConfiguration
5284
- Name="EmulatorDebug|Win32"
7196
+ Name="SimulatorDebug|Win32"
5285
7197
  ExcludedFromBuild="true"
5286
7198
  >
5287
7199
  <Tool
@@ -5289,7 +7201,7 @@
5289
7201
  />
5290
7202
  </FileConfiguration>
5291
7203
  <FileConfiguration
5292
- Name="EmulatorDebug|Pocket PC 2003 (ARMV4)"
7204
+ Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
5293
7205
  ExcludedFromBuild="true"
5294
7206
  >
5295
7207
  <Tool
@@ -5297,7 +7209,7 @@
5297
7209
  />
5298
7210
  </FileConfiguration>
5299
7211
  <FileConfiguration
5300
- Name="EmulatorDebug|Smartphone 2003 (ARMV4)"
7212
+ Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
5301
7213
  ExcludedFromBuild="true"
5302
7214
  >
5303
7215
  <Tool
@@ -5305,7 +7217,7 @@
5305
7217
  />
5306
7218
  </FileConfiguration>
5307
7219
  <FileConfiguration
5308
- Name="EmulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
7220
+ Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
5309
7221
  ExcludedFromBuild="true"
5310
7222
  >
5311
7223
  <Tool
@@ -5313,7 +7225,7 @@
5313
7225
  />
5314
7226
  </FileConfiguration>
5315
7227
  <FileConfiguration
5316
- Name="EmulatorRelease|Win32"
7228
+ Name="SimulatorRelease|Win32"
5317
7229
  >
5318
7230
  <Tool
5319
7231
  Name="VCCLCompilerTool"
@@ -5321,7 +7233,7 @@
5321
7233
  />
5322
7234
  </FileConfiguration>
5323
7235
  <FileConfiguration
5324
- Name="EmulatorRelease|Pocket PC 2003 (ARMV4)"
7236
+ Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
5325
7237
  ExcludedFromBuild="true"
5326
7238
  >
5327
7239
  <Tool
@@ -5329,7 +7241,7 @@
5329
7241
  />
5330
7242
  </FileConfiguration>
5331
7243
  <FileConfiguration
5332
- Name="EmulatorRelease|Smartphone 2003 (ARMV4)"
7244
+ Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
5333
7245
  ExcludedFromBuild="true"
5334
7246
  >
5335
7247
  <Tool