summaryrefslogtreecommitdiff
path: root/platform/qt
Commit message (Collapse)AuthorAgeFilesLines
* [core] move gl::Context to Backend and refactor ViewKonstantin Käfer2016-10-2510-134/+104
|
* [core] separate Backend from View for headless renderingKonstantin Käfer2016-10-255-34/+65
|
* [qt] Fix macOS Qt demo app with Qt4.xBruno de Oliveira Abinader2016-10-241-0/+10
|
* [core] [node] pass thread pool impl to Map constructorMike Morris2016-10-203-1/+7
| | | | | | | Updates mbgl::Map constructor usage everywhere Adds NodeThreadPool implementation using AsyncQueue to call Nan::AsyncQueueWorker from main thread
* [qt] Fix Qt5 bitrise botBruno de Oliveira Abinader2016-10-171-2/+3
|
* [test] Deploy core test fixtures on BitriseBruno de Oliveira Abinader2016-10-111-0/+7
|
* [android][ios][macos][linux][qt] included default LocalFileSourceIvo van Dongen2016-09-301-0/+1
|
* [core] move OpenGL extension loading to their own headersKonstantin Käfer2016-09-291-1/+1
|
* [Qt] Connect to finished() and error() signals from QNetworkReplyBruno de Oliveira Abinader2016-09-282-5/+6
| | | | | | | Qt macOS network manage implementation differs from linux in a sense that some requests do not generate a finished() signal, but a error() instead - that is not caught up by the network access manager. This made QMapboxGL.styleURL utest hang for macOS.
* [Qt] Header cleanup (#6477)Thiago Marcos P. Santos2016-09-2721-64/+71
| | | Make some headers private, so we only commit with the QML API.
* [core] standardize on uint16_t for texture sizesKonstantin Käfer2016-09-272-5/+7
|
* [core, qt] Generalized source change notificationMinh Nguyễn2016-09-262-2/+2
| | | | This same notification can in the future be used for other changes to a source.
* [core] Source-driven attributionMinh Nguyễn2016-09-263-2/+3
| | | | | | Implemented observer callbacks so the style knows when the source’s attribution changes and the map knows when the style’s attribution changes. Also implemented a getter for a tile source’s attribution. Fixes #2723.
* [Qt] Simplify QML exampleThiago Marcos P. Santos2016-09-261-374/+256
|
* [Qt] Implement QQuickMapboxGL::error{,String} propertiesBruno de Oliveira Abinader2016-09-262-12/+25
|
* [Qt] Replace remaining Mapbox-specific features as MapParameterBruno de Oliveira Abinader2016-09-264-66/+56
|
* [Qt] Update QML runtime style exampleBruno de Oliveira Abinader2016-09-269-275/+112
|
* [Qt] Added 'image' MapParameter typeBruno de Oliveira Abinader2016-09-263-1/+29
|
* [Qt] s/QQuickMapboxGL{Style,StyleProperty}/QQuickMapboxGLMapParameterBruno de Oliveira Abinader2016-09-2617-403/+538
|
* [Qt] Added QQuickMapboxGLMapParameterBruno de Oliveira Abinader2016-09-266-1/+136
|
* [Qt] Qt conversion toNumber() should accept QVariant::IntBruno de Oliveira Abinader2016-09-261-1/+1
|
* [Qt] Fix RVO warning in QMapbox::addAnnotationIconBruno de Oliveira Abinader2016-09-261-1/+1
|
* [Qt] QQuickMapboxGLRenderer is now a friend of QQuickMapboxGLBruno de Oliveira Abinader2016-09-264-92/+48
| | | | | Simplify implementation by removing unsafe accessors from QQuickMapboxGL meant only to be used by QQuickMapboxGLRenderer.
* [Qt] Move QMapboxGL::MapChange to QMapbox namespaceBruno de Oliveira Abinader2016-09-268-63/+66
|
* [Qt] Add a more compelling runtime style exampleThiago Marcos P. Santos2016-09-237-272/+1404
|
* [Qt] Add map pitch support on the example appThiago Marcos P. Santos2016-09-231-1/+3
|
* [Qt] Add API for adding icon to the styleThiago Marcos P. Santos2016-09-232-9/+28
|
* [glfw, qt] Added missing docs (#6428)Bruno de Oliveira Abinader2016-09-221-0/+4
|
* [qt] Initial style from MAPBOX_STYLE_URL if setBruno de Oliveira Abinader2016-09-221-1/+7
|
* [build] use Mason's sqlite when linking Qt tests (#6395)Konstantin Käfer2016-09-201-0/+2
|
* [build] upgrade dependenciesKonstantin Käfer2016-09-201-2/+2
| | | | | | | | libuv 1.7.5 => 1.9.1 libjpeg-turbo 1.4.2 => 1.5.0 libpng 1.6.20 => 1.6.25 libzip 0.11.2 => 1.1.3 nunicode 1.6 => 1.7.1
* [build] Upgrade GLFW to 3.2.1, SQLite to 3.14.2 and libwebp to 0.5.1Konstantin Käfer2016-09-192-2/+3
|
* [qt] HttpFileSource - rate limitIvo van Dongen2016-09-131-0/+12
|
* [qt] Fix bug in fromQStringListBruno de Oliveira Abinader2016-09-131-2/+3
|
* [qt] Separate transition options accessors from class APIBruno de Oliveira Abinader2016-09-133-22/+26
|
* [core, ios, android, qt] Observe style layer mutations rather than requiring ↵John Firebaugh2016-09-061-4/+0
| | | | | | SDKs to use Map::update This paves the way for updates to filter and layout properties to trigger a source reload, without each SDK having to participate in the implementation.
* [Qt] s/parent_/parentThiago Marcos P. Santos2016-08-261-2/+2
| | | | Fits better with the docs.
* [Qt] Initial documentation stubThiago Marcos P. Santos2016-08-262-0/+88
|
* [Qt][tests] Added tests for set style interfaceThiago Marcos P. Santos2016-08-262-0/+95
|
* [Qt] setStyleURL and setStyleJSON name reviewThiago Marcos P. Santos2016-08-264-10/+10
| | | | Qt uses URL as Url and JSON as Json.
* [Qt] Read the access token from the environment by defaultThiago Marcos P. Santos2016-08-262-1/+1
|
* [Qt] Implement a Qt headless rendererThiago Marcos P. Santos2016-08-223-9/+113
| | | | Using legacy QGLWidget because we support Qt4.
* [Qt] Enable tests on macOSThiago Marcos P. Santos2016-08-222-0/+2
|
* [Qt] Added QQuickMapboxGLStyleBruno de Oliveira Abinader2016-08-179-32/+161
| | | | | | | A QQuickMapboxGLStyleProperty being a child of QQuickMapboxGLStyle assures that only properties associated with that particular style will reflect on the map - and that happens only when the style is the current set via style property.
* [Qt] Use MapChangeWillStartLoadingMap to get notified about style changesBruno de Oliveira Abinader2016-08-175-4/+40
|
* [Qt] Invert parent/child notification mechanism in QQuickMapboxGLStylePropertyBruno de Oliveira Abinader2016-08-174-60/+77
| | | | | Parent item (QQuickMapboxGL) should check for signals from its child items e.g. QQuickMapboxGLStyleProperty, and not the opposite.
* [Qt] Use QVariantMap in QQuickMapboxGLStylePropertyBruno de Oliveira Abinader2016-08-175-57/+29
|
* [Qt] Use strict signature for add{Source,Layer}Bruno de Oliveira Abinader2016-08-172-7/+7
|
* [Qt] Remove template from eachMemberBruno de Oliveira Abinader2016-08-171-2/+3
|
* [build] Workaround automoc issue on some cmake versionsThiago Marcos P. Santos2016-08-053-8/+4
|