rhodes 3.0.2 → 3.1.0.beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +13 -2
- data/Rakefile +200 -18
- data/bin/get-rhodes-info +1 -1
- data/doc/build.txt +174 -98
- data/doc/configuration.txt +13 -2
- data/doc/device-caps.txt +184 -24
- data/doc/extensions.txt +19 -1
- data/doc/generator.txt +18 -18
- data/doc/install.txt +15 -4
- data/doc/introduction.txt +19 -20
- data/doc/nfc.txt +1617 -513
- data/doc/release.txt +85 -41
- data/doc/rhom.txt +11 -1
- data/doc/simulator.txt +15 -5
- data/doc/synchronization.txt +21 -7
- data/doc/ui.txt +4 -0
- data/installer/rhostudio.nsi +464 -0
- data/lib/build/compileERB/bb.rb +26 -0
- data/lib/build/compileERB/default.rb +26 -0
- data/lib/build/compileRB/compileRB.rb +26 -0
- data/lib/build/jake.rb +27 -2
- data/lib/build/rhodes-build.rb +26 -0
- data/lib/extensions/barcode/ext.yml +3 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/AndroidManifest.xml +27 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/Rakefile +13 -13
- data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/drawable-hdpi/cancel_icon.png +0 -0
- 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
- data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/drawable-hdpi/retake_icon.png +0 -0
- 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
- 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
- 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
- data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/layout/capture.xml +122 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/raw/beep.ogg +0 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/values/attrs.xml +20 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/values/colors.xml +42 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/additional_files/res/values/ids.xml +31 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/ext_build.files +15 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/jni/src/barcode.cpp +16 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/CaptureActivity.java +778 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/CaptureActivityHandler.java +136 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/DecodeHandler.java +99 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/DecodeThread.java +121 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/FinishListener.java +48 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/InactivityTimer.java +71 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/LocaleManager.java +97 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/PlanarYUVLuminanceSource.java +133 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/ViewfinderResultPointCallback.java +34 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/ViewfinderView.java +157 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/camera/AutoFocusCallback.java +51 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/camera/CameraConfigurationManager.java +280 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/camera/CameraManager.java +318 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/camera/FlashlightManager.java +148 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/camera/PreviewCallback.java +59 -0
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/rhomobile/barcode/Barcode.java +44 -1
- data/lib/extensions/barcode/ext/barcode/platform/bb/Rakefile +1 -1
- data/lib/extensions/barcode/ext/barcode/platform/iphone/Classes/barcode.m +4 -0
- data/lib/extensions/barcode/ext/barcode/shared/ruby/barcode.i +5 -0
- data/lib/extensions/barcode/ext/barcode/shared/ruby/barcode_wrap.c +138 -389
- data/lib/extensions/barcode/ext/barcode/shared/src/zbar.c +5 -0
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/README.TXT +5 -0
- data/lib/extensions/debugger/CHANGELOG +10 -0
- data/lib/extensions/debugger/LICENSE +21 -0
- data/lib/extensions/debugger/README.md +8 -0
- data/lib/extensions/debugger/debugger.rb +57 -9
- data/lib/extensions/esri/ext/esri/platform/iphone/Classes/MapViewControllerESRI.h +24 -7
- data/lib/extensions/esri/ext/esri/platform/iphone/Classes/MapViewControllerESRI.m +18 -17
- data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/Nfc.java +9 -4
- data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/NfcActivity.java +1 -1
- data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/NfcMessage.java +0 -1
- data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/NfcMessagePack.java +0 -1
- data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/NfcRecord.java +1 -1
- data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/NfcTechActivity.java +0 -1
- data/lib/extensions/nfc/nfc.rb +9 -3
- data/lib/extensions/rholang/rholang/lang_cs.rb +3 -3
- data/lib/extensions/rholang/rholang/lang_da.rb +3 -3
- data/lib/extensions/rholang/rholang/lang_de.rb +3 -3
- data/lib/extensions/rholang/rholang/lang_es.rb +3 -3
- data/lib/extensions/rholang/rholang/lang_es_ar.rb +3 -3
- data/lib/extensions/rholang/rholang/lang_ko.rb +3 -3
- data/lib/extensions/rholang/rholang/lang_nl.rb +3 -3
- data/lib/extensions/rholang/rholang/lang_no.rb +3 -3
- data/lib/extensions/rholang/rholang/lang_pt_br.rb +4 -4
- data/lib/extensions/rholang/rholang/lang_se.rb +3 -3
- data/lib/extensions/rholang/rholang/lang_sr.rb +3 -3
- data/lib/framework/builtinME.rb +31 -2
- data/lib/framework/dateME.rb +26 -0
- data/lib/framework/res/back_btn.sym.png +0 -0
- data/lib/framework/res/blue_pushpin_small.sym.png +0 -0
- data/lib/framework/res/callout.sym.png +0 -0
- data/lib/framework/res/callout_link.sym.png +0 -0
- data/lib/framework/res/esri.sym.png +0 -0
- data/lib/framework/res/forward_btn.sym.png +0 -0
- data/lib/framework/res/home_btn.sym.png +0 -0
- data/{platform/wp7/WPApplication/rho/apps/public/images/android/btn_check_off.png → lib/framework/res/options_btn.sym.png} +0 -0
- data/lib/framework/res/refresh_btn.sym.png +0 -0
- data/lib/framework/rho/mapview.rb +26 -0
- data/lib/framework/rho/render.rb +34 -2
- data/lib/framework/rho/rho.rb +28 -2
- data/lib/framework/rho/rhoapplication.rb +26 -0
- data/lib/framework/rho/rhobluetooth.rb +70 -0
- data/lib/framework/rho/rhocontact.rb +26 -0
- data/lib/framework/rho/rhocontroller.rb +26 -0
- data/lib/framework/rho/rhoerror.rb +26 -0
- data/lib/framework/rho/rhoevent.rb +26 -0
- data/lib/framework/rho/rhoevent_bb.rb +26 -0
- data/lib/framework/rho/rhoevent_c.rb +26 -0
- data/lib/framework/rho/rhofsconnector.rb +25 -0
- data/lib/framework/rho/rhomsg.rb +26 -0
- data/lib/framework/rho/rhonativeviewmanager.rb +25 -0
- data/lib/framework/rho/rhosupport.rb +32 -1
- data/lib/framework/rho/rhotabbar.rb +27 -1
- data/lib/framework/rho/rhotoolbar.rb +26 -1
- data/lib/framework/rho/rhoutils.rb +26 -0
- data/lib/framework/rho/rhoviewhelpers.rb +26 -0
- data/lib/framework/rhoappmanifest.rb +26 -0
- data/lib/framework/rhodes.rb +1 -1
- data/lib/framework/rhoframework.rb +77 -0
- data/lib/framework/rhom/rhom.rb +30 -19
- data/lib/framework/rhom/rhom_db_adapter.rb +26 -19
- data/lib/framework/rhom/rhom_model.rb +25 -0
- data/lib/framework/rhom/rhom_object.rb +26 -19
- data/lib/framework/rhom/rhom_object_factory.rb +73 -55
- data/lib/framework/rhom/rhom_source.rb +26 -0
- data/lib/framework/rhosystem.rb +47 -16
- data/lib/framework/version.rb +1 -1
- data/lib/rhodes.rb +1 -1
- data/platform/android/Rhodes/AndroidManifest.xml +5 -4
- data/platform/android/Rhodes/default.properties +1 -1
- data/platform/android/Rhodes/jni/Android.mk +365 -0
- data/platform/android/Rhodes/jni/Application.mk +3 -0
- data/platform/android/Rhodes/jni/genconfig.h +17 -0
- data/platform/android/Rhodes/jni/include/rhodes.h +26 -0
- data/platform/android/Rhodes/jni/include/rhodes/JNIRhoRuby.h +71 -0
- data/platform/android/Rhodes/jni/include/rhodes/JNIRhodes.h +47 -33
- data/platform/android/Rhodes/jni/include/rhodes/RhoClassFactory.h +46 -1
- data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_RhoLogConf.h +11 -11
- data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_RhodesService.h +1 -9
- data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_camera_Camera.h +2 -2
- data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_file_RhoFileApi.h +8 -0
- data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_mainview_SplashScreen.h +39 -0
- data/platform/android/Rhodes/jni/include/rhodes/rhocryptimpl.h +26 -0
- data/platform/android/Rhodes/jni/include/rhodes/sslimpl.h +26 -0
- data/platform/android/Rhodes/jni/rhocaps.inc +12 -0
- data/platform/android/Rhodes/jni/src/JNIRhoRuby.cpp +204 -0
- data/platform/android/Rhodes/jni/src/RhoClassFactory.cpp +32 -5
- data/platform/android/Rhodes/jni/src/alert.cpp +29 -5
- data/platform/android/Rhodes/jni/src/bluetooth.cpp +68 -3
- data/platform/android/Rhodes/jni/src/callbacks.cpp +40 -15
- data/platform/android/Rhodes/jni/src/camera.cpp +84 -7
- data/platform/android/Rhodes/jni/src/datetimepicker.cpp +26 -0
- data/platform/android/Rhodes/jni/src/event.cpp +27 -0
- data/platform/android/Rhodes/jni/src/fileapi.cpp +66 -2
- data/platform/android/Rhodes/jni/src/geolocation.cpp +26 -0
- data/platform/android/Rhodes/jni/src/logconf.cpp +44 -29
- data/platform/android/Rhodes/jni/src/logger.cpp +26 -0
- data/platform/android/Rhodes/jni/src/mapview.cpp +30 -0
- data/platform/android/Rhodes/jni/src/menu.cpp +26 -0
- data/platform/android/Rhodes/jni/src/nativebar.cpp +27 -8
- data/platform/android/Rhodes/jni/src/nativeview.cpp +26 -0
- data/platform/android/Rhodes/jni/src/navbar.cpp +27 -0
- data/platform/android/Rhodes/jni/src/phonebook.cpp +27 -0
- data/platform/android/Rhodes/jni/src/rhoconf.cpp +26 -0
- data/platform/android/Rhodes/jni/src/rhocryptimpl.cpp +26 -0
- data/platform/android/Rhodes/jni/src/rhodes.cpp +40 -593
- data/platform/android/Rhodes/jni/src/rhodesapp.cpp +326 -0
- data/platform/android/Rhodes/jni/src/rhodessystem.cpp +186 -0
- data/platform/android/Rhodes/jni/src/ringtones.cpp +27 -0
- data/platform/android/Rhodes/jni/src/signature.cpp +26 -0
- data/platform/android/Rhodes/jni/src/socketimpl.cpp +26 -0
- data/platform/android/Rhodes/jni/src/splashscreen.cpp +30 -4
- data/platform/android/Rhodes/jni/src/sslimpl.cpp +27 -0
- data/platform/android/Rhodes/jni/src/webview.cpp +27 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/BaseActivity.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/HttpLog.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/LocalFileProvider.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/Logger.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/NativeBar.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/NativeLibraries.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/NavBar.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/Push.java +27 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/PushReceiver.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/PushService.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoConf.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoCryptImpl.java +29 -2
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoLogConf.java +36 -30
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoMenu.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesActivity.java +81 -73
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesActivityListener.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesActivityStartupListeners.java +1 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesAppOptions.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesApplication.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesService.java +83 -38
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RingtoneManager.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/WebView.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/alert/Alert.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/alert/PopupActivity.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/alert/StatusNotification.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/IRhoBluetoothManager.java +33 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothDeviceListActivity.java +35 -2
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothManager.java +52 -3
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothManagerNew.java +182 -56
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothManagerOld.java +41 -2
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothSession.java +60 -23
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/UUIDHelper.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/Camera.java +162 -27
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraNewService.java +152 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraOldService.java +49 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraSemiService.java +140 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraService.java +49 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraSettings.java +147 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/FileList.java +27 -21
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/ImageCapture.java +124 -53
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/ImageCaptureCallback.java +39 -25
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/datetime/DateTimePicker.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/datetime/DateTimePickerScreen.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/event/Event.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/event/EventStore.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/file/RhoFileApi.java +75 -9
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/geolocation/GeoLocation.java +25 -20
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/geolocation/GeoLocationImpl.java +25 -20
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/MainView.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/SimpleMainView.java +28 -22
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/{SplashScreen.java → mainview/SplashScreen.java} +73 -22
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/TabbedMainView.java +27 -21
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/Annotation.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/AnnotationsOverlay.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/ExtrasHolder.java +51 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/GoogleMapView.java +41 -3
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapView.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MultiTouchHandler.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/OneTouchHandler.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/TouchHandler.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/nativeview/RhoNativeViewManager.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/Contact.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/ContactAccessor.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/ContactAccessorNew.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/ContactAccessorOld.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/ContactField.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/Phonebook.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/signature/ImageCapture.java +26 -20
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/signature/Signature.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/signature/SignatureView.java +25 -19
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/RhoSockAddr.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/RhoSocket.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/RhoSocketImpl.java +28 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/SSLImpl.java +85 -30
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/ui/AboutDialog.java +25 -20
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/ui/LogOptionsDialog.java +32 -30
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/ui/LogViewDialog.java +29 -28
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/ExternalHttpHandler.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/LocalFileHandler.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/MailUriHandler.java +25 -20
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/SmsUriHandler.java +25 -20
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/TelUriHandler.java +25 -20
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/UriHandler.java +25 -20
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/VideoUriHandler.java +25 -20
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/util/ContextFactory.java +38 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/util/PerformOnUiThread.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/util/PhoneId.java +137 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/{Utils.java → util/Utils.java} +27 -17
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/ChromeClientNew.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/ChromeClientOld.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettings.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java +27 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsOld.java +26 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebViewClient.java +107 -0
- data/platform/android/build/RhodesSRC_build.files +11 -4
- data/platform/android/build/android.rake +79 -116
- data/platform/android/build/android_tools.rb +117 -0
- data/platform/android/build/androidcommon.rb +30 -4
- data/platform/android/build/libjson_build.files +1 -1
- data/platform/android/build/librhodes_build.files +3 -0
- data/platform/bb/Hsqldb/src/com/rho/db/FileUtilBB.java +26 -0
- data/platform/bb/Hsqldb/src/com/rho/db/HsqlDBResult.java +26 -0
- data/platform/bb/Hsqldb/src/com/rho/db/HsqlDBRowResult.java +26 -0
- data/platform/bb/Hsqldb/src/com/rho/db/HsqlDBStorage.java +26 -0
- data/platform/bb/Hsqldb/src/com/rho/db/Journal.java +26 -0
- data/platform/bb/Hsqldb/src/j2me/math/BigDecimal.java +26 -0
- data/platform/bb/Hsqldb/src/j2me/math/BigInteger.java +26 -0
- data/platform/bb/Hsqldb/src/j2me/sql/Date.java +26 -0
- data/platform/bb/Hsqldb/src/j2me/sql/Time.java +26 -0
- data/platform/bb/Hsqldb/src/j2me/sql/Timestamp.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/DateTimeTokenizer.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/FilePath.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/IRhoLogSink.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/IRhoRubyHelper.java +27 -0
- data/platform/bb/RubyVM/src/com/rho/Mutex.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/Properties.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoAppAdapter.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoClassFactory.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoConf.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoCrypto.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoEmptyLogger.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoEmptyProfiler.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoLogConf.java +52 -1
- data/platform/bb/RubyVM/src/com/rho/RhoLogFileSink.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoLogOutputSink.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoLogger.java +111 -2
- data/platform/bb/RubyVM/src/com/rho/RhoParamArray.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoParams.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoProfiler.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoRuby.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoThread.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhoTimer.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/RhodesApp.java +32 -3
- data/platform/bb/RubyVM/src/com/rho/SplashScreen.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/Sprintf.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/StringScanner.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/TestProfiler.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/TestRhoLog.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/ThreadQueue.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/TimeInterval.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/Tokenizer.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/db/DBAdapter.java +32 -0
- data/platform/bb/RubyVM/src/com/rho/db/DBAttrManager.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/db/DBException.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/db/IDBCallback.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/db/IDBResult.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/db/IDBStorage.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/file/FileAccessBB.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/file/IFile.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/file/IFileAccess.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/file/IRAFile.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/file/RandomAccessFile.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/file/RhoFile.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/file/SimpleFile.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/net/AsyncHttp.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/net/IHttpConnection.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/net/NetRequest.java +295 -230
- data/platform/bb/RubyVM/src/com/rho/net/RhoConnection.java +29 -16
- data/platform/bb/RubyVM/src/com/rho/rjson/RJSONTokener.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/sync/ISyncProtocol.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/sync/ISyncStatusListener.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/sync/JSONArrayIterator.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/sync/JSONEntry.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/sync/JSONStructIterator.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/sync/SyncEngine.java +26 -19
- data/platform/bb/RubyVM/src/com/rho/sync/SyncNotify.java +26 -0
- data/platform/bb/RubyVM/src/com/rho/sync/SyncProtocol_3.java +31 -5
- data/platform/bb/RubyVM/src/com/rho/sync/SyncSource.java +49 -37
- data/platform/bb/RubyVM/src/com/rho/sync/SyncThread.java +40 -18
- data/platform/bb/RubyVM/src/com/xruby/runtime/builtin/RubyDir.java +2 -1
- data/platform/bb/RubyVM/src/com/xruby/runtime/builtin/RubyIOFileExecutor.java +7 -2
- data/platform/bb/RubyVM/src/com/xruby/runtime/builtin/RubyTime.java +43 -13
- data/platform/bb/RubyVM/src/j2me/lang/ArrayMe.java +26 -0
- data/platform/bb/RubyVM/src/j2me/lang/AssertMe.java +26 -0
- data/platform/bb/RubyVM/src/j2me/lang/CalendarMe.java +28 -1
- data/platform/bb/RubyVM/src/j2me/lang/CharacterDataLatin1.java +26 -0
- data/platform/bb/RubyVM/src/j2me/lang/CharacterMe.java +26 -0
- data/platform/bb/RubyVM/src/j2me/lang/Convert.java +26 -0
- data/platform/bb/RubyVM/src/j2me/lang/MathEx.java +26 -0
- data/platform/bb/RubyVM/src/j2me/lang/PrintStreamMe.java +26 -0
- data/platform/bb/RubyVM/src/j2me/lang/StringBufferMe.java +26 -0
- data/platform/bb/RubyVM/src/j2me/lang/StringMe.java +26 -0
- data/platform/bb/RubyVM/src/j2me/lang/SystemMe.java +26 -0
- data/platform/bb/RubyVM/src/j2me/lang/TimeZoneMe.java +26 -0
- data/platform/bb/RubyVM/src/j2me/math/HugeDigit.java +26 -0
- data/platform/bb/RubyVM/src/j2me/math/HugeInt.java +26 -0
- data/platform/bb/RubyVM/src/j2me/math/HugeIntHelper.java +26 -0
- data/platform/bb/RubyVM/src/j2me/math/Number.java +26 -0
- data/platform/bb/RubyVM/src/j2me/nio/channels/FileChannel.java +26 -0
- data/platform/bb/RubyVM/src/j2me/nio/channels/Pipe.java +26 -0
- data/platform/bb/RubyVM/src/j2me/util/WeakHashMap.java +26 -0
- data/platform/bb/RubyVM/src/j2me/util/concurrent/ConcurrentHashMap.java +26 -0
- data/platform/bb/RubyVM/src/j2me/util/concurrent/locks/ReentrantLock.java +26 -0
- data/platform/bb/build/bb.rake +45 -6
- data/platform/bb/rhodes/platform/4.2.0/com/rho/BBVersionSpecific.java +26 -0
- data/platform/bb/rhodes/platform/4.2.1/com/rho/BBVersionSpecific.java +26 -0
- data/platform/bb/rhodes/platform/4.2.2/com/rho/BBVersionSpecific.java +26 -0
- data/platform/bb/rhodes/platform/4.2/com/rho/BBVersionSpecific.java +26 -0
- data/platform/bb/rhodes/platform/4.7/com/rho/RhoMainScreen.java +26 -0
- data/platform/bb/rhodes/platform/5.0/com/rho/BrowserAdapter5.java +26 -0
- data/platform/bb/rhodes/platform/5.0/com/rho/RhodesApplicationPlatform.java +26 -0
- data/platform/bb/rhodes/platform/5.0/com/rho/db/SqliteCopyResult.java +26 -0
- data/platform/bb/rhodes/platform/5.0/com/rho/db/SqliteResult.java +26 -0
- data/platform/bb/rhodes/platform/5.0/com/rho/db/SqliteStorage.java +26 -0
- data/platform/bb/rhodes/platform/common/com/rho/BBVersionSpecific.java +26 -0
- data/platform/bb/rhodes/platform/common/com/rho/BrowserAdapter5.java +26 -0
- data/platform/bb/rhodes/platform/common/com/rho/RhoMainScreen.java +26 -0
- data/platform/bb/rhodes/platform/common/com/rho/RhodesApplicationPlatform.java +26 -0
- data/platform/bb/rhodes/platform/common/com/rho/db/SqliteCopyResult.java +26 -0
- data/platform/bb/rhodes/platform/common/com/rho/db/SqliteResult.java +26 -0
- data/platform/bb/rhodes/platform/common/com/rho/db/SqliteStorage.java +26 -0
- data/platform/bb/rhodes/src/com/rho/BBVersionSpecific.java +26 -0
- data/platform/bb/rhodes/src/com/rho/BrowserAdapter.java +26 -0
- data/platform/bb/rhodes/src/com/rho/BrowserAdapter5.java +26 -0
- data/platform/bb/rhodes/src/com/rho/IBrowserAdapter.java +26 -0
- data/platform/bb/rhodes/src/com/rho/RhoMainScreen.java +26 -0
- data/platform/bb/rhodes/src/com/rho/RhoRubyHelper.java +45 -1
- data/platform/bb/rhodes/src/com/rho/RhodesApplicationPlatform.java +26 -0
- data/platform/bb/rhodes/src/com/rho/Version.java +26 -0
- data/platform/bb/rhodes/src/com/rho/db/SqliteCopyResult.java +26 -0
- data/platform/bb/rhodes/src/com/rho/db/SqliteResult.java +26 -0
- data/platform/bb/rhodes/src/com/rho/db/SqliteStorage.java +26 -0
- data/platform/bb/rhodes/src/com/rho/file/Jsr75File.java +26 -0
- data/platform/bb/rhodes/src/com/rho/file/Jsr75RAFileImpl.java +28 -2
- data/platform/bb/rhodes/src/com/rho/file/PersistRAFileImpl.java +29 -2
- data/platform/bb/rhodes/src/com/rho/net/BaseSocket.java +26 -0
- data/platform/bb/rhodes/src/com/rho/net/NetworkAccess.java +26 -0
- data/platform/bb/rhodes/src/com/rho/net/SSLSocket.java +26 -0
- data/platform/bb/rhodes/src/com/rho/net/TCPSocket.java +26 -0
- data/platform/bb/rhodes/src/com/rho/net/bb/BBHttpConnection.java +26 -0
- data/platform/bb/rhodes/src/com/rho/net/bb/NativeBBHttpConnection.java +26 -0
- data/platform/bb/rhodes/src/com/rho/rubyext/Alert.java +26 -0
- data/platform/bb/rhodes/src/com/rho/rubyext/GeoLocation.java +26 -0
- data/platform/bb/rhodes/src/com/rho/rubyext/RhoCalendar.java +26 -0
- data/platform/bb/rhodes/src/com/rho/rubyext/RhoPhonebook.java +26 -0
- data/platform/bb/rhodes/src/com/rho/rubyext/System.java +27 -1
- data/platform/bb/rhodes/src/com/rho/rubyext/WebView.java +59 -0
- data/platform/bb/rhodes/src/com/rho/rubyext/XMLParser.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/LogOptionsScreen.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/LogScreen.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/NativeBar.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/PushListeningThread.java +27 -1
- data/platform/bb/rhodes/src/rhomobile/RhodesApplication.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/RingtoneManager.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/SecondaryResourceFetchThread.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/Utilities.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/bluetooth/BluetoothManager.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/bluetooth/BluetoothPort.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/bluetooth/BluetoothScreen.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/camera/Camera.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/camera/CameraFilesListener.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/camera/CameraScreen.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/camera/ImageBrowserScreen.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/datetime/DateTimePicker.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/datetime/DateTimeScreen.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/mapview/Annotation.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/mapview/ESRIMapField.java +736 -695
- data/platform/bb/rhodes/src/rhomobile/mapview/ESRIMapProvider.java +40 -14
- data/platform/bb/rhodes/src/rhomobile/mapview/GeoCoding.java +39 -13
- data/platform/bb/rhodes/src/rhomobile/mapview/GoogleGeoCoding.java +216 -174
- data/platform/bb/rhodes/src/rhomobile/mapview/GoogleMapField.java +87 -45
- data/platform/bb/rhodes/src/rhomobile/mapview/GoogleMapProvider.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/mapview/MapProvider.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/mapview/MapTools.java +105 -79
- data/platform/bb/rhodes/src/rhomobile/mapview/MapView.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/mapview/MapViewParent.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/mapview/MapViewScreen.java +26 -0
- data/platform/bb/rhodes/src/rhomobile/mapview/RhoMapField.java +26 -0
- data/platform/iphone/Classes/AppManager/AppLoader.h +25 -7
- data/platform/iphone/Classes/AppManager/AppLoader.m +26 -7
- data/platform/iphone/Classes/AppManager/AppManager.h +25 -7
- data/platform/iphone/Classes/AppManager/AppManager.m +26 -8
- data/platform/iphone/Classes/AppManager/AppManagerI.h +25 -8
- data/platform/iphone/Classes/Bluetooth/Bluetooth.h +39 -10
- data/platform/iphone/Classes/Bluetooth/Bluetooth.m +158 -28
- data/platform/iphone/Classes/Camera/PickImageDelegate.h +72 -9
- data/platform/iphone/Classes/Camera/PickImageDelegate.m +432 -15
- data/platform/iphone/Classes/DateTime.h +25 -7
- data/platform/iphone/Classes/DateTime.m +25 -7
- data/platform/iphone/Classes/DateTimePicker.m +25 -7
- data/platform/iphone/Classes/DateTimePickerDelegate.h +25 -7
- data/platform/iphone/Classes/DateTimePickerDelegate.m +25 -7
- data/platform/iphone/Classes/Dispatcher/Dispatcher.c +26 -8
- data/platform/iphone/Classes/Dispatcher/Dispatcher.h +25 -8
- data/platform/iphone/Classes/Event/Event.h +25 -7
- data/platform/iphone/Classes/GeoLocation/LocationController.h +25 -7
- data/platform/iphone/Classes/LogOptionsController.h +25 -7
- data/platform/iphone/Classes/LogOptionsController.m +25 -7
- data/platform/iphone/Classes/LogViewController.h +25 -7
- data/platform/iphone/Classes/LogViewController.m +27 -9
- data/platform/iphone/Classes/MapView/GoogleGeocoder.h +26 -0
- data/platform/iphone/Classes/MapView/GoogleGeocoder.m +26 -0
- data/platform/iphone/Classes/MapView/MapAnnotation.h +26 -6
- data/platform/iphone/Classes/MapView/MapAnnotation.m +25 -6
- data/platform/iphone/Classes/MapView/MapViewController.h +27 -8
- data/platform/iphone/Classes/MapView/MapViewController.m +26 -6
- data/platform/iphone/Classes/MapView/MapViewManager.h +26 -4
- data/platform/iphone/Classes/MapView/MapViewManager.m +25 -5
- data/platform/iphone/Classes/NativeBar.h +25 -7
- data/platform/iphone/Classes/NativeBar.m +54 -39
- data/platform/iphone/Classes/NativeView/NVDelegate.h +25 -7
- data/platform/iphone/Classes/NativeView/NVDelegate.m +25 -7
- data/platform/iphone/Classes/NativeView/NVViewController.h +25 -7
- data/platform/iphone/Classes/NativeView/NVViewController.m +25 -7
- data/platform/iphone/Classes/NativeView/RhoNativeViewManager.mm +27 -10
- data/platform/iphone/Classes/NativeView/RhoNativeViewManagerOC.h +25 -7
- data/platform/iphone/Classes/NavBar.h +25 -7
- data/platform/iphone/Classes/NavBar.m +25 -7
- data/platform/iphone/Classes/Phonebook/phonebook.h +26 -8
- data/platform/iphone/Classes/Phonebook/phonebook.m +25 -8
- data/platform/iphone/Classes/RhoAlert.h +25 -7
- data/platform/iphone/Classes/RhoAlert.m +27 -9
- data/platform/iphone/Classes/RhoDelegate.h +25 -7
- data/platform/iphone/Classes/RhoDelegate.m +25 -7
- data/platform/iphone/Classes/RhoMainView.h +26 -8
- data/platform/iphone/Classes/RhoViewController.h +25 -7
- data/platform/iphone/Classes/RhoViewController.m +25 -7
- data/platform/iphone/Classes/Rhodes.h +25 -8
- data/platform/iphone/Classes/Rhodes.m +50 -6
- data/platform/iphone/Classes/RingtoneManager.h +25 -7
- data/platform/iphone/Classes/RingtoneManager.m +25 -7
- data/platform/iphone/Classes/Signature/SignatureDelegate.h +25 -7
- data/platform/iphone/Classes/Signature/SignatureDelegate.m +25 -7
- data/platform/iphone/Classes/Signature/SignatureView.h +25 -7
- data/platform/iphone/Classes/Signature/SignatureView.m +25 -15
- data/platform/iphone/Classes/Signature/SignatureViewController.h +25 -7
- data/platform/iphone/Classes/Signature/SignatureViewController.m +25 -7
- data/platform/iphone/Classes/SimpleMainView.h +25 -7
- data/platform/iphone/Classes/SimpleMainView.m +31 -7
- data/platform/iphone/Classes/SplashViewController.h +25 -7
- data/platform/iphone/Classes/SplashViewController.m +25 -7
- data/platform/iphone/Classes/SplitView/LeftViewController.h +25 -7
- data/platform/iphone/Classes/SplitView/LeftViewController.m +25 -7
- data/platform/iphone/Classes/SplitView/RightViewController.h +25 -7
- data/platform/iphone/Classes/SplitView/RightViewController.m +25 -7
- data/platform/iphone/Classes/SplitView/SplitViewDelegate.h +25 -7
- data/platform/iphone/Classes/SplitView/SplitViewDelegate.m +25 -7
- data/platform/iphone/Classes/SplitView/SplittedMainView.h +25 -7
- data/platform/iphone/Classes/SplitView/SplittedMainView.m +29 -7
- data/platform/iphone/Classes/TabbedMainView.h +25 -7
- data/platform/iphone/Classes/TabbedMainView.m +42 -20
- data/platform/iphone/Classes/Utils/ParamsWrapper.h +25 -7
- data/platform/iphone/Classes/Utils/ParamsWrapper.m +25 -7
- data/platform/iphone/Classes/WebView.m +25 -7
- data/platform/iphone/Classes/rho/common/SplashScreenImpl.cpp +25 -8
- data/platform/iphone/Classes/rho/common/SplashScreenImpl.h +25 -8
- data/platform/iphone/Classes/rho/net/NetRequestImpl.m +26 -19
- data/platform/iphone/Info.plist +1 -1
- data/platform/iphone/Tests/Classes/TestsAppDelegate.h +25 -7
- data/platform/iphone/Tests/Classes/TestsAppDelegate.m +25 -7
- data/platform/iphone/main.m +25 -7
- data/platform/iphone/rbuild/findRhodesGuid.rb +26 -0
- data/platform/iphone/rbuild/iphone.rake +42 -6
- data/platform/iphone/rhoextlib/dosyscall.c +26 -0
- data/platform/iphone/rhoextlib/syscall.c +26 -0
- data/platform/iphone/rhoextlib/syscall.h +26 -7
- data/platform/iphone/rhorubylib/rhorubylib.xcodeproj/project.pbxproj +2 -0
- data/platform/iphone/rhosynclib/rhosynclib.xcodeproj/project.pbxproj +8 -8
- data/platform/linux/Rakefile +26 -0
- data/platform/linux/tasks/linux.rake +26 -0
- data/platform/osx/Rhodes Debugger/DataSource.h +26 -0
- data/platform/osx/Rhodes Debugger/DebugConnection.h +25 -4
- data/platform/osx/Rhodes Debugger/DebuggerController.h +26 -0
- data/platform/osx/Rhodes Debugger/FileSystemItem.h +26 -0
- data/platform/osx/Rhodes Debugger/GdbConnection.h +25 -7
- data/platform/osx/Rhodes Debugger/LogController.h +25 -3
- data/platform/osx/Rhodes Debugger/TcpConnection.h +25 -4
- data/platform/osx/Rhodes Launcher/RhodesController.h +25 -7
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtGui.framework/Resources/qt_menu.nib/classes.nib +59 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtGui.framework/Resources/qt_menu.nib/info.nib +18 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtGui.framework/Resources/qt_menu.nib/keyedobjects.nib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtNetwork.framework/Versions/4/QtNetwork +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtWebKit.framework/Versions/4/QtWebKit +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/phonon.framework/Versions/4/phonon +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Info.plist +20 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/MacOS/RhoSimulator +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PkgInfo +1 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqgif.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqico.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqjpeg.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqmng.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqtiff.dylib +0 -0
- data/platform/{symbian/build/rhologpath.txt → osx/bin/RhoSimulator/RhoSimulator.app/Contents/Resources/empty.lproj} +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Resources/qt.conf +2 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Resources/rho.icns +0 -0
- data/platform/osx/build/osx.rake +88 -0
- data/platform/shared/{SyncClient/SyncClient.cpp → RhoConnectClient/RhoConnectClient.cpp} +78 -52
- data/platform/shared/RhoConnectClient/RhoConnectClient.h +121 -0
- data/platform/shared/RhoConnectClient/RhoError.h +55 -0
- data/platform/shared/common/AppMenu.cpp +26 -0
- data/platform/shared/common/AppMenu.h +26 -0
- data/platform/shared/common/AutoPointer.h +26 -0
- data/platform/shared/common/IRhoBrowser.h +26 -0
- data/platform/shared/common/IRhoClassFactory.h +26 -0
- data/platform/shared/common/IRhoCrypt.h +26 -0
- data/platform/shared/common/IRhoThreadImpl.h +26 -0
- data/platform/shared/common/InputStream.h +26 -0
- data/platform/shared/common/PosixThreadImpl.cpp +31 -0
- data/platform/shared/common/PosixThreadImpl.h +26 -0
- data/platform/shared/common/RhoAppAdapter.h +26 -0
- data/platform/shared/common/RhoConf.cpp +28 -2
- data/platform/shared/common/RhoConf.h +32 -1
- data/platform/shared/common/RhoDefs.h +32 -0
- data/platform/shared/common/RhoFatalError.h +27 -1
- data/platform/shared/common/RhoFile.cpp +30 -4
- data/platform/shared/common/RhoFile.h +26 -0
- data/platform/shared/common/RhoFilePath.h +26 -0
- data/platform/shared/common/RhoMath.cpp +26 -0
- data/platform/shared/common/RhoMath.h +26 -0
- data/platform/shared/common/RhoMutexLock.h +39 -3
- data/platform/shared/common/RhoNativeViewManager.h +26 -0
- data/platform/shared/common/RhoPort.h +55 -17
- data/platform/shared/common/RhoSimConf.cpp +58 -0
- data/platform/shared/common/RhoSimConf.h +62 -0
- data/platform/shared/common/RhoStd.h +26 -0
- data/platform/shared/common/RhoSystem.h +28 -2
- data/platform/shared/common/RhoThread.cpp +26 -0
- data/platform/shared/common/RhoThread.h +26 -0
- data/platform/shared/common/RhoTime.cpp +26 -0
- data/platform/shared/common/RhoTime.h +33 -4
- data/platform/shared/common/RhodesApp.cpp +170 -68
- data/platform/shared/common/RhodesApp.h +34 -6
- data/platform/shared/common/RhodesAppBase.cpp +77 -8
- data/platform/shared/common/RhodesAppBase.h +31 -4
- data/platform/shared/common/SplashScreen.cpp +29 -0
- data/platform/shared/common/SplashScreen.h +26 -0
- data/platform/shared/common/StringConverter.h +26 -0
- data/platform/shared/common/ThreadQueue.cpp +26 -0
- data/platform/shared/common/ThreadQueue.h +26 -0
- data/platform/shared/common/Tokenizer.cpp +26 -0
- data/platform/shared/common/Tokenizer.h +26 -0
- data/platform/shared/common/iphone/RhoClassFactory.cpp +26 -0
- data/platform/shared/common/iphone/RhoClassfactory.h +44 -4
- data/platform/shared/common/iphone/RhoCryptImpl.h +26 -0
- data/platform/shared/common/iphone/RhoCryptImpl.mm +26 -0
- data/platform/shared/common/iphone/RhoFileImpl.m +26 -7
- data/platform/shared/common/iphone/RhoThreadImpl.m +26 -7
- data/platform/shared/common/map/ESRIMapEngine.cpp +26 -0
- data/platform/shared/common/map/ESRIMapEngine.h +26 -0
- data/platform/shared/common/map/GoogleMapEngine.cpp +26 -0
- data/platform/shared/common/map/GoogleMapEngine.h +26 -0
- data/platform/shared/common/map/MapEngine.cpp +28 -2
- data/platform/shared/common/map/MapEngine.h +26 -0
- data/platform/shared/common/rhoparams.cpp +26 -0
- data/platform/shared/common/rhoparams.h +26 -0
- data/platform/shared/common/stat.h +26 -0
- data/platform/shared/curl/lib/config-symbian.h +824 -0
- data/platform/shared/curl/lib/hostip.c +7 -0
- data/platform/shared/curl/lib/http.c +6 -0
- data/platform/shared/curl/lib/setup_once.h +4 -0
- data/platform/shared/db/DBAdapter.cpp +34 -2
- data/platform/shared/db/DBAdapter.h +26 -0
- data/platform/shared/db/DBAttrManager.cpp +26 -0
- data/platform/shared/db/DBAttrManager.h +26 -0
- data/platform/shared/db/DBResult.cpp +26 -0
- data/platform/shared/db/DBResult.h +26 -0
- data/platform/shared/json/JSONIterator.cpp +26 -0
- data/platform/shared/json/JSONIterator.h +26 -0
- data/platform/shared/json/RJSONTokener.c +3 -3
- data/platform/shared/json/json.h +1 -1
- data/platform/shared/json/{debug.c → json_debug.c} +2 -2
- data/platform/shared/json/{debug.h → json_debug.h} +1 -1
- data/platform/shared/json/json_object.c +1 -1
- data/platform/shared/json/json_tokener.c +1 -1
- data/platform/shared/json/json_util.c +1 -1
- data/platform/shared/json/printbuf.c +1 -1
- data/platform/shared/logging/RhoATLTrace.h +26 -0
- data/platform/shared/logging/RhoLog.cpp +90 -0
- data/platform/shared/logging/RhoLog.h +29 -1
- data/platform/shared/logging/RhoLogCat.h +26 -0
- data/platform/shared/logging/RhoLogConf.cpp +72 -10
- data/platform/shared/logging/RhoLogConf.h +39 -5
- data/platform/shared/logging/RhoLogSink.cpp +26 -0
- data/platform/shared/logging/RhoLogSink.h +26 -0
- data/platform/shared/logging/RhoPlainLog.cpp +36 -8
- data/platform/shared/logging/test/TestLog.cpp +26 -0
- data/platform/shared/logging/test/TestPlainLog.c +26 -0
- data/platform/shared/logging/test/main.cpp +26 -0
- data/platform/shared/net/AsyncHttp.cpp +27 -0
- data/platform/shared/net/AsyncHttp.h +28 -1
- data/platform/shared/net/CURLNetRequest.cpp +81 -11
- data/platform/shared/net/CURLNetRequest.h +30 -0
- data/platform/shared/net/CompatWince.cpp +26 -0
- data/platform/shared/net/CompatWince.h +26 -0
- data/platform/shared/net/HttpServer.cpp +82 -23
- data/platform/shared/net/HttpServer.h +27 -1
- data/platform/shared/net/INetRequest.cpp +26 -0
- data/platform/shared/net/INetRequest.h +26 -0
- data/platform/shared/net/RawSocket.cpp +38 -12
- data/platform/shared/net/RawSocket.h +28 -2
- data/platform/shared/net/URI.cpp +26 -6
- data/platform/shared/net/URI.h +26 -2
- data/platform/shared/net/iphone/sslimpl.cpp +39 -10
- data/platform/shared/net/iphone/sslimpl.h +25 -8
- data/platform/shared/net/ssl.cpp +26 -0
- data/platform/shared/net/ssl.h +26 -0
- data/platform/shared/qt/RhoSimulator.pro +7 -0
- data/platform/shared/qt/curl/curl.pro +181 -0
- data/platform/shared/qt/pbxproj2pro.pl +21 -0
- data/platform/shared/qt/pro_vcproj_diff.pl +59 -0
- data/platform/shared/qt/rhodes/DateTimeDialog.cpp +91 -0
- data/platform/shared/qt/rhodes/DateTimeDialog.h +54 -0
- data/platform/shared/qt/rhodes/DateTimeDialog.ui +68 -0
- data/platform/shared/qt/rhodes/ExternalWebView.cpp +46 -0
- data/platform/shared/qt/rhodes/ExternalWebView.h +49 -0
- data/platform/{wm/rhodes/emulator → shared/qt/rhodes}/ExternalWebView.ui +0 -0
- data/platform/shared/qt/rhodes/MainWindowCallback.h +51 -0
- data/platform/shared/qt/rhodes/QtMainWindow.cpp +819 -0
- data/platform/shared/qt/rhodes/QtMainWindow.h +148 -0
- data/platform/{wm/rhodes/emulator → shared/qt/rhodes}/QtMainWindow.ui +13 -1
- data/platform/shared/qt/rhodes/QtNativeTabBar.cpp +112 -0
- data/platform/shared/qt/rhodes/QtNativeTabBar.h +37 -0
- data/platform/shared/qt/rhodes/QtWebInspector.cpp +71 -0
- data/platform/shared/qt/rhodes/QtWebInspector.h +53 -0
- data/platform/shared/qt/rhodes/QtWebInspector.ui +41 -0
- data/platform/shared/qt/rhodes/impl/AlertImpl.cpp +153 -0
- data/platform/shared/qt/rhodes/impl/AlertImpl.h +65 -0
- data/platform/shared/qt/rhodes/impl/BluetoothImpl.cpp +109 -0
- data/platform/shared/qt/rhodes/impl/CalendarImpl.cpp +52 -0
- data/platform/shared/qt/rhodes/impl/CameraImpl.cpp +54 -0
- data/platform/shared/qt/rhodes/impl/DateTimePickerImpl.cpp +61 -0
- data/platform/shared/qt/rhodes/impl/DateTimePickerImpl.h +70 -0
- data/platform/shared/qt/rhodes/impl/GeoLocationImpl.cpp +65 -0
- data/platform/shared/qt/rhodes/impl/MainWindowImpl.cpp +727 -0
- data/platform/shared/qt/rhodes/impl/MainWindowImpl.h +160 -0
- data/platform/shared/qt/rhodes/impl/MapViewImpl.cpp +60 -0
- data/platform/shared/qt/rhodes/impl/NativeTabbarImpl.cpp +131 -0
- data/platform/shared/qt/rhodes/impl/NativeTabbarImpl.h +96 -0
- data/platform/shared/qt/rhodes/impl/NativeToolbarImpl.cpp +124 -0
- data/platform/shared/qt/rhodes/impl/NativeToolbarImpl.h +71 -0
- data/platform/shared/qt/rhodes/impl/PhonebookImpl.cpp +103 -0
- data/platform/shared/qt/rhodes/impl/RhoClassFactoryImpl.cpp +56 -0
- data/platform/shared/qt/rhodes/impl/RhoClassFactoryImpl.h +82 -0
- data/platform/shared/qt/rhodes/impl/RhoFileImpl.cpp +63 -0
- data/platform/shared/qt/rhodes/impl/RhoNativeViewManagerImpl.cpp +86 -0
- data/platform/shared/qt/rhodes/impl/RhoThreadImpl.cpp +114 -0
- data/platform/shared/qt/rhodes/impl/RhoThreadImpl.h +72 -0
- data/platform/shared/qt/rhodes/impl/RhodesImpl.cpp +193 -0
- data/platform/shared/qt/rhodes/impl/RingtoneManagerImpl.cpp +51 -0
- data/platform/shared/qt/rhodes/impl/SignatureImpl.cpp +43 -0
- data/platform/shared/qt/rhodes/impl/SystemImpl.cpp +229 -0
- data/platform/shared/qt/rhodes/impl/WebViewImpl.cpp +114 -0
- data/platform/shared/qt/rhodes/main.cpp +208 -0
- data/platform/shared/qt/rhodes/resources/rho.icns +0 -0
- data/platform/shared/qt/rhodes/resources/rho.ico +0 -0
- data/platform/shared/qt/rhodes/rhodes.pro +133 -0
- data/platform/shared/qt/rholib/rholib.pro +138 -0
- data/platform/shared/qt/rubylib/rubylib.pro +183 -0
- data/platform/shared/qt/sqlite3/sqlite3.pro +40 -0
- data/platform/shared/qt/syncengine/syncengine.pro +82 -0
- data/platform/shared/ruby/ext/alert/alert.i +13 -5
- data/platform/shared/ruby/ext/alert/alert_wrap.c +100 -11
- data/platform/shared/ruby/ext/asynchttp/asynchttp_wrap.c +391 -111
- data/platform/shared/ruby/ext/bluetooth/bluetooth.i +28 -14
- data/platform/shared/ruby/ext/bluetooth/bluetooth_wrap.c +311 -424
- data/platform/shared/ruby/ext/calendar/calendar_wrap.c +2278 -2278
- data/platform/shared/ruby/ext/calendar/event_wrap.c +2152 -2151
- data/platform/shared/ruby/ext/camera/camera.i +22 -2
- data/platform/shared/ruby/ext/camera/camera_wrap.c +448 -115
- data/platform/shared/ruby/ext/datetimepicker/datetimepicker_wrap.c +404 -126
- data/platform/shared/ruby/ext/geolocation/geolocation_wrap.c +17 -14
- data/platform/shared/ruby/ext/mapview/mapview_wrap.c +384 -104
- data/platform/shared/ruby/ext/nativebar/nativebar.i +0 -3
- data/platform/shared/ruby/ext/nativebar/nativebar_wrap.c +0 -35
- data/platform/shared/ruby/ext/nativeviewmanager/nativeviewmanager_wrap.c +5 -5
- data/platform/shared/ruby/ext/navbar/navbar_wrap.c +384 -104
- data/platform/shared/ruby/ext/phonebook/phonebook.h +26 -0
- data/platform/shared/ruby/ext/phonebook/phonebook_wrap.c +422 -144
- data/platform/shared/ruby/ext/rho/rhoruby.c +56 -13
- data/platform/shared/ruby/ext/rho/rhoruby.h +30 -10
- data/platform/shared/ruby/ext/rho/rhosupport.c +106 -33
- data/platform/shared/ruby/ext/rhoconf/rhoconf.i +6 -2
- data/platform/shared/ruby/ext/rhoconf/rhoconf_wrap.c +24 -8
- data/platform/shared/ruby/ext/ringtones/ringtones_wrap.c +389 -109
- data/platform/shared/ruby/ext/signature/signature.i +1 -1
- data/platform/shared/ruby/ext/signature/signature_wrap.c +5 -5
- data/platform/shared/ruby/ext/sqlite3_api/sqlite3_api_wrap.c +26 -0
- data/platform/shared/ruby/ext/syncengine/syncengine.i +4 -0
- data/platform/shared/ruby/ext/syncengine/syncengine_wrap.c +25 -5
- data/platform/shared/ruby/ext/system/system_wrap.c +3 -3
- data/platform/shared/ruby/ext/webview/webview.i +4 -0
- data/platform/shared/ruby/ext/webview/webview_wrap.c +428 -134
- data/platform/shared/ruby/gc.c +4 -0
- data/platform/shared/ruby/hash.c +3 -0
- data/platform/shared/ruby/include/ruby/defines.h +20 -1
- data/platform/shared/ruby/include/ruby/intern.h +2 -0
- data/platform/shared/ruby/include/ruby/ruby.h +7 -4
- data/platform/shared/ruby/io.c +2 -1
- data/platform/shared/ruby/iphone/ruby/config.h +2 -0
- data/platform/shared/ruby/missing/dup2.c +1 -0
- data/platform/shared/ruby/signal.c +5 -5
- data/platform/shared/ruby/symbian/assert.h +2 -2
- data/platform/shared/ruby/symbian/ruby/config.h +13 -3
- data/platform/shared/ruby/symbian/symbian.h +2 -2
- data/platform/shared/ruby/thread_pthread.c +1 -1
- data/platform/shared/ruby/win32/assert.h +27 -1
- data/platform/shared/rubyext/GeoLocation.cpp +26 -0
- data/platform/shared/rubyext/GeoLocation.h +26 -0
- data/platform/shared/rubyext/NativeToolbarExt.h +35 -0
- data/platform/shared/rubyext/RhoAppAdapter.cpp +26 -0
- data/platform/shared/rubyext/System.cpp +54 -1
- data/platform/shared/rubyext/WebView.h +26 -0
- data/platform/shared/sqlite/crypto.c +26 -0
- data/platform/shared/sqlite/sqlite3.c +9706 -4596
- data/platform/shared/sqlite/sqlite3.h +521 -119
- data/platform/shared/statistic/RhoProfiler.cpp +26 -0
- data/platform/shared/statistic/RhoProfiler.h +26 -0
- data/platform/shared/statistic/test/TestProfiling.cpp +26 -0
- data/platform/shared/sync/ClientRegister.cpp +29 -1
- data/platform/shared/sync/ClientRegister.h +26 -0
- data/platform/shared/sync/ISyncProtocol.h +27 -1
- data/platform/shared/sync/SyncEngine.cpp +26 -0
- data/platform/shared/sync/SyncEngine.h +27 -1
- data/platform/shared/sync/SyncNotify.cpp +28 -1
- data/platform/shared/sync/SyncNotify.h +26 -0
- data/platform/shared/sync/SyncProtocol_3.h +34 -6
- data/platform/shared/sync/SyncSource.cpp +52 -17
- data/platform/shared/sync/SyncSource.h +26 -0
- data/platform/shared/sync/SyncThread.cpp +41 -0
- data/platform/shared/sync/SyncThread.h +27 -2
- data/platform/shared/sync/Test/NetDataStub.h +26 -0
- data/platform/shared/sync/Test/SyncEngine_test.cpp +26 -0
- data/platform/shared/sync/Test/SyncSource_test.cpp +26 -0
- data/platform/shared/tcmalloc/rhomem.h +1 -1
- data/platform/shared/test/Tests.cpp +28 -2
- data/platform/shared/test/test_helper.cpp +26 -0
- data/platform/shared/test/test_helper.h +26 -0
- data/platform/shared/unzip/unzip.cpp +10 -4
- data/platform/shared/unzip/unzip.h +8 -0
- data/platform/shared/xruby/src/com/xruby/compiler/parser/RubyParser.java +97 -97
- data/platform/symbian/build/symbian.rake +202 -0
- data/platform/symbian/curl/curl.pro +179 -0
- data/platform/symbian/qtscroller/include/QtScrollEvent +5 -0
- data/platform/symbian/qtscroller/include/QtScrollPrepareEvent +5 -0
- data/platform/symbian/qtscroller/include/QtScroller +5 -0
- data/platform/symbian/qtscroller/include/QtScrollerProperties +5 -0
- data/platform/symbian/qtscroller/qtscroller.pri +13 -0
- data/platform/symbian/qtscroller/qtscroller.pro +3 -0
- data/platform/symbian/qtscroller/src/qtflickgesture.cpp +696 -0
- data/platform/symbian/qtscroller/src/qtflickgesture_p.h +107 -0
- data/platform/symbian/qtscroller/src/qtscroller.cpp +2081 -0
- data/platform/symbian/qtscroller/src/qtscroller.h +138 -0
- data/platform/symbian/qtscroller/src/qtscroller_p.h +206 -0
- data/platform/symbian/qtscroller/src/qtscrollerfilter.cpp +351 -0
- data/platform/symbian/qtscroller/src/qtscrollerfilter_p.h +111 -0
- data/platform/symbian/qtscroller/src/qtscrollerproperties.cpp +413 -0
- data/platform/symbian/qtscroller/src/qtscrollerproperties.h +135 -0
- data/platform/symbian/qtscroller/src/qtscrollerproperties_p.h +91 -0
- data/platform/symbian/qtscroller/src/qtscrollevent.cpp +191 -0
- data/platform/symbian/qtscroller/src/qtscrollevent.h +100 -0
- data/platform/symbian/qtscroller/src/qtscrollevent_p.h +33 -0
- data/platform/symbian/qtscroller/src/src.pro +24 -0
- data/platform/symbian/rhodes.pro +4 -0
- data/platform/symbian/rhodes.sln +72 -0
- data/platform/symbian/rhodes/deployment.pri +115 -0
- data/platform/symbian/rhodes/rhodes.pro +141 -0
- data/platform/symbian/rhodes/rhodes.vcproj +385 -0
- data/platform/symbian/rhodes/{inc → src}/ContactsConstants.h +0 -0
- data/platform/symbian/rhodes/src/RhoThreadImpl.cpp +19 -0
- data/platform/symbian/rhodes/src/phonebook/Phonebook.cpp +19 -19
- data/platform/symbian/rhodes/{inc → src}/phonebook/Phonebook.h +1 -1
- data/platform/symbian/rhodes/src/qkineticscroller.cpp +1245 -0
- data/platform/symbian/rhodes/src/qkineticscroller.h +165 -0
- data/platform/symbian/rhodes/src/qkineticscroller_p.h +168 -0
- data/platform/symbian/rhodes/src/qwebviewkineticscroller.cpp +347 -0
- data/platform/symbian/rhodes/src/qwebviewkineticscroller.h +89 -0
- data/platform/symbian/rhodes/src/qwebviewselectionsuppressor.h +113 -0
- data/platform/symbian/rhodes_win32.pro +4 -0
- data/platform/symbian/rholib/rholib.pro +108 -0
- data/platform/symbian/rholib/rholib.vcproj +1466 -0
- data/platform/symbian/rubylib/rubylib.pro +163 -0
- data/platform/symbian/rubylib/rubylib.vcproj +1166 -0
- data/platform/symbian/rubylib/src/symbian_stubs.c +45 -3
- data/platform/symbian/sqlite3/sqlite3.pro +38 -0
- data/platform/symbian/sqlite3/sqlite3.vcproj +254 -0
- data/platform/symbian/{SQLite60 → sqlite3}/src/mutex.cpp +0 -0
- data/platform/symbian/{SQLite60 → sqlite3}/src/os_symbian.cpp +0 -0
- data/platform/symbian/{SQLite60 → sqlite3}/src/os_symbian.h +0 -0
- data/platform/symbian/{SQLite60 → sqlite3}/src/sqlite3.c +1 -0
- data/platform/symbian/{SQLite60 → sqlite3}/src/sqlite3.h +0 -0
- data/platform/symbian/syncengine/syncengine.pro +64 -0
- data/platform/symbian/syncengine/syncengine.vcproj +842 -0
- data/platform/win32/RhoSimulator/RhoSimulator.exe +0 -0
- data/platform/win32/replaceicon/replaceicon.cpp +25 -2
- data/platform/win32/replaceicon/stdafx.cpp +25 -3
- data/platform/win32/replaceicon/stdafx.h +25 -4
- data/platform/win32/updateresstring/stdafx.cpp +25 -3
- data/platform/win32/updateresstring/stdafx.h +25 -4
- data/platform/win32/updateresstring/updateresstring.cpp +25 -2
- data/platform/wm/RhoLib/RhoLib.vcproj +38 -8
- data/platform/wm/build/wm.rake +92 -76
- data/platform/wm/rhodes.sln +139 -139
- data/platform/wm/rhodes/Alert.cpp +31 -5
- data/platform/wm/rhodes/Alert.h +27 -1
- data/platform/wm/rhodes/AppManager.cpp +26 -0
- data/platform/wm/rhodes/AppManager.h +26 -0
- data/platform/wm/rhodes/DateTimePicker.cpp +26 -0
- data/platform/wm/rhodes/DateTimePicker.h +30 -0
- data/platform/wm/rhodes/LogOptionsDlg.cpp +26 -0
- data/platform/wm/rhodes/LogOptionsDlg.h +26 -0
- data/platform/wm/rhodes/LogView.cpp +26 -2
- data/platform/wm/rhodes/LogView.h +25 -1
- data/platform/wm/rhodes/Macros.h +25 -1
- data/platform/wm/rhodes/MainWindow.cpp +37 -2
- data/platform/wm/rhodes/MainWindow.h +29 -2
- data/platform/wm/rhodes/MapView/Graphics.cpp +25 -1
- data/platform/wm/rhodes/MapView/Graphics.h +26 -0
- data/platform/wm/rhodes/MapView/MapViewManager.cpp +26 -0
- data/platform/wm/rhodes/MapView/MapViewManager.h +25 -0
- data/platform/wm/rhodes/MetaHandler.cpp +26 -0
- data/platform/wm/rhodes/MetaHandler.h +26 -0
- data/platform/wm/rhodes/OkCancelModalDialog.h +26 -0
- data/platform/wm/rhodes/OutlookApp.cpp +26 -0
- data/platform/wm/rhodes/OutlookApp.h +26 -0
- data/platform/wm/rhodes/RhoNativeViewManager.cpp +26 -0
- data/platform/wm/rhodes/RhoNativeViewManagerWM.h +25 -8
- data/platform/wm/rhodes/Rhodes.cpp +127 -24
- data/platform/wm/rhodes/RingtoneManager.cpp +26 -0
- data/platform/wm/rhodes/RingtoneManager.h +26 -0
- data/platform/wm/rhodes/SyncStatusDlg.cpp +26 -0
- data/platform/wm/rhodes/SyncStatusDlg.h +26 -0
- data/platform/wm/rhodes/Utils.cpp +26 -0
- data/platform/wm/rhodes/Utils.h +26 -0
- data/platform/wm/rhodes/Vibrate.cpp +30 -9
- data/platform/wm/rhodes/Vibrate.h +27 -2
- data/platform/wm/rhodes/bluetooth/Bluetooth.cpp +63 -4
- data/platform/wm/rhodes/bluetooth/Bluetooth.h +32 -1
- data/platform/wm/rhodes/camera/Camera.cpp +40 -6
- data/platform/wm/rhodes/camera/Camera.h +32 -1
- data/platform/wm/rhodes/memory_helper.cpp +26 -0
- data/platform/wm/rhodes/menubar.cpp +26 -0
- data/platform/wm/rhodes/menubar.h +26 -0
- data/platform/wm/rhodes/phonebook/NativeAddressBook.cpp +26 -0
- data/platform/wm/rhodes/phonebook/NativeAddressBook.h +26 -0
- data/platform/wm/rhodes/phonebook/phonebook.cpp +26 -8
- data/platform/wm/rhodes/phonebook/phonebook.h +26 -8
- data/platform/wm/rhodes/resource.h +1 -0
- data/platform/wm/rhodes/rho/common/RhoClassFactory.cpp +26 -0
- data/platform/wm/rhodes/rho/common/RhoClassFactory.h +26 -0
- data/platform/wm/rhodes/rho/common/RhoCryptImpl.cpp +26 -0
- data/platform/wm/rhodes/rho/common/RhoCryptImpl.h +26 -0
- data/platform/wm/rhodes/rho/common/RhoThreadImpl.cpp +26 -0
- data/platform/wm/rhodes/rho/common/RhoThreadImpl.h +26 -0
- data/platform/wm/rhodes/rho/net/NetRequestImpl.cpp +30 -1
- data/platform/wm/rhodes/rho/net/NetRequestImpl.h +29 -0
- data/platform/wm/rhodes/rho/rubyext/GeoLocationImpl.cpp +26 -0
- data/platform/wm/rhodes/rho/rubyext/GeoLocationImpl.h +26 -0
- data/platform/wm/rhodes/rho/rubyext/NativeToolbar.cpp +27 -1
- data/platform/wm/rhodes/rho/rubyext/NativeToolbar.h +26 -0
- data/platform/wm/rhodes/rho/rubyext/NativeToolbarExt.cpp +71 -7
- data/platform/wm/rhodes/rho/rubyext/SystemImpl.cpp +36 -4
- data/platform/wm/rhodes/rho/rubyext/WebView.cpp +48 -2
- data/platform/wm/rhodes/rho/rubyext/calendar.cpp +26 -0
- data/platform/wm/rhodes/rhodes.vcproj +2491 -579
- data/platform/wm/rhodes/signature/Signature.cpp +26 -0
- data/platform/wm/rhodes/signature/Signature.h +26 -0
- data/platform/wm/rhodes/simulator/MainWindowQt.cpp +852 -0
- data/platform/wm/rhodes/{emulator → simulator}/MainWindowQt.h +76 -11
- data/platform/wm/rhodes/simulator/NativeTabbarQt.cpp +91 -0
- data/platform/wm/rhodes/simulator/NativeTabbarQt.h +102 -0
- data/platform/wm/rhodes/simulator/NativeToolbarQt.cpp +82 -0
- data/platform/wm/rhodes/simulator/NativeToolbarQt.h +78 -0
- data/platform/wm/rhodes/stdafx.cpp +25 -16
- data/platform/wm/rhodes/stdafx.h +26 -4
- data/platform/wm/rubylib/rubylib.vcproj +94 -78
- data/platform/wm/sqlite3/sqlite3.vcproj +8 -8
- data/platform/wm/syncengine/syncengine.vcproj +33 -11
- data/platform/wm/tools/detool/LogServer.cpp +33 -3
- data/platform/wm/tools/detool/LogServer.h +29 -1
- data/platform/wm/tools/detool/detool.cpp +105 -14
- data/platform/wm/tools/detool/detool.h +26 -0
- data/platform/wm/tools/detool/detool.vcproj +243 -242
- data/platform/wm/tools/detool/stdafx.cpp +25 -3
- data/platform/wm/tools/detool/stdafx.h +26 -0
- data/platform/wm/tools/detool/targetver.h +26 -0
- data/platform/wm/tools/rhosetup/rhosetup.cpp +25 -2
- data/platform/wm/tools/rhosetup/stdafx.cpp +25 -3
- data/platform/wm/tools/rhosetup/stdafx.h +25 -4
- data/platform/wp7/IronRuby/bin/Silverlight3Release/IronRuby.Libraries.dll +0 -0
- data/platform/wp7/IronRuby/bin/Silverlight3Release/IronRuby.dll +0 -0
- data/platform/wp7/RhoAppRunner/Program.cs +27 -1
- data/platform/wp7/RhoLogServer/Program.cs +27 -1
- data/platform/wp7/RhoLogServer/SocketServer.cs +27 -1
- data/platform/wp7/RhoRubyExtGen/RhoAsyncHttp.cs +27 -1
- data/platform/wp7/RhoRubyExtGen/RhoConfig.cs +84 -0
- data/platform/wp7/RhoRubyExtGen/RhoDatabase.cs +27 -1
- data/platform/wp7/RhoRubyExtGen/RhoJSON.cs +26 -0
- data/platform/wp7/RhoRubyExtGen/RhoNativeBar.cs +35 -3
- data/platform/wp7/RhoRubyExtGen/RhoRubyExtGen.csproj +2 -0
- data/platform/wp7/RhoRubyExtGen/RhoSyncEngine.cs +34 -2
- data/platform/wp7/RhoRubyExtGen/RhoSystem.cs +144 -0
- data/platform/wp7/RhoRubyExtGen/RhoWebView.cs +33 -2
- data/platform/wp7/RhoRubyLib/Initializers.Generated.cs +149 -5
- data/platform/wp7/RhoRubyLib/RhoAppAdapter.cs +27 -1
- data/platform/wp7/RhoRubyLib/RhoRuby.cs +27 -1
- data/platform/wp7/RhoRubyLib/RhoRubyLib.csproj +24 -1
- data/platform/wp7/RhoRubyLib/WP_PlatformAdaptationLayer.cs +26 -15
- data/platform/wp7/RhoRubyLib/common/IInputStream.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/Mutex.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/RhoConf.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/RhoEmptyProfiler.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/RhoFile.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/RhoFilePath.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/RhoParamArray.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/RhoParams.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/RhoProfiler.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/RhoResourceMap.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/RhoStd.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/RhoThread.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/RhodesApp.cs +232 -16
- data/platform/wp7/RhoRubyLib/common/ThreadQueue.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/TimeInterval.cs +27 -1
- data/platform/wp7/RhoRubyLib/common/Tokenizer.cs +27 -1
- data/platform/wp7/RhoRubyLib/db/DBAdapter.cs +33 -1
- data/platform/wp7/RhoRubyLib/db/DBAttrManager.cs +27 -1
- data/platform/wp7/RhoRubyLib/db/DBCommand.cs +428 -0
- data/platform/wp7/RhoRubyLib/db/DBException.cs +27 -1
- data/platform/wp7/RhoRubyLib/db/IDBCallback.cs +27 -1
- data/platform/wp7/RhoRubyLib/db/IDBResult.cs +27 -1
- data/platform/wp7/RhoRubyLib/db/IDBStorage.cs +27 -1
- data/platform/wp7/RhoRubyLib/db/SqliteCopyResult.cs +27 -1
- data/platform/wp7/RhoRubyLib/db/SqliteResult.cs +27 -1
- data/platform/wp7/RhoRubyLib/db/SqliteStorage.cs +27 -1
- data/platform/wp7/RhoRubyLib/json/JSONArrayIterator.cs +27 -1
- data/platform/wp7/RhoRubyLib/json/JSONEntry.cs +27 -1
- data/platform/wp7/RhoRubyLib/json/JSONStructIterator.cs +27 -1
- data/platform/wp7/RhoRubyLib/json/JsonParser.cs +26 -0
- data/platform/wp7/RhoRubyLib/json/RJSONTokener.cs +26 -0
- data/platform/wp7/RhoRubyLib/logging/IRhoLogSink.cs +27 -1
- data/platform/wp7/RhoRubyLib/logging/RhoEmptyLogger.cs +26 -0
- data/platform/wp7/RhoRubyLib/logging/RhoLogConf.cs +27 -1
- data/platform/wp7/RhoRubyLib/logging/RhoLogFileSink.cs +27 -1
- data/platform/wp7/RhoRubyLib/logging/RhoLogServerSink.cs +27 -1
- data/platform/wp7/RhoRubyLib/logging/RhoLogger.cs +27 -1
- data/platform/wp7/RhoRubyLib/net/AsyncHttp.cs +27 -1
- data/platform/wp7/RhoRubyLib/net/HttpServer.cs +28 -2
- data/platform/wp7/RhoRubyLib/net/NetRequest.cs +28 -2
- data/platform/wp7/RhoRubyLib/net/NetResponse.cs +27 -1
- data/platform/wp7/RhoRubyLib/net/URI.cs +27 -1
- data/platform/wp7/RhoRubyLib/rubyext/RhoAsyncHttp.cs +27 -1
- data/platform/wp7/RhoRubyLib/rubyext/RhoConfig.cs +188 -0
- data/platform/wp7/RhoRubyLib/rubyext/RhoDatabase.cs +27 -1
- data/platform/wp7/RhoRubyLib/rubyext/RhoJSON.cs +26 -0
- data/platform/wp7/RhoRubyLib/rubyext/RhoKernelOps.cs +27 -1
- data/platform/wp7/RhoRubyLib/rubyext/RhoNativeBar.cs +130 -6
- data/platform/wp7/RhoRubyLib/rubyext/RhoSyncEngine.cs +42 -2
- data/platform/wp7/RhoRubyLib/rubyext/RhoSystem.cs +153 -0
- data/platform/wp7/RhoRubyLib/rubyext/RhoWebView.cs +49 -4
- data/platform/wp7/RhoRubyLib/sync/SyncSource.cs +17 -17
- data/platform/wp7/RhoRubyLib/views/RhoTabHeader.xaml +18 -0
- data/platform/wp7/RhoRubyLib/views/RhoTabHeader.xaml.cs +56 -0
- data/platform/wp7/RhoRubyLib/views/RhoView.xaml +16 -0
- data/platform/wp7/RhoRubyLib/views/RhoView.xaml.cs +153 -0
- data/platform/wp7/build/wp.rake +31 -0
- data/platform/wp7/rhodes/App.xaml.cs +28 -2
- data/platform/wp7/rhodes/MainPage.xaml +4 -3
- data/platform/wp7/rhodes/MainPage.xaml.cs +50 -11
- data/platform/wp7/sqlite3/SQLiteClient.cs +27 -1
- data/rakefile.rb +200 -18
- data/res/build-tools/detool.exe +0 -0
- data/res/generators/rhogen.rb +2 -1
- data/res/generators/templates/application/app/Settings/home.bb.erb +14 -13
- data/res/generators/templates/application/app/Settings/home.erb +16 -17
- data/res/generators/templates/application/app/Settings/index.bb.erb +26 -27
- data/res/generators/templates/application/app/Settings/index.erb +28 -27
- data/res/generators/templates/application/app/Settings/login.bb.erb +25 -31
- data/res/generators/templates/application/app/Settings/login.erb +20 -22
- data/res/generators/templates/application/app/Settings/reset.bb.erb +12 -11
- data/res/generators/templates/application/app/Settings/reset.erb +10 -13
- data/res/generators/templates/application/app/Settings/wait.bb.erb +9 -2
- data/res/generators/templates/application/app/Settings/wait.erb +9 -4
- data/res/generators/templates/application/app/index.erb +17 -24
- data/res/generators/templates/application/app/layout.erb +51 -21
- data/res/generators/templates/application/build.yml +3 -1
- data/res/generators/templates/application/icon/icon.svg +5334 -0
- data/res/generators/templates/application/public/css/android.css +6 -1
- data/res/generators/templates/application/public/css/blackberry.css +6 -1
- data/res/generators/templates/application/public/css/iphone.css +4 -0
- data/res/generators/templates/application/public/jqmobile/images/ajax-loader.png +0 -0
- data/res/generators/templates/application/public/jqmobile/images/icon-search-black.png +0 -0
- data/res/generators/templates/application/public/jqmobile/images/icons-18-black.png +0 -0
- data/res/generators/templates/application/public/jqmobile/images/icons-18-white.png +0 -0
- data/res/generators/templates/application/public/jqmobile/images/icons-36-black.png +0 -0
- data/res/generators/templates/application/public/jqmobile/images/icons-36-white.png +0 -0
- data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0b1.css +1661 -0
- data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0b1.js +5626 -0
- data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0b1.min.css +8 -0
- data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0b1.min.js +146 -0
- data/res/generators/templates/application/public/{jqtouch/jqtouch-iphone.css → jqmobile/jquery.mobile.iphone.css} +1 -1
- data/res/generators/templates/application/public/jquery/jquery-1.6.2.js +8981 -0
- data/res/generators/templates/application/public/jquery/jquery-1.6.2.min.js +18 -0
- data/res/generators/templates/application/public/js/jqmobile-patch.js +231 -0
- data/res/generators/templates/model/controller.rb +3 -2
- data/res/generators/templates/model/edit.bb.erb +17 -17
- data/res/generators/templates/model/edit.erb +15 -20
- data/res/generators/templates/model/index.bb.erb +19 -19
- data/res/generators/templates/model/index.erb +23 -26
- data/res/generators/templates/model/new.bb.erb +18 -19
- data/res/generators/templates/model/new.erb +17 -19
- data/res/generators/templates/model/show.bb.erb +10 -11
- data/res/generators/templates/model/show.erb +16 -19
- data/rhobuild.yml.example +2 -1
- data/rhodes.gemspec +4 -3
- data/rhomobile-debug.gemspec +22 -0
- data/spec/framework_spec/app/layout.erb +1 -1
- data/spec/perfomance_spec/app/layout.erb +1 -1
- data/spec/phone_spec/app/spec/asynchttp_spec.rb +1 -1
- data/spec/phone_spec/app/spec/mapview_spec.rb +43 -0
- data/spec/phone_spec/app/spec/rho_spec.rb +23 -0
- data/spec/phone_spec/app/spec/syncengine_spec.rb +49 -8
- metadata +244 -344
- data/Manifest.txt +0 -6409
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/COPYING +0 -27
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/README +0 -95
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar.h +0 -1415
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Decoder.h +0 -201
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Exception.h +0 -187
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Image.h +0 -321
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ImageScanner.h +0 -130
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Processor.h +0 -223
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/QZBar.h +0 -169
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/QZBarImage.h +0 -72
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Scanner.h +0 -162
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Symbol.h +0 -529
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Video.h +0 -170
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/Window.h +0 -136
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarCaptureReader.h +0 -99
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarImage.h +0 -69
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarImageScanner.h +0 -50
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarReaderController.h +0 -142
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarReaderView.h +0 -119
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarReaderViewController.h +0 -99
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/ZBarSymbol.h +0 -67
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/include/zbar/zbargtk.h +0 -205
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/config.c +0 -157
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/convert.c +0 -1172
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/debug.h +0 -87
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder.c +0 -409
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder.h +0 -219
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/code128.c +0 -528
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/code128.h +0 -49
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/code39.c +0 -335
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/code39.h +0 -50
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/ean.c +0 -660
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/ean.h +0 -86
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/i25.c +0 -243
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/i25.h +0 -50
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/pdf417.c +0 -223
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/pdf417.h +0 -49
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/pdf417_hash.h +0 -545
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/qr_finder.c +0 -102
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/decoder/qr_finder.h +0 -23
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/error.c +0 -183
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/error.h +0 -240
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/event.h +0 -62
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/image.c +0 -358
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/image.h +0 -142
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/img_scanner.c +0 -819
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/img_scanner.h +0 -38
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/jpeg.c +0 -241
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/mutex.h +0 -160
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor.c +0 -700
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor.h +0 -126
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor/lock.c +0 -227
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor/null.c +0 -62
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor/posix.c +0 -337
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor/posix.h +0 -138
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor/win.c +0 -335
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/processor/x.c +0 -269
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode.h +0 -66
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/bch15_5.c +0 -184
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/bch15_5.h +0 -20
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/binarize.c +0 -639
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/binarize.h +0 -17
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/isaac.c +0 -139
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/isaac.h +0 -41
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/qrdec.c +0 -3957
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/qrdec.h +0 -168
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/qrdectxt.c +0 -405
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/rs.c +0 -799
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/rs.h +0 -66
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/util.c +0 -140
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/qrcode/util.h +0 -48
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/refcnt.c +0 -48
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/refcnt.h +0 -96
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/scanner.c +0 -317
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/svg.c +0 -184
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/svg.h +0 -65
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/symbol.c +0 -325
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/symbol.h +0 -93
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/thread.h +0 -127
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/timer.h +0 -151
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/unistd.h +0 -1
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/video.c +0 -384
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/video.h +0 -160
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/video/null.c +0 -37
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/video/v4l1.c +0 -435
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/video/v4l2.c +0 -509
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/video/vfw.c +0 -494
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window.c +0 -318
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window.h +0 -144
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/dib.c +0 -75
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/null.c +0 -103
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/vfw.c +0 -104
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/win.c +0 -334
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/win.h +0 -46
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/x.c +0 -356
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/x.h +0 -74
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/ximage.c +0 -219
- data/lib/extensions/barcode/ext/barcode/shared/zbar/zbar/zbar/window/xv.c +0 -273
- data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_SplashScreen.h +0 -39
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/NetworkConnectivityListener.java +0 -222
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/NetworkStateTracker.java +0 -185
- data/platform/shared/SyncClient/RhoError.h +0 -29
- data/platform/shared/SyncClient/SyncClient.h +0 -95
- data/platform/symbian/RhoLib/group/RhoLib.mmp +0 -41
- data/platform/symbian/RhoLib/group/bld.inf +0 -15
- data/platform/symbian/SQLite60/group/SQLite60.mmp +0 -21
- data/platform/symbian/SQLite60/group/bld.inf +0 -7
- data/platform/symbian/build/build.properties +0 -80
- data/platform/symbian/build/build.xml +0 -649
- data/platform/symbian/build/insertRhoBundle2pkg.rb +0 -26
- data/platform/symbian/build/lib/stlport.zip +0 -0
- data/platform/symbian/build/logfile.template +0 -1
- data/platform/symbian/build/release.properties +0 -7
- data/platform/symbian/lib/pips_nokia_1_3_ss.sis +0 -0
- data/platform/symbian/rhodes/data/loading.html +0 -11
- data/platform/symbian/rhodes/data/rhodes.rls +0 -91
- data/platform/symbian/rhodes/data/rhodes.rss +0 -537
- data/platform/symbian/rhodes/data/rhodes_reg.rss +0 -40
- data/platform/symbian/rhodes/gfx/qgn_menu_rhodes.svg +0 -55
- data/platform/symbian/rhodes/group/Icons_scalable_dc.mk +0 -50
- data/platform/symbian/rhodes/group/bld.inf +0 -10
- data/platform/symbian/rhodes/group/rhodes.mmp +0 -180
- data/platform/symbian/rhodes/help/Custom.xml +0 -18
- data/platform/symbian/rhodes/help/build_help.mk +0 -45
- data/platform/symbian/rhodes/help/rhodes.cshlp +0 -19
- data/platform/symbian/rhodes/help/rhodes.xml +0 -13
- data/platform/symbian/rhodes/inc/AppManager.h +0 -89
- data/platform/symbian/rhodes/inc/AppSoftkeysObserver.h +0 -95
- data/platform/symbian/rhodes/inc/ConnectionManager.h +0 -115
- data/platform/symbian/rhodes/inc/GeoLocationService.h +0 -89
- data/platform/symbian/rhodes/inc/HttpClient.h +0 -161
- data/platform/symbian/rhodes/inc/HttpConstants.h +0 -72
- data/platform/symbian/rhodes/inc/HttpEventHandler.h +0 -130
- data/platform/symbian/rhodes/inc/HttpFileManager.h +0 -116
- data/platform/symbian/rhodes/inc/HttpServer.h +0 -119
- data/platform/symbian/rhodes/inc/LogOptionsDialog.h +0 -59
- data/platform/symbian/rhodes/inc/RhoCamera.h +0 -321
- data/platform/symbian/rhodes/inc/SpecialLoadObserver.h +0 -115
- data/platform/symbian/rhodes/inc/SyncEngineWrap.h +0 -107
- data/platform/symbian/rhodes/inc/geolocation/GeoLocation.h +0 -91
- data/platform/symbian/rhodes/inc/ports_mngt.h +0 -23
- data/platform/symbian/rhodes/inc/posix_http_client.h +0 -37
- data/platform/symbian/rhodes/inc/rhodes.hrh +0 -106
- data/platform/symbian/rhodes/inc/rhodes.pan +0 -42
- data/platform/symbian/rhodes/inc/rhodesAppUi.h +0 -153
- data/platform/symbian/rhodes/inc/rhodesAppView.h +0 -242
- data/platform/symbian/rhodes/inc/rhodesApplication.h +0 -69
- data/platform/symbian/rhodes/inc/rhodesDocument.h +0 -103
- data/platform/symbian/rhodes/sis/backup_registration.xml +0 -5
- data/platform/symbian/rhodes/sis/cert/rhodes_cert.cer +0 -27
- data/platform/symbian/rhodes/sis/cert/rhodes_pid.key +0 -23
- data/platform/symbian/rhodes/sis/rhodes.pkg +0 -42
- data/platform/symbian/rhodes/src/AppManager.cpp +0 -153
- data/platform/symbian/rhodes/src/AppSoftkeysObserver.cpp +0 -88
- data/platform/symbian/rhodes/src/ConnectionManager.cpp +0 -337
- data/platform/symbian/rhodes/src/GeoLocationService.cpp +0 -151
- data/platform/symbian/rhodes/src/HttpClient.cpp +0 -489
- data/platform/symbian/rhodes/src/HttpConstants.cpp +0 -35
- data/platform/symbian/rhodes/src/HttpEventHandler.cpp +0 -587
- data/platform/symbian/rhodes/src/HttpFileManager.cpp +0 -282
- data/platform/symbian/rhodes/src/HttpServer.cpp +0 -275
- data/platform/symbian/rhodes/src/LogOptionsDialog.cpp +0 -179
- data/platform/symbian/rhodes/src/RhoCamera.cpp +0 -675
- data/platform/symbian/rhodes/src/SpecialLoadObserver.cpp +0 -95
- data/platform/symbian/rhodes/src/SyncEngineWrap.cpp +0 -400
- data/platform/symbian/rhodes/src/camera/camera.cpp +0 -23
- data/platform/symbian/rhodes/src/geolocation/GeoLocation.cpp +0 -110
- data/platform/symbian/rhodes/src/geolocation/ruby_geolocation.cpp +0 -38
- data/platform/symbian/rhodes/src/notification.cpp +0 -117
- data/platform/symbian/rhodes/src/ports_mngt.c +0 -103
- data/platform/symbian/rhodes/src/posix_http_client.c +0 -460
- data/platform/symbian/rhodes/src/rhodes.cpp +0 -43
- data/platform/symbian/rhodes/src/rhodesAppUi.cpp +0 -436
- data/platform/symbian/rhodes/src/rhodesAppView.cpp +0 -851
- data/platform/symbian/rhodes/src/rhodesApplication.cpp +0 -51
- data/platform/symbian/rhodes/src/rhodesDocument.cpp +0 -97
- data/platform/symbian/rhodes/src/rsyncengine.c +0 -11
- data/platform/symbian/rhodes/src/webview/webview.cpp +0 -44
- data/platform/symbian/rubylib/group/bld.inf +0 -7
- data/platform/symbian/rubylib/group/rubylib.mmp +0 -143
- data/platform/symbian/shttpd/group/bld.inf +0 -5
- data/platform/symbian/shttpd/group/shttpd.mmp +0 -24
- data/platform/symbian/tcmalloc/group/bld.inf +0 -15
- data/platform/symbian/tcmalloc/group/tcmalloc.mmp +0 -31
- data/platform/wm/rhodes/emulator/ExternalWebView.cpp +0 -20
- data/platform/wm/rhodes/emulator/ExternalWebView.h +0 -23
- data/platform/wm/rhodes/emulator/MainWindowCallback.h +0 -19
- data/platform/wm/rhodes/emulator/MainWindowProxy.cpp +0 -270
- data/platform/wm/rhodes/emulator/MainWindowProxy.h +0 -34
- data/platform/wm/rhodes/emulator/MainWindowQt.cpp +0 -356
- data/platform/wm/rhodes/emulator/NativeToolbarQt.cpp +0 -57
- data/platform/wm/rhodes/emulator/NativeToolbarQt.h +0 -52
- data/platform/wm/rhodes/emulator/QtMainWindow.cpp +0 -252
- data/platform/wm/rhodes/emulator/QtMainWindow.h +0 -62
- data/platform/wm/rhodes/rho/rubyext/NativeToolbarExt.h +0 -6
- data/platform/wp7/WPApplication.sln +0 -50
- data/platform/wp7/WPApplication/App.xaml +0 -19
- data/platform/wp7/WPApplication/App.xaml.cs +0 -211
- data/platform/wp7/WPApplication/ApplicationIcon.png +0 -0
- data/platform/wp7/WPApplication/Background.png +0 -0
- data/platform/wp7/WPApplication/MainPage.xaml +0 -44
- data/platform/wp7/WPApplication/MainPage.xaml.cs +0 -132
- data/platform/wp7/WPApplication/Properties/AppManifest.xml +0 -6
- data/platform/wp7/WPApplication/Properties/AssemblyInfo.cs +0 -35
- data/platform/wp7/WPApplication/Properties/WMAppManifest.xml +0 -32
- data/platform/wp7/WPApplication/SplashScreenImage.jpg +0 -0
- data/platform/wp7/WPApplication/WPApplication.csproj +0 -201
- data/platform/wp7/WPApplication/WP_PlatformAdaptationLayer.cs +0 -88
- data/platform/wp7/WPApplication/app_manifest.txt +0 -1
- data/platform/wp7/WPApplication/readme.htm +0 -40
- data/platform/wp7/WPApplication/readme2.htm +0 -37
- data/platform/wp7/WPApplication/rho/apps/app/Model1/edit.bb.erb +0 -29
- data/platform/wp7/WPApplication/rho/apps/app/Model1/edit.erb +0 -32
- data/platform/wp7/WPApplication/rho/apps/app/Model1/index.bb.erb +0 -21
- data/platform/wp7/WPApplication/rho/apps/app/Model1/index.erb +0 -26
- data/platform/wp7/WPApplication/rho/apps/app/Model1/model1.rb +0 -10
- data/platform/wp7/WPApplication/rho/apps/app/Model1/model1_controller.rb +0 -58
- data/platform/wp7/WPApplication/rho/apps/app/Model1/new.bb.erb +0 -29
- data/platform/wp7/WPApplication/rho/apps/app/Model1/new.erb +0 -31
- data/platform/wp7/WPApplication/rho/apps/app/Model1/show.bb.erb +0 -26
- data/platform/wp7/WPApplication/rho/apps/app/Model1/show.erb +0 -28
- data/platform/wp7/WPApplication/rho/apps/app/Settings/controller.rb +0 -75
- data/platform/wp7/WPApplication/rho/apps/app/Settings/home.bb.erb +0 -17
- data/platform/wp7/WPApplication/rho/apps/app/Settings/home.erb +0 -20
- data/platform/wp7/WPApplication/rho/apps/app/Settings/index.bb.erb +0 -32
- data/platform/wp7/WPApplication/rho/apps/app/Settings/index.erb +0 -30
- data/platform/wp7/WPApplication/rho/apps/app/Settings/login.bb.erb +0 -35
- data/platform/wp7/WPApplication/rho/apps/app/Settings/login.erb +0 -27
- data/platform/wp7/WPApplication/rho/apps/app/Settings/reset.bb.erb +0 -15
- data/platform/wp7/WPApplication/rho/apps/app/Settings/reset.erb +0 -17
- data/platform/wp7/WPApplication/rho/apps/app/Settings/wait.bb.erb +0 -3
- data/platform/wp7/WPApplication/rho/apps/app/Settings/wait.erb +0 -5
- data/platform/wp7/WPApplication/rho/apps/app/application.rb +0 -16
- data/platform/wp7/WPApplication/rho/apps/app/helpers/application_helper.rb +0 -126
- data/platform/wp7/WPApplication/rho/apps/app/helpers/browser_helper.rb +0 -18
- data/platform/wp7/WPApplication/rho/apps/app/index.bb.erb +0 -26
- data/platform/wp7/WPApplication/rho/apps/app/index.erb +0 -26
- data/platform/wp7/WPApplication/rho/apps/app/layout.erb +0 -47
- data/platform/wp7/WPApplication/rho/apps/app/loading.html +0 -11
- data/platform/wp7/WPApplication/rho/apps/app_manifest.txt +0 -1
- data/platform/wp7/WPApplication/rho/apps/public/css/android.css +0 -330
- data/platform/wp7/WPApplication/rho/apps/public/css/blackberry.css +0 -115
- data/platform/wp7/WPApplication/rho/apps/public/css/iphone.css +0 -410
- data/platform/wp7/WPApplication/rho/apps/public/css/windows_mobile.css +0 -222
- data/platform/wp7/WPApplication/rho/apps/public/images/IUI_LICENSE.txt +0 -21
- data/platform/wp7/WPApplication/rho/apps/public/images/android/ic_menu_more.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/backButton.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/blueButton.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/cancel.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/grayButton.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/disclosure.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/disclosure_detail.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/backButton.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/blueButton.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/cancel.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/chevron.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/grayButton.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/listArrowSel.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/listGroup.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/loading.gif +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/on_off.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/pinstripes.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/selection.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/thumb.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/toggle.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/toggleOn.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/toolButton.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/toolbar.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/jqtouch/whiteButton.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/radiobutton.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/select.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iphone/switch.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/iui-logo-touch-icon.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/listArrow.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/listArrowDown.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/listArrowSel.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/listGroup.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/loading.gif +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/pinstripes.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/right_button.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/selection.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/thumb.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/toggle.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/toggleOn.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/toolButton.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/toolButton_new.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/toolbar.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/images/whiteButton.png +0 -0
- data/platform/wp7/WPApplication/rho/apps/public/jqtouch/jqtouch-iphone.css +0 -9
- data/platform/wp7/WPApplication/rho/apps/public/jqtouch/jqtouch.css +0 -374
- data/platform/wp7/WPApplication/rho/apps/public/jqtouch/jqtouch.js +0 -742
- data/platform/wp7/WPApplication/rho/apps/public/jqtouch/jqtouch.transitions.js +0 -60
- data/platform/wp7/WPApplication/rho/apps/public/jqtouch/jquery.1.3.2.min.js +0 -19
- data/platform/wp7/WPApplication/rho/apps/public/js/application.js +0 -1
- data/platform/wp7/WPApplication/rho/apps/public/js/rho.js +0 -4
- data/platform/wp7/WPApplication/rho/apps/public/js/rhogeolocation-wm.js +0 -59
- data/platform/wp7/WPApplication/rho/apps/public/js/rhogeolocation.js +0 -11
- data/platform/wp7/WPApplication/rho/apps/rhoconfig.txt +0 -32
- data/platform/wp7/WPApplication/rhoconfig.txt +0 -32
- data/platform/wp7/WPApplication/windows_mobile.css +0 -222
- data/res/generators/templates/application/public/jqtouch/changes.txt +0 -20
- data/res/generators/templates/application/public/jqtouch/jqtouch.css +0 -374
- data/res/generators/templates/application/public/jqtouch/jqtouch.js +0 -771
- data/res/generators/templates/application/public/jqtouch/jqtouch.transitions.js +0 -60
- data/res/generators/templates/application/public/jqtouch/jquery.1.3.2.min.js +0 -19
- 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="
|
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="
|
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;.;"
|
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;.;"..\..\shared\qt\rhodes\GeneratedFiles";"$(QTDIR)\include";"..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)";"$(QTDIR)\include\qtmain";"$(QTDIR)\include\QtCore";"$(QTDIR)\include\QtGui";"$(QTDIR)\include\QtWebKit""
|
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=""$(OutDir)";"$(QTDIR)\lib""
|
@@ -1019,7 +1029,7 @@
|
|
1019
1029
|
/>
|
1020
1030
|
</Configuration>
|
1021
1031
|
<Configuration
|
1022
|
-
Name="
|
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="
|
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="
|
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="
|
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;.;"
|
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;.;"..\..\shared\qt\rhodes\GeneratedFiles";"$(QTDIR)\include";"..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)";"$(QTDIR)\include\qtmain";"$(QTDIR)\include\QtCore";"$(QTDIR)\include\QtGui";"$(QTDIR)\include\QtWebKit""
|
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=""$(OutDir)";"$(QTDIR)\lib""
|
@@ -1418,7 +1432,7 @@
|
|
1418
1432
|
/>
|
1419
1433
|
</Configuration>
|
1420
1434
|
<Configuration
|
1421
|
-
Name="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
2825
|
+
Name="simulator"
|
2804
2826
|
>
|
2805
2827
|
<File
|
2806
|
-
RelativePath=".\
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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=".\
|
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="
|
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="
|
3019
|
+
Name="SimulatorDebug|Win32"
|
3014
3020
|
>
|
3015
3021
|
<Tool
|
3016
3022
|
Name="VCCustomBuildTool"
|
3017
|
-
Description="Moc'ing $(InputFileName)..."
|
3018
|
-
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WEBKIT_LIB "-I." "-I.\emulator\GeneratedFiles" "-I$(QTDIR)\include" "-I.\emulator\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtWebKit" ".\emulator\ExternalWebView.h" -o ".\emulator\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
3019
|
-
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
3020
|
-
Outputs="".\emulator\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
3021
3023
|
/>
|
3022
3024
|
</FileConfiguration>
|
3023
3025
|
<FileConfiguration
|
3024
|
-
Name="
|
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="
|
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="
|
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="
|
3050
|
+
Name="SimulatorRelease|Win32"
|
3049
3051
|
>
|
3050
3052
|
<Tool
|
3051
3053
|
Name="VCCustomBuildTool"
|
3052
|
-
Description="Moc'ing $(InputFileName)..."
|
3053
|
-
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_WEBKIT_LIB "-I.\emulator\GeneratedFiles" "-I$(QTDIR)\include" "-I.\emulator\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtWebKit" "-I." ".\emulator\ExternalWebView.h" -o ".\emulator\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
3054
|
-
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
3055
|
-
Outputs="".\emulator\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
3056
3054
|
/>
|
3057
3055
|
</FileConfiguration>
|
3058
3056
|
<FileConfiguration
|
3059
|
-
Name="
|
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="
|
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=".\
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
3137
|
+
Name="VCCLCompilerTool"
|
3140
3138
|
/>
|
3141
3139
|
</FileConfiguration>
|
3142
3140
|
<FileConfiguration
|
3143
|
-
Name="
|
3141
|
+
Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
|
3144
3142
|
ExcludedFromBuild="true"
|
3145
3143
|
>
|
3146
3144
|
<Tool
|
3147
|
-
Name="
|
3148
|
-
/>
|
3149
|
-
</FileConfiguration>
|
3150
|
-
<FileConfiguration
|
3151
|
-
Name="EmulatorDebug|Win32"
|
3152
|
-
>
|
3153
|
-
<Tool
|
3154
|
-
Name="VCCustomBuildTool"
|
3155
|
-
Description="Uic'ing $(InputFileName)..."
|
3156
|
-
CommandLine=""$(QTDIR)\bin\uic.exe" -o ".\emulator\GeneratedFiles\ui_$(InputName).h" "$(InputPath)"
"
|
3157
|
-
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
3158
|
-
Outputs="".\emulator\GeneratedFiles\ui_$(InputName).h""
|
3145
|
+
Name="VCCLCompilerTool"
|
3159
3146
|
/>
|
3160
3147
|
</FileConfiguration>
|
3161
3148
|
<FileConfiguration
|
3162
|
-
Name="
|
3149
|
+
Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
|
3163
3150
|
ExcludedFromBuild="true"
|
3164
3151
|
>
|
3165
3152
|
<Tool
|
3166
|
-
Name="
|
3153
|
+
Name="VCCLCompilerTool"
|
3167
3154
|
/>
|
3168
3155
|
</FileConfiguration>
|
3169
3156
|
<FileConfiguration
|
3170
|
-
Name="
|
3157
|
+
Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
|
3171
3158
|
ExcludedFromBuild="true"
|
3172
3159
|
>
|
3173
3160
|
<Tool
|
3174
|
-
Name="
|
3161
|
+
Name="VCCLCompilerTool"
|
3175
3162
|
/>
|
3176
3163
|
</FileConfiguration>
|
3177
3164
|
<FileConfiguration
|
3178
|
-
Name="
|
3165
|
+
Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
|
3179
3166
|
ExcludedFromBuild="true"
|
3180
3167
|
>
|
3181
3168
|
<Tool
|
3182
|
-
Name="
|
3183
|
-
/>
|
3184
|
-
</FileConfiguration>
|
3185
|
-
<FileConfiguration
|
3186
|
-
Name="EmulatorRelease|Win32"
|
3187
|
-
>
|
3188
|
-
<Tool
|
3189
|
-
Name="VCCustomBuildTool"
|
3190
|
-
Description="Uic'ing $(InputFileName)..."
|
3191
|
-
CommandLine=""$(QTDIR)\bin\uic.exe" -o ".\emulator\GeneratedFiles\ui_$(InputName).h" "$(InputPath)"
"
|
3192
|
-
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
3193
|
-
Outputs="".\emulator\GeneratedFiles\ui_$(InputName).h""
|
3169
|
+
Name="VCCLCompilerTool"
|
3194
3170
|
/>
|
3195
3171
|
</FileConfiguration>
|
3196
3172
|
<FileConfiguration
|
3197
|
-
Name="
|
3173
|
+
Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
|
3198
3174
|
ExcludedFromBuild="true"
|
3199
3175
|
>
|
3200
3176
|
<Tool
|
3201
|
-
Name="
|
3177
|
+
Name="VCCLCompilerTool"
|
3202
3178
|
/>
|
3203
3179
|
</FileConfiguration>
|
3204
3180
|
<FileConfiguration
|
3205
|
-
Name="
|
3181
|
+
Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
|
3206
3182
|
ExcludedFromBuild="true"
|
3207
3183
|
>
|
3208
3184
|
<Tool
|
3209
|
-
Name="
|
3185
|
+
Name="VCCLCompilerTool"
|
3210
3186
|
/>
|
3211
3187
|
</FileConfiguration>
|
3212
3188
|
</File>
|
3213
3189
|
<File
|
3214
|
-
RelativePath=".\
|
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="
|
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="
|
3265
|
+
Name="SimulatorDebug|Win32"
|
3290
3266
|
>
|
3291
3267
|
<Tool
|
3292
3268
|
Name="VCCustomBuildTool"
|
3293
3269
|
/>
|
3294
3270
|
</FileConfiguration>
|
3295
3271
|
<FileConfiguration
|
3296
|
-
Name="
|
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="
|
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="
|
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="
|
3296
|
+
Name="SimulatorRelease|Win32"
|
3321
3297
|
>
|
3322
3298
|
<Tool
|
3323
3299
|
Name="VCCustomBuildTool"
|
3324
3300
|
/>
|
3325
3301
|
</FileConfiguration>
|
3326
3302
|
<FileConfiguration
|
3327
|
-
Name="
|
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="
|
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=".\
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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=".\
|
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="
|
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="
|
3511
|
+
Name="SimulatorDebug|Win32"
|
3552
3512
|
>
|
3553
3513
|
<Tool
|
3554
3514
|
Name="VCCustomBuildTool"
|
3555
3515
|
/>
|
3556
3516
|
</FileConfiguration>
|
3557
3517
|
<FileConfiguration
|
3558
|
-
Name="
|
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="
|
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="
|
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="
|
3542
|
+
Name="SimulatorRelease|Win32"
|
3583
3543
|
>
|
3584
3544
|
<Tool
|
3585
3545
|
Name="VCCustomBuildTool"
|
3586
3546
|
/>
|
3587
3547
|
</FileConfiguration>
|
3588
3548
|
<FileConfiguration
|
3589
|
-
Name="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
3777
|
+
Name="SimulatorDebug|Win32"
|
3798
3778
|
>
|
3799
3779
|
<Tool
|
3800
3780
|
Name="VCCustomBuildTool"
|
3781
|
+
Description="Moc'ing $(InputFileName)..."
|
3782
|
+
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB "-I." "-I..\..\shared\qt\rhodes\GeneratedFiles" "-I$(QTDIR)\include" "-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtWebKit" "..\..\shared\qt\rhodes\DateTimeDialog.h" -o "..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
3783
|
+
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
3784
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
3801
3785
|
/>
|
3802
3786
|
</FileConfiguration>
|
3803
3787
|
<FileConfiguration
|
3804
|
-
Name="
|
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="
|
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="
|
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="
|
3812
|
+
Name="SimulatorRelease|Win32"
|
3829
3813
|
>
|
3830
3814
|
<Tool
|
3831
3815
|
Name="VCCustomBuildTool"
|
3816
|
+
Description="Moc'ing $(InputFileName)..."
|
3817
|
+
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB "-I..\..\shared\qt\rhodes\GeneratedFiles" "-I$(QTDIR)\include" "-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtWebKit" "-I." "..\..\shared\qt\rhodes\DateTimeDialog.h" -o "..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
3818
|
+
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
3819
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
3832
3820
|
/>
|
3833
3821
|
</FileConfiguration>
|
3834
3822
|
<FileConfiguration
|
3835
|
-
Name="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
3903
|
+
Name="VCCustomBuildTool"
|
3916
3904
|
/>
|
3917
3905
|
</FileConfiguration>
|
3918
3906
|
<FileConfiguration
|
3919
|
-
Name="
|
3907
|
+
Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
|
3920
3908
|
ExcludedFromBuild="true"
|
3921
3909
|
>
|
3922
3910
|
<Tool
|
3923
|
-
Name="
|
3911
|
+
Name="VCCustomBuildTool"
|
3912
|
+
/>
|
3913
|
+
</FileConfiguration>
|
3914
|
+
<FileConfiguration
|
3915
|
+
Name="SimulatorDebug|Win32"
|
3916
|
+
>
|
3917
|
+
<Tool
|
3918
|
+
Name="VCCustomBuildTool"
|
3919
|
+
Description="Uic'ing $(InputFileName)..."
|
3920
|
+
CommandLine=""$(QTDIR)\bin\uic.exe" -o "..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h" "$(InputPath)"
"
|
3921
|
+
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
3922
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h""
|
3924
3923
|
/>
|
3925
3924
|
</FileConfiguration>
|
3926
3925
|
<FileConfiguration
|
3927
|
-
Name="
|
3926
|
+
Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
|
3928
3927
|
ExcludedFromBuild="true"
|
3929
3928
|
>
|
3930
3929
|
<Tool
|
3931
|
-
Name="
|
3930
|
+
Name="VCCustomBuildTool"
|
3932
3931
|
/>
|
3933
3932
|
</FileConfiguration>
|
3934
3933
|
<FileConfiguration
|
3935
|
-
Name="
|
3934
|
+
Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
|
3936
3935
|
ExcludedFromBuild="true"
|
3937
3936
|
>
|
3938
3937
|
<Tool
|
3939
|
-
Name="
|
3938
|
+
Name="VCCustomBuildTool"
|
3940
3939
|
/>
|
3941
3940
|
</FileConfiguration>
|
3942
3941
|
<FileConfiguration
|
3943
|
-
Name="
|
3942
|
+
Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
|
3944
3943
|
ExcludedFromBuild="true"
|
3945
3944
|
>
|
3946
3945
|
<Tool
|
3947
|
-
Name="
|
3946
|
+
Name="VCCustomBuildTool"
|
3947
|
+
/>
|
3948
|
+
</FileConfiguration>
|
3949
|
+
<FileConfiguration
|
3950
|
+
Name="SimulatorRelease|Win32"
|
3951
|
+
>
|
3952
|
+
<Tool
|
3953
|
+
Name="VCCustomBuildTool"
|
3954
|
+
Description="Uic'ing $(InputFileName)..."
|
3955
|
+
CommandLine=""$(QTDIR)\bin\uic.exe" -o "..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h" "$(InputPath)"
"
|
3956
|
+
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
3957
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h""
|
3948
3958
|
/>
|
3949
3959
|
</FileConfiguration>
|
3950
3960
|
<FileConfiguration
|
3951
|
-
Name="
|
3961
|
+
Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
|
3952
3962
|
ExcludedFromBuild="true"
|
3953
3963
|
>
|
3954
3964
|
<Tool
|
3955
|
-
Name="
|
3965
|
+
Name="VCCustomBuildTool"
|
3956
3966
|
/>
|
3957
3967
|
</FileConfiguration>
|
3958
3968
|
<FileConfiguration
|
3959
|
-
Name="
|
3969
|
+
Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
|
3960
3970
|
ExcludedFromBuild="true"
|
3961
3971
|
>
|
3962
3972
|
<Tool
|
3963
|
-
Name="
|
3973
|
+
Name="VCCustomBuildTool"
|
3964
3974
|
/>
|
3965
3975
|
</FileConfiguration>
|
3966
3976
|
</File>
|
3967
3977
|
<File
|
3968
|
-
RelativePath="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
4041
|
+
Name="VCCLCompilerTool"
|
4032
4042
|
/>
|
4033
4043
|
</FileConfiguration>
|
4034
4044
|
<FileConfiguration
|
4035
|
-
Name="
|
4045
|
+
Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
|
4036
4046
|
ExcludedFromBuild="true"
|
4037
4047
|
>
|
4038
4048
|
<Tool
|
4039
|
-
Name="
|
4049
|
+
Name="VCCLCompilerTool"
|
4040
4050
|
/>
|
4041
4051
|
</FileConfiguration>
|
4042
4052
|
<FileConfiguration
|
4043
|
-
Name="
|
4053
|
+
Name="SimulatorDebug|Win32"
|
4044
4054
|
>
|
4045
4055
|
<Tool
|
4046
|
-
Name="
|
4056
|
+
Name="VCCLCompilerTool"
|
4057
|
+
UsePrecompiledHeader="0"
|
4047
4058
|
/>
|
4048
4059
|
</FileConfiguration>
|
4049
4060
|
<FileConfiguration
|
4050
|
-
Name="
|
4061
|
+
Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
|
4051
4062
|
ExcludedFromBuild="true"
|
4052
4063
|
>
|
4053
4064
|
<Tool
|
4054
|
-
Name="
|
4065
|
+
Name="VCCLCompilerTool"
|
4055
4066
|
/>
|
4056
4067
|
</FileConfiguration>
|
4057
4068
|
<FileConfiguration
|
4058
|
-
Name="
|
4069
|
+
Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
|
4059
4070
|
ExcludedFromBuild="true"
|
4060
4071
|
>
|
4061
4072
|
<Tool
|
4062
|
-
Name="
|
4073
|
+
Name="VCCLCompilerTool"
|
4063
4074
|
/>
|
4064
4075
|
</FileConfiguration>
|
4065
4076
|
<FileConfiguration
|
4066
|
-
Name="
|
4077
|
+
Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
|
4067
4078
|
ExcludedFromBuild="true"
|
4068
4079
|
>
|
4069
4080
|
<Tool
|
4070
|
-
Name="
|
4081
|
+
Name="VCCLCompilerTool"
|
4071
4082
|
/>
|
4072
4083
|
</FileConfiguration>
|
4073
4084
|
<FileConfiguration
|
4074
|
-
Name="
|
4085
|
+
Name="SimulatorRelease|Win32"
|
4075
4086
|
>
|
4076
4087
|
<Tool
|
4077
|
-
Name="
|
4088
|
+
Name="VCCLCompilerTool"
|
4089
|
+
UsePrecompiledHeader="0"
|
4078
4090
|
/>
|
4079
4091
|
</FileConfiguration>
|
4080
4092
|
<FileConfiguration
|
4081
|
-
Name="
|
4093
|
+
Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
|
4082
4094
|
ExcludedFromBuild="true"
|
4083
4095
|
>
|
4084
4096
|
<Tool
|
4085
|
-
Name="
|
4097
|
+
Name="VCCLCompilerTool"
|
4086
4098
|
/>
|
4087
4099
|
</FileConfiguration>
|
4088
4100
|
<FileConfiguration
|
4089
|
-
Name="
|
4101
|
+
Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
|
4090
4102
|
ExcludedFromBuild="true"
|
4091
4103
|
>
|
4092
4104
|
<Tool
|
4093
|
-
Name="
|
4105
|
+
Name="VCCLCompilerTool"
|
4094
4106
|
/>
|
4095
4107
|
</FileConfiguration>
|
4096
4108
|
</File>
|
4097
4109
|
<File
|
4098
|
-
RelativePath="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
4173
|
+
Name="VCCustomBuildTool"
|
4162
4174
|
/>
|
4163
4175
|
</FileConfiguration>
|
4164
4176
|
<FileConfiguration
|
4165
|
-
Name="
|
4177
|
+
Name="SimulatorDebug|Windows Mobile 6 Professional SDK (ARMV4I)"
|
4166
4178
|
ExcludedFromBuild="true"
|
4167
4179
|
>
|
4168
4180
|
<Tool
|
4169
|
-
Name="
|
4181
|
+
Name="VCCustomBuildTool"
|
4170
4182
|
/>
|
4171
4183
|
</FileConfiguration>
|
4172
4184
|
<FileConfiguration
|
4173
|
-
Name="
|
4185
|
+
Name="SimulatorDebug|Win32"
|
4174
4186
|
>
|
4175
4187
|
<Tool
|
4176
|
-
Name="
|
4177
|
-
|
4188
|
+
Name="VCCustomBuildTool"
|
4189
|
+
Description="Moc'ing $(InputFileName)..."
|
4190
|
+
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB "-I." "-I..\..\shared\qt\rhodes\GeneratedFiles" "-I$(QTDIR)\include" "-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtWebKit" "..\..\shared\qt\rhodes\ExternalWebView.h" -o "..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
4191
|
+
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
4192
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
4178
4193
|
/>
|
4179
4194
|
</FileConfiguration>
|
4180
4195
|
<FileConfiguration
|
4181
|
-
Name="
|
4196
|
+
Name="SimulatorDebug|Pocket PC 2003 (ARMV4)"
|
4182
4197
|
ExcludedFromBuild="true"
|
4183
4198
|
>
|
4184
4199
|
<Tool
|
4185
|
-
Name="
|
4200
|
+
Name="VCCustomBuildTool"
|
4186
4201
|
/>
|
4187
4202
|
</FileConfiguration>
|
4188
4203
|
<FileConfiguration
|
4189
|
-
Name="
|
4204
|
+
Name="SimulatorDebug|Smartphone 2003 (ARMV4)"
|
4190
4205
|
ExcludedFromBuild="true"
|
4191
4206
|
>
|
4192
4207
|
<Tool
|
4193
|
-
Name="
|
4208
|
+
Name="VCCustomBuildTool"
|
4194
4209
|
/>
|
4195
4210
|
</FileConfiguration>
|
4196
4211
|
<FileConfiguration
|
4197
|
-
Name="
|
4212
|
+
Name="SimulatorRelease|Windows Mobile 6 Professional SDK (ARMV4I)"
|
4198
4213
|
ExcludedFromBuild="true"
|
4199
4214
|
>
|
4200
4215
|
<Tool
|
4201
|
-
Name="
|
4216
|
+
Name="VCCustomBuildTool"
|
4202
4217
|
/>
|
4203
4218
|
</FileConfiguration>
|
4204
4219
|
<FileConfiguration
|
4205
|
-
Name="
|
4220
|
+
Name="SimulatorRelease|Win32"
|
4206
4221
|
>
|
4207
4222
|
<Tool
|
4208
|
-
Name="
|
4209
|
-
|
4223
|
+
Name="VCCustomBuildTool"
|
4224
|
+
Description="Moc'ing $(InputFileName)..."
|
4225
|
+
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB "-I..\..\shared\qt\rhodes\GeneratedFiles" "-I$(QTDIR)\include" "-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtWebKit" "-I." "..\..\shared\qt\rhodes\ExternalWebView.h" -o "..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
4226
|
+
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
4227
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
4210
4228
|
/>
|
4211
4229
|
</FileConfiguration>
|
4212
4230
|
<FileConfiguration
|
4213
|
-
Name="
|
4231
|
+
Name="SimulatorRelease|Pocket PC 2003 (ARMV4)"
|
4214
4232
|
ExcludedFromBuild="true"
|
4215
4233
|
>
|
4216
4234
|
<Tool
|
4217
|
-
Name="
|
4235
|
+
Name="VCCustomBuildTool"
|
4218
4236
|
/>
|
4219
4237
|
</FileConfiguration>
|
4220
4238
|
<FileConfiguration
|
4221
|
-
Name="
|
4239
|
+
Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
|
4222
4240
|
ExcludedFromBuild="true"
|
4223
4241
|
>
|
4224
4242
|
<Tool
|
4225
|
-
Name="
|
4243
|
+
Name="VCCustomBuildTool"
|
4226
4244
|
/>
|
4227
4245
|
</FileConfiguration>
|
4228
4246
|
</File>
|
4229
4247
|
<File
|
4230
|
-
RelativePath="
|
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="
|
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="
|
4323
|
+
Name="SimulatorDebug|Win32"
|
4306
4324
|
>
|
4307
4325
|
<Tool
|
4308
4326
|
Name="VCCustomBuildTool"
|
4309
|
-
Description="
|
4310
|
-
CommandLine=""$(QTDIR)\bin\
|
4311
|
-
AdditionalDependencies="
|
4312
|
-
Outputs=""
|
4327
|
+
Description="Uic'ing $(InputFileName)..."
|
4328
|
+
CommandLine=""$(QTDIR)\bin\uic.exe" -o "..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h" "$(InputPath)"
"
|
4329
|
+
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
4330
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h""
|
4313
4331
|
/>
|
4314
4332
|
</FileConfiguration>
|
4315
4333
|
<FileConfiguration
|
4316
|
-
Name="
|
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="
|
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="
|
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="
|
4358
|
+
Name="SimulatorRelease|Win32"
|
4341
4359
|
>
|
4342
4360
|
<Tool
|
4343
4361
|
Name="VCCustomBuildTool"
|
4344
|
-
Description="
|
4345
|
-
CommandLine=""$(QTDIR)\bin\
|
4346
|
-
AdditionalDependencies="
|
4347
|
-
Outputs=""
|
4362
|
+
Description="Uic'ing $(InputFileName)..."
|
4363
|
+
CommandLine=""$(QTDIR)\bin\uic.exe" -o "..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h" "$(InputPath)"
"
|
4364
|
+
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
4365
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h""
|
4348
4366
|
/>
|
4349
4367
|
</FileConfiguration>
|
4350
4368
|
<FileConfiguration
|
4351
|
-
Name="
|
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="
|
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="
|
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="
|
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="
|
4461
|
+
Name="SimulatorDebug|Win32"
|
4444
4462
|
>
|
4445
4463
|
<Tool
|
4446
4464
|
Name="VCCustomBuildTool"
|
4447
|
-
Description="Uic'ing $(InputFileName)..."
|
4448
|
-
CommandLine=""$(QTDIR)\bin\uic.exe" -o ".\emulator\GeneratedFiles\ui_$(InputName).h" "$(InputPath)"
"
|
4449
|
-
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
4450
|
-
Outputs="".\emulator\GeneratedFiles\ui_$(InputName).h""
|
4451
4465
|
/>
|
4452
4466
|
</FileConfiguration>
|
4453
4467
|
<FileConfiguration
|
4454
|
-
Name="
|
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="
|
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="
|
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="
|
4492
|
+
Name="SimulatorRelease|Win32"
|
4479
4493
|
>
|
4480
4494
|
<Tool
|
4481
4495
|
Name="VCCustomBuildTool"
|
4482
|
-
Description="Uic'ing $(InputFileName)..."
|
4483
|
-
CommandLine=""$(QTDIR)\bin\uic.exe" -o ".\emulator\GeneratedFiles\ui_$(InputName).h" "$(InputPath)"
"
|
4484
|
-
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
4485
|
-
Outputs="".\emulator\GeneratedFiles\ui_$(InputName).h""
|
4486
4496
|
/>
|
4487
4497
|
</FileConfiguration>
|
4488
4498
|
<FileConfiguration
|
4489
|
-
Name="
|
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="
|
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
|
-
<
|
4506
|
-
|
4507
|
-
SourceControlFiles="false"
|
4515
|
+
<File
|
4516
|
+
RelativePath="..\..\shared\qt\rhodes\QtMainWindow.cpp"
|
4508
4517
|
>
|
4509
|
-
<
|
4510
|
-
|
4518
|
+
<FileConfiguration
|
4519
|
+
Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
|
4520
|
+
ExcludedFromBuild="true"
|
4511
4521
|
>
|
4512
|
-
<
|
4513
|
-
Name="
|
4514
|
-
|
4515
|
-
|
4516
|
-
|
4517
|
-
|
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
|
-
<
|
4643
|
-
Name="
|
4644
|
-
|
4645
|
-
|
4646
|
-
|
4647
|
-
|
4648
|
-
|
4649
|
-
|
4650
|
-
<
|
4651
|
-
Name="
|
4652
|
-
|
4653
|
-
|
4654
|
-
|
4655
|
-
|
4656
|
-
|
4657
|
-
|
4658
|
-
<
|
4659
|
-
Name="
|
4660
|
-
|
4661
|
-
|
4662
|
-
|
4663
|
-
|
4664
|
-
|
4665
|
-
|
4666
|
-
<
|
4667
|
-
Name="
|
4668
|
-
|
4669
|
-
|
4670
|
-
|
4671
|
-
|
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'ing $(InputFileName)..."
|
4728
|
+
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB "-I." "-I..\..\shared\qt\rhodes\GeneratedFiles" "-I$(QTDIR)\include" "-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtWebKit" "..\..\shared\qt\rhodes\QtMainWindow.h" -o "..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
4729
|
+
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
4730
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
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'ing $(InputFileName)..."
|
4763
|
+
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB "-I..\..\shared\qt\rhodes\GeneratedFiles" "-I$(QTDIR)\include" "-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtWebKit" "-I." "..\..\shared\qt\rhodes\QtMainWindow.h" -o "..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
4764
|
+
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
4765
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
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'ing $(InputFileName)..."
|
4866
|
+
CommandLine=""$(QTDIR)\bin\uic.exe" -o "..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h" "$(InputPath)"
"
|
4867
|
+
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
4868
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h""
|
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'ing $(InputFileName)..."
|
4901
|
+
CommandLine=""$(QTDIR)\bin\uic.exe" -o "..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h" "$(InputPath)"
"
|
4902
|
+
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
4903
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h""
|
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'ing $(InputFileName)..."
|
5398
|
+
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB "-I." "-I..\..\shared\qt\rhodes\GeneratedFiles" "-I$(QTDIR)\include" "-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtWebKit" "..\..\shared\qt\rhodes\QtWebInspector.h" -o "..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
5399
|
+
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
5400
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
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'ing $(InputFileName)..."
|
5433
|
+
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WEBKIT_LIB "-I..\..\shared\qt\rhodes\GeneratedFiles" "-I$(QTDIR)\include" "-I..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtWebKit" "-I." "..\..\shared\qt\rhodes\QtWebInspector.h" -o "..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
5434
|
+
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
5435
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
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'ing $(InputFileName)..."
|
5536
|
+
CommandLine=""$(QTDIR)\bin\uic.exe" -o "..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h" "$(InputPath)"
"
|
5537
|
+
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
5538
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h""
|
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'ing $(InputFileName)..."
|
5571
|
+
CommandLine=""$(QTDIR)\bin\uic.exe" -o "..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h" "$(InputPath)"
"
|
5572
|
+
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
5573
|
+
Outputs=""..\..\shared\qt\rhodes\GeneratedFiles\ui_$(InputName).h""
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
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="
|
7244
|
+
Name="SimulatorRelease|Smartphone 2003 (ARMV4)"
|
5333
7245
|
ExcludedFromBuild="true"
|
5334
7246
|
>
|
5335
7247
|
<Tool
|