|
|
02-10-2013
, 10:03 AM
|
|
|
Community Council |
Posts: 2,275 |
Thanked: 4,135 times |
Joined on Jan 2010
|
#32
|
ReferenceError: Can't find variable: DialogStatus
ScriptAction { script: root.status = DialogStatus.Open }
Menu{
id: menu
MenuLayout{
Button{ text: "adasd"}
}
}
|
|
02-11-2013
, 10:56 AM
|
|
|
Posts: 2,131 |
Thanked: 7,642 times |
Joined on Aug 2010
@ Wigan, UK
|
#33
|
When referencing the Menu directly (and not as part of pageStackWindow), I get the following error. I tried to dig down to the PopUp element but it doesn't seem to inherit or otherwise use dialog.
what can I do to get over that?Code:ReferenceError: Can't find variable: DialogStatus ScriptAction { script: root.status = DialogStatus.Open }
Menu implementation as follows
Code:Menu{ id: menu MenuLayout{ Button{ text: "adasd"} } }
Menu{
id: menu
tools: MenuLayout{
Button{ text: "adasd"}
}
}
|
|
03-11-2013
, 04:52 AM
|
|
Posts: 73 |
Thanked: 152 times |
Joined on Jan 2011
@ Czech Republic
|
#34
|
| The Following User Says Thank You to nodevel For This Useful Post: | ||
|
|
03-16-2013
, 08:42 PM
|
|
Posts: 2 |
Thanked: 1 time |
Joined on Mar 2013
|
#35
|
| The Following User Says Thank You to shentey For This Useful Post: | ||
|
|
03-17-2013
, 08:30 AM
|
|
Posts: 73 |
Thanked: 152 times |
Joined on Jan 2011
@ Czech Republic
|
#36
|
You need to install qtmobility first before you can compile Hildon Qt Components.
plugin cannot be loaded for module "org.hildon.components": Cannot load library /usr/lib/qt/imports/org/hildon/components/libhildonplugin.so: (/usr/lib/qt/imports/org/hildon/components/libhildonplugin.so: undefined symbol: _ZNK20QDeclarativeSettings10metaObjectEv)
import org.hildon.components 0.1
|
|
03-17-2013
, 03:35 PM
|
|
Posts: 2 |
Thanked: 1 time |
Joined on Mar 2013
|
#37
|
EDIT: It builds fine, but fails to run with:
Code:plugin cannot be loaded for module "org.hildon.components": Cannot load library /usr/lib/qt/imports/org/hildon/components/libhildonplugin.so: (/usr/lib/qt/imports/org/hildon/components/libhildonplugin.so: undefined symbol: _ZNK20QDeclarativeSettings10metaObjectEv) import org.hildon.components 0.1
|
|
04-17-2013
, 02:41 AM
|
|
Posts: 158 |
Thanked: 68 times |
Joined on May 2011
@ Bulgaria
|
#38
|
| The Following User Says Thank You to disappear For This Useful Post: | ||
![]() |
| Tags |
| hildon, qml components |
| Thread Tools | Search this Thread |
|
Example:
Page { id: root Settings { id: settings organizationName: "Me" applicationName: "MyApplication" } Button { id: button anchors.centerIn: parent text: "Screenshot" onClicked: platformWindow.takeScreenShot(settings.value("screenShotFolder", "/home/user/MyDocs/Images/") + "screenshot.png") // x, y, width, height, scaledWidth and scaledHeight can also be specified. } }https://github.com/marx1an/qt-compon...amples/browser
Pretty basic atm, but I'll add some more features later.
MusiKloud - A SoundCloud client for the Nokia N9
cuteTube - YouTube and Dailymotion client.
MeeFolders - Organise your N9 applications into folders.
Hildon Event Feed - Event Feed application and homescreen widget.
toBuntu - Ubuntu One client.
QDL - GUI download manager.
Last edited by marxian; 01-27-2013 at 08:26 PM. Reason: s/organisation/organization