summaryrefslogtreecommitdiffstats
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
* build system cleanupsOswald Buddenhagen2012-06-271-7/+0
| | | | | | | | | | | | | | | - load(qt_module) => load(qt_build_config) - remove: - CONFIG+=module (obsolete) - code relating to module version headers (automated now) - %mastercontent assignment (automated now) - QT_BUILD_*_LIB defines (automated now) - pointless QPRO_PWD assignments - qmake -project boilerplate - dead code Change-Id: Ia515c3cc40170e3b99b0bfd04c10637d49f9b99f Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
* Properly reset keyboard focus in qwindow-compositor when hidingLaszlo Agocs2012-06-192-2/+21
| | | | | | | | | Surfaces with null buffer attached should be handled similarly to destroyed surfaces. qtwayland makes sure the focus surface is reset, if needed, but it's up to qwindow-compositor to pick a new one. Change-Id: I68ec7fe3fe3e2795ae52ef60d9343cb527205c68 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Fix output geometry in qwindow-compositorLaszlo Agocs2012-06-181-0/+4
| | | | | Change-Id: I99989faca2c5e13df85accdcdacd5cc616b43ba1 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Introduce standard pkg-config usageDonald Carr2012-06-113-9/+0
| | | | | | | | Use our own qualified pkg-config mkspec feature rather than directly executing the system binary Change-Id: I4b162cd8d2d9a8bd5d0b3adb9ca935df9ff96a69 Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Don't build qwidget compositor when qt is configured with -no-widgetsAndy Nichols2012-06-061-1/+5
| | | | | Change-Id: Ie7952d83527015996fe678ccd68d2984b0119858 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Avoid burning cpu in qwindow-compositor with glx and nvidiaLaszlo Agocs2012-06-051-2/+1
| | | | | Change-Id: I2da069c7fd12b26b2811b59ec66418865bcbe962 Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Fixed qml-compositor warning and sizing when running as windowed.Samuel Rødal2012-05-252-1/+2
| | | | | Change-Id: Ic5b58cb1761e74408bd44a048e487617d59ee72d Reviewed-by: Laszlo Agocs <laszlo.p.agocs@nokia.com>
* Added maximize and window closing behavior to qml-compositor.Samuel Rødal2012-05-217-21/+180
| | | | | Change-Id: I13ebfa400d8ce669bf45ee533a2aa9a7190421d5 Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* qwindow-compositor: Avoid stuck alt when running non-fullscreenLaszlo Agocs2012-05-212-0/+17
| | | | | Change-Id: I9d2129e2e746704f1fc0e8f6243fe3b8b7224456 Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Fixed inverted textures in qml-compositor.Samuel Rødal2012-05-171-2/+2
| | | | | | | | qml-compositor now shows applications the same way as qwindow-compositor. Change-Id: If5e53863969830cbd22916e50447b4f05d0a245a Reviewed-by: Laszlo Agocs <laszlo.p.agocs@nokia.com>
* Properly bind to the yInverted property in qml-compositor.Samuel Rødal2012-05-171-9/+2
| | | | | Change-Id: I1260ce2e0f711dc1140b7030e4941159d9eae03c Reviewed-by: Laszlo Agocs <laszlo.p.agocs@nokia.com>
* Fixed qml-compositor and made it properly installable without a qrc.Samuel Rødal2012-05-168-19/+9
| | | | | Change-Id: I40936865453392dc90b03f67220f70480c0eae56 Reviewed-by: Laszlo Agocs <laszlo.p.agocs@nokia.com>
* Add wheel event supportLaszlo Agocs2012-05-101-0/+5
| | | | | Change-Id: Id827485138758ccb4c0db420559b2b9af5c45bbc Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Start using the new wl_fixed_t type properlyLaszlo Agocs2012-05-092-15/+15
| | | | | | | | | | | | | | The mouse and touch coordinates cannot just be treated as integers anymore, they need to be converted from/to double using the helper functions. Some necessary QPoint -> QPointF changes have also been made. For the Qt-specific touch extension we will not switch to wl_fixed_t though. This is because the precision is unfortunately quite small (factor of 256 vs. 10000). Change-Id: I23deaaffe478a39495b12d336985bc62e38a6af4 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Remove notes about enabling the touch extension in qwindow-compositorLaszlo Agocs2012-05-091-9/+0
| | | | | | | It is all automatic nowadays. Change-Id: I7b8f0c1716a910624ac31bd31832fb50418f48fb Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Send expose from qwindow-compositorLaszlo Agocs2012-04-242-0/+10
| | | | | | | | | | | | | | Otherwise apps that (correctly) only start rendering on QEvent::Expose will not render at all due to not receiving the event. Turns out calling sendOnScreenVisibilityChange() is not that simple: It does nothing until the extendedsurface instance is created and that happens only after a roundtrip to the client. Therefore the compositor listens to a new signal in WaylandSurface that indicates when the extendedsurface-related functions become functional. Change-Id: I9fdac4a98e2ad5d8c913c2a7aeef5b313f27c50a Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Do not render in qwindow-compositor before exposeLaszlo Agocs2012-04-241-2/+0
| | | | | Change-Id: I0016a9969004252be3a5978e0ab4155b4d883682 Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Make qml compositor resize to windowJørgen Lind2012-04-161-1/+2
| | | | | Change-Id: I014250f968003fa8f9e14e962edcca581ed2e5d8 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Make windowcompositor actually eat events in the event filterJørgen Lind2012-04-111-3/+2
| | | | | Change-Id: I946aa90eb52751471470185a39f044ac23d53100 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Fix QWindow Compositors input handlingJørgen Lind2012-04-111-15/+17
| | | | | Change-Id: I500c0a8e824abcf9a1e7662e1bd030ecc1b85170 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Build with latest qtdeclarative.Samuel Rødal2012-03-052-2/+2
| | | | | | | Used the rename-qtdeclarative-symbols.sh script from qtdeclarative/bin. Change-Id: I000b8afc3418fe862c51ce868996a4fd3de495be Reviewed-by: Laszlo Agocs <laszlo.p.agocs@nokia.com>
* Fixed warnings in qwidget-compositor.Samuel Rødal2012-03-051-4/+4
| | | | | Change-Id: I22f12e2d78f2951e1c1c5a3b2c05794f0c26abb6 Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* clean up qmake-generated projectsOswald Buddenhagen2012-02-213-36/+1
| | | | | | | remove assignmets which are defaults or bogus Change-Id: I6e4fcef11e905ffbbb7a32210608faac7aa111e5 Reviewed-by: Marius Storm-Olsen <marius.storm-olsen@nokia.com>
* Fix wayland plugin and qwindow-compositor compilationLaszlo Agocs2012-02-202-0/+5
| | | | | | | | | Apparently some qtbase change triggers the need to include a bunch of headers which were not properly included before. The extra mouse button support in the platform plugin simply did not compile. Change-Id: I7d518021fa81f2d5232277f0bce26e48effbeae3 Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Fix qwindow-compositor memory leaksLaszlo Agocs2012-02-155-4/+17
| | | | | Change-Id: I85aa62c9deae308612ed2b13468e7f1e48f82acf Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Added convenience properties in WaylandSurface for window orientation.Samuel Rødal2012-02-142-1/+9
| | | | | | | | | The new windowRotation property is especially useful for the compositor to know how much the surface needs to be rotated in order to be displayed correctly. Change-Id: I81ee17880ceafd465c39b4439dee978f2cb80924 Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Add mouse event synthesizing to the touch extension protocol.Laszlo Agocs2012-02-073-1/+15
| | | | | | | | | The compositor can now be configured to tell the clients to generate mouse events when receiving touch events. In touchscreen-only systems this can be used to reduce the number of Wayland events. Change-Id: I231a15cd4ed463ee81c510c082a270efa255a1f3 Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Fix compilation for qwidget and qwindow compositor examplesLaszlo Agocs2012-01-302-0/+5
| | | | | | Change-Id: If720f7f4797e319ab03d02b6ecb9c88cb71356c2 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Remove "All rights reserved" line from license headers.Jason McDonald2012-01-3016-16/+16
| | | | | | | | | | | As in the past, to avoid rewriting various autotests that contain line-number information, an extra blank line has been inserted at the end of the license text to ensure that this commit does not change the total number of lines in the license header. Change-Id: I08d8673382f0230d5c5a22a25efaf5c45cef539a Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Update obsolete contact address.Jason McDonald2012-01-2316-16/+16
| | | | | | | | Replace Nokia contact email address with Qt Project website. Change-Id: Ib67c393df41c539deae0ef71e0acc13029ceb46d Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Fix duplicated QOpenGLFunctions usageLaszlo Agocs2012-01-202-4/+1
| | | | | | Change-Id: I3c90b705c0ef07e824768975fe1889e394acd82b Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Update license headers.Jason McDonald2012-01-1616-136/+457
| | | | | | | | | | All code in this module outside of src/plugins/platforms/wayland should carry a copy of the BSD license header. The master copy of this header lives at qtbase/header.BSD. Change-Id: Icd56f24f4a3d309db4c1c3aaef25618680c07f6e Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Introduce a touch protocol extension.Laszlo Agocs2012-01-132-0/+8
| | | | | | | | | | | | | | | | | | | Using this opt-in protocol extension all data from QTouchEvent will properly be delivered to the clients. By default compositors will still use the standard and limited protocol for touch events to remain compatible with non-Qt clients. However by calling enableTouchExtension() in the compositor, touch events will be sent through the new protocol and thus Qt clients will receive proper QTouchEvents. Non-Qt clients will get no touch data in this mode. The contents of the rawScreenPositions() list are not yet delivered as the size implications remain to be checked. Change-Id: I981b9c4d44ea808a95b770bf948320abd47fc036 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Remove the MDI compositor.Robin Burchell2012-01-133-237/+1
| | | | | | | | | | This was broken by the recent input rewrites, and isn't really the 'correct' future-proof path anyway. Wayland is more advocating client-side decorations rather than compositor-side decorations, and this won't work in that world. Change-Id: I187084d7eea785eda43e8658cfd2120205eea211 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Use QOpenGLFunctions instead of presuming GL methods exist.Robin Burchell2012-01-132-16/+23
| | | | | | | | | | | They may not always exist, especially on desktop GL, so this is incorrect and won't build in some cases. Credit to Samuel Rødal for setting me on the path :) Change-Id: I89296c5ed67f9388cceedb08cd68a7b5560be5e9 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Don't crash when sending touch events.Laszlo Agocs2012-01-111-7/+8
| | | | | | Change-Id: I62bf4913338e6daa3245400b0e2c7004907cb29a Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Move event handling into WaylandInput apiJørgen Lind2012-01-112-29/+29
| | | | | | | | | | | | | Qt only gives us 1 input device as of now, ie. the mouse/keyboard and touch events. However, at some point in the future, this will change, so that the events will have a device id. This will ie on x map to the same device, but on evdev this can be different devices. Also this is part of what is needed to implement grabbing Change-Id: Ice049502d6f0f53fd06142d4dedde05806d60120 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Laszlo Agocs <laszlo.p.agocs@nokia.com>
* Fix so that not all mouse events end up being key events as wellJørgen Lind2012-01-101-0/+1
| | | | | | | | in the Window compositor Change-Id: I9d88e15ea7ac810a18f6a5b962109d27d2d883a7 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Handle changeCursor in QWindowCompositorJørgen Lind2012-01-102-0/+14
| | | | | | Change-Id: I8ef3b9b36aad00177170f98bcc5c832f884bab04 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Handle mouse focus in the QWindowCompositorJørgen Lind2012-01-101-0/+1
| | | | | | Change-Id: Ibb994eb8b9e2c69aecdee7daf704475d4d84b183 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Add a function to the compositor api to send full touch eventsLaszlo Agocs2012-01-101-6/+3
| | | | | | | | | | | | | | | A simple sendTouchPointEvent(id, x, y, ...) type of function will not be sufficient in the future due to the amount of data in a touch event; therefore an additional sendFullTouchEvent is introduced. This function takes a QTouchEvent and posts a series of down, motion, up, frame events as needed. In the future it may be changed so that it maps to a protocol extension instead of the standard events. As an example qwindow-compositor is updated to use this new function. Change-Id: I39d3df1c6d4868364440f59789d01fc5b7b80dac Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Add an option to qwindow-compositor for disabling random positioningLaszlo Agocs2012-01-101-2/+6
| | | | | | | | | | When passing -stickytopleft all surfaces will be shown at position 0,0 instead of picking a random one. This is useful for apps with one single large window in combination with -nofullscreen. Change-Id: I0834c43981a2d2c7b9796e273ac0eb0cfd738132 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Use QOpenGLFunctions in qwindow-compositor.Laszlo Agocs2012-01-092-4/+4
| | | | | | | | To keep it building with desktop OpenGL. Change-Id: I82685926461fc3249ed7a53e741b653273fe6f5c Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Remove logging of key presses in qwindow-compositor.Laszlo Agocs2012-01-091-2/+2
| | | | | | Change-Id: I505b262687bb32853a69c4dccb79a05f68b1dced Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Have a crack at fixing setGeometry calls.Robin Burchell2012-01-061-4/+6
| | | | | | | | | Commit a5ce91c023aeb433f1b5b792291a88c9a5683955 removed setGeometry, so let's make an effort at still functioning. Change-Id: Iaae877a2312712ba63aa94a8ae3a3939554c5592 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Add isYInverted property with notificationPaul Olav Tvete2012-01-051-1/+9
| | | | | | Change-Id: I6a835a2be4513fa6c24f172503669bc3c95fad0b Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Remove QSize from surfaceMapped signal.Robin Burchell2012-01-051-3/+3
| | | | | | | | Commit 6307ca5e22d81da9a39289c2cca9165fea81b3a5 removed this from the signal, so we must follow suit. Change-Id: I4073cfb7e9f6c722c1ac097e3d939767868027cb Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
* Remove the geometry from the wayland surfaceJørgen Lind2012-01-042-46/+46
| | | | | | | | | and add pos and size properties instead. The pos is a PointF while the size is a integer based Size since pos can be transformed, while the size reffers to the pixel size. Change-Id: I5d84aa6661405cb0df356b787246d0d73ad0c503 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Make it possible to drag windows aroundJørgen Lind2012-01-042-11/+42
| | | | | | | while holding the windows key down. Change-Id: I1b5cd7fb39b5ec0ead6a4c312b4bb653a0191a00 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Implement subsurfaces extensionJørgen Lind2012-01-0413-319/+525
| | | | | | | | | | | | This allows you to have subwindows in the compositor. We tried to experiment with composing subsurfaces client side, but the architecture did not feel very lean. This however, requires the compositor to compose each surface before drawing the surface. The example compositors render the subsurfaces into the wl_surfaces texture. This might not be a good idea. Change-Id: I6e186b62d7b490de7f4e6c6f22fcf6c1e0a70df3 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>