Music keyboard example in Qt
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot change of template (Template:CodeSnippet) - now using Template:ArticleMetaData) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Add timestamp to UnderConstruction template) |
||
| Line 1: | Line 1: | ||
| − | + | [[Category:Qt Mobility]][[Category:Symbian]] | |
{{ArticleMetaData | {{ArticleMetaData | ||
| − | |||
|platform=S60 5th Edition | |platform=S60 5th Edition | ||
|devices= Nokia 5800 XpressMusic, Nokia N97 mini | |devices= Nokia 5800 XpressMusic, Nokia N97 mini | ||
| − | |||
| − | |||
|creationdate=April 6, 2010 | |creationdate=April 6, 2010 | ||
|keywords=Qt Resource System, Animation Framework, GraphicsView, Orientation | |keywords=Qt Resource System, Animation Framework, GraphicsView, Orientation | ||
| − | + | |sourcecode=[[Media:Keyboard.zip]] | |
| − | |sourcecode= | + | |
|installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
|sdk=<!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | |sdk=<!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | ||
|devicecompatability=<!-- Compatible devices (e.g.: All* (must have GPS) ) --> | |devicecompatability=<!-- Compatible devices (e.g.: All* (must have GPS) ) --> | ||
|signing=<!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | |signing=<!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | ||
| − | |capabilities= | + | |capabilities=ReadDeviceData |
|author=[[User:Axeljaeger]] | |author=[[User:Axeljaeger]] | ||
}} | }} | ||
| − | {{UnderConstruction}} | + | {{UnderConstruction|timestamp=20100922}} |
| − | =Introduction= | + | |
| + | == Introduction == | ||
The keyboard demo shows a music keyboard that can play tones in either square, saw or triangle sound wave. | The keyboard demo shows a music keyboard that can play tones in either square, saw or triangle sound wave. | ||
In portrait mode, the user can choose a waveform and adjust the volume. A small keyboard for sound-test is provided in the bottom. In landscape mode, the whole screen is filled with a keyboard to be used for actual playing of a song. | In portrait mode, the user can choose a waveform and adjust the volume. A small keyboard for sound-test is provided in the bottom. In landscape mode, the whole screen is filled with a keyboard to be used for actual playing of a song. | ||
| − | The whole user interface is implemented with QGraphicsWidgets in a QGraphicsScene. Animated transitions between portrait and landscape are provided. Switching modes by rotating the device is provided using the QOrientationSensor. | + | The whole user interface is implemented with {{Icode|QGraphicsWidgets}} in a {{Icode|QGraphicsScene}}. Animated transitions between portrait and landscape are provided. Switching modes by rotating the device is provided using the {{Icode|QOrientationSensor}}. |
Sound playback is provided when compiled for S60 using native code. As soon as the is a backend for Qt multimedia for Symbian is available, the example will be ported to use the Qt audio system. Playback will then on both mobile and desktop using the same code path. | Sound playback is provided when compiled for S60 using native code. As soon as the is a backend for Qt multimedia for Symbian is available, the example will be ported to use the Qt audio system. Playback will then on both mobile and desktop using the same code path. | ||
| − | Because the sensor framework from QtMobility needs ReadDeviceData capability the example cannot be self signed. Use Symbian Signed online for your own testing. | + | Because the sensor framework from QtMobility needs {{Icode|ReadDeviceData}} capability the example cannot be self signed. Use Symbian Signed online for your own testing. |
| − | =Planned updates= | + | == Planned updates == |
As soon as a solution is found for http://bugreports.qt.nokia.com/browse/QTMOBILITY-999 a version with a Qt-based backend will be released | As soon as a solution is found for http://bugreports.qt.nokia.com/browse/QTMOBILITY-999 a version with a Qt-based backend will be released | ||
As soon as nokia provides a qt-ish way to lock the screen orientation, this will be added as well | As soon as nokia provides a qt-ish way to lock the screen orientation, this will be added as well | ||
| − | =History= | + | == History == |
| Line 42: | Line 39: | ||
|- | |- | ||
|21 September 2010 | |21 September 2010 | ||
| − | |Use QtMobility instead of Qt Mobile Extensions - Remove own emulator in favor of NokiaQtSDK's new | + | |Use QtMobility instead of Qt Mobile Extensions - Remove own emulator in favor of NokiaQtSDK's new emulator |
|} | |} | ||
| − | =Screenshot= | + | == Screenshot == |
[[File:Keyboard-composition.png]] | [[File:Keyboard-composition.png]] | ||
| − | =Download= | + | |
| + | ==Download== | ||
[[File:Keyboard.zip]] | [[File:Keyboard.zip]] | ||
Revision as of 09:46, 5 September 2011
Article Metadata
Code Example
Tested with
Compatibility
Platform Security
Article
Contents |
Introduction
The keyboard demo shows a music keyboard that can play tones in either square, saw or triangle sound wave.
In portrait mode, the user can choose a waveform and adjust the volume. A small keyboard for sound-test is provided in the bottom. In landscape mode, the whole screen is filled with a keyboard to be used for actual playing of a song.
The whole user interface is implemented with QGraphicsWidgets in a QGraphicsScene. Animated transitions between portrait and landscape are provided. Switching modes by rotating the device is provided using the QOrientationSensor.
Sound playback is provided when compiled for S60 using native code. As soon as the is a backend for Qt multimedia for Symbian is available, the example will be ported to use the Qt audio system. Playback will then on both mobile and desktop using the same code path.
Because the sensor framework from QtMobility needs ReadDeviceData capability the example cannot be self signed. Use Symbian Signed online for your own testing.
Planned updates
As soon as a solution is found for http://bugreports.qt.nokia.com/browse/QTMOBILITY-999 a version with a Qt-based backend will be released As soon as nokia provides a qt-ish way to lock the screen orientation, this will be added as well
History
| 6 April 2010 | Initial version that was submitted to the QtMobility-contest. This one was actually not using QtMobility but the so called "Qt Mobile Extensions" |
| 21 September 2010 | Use QtMobility instead of Qt Mobile Extensions - Remove own emulator in favor of NokiaQtSDK's new emulator |


