![]() |
2012-08-12
, 05:07
|
Posts: 111 |
Thanked: 62 times |
Joined on Apr 2012
@ Hong Kong
|
#2
|
![]() |
2013-03-06
, 21:32
|
Posts: 111 |
Thanked: 62 times |
Joined on Apr 2012
@ Hong Kong
|
#3
|
![]() |
2013-03-06
, 21:54
|
|
Posts: 534 |
Thanked: 723 times |
Joined on Oct 2009
|
#4
|
The Following User Says Thank You to jflatt For This Useful Post: | ||
![]() |
2013-03-06
, 22:19
|
Posts: 111 |
Thanked: 62 times |
Joined on Apr 2012
@ Hong Kong
|
#5
|
![]() |
2013-03-06
, 22:40
|
Posts: 111 |
Thanked: 62 times |
Joined on Apr 2012
@ Hong Kong
|
#6
|
![]() |
2013-03-06
, 22:41
|
|
Posts: 2,448 |
Thanked: 9,523 times |
Joined on Aug 2010
@ Wigan, UK
|
#7
|
Is there some method like "onCreate" or "viewDidAppear" on n9(Qt Quick or Qt Widget)?
#include <QDeclarativeView> #include <QDeclarativeEngine> #include <QDeclarativeContext> .... QDeclarativeView view; QDeclarativeContext *context = view.engine()->rootContext(); context->setContextProperty("myClass", new MyClass);
qmlRegisterType<MyClass>("com.myapplication.items",1,0,"MyClass");
import QtQuick 1.1 Item { id: root MyClass { id: myClass } Component.onCompleted: myClass.methodOne() }
public: Q_INVOKABLE void methodOne(); public slots: void methodTwo();
.... Q_PROPERTY(int myNumber READ myNumber WRITE setMyNumber) public: inline int myNumber() const { return m_number; } inline void setMyNumber(int num) { m_number = num; } private: int m_number;
The Following 2 Users Say Thank You to marxian For This Useful Post: | ||
![]() |
2013-03-06
, 22:42
|
|
Posts: 534 |
Thanked: 723 times |
Joined on Oct 2009
|
#8
|
The Following User Says Thank You to jflatt For This Useful Post: | ||
![]() |
2013-03-06
, 22:57
|
Posts: 111 |
Thanked: 62 times |
Joined on Apr 2012
@ Hong Kong
|
#9
|
Understood, toggle or switch is the GUI component, as seen here:
http://www.developer.nokia.com/Commu...20110930200022
I guess the first question should have been, will this have a GUI?
![]() |
2013-03-09
, 11:06
|
Posts: 111 |
Thanked: 62 times |
Joined on Apr 2012
@ Hong Kong
|
#10
|
I just found this: toggle availability
https://github.com/ajalkane/toggleavailability
toggle Telepathy availability on n9/50
I can't build the project using QtSDK 1.2.1(simulator):
TelepathyQt4/AccountManager: No such file or directory
qemu:
Qemu finished with error: Exit code was 127.
michael@michaelmhk-PC:~/QtSDK/Madde/bin$ ./mad remote -r dfl61-harmattan_3.2012.07-1 poweron -fg Starting QEMU runtime dfl61-harmattan_3.2012.07-1 Executing env LD_LIBRARY_PATH=/home/michael/QtSDK/Madde/tools/qemu_linux_2011-10-19_x86-64/lib /home/michael/QtSDK/Madde/tools/qemu_linux_2011-10-19_x86-64/bin/run-qemu.sh -M n00 -portrait -skin share/qemu/skin/glow/skin.xml -qmp tcp:localhost:7778,server,nowait -mtdblock arm-qemu-rm680-nand.qcow2 -sd arm-qemu-rm680-image.qcow2 -clock unix -serial stdio -net nic -net user,hostfwd=tcp:127.0.0.1:6666-:22,hostfwd=tcp:127.0.0.1:13219-:13219,hostfwd=tcp:127.0.0.1:14168-:14168 /home/michael/QtSDK/Madde/tools/qemu_linux_2011-10-19_x86-64/bin/qemu_linux_2011-10-19_x86-64: error while loading shared libraries: libjpeg.so.62: cannot open shared object file: No such file or directory michael@michaelmhk-PC:~/QtSDK/Madde/bin$ sudo apt-get install libjpeg62
The Following User Says Thank You to michaelmhk For This Useful Post: | ||
Now I am at hello world stage and I googled I need to do that via DBus(Dont know what is that and is that able to control nfc).
I have read this link on nokia and I still confuse
I have school lab on iphone and android. Is there some method like "onCreate" or "viewDidAppear" on n9(Qt Quick or Qt Widget)? How can I call C++/C method via QML? I am so confuse. Is there some more "getting started" guide about development on harmattan? Thank You.