![]() |
2012-11-27
, 22:26
|
Posts: 479 |
Thanked: 1,284 times |
Joined on Jan 2012
@ Enschede, The Netherlands
|
#22
|
Partners / Extend the platform
Our current friends include companies such as D.Phone, DNA, ST-Ericsson, Myriad, Opera, Cyberport, Joiku, Invesdor, Tekes and Digia.
The Following User Says Thank You to Fuzzillogic For This Useful Post: | ||
![]() |
2012-11-27
, 22:36
|
Posts: 1,746 |
Thanked: 1,832 times |
Joined on Dec 2010
|
#23
|
The Following User Says Thank You to m4r0v3r For This Useful Post: | ||
![]() |
2012-11-27
, 22:50
|
Posts: 2,292 |
Thanked: 4,135 times |
Joined on Apr 2010
@ UK
|
#24
|
![]() |
2012-11-27
, 23:38
|
|
Posts: 1,348 |
Thanked: 1,863 times |
Joined on Jan 2009
@ fr/35/rennes
|
#25
|
The Following User Says Thank You to www.rzr.online.fr For This Useful Post: | ||
![]() |
2012-11-28
, 10:58
|
|
Posts: 7,075 |
Thanked: 9,073 times |
Joined on Oct 2009
@ Moon! It's not the East or the West side... it's the Dark Side
|
#26
|
The Following User Says Thank You to Dave999 For This Useful Post: | ||
![]() |
2013-01-16
, 12:46
|
|
Posts: 7,075 |
Thanked: 9,073 times |
Joined on Oct 2009
@ Moon! It's not the East or the West side... it's the Dark Side
|
#27
|
from PyQt4 import QtGui
class Sailfish(QtGui.QWidget):
def __init__(self, parent=None):
super(Sailfish, self).__init__(parent)
Label = QtGui.QLabel("hello sailfish!")
LineEdit = QtGui.QLineEdit()
mainLayout = QtGui.QGridLayout()
mainLayout.addWidget(Label, 0, 0)
mainLayout.addWidget(LineEdit, 0, 1)
self.setLayout(mainLayout)
self.setWindowTitle("Super useless sailfish app")
if __name__ == '__main__':
import sys
app = QtGui.QApplication(sys.argv)
PythonWidget = Sailfish()
PythonWidget.show()
sys.exit(app.exec_())
![]() |
2013-02-25
, 19:25
|
|
Posts: 7,075 |
Thanked: 9,073 times |
Joined on Oct 2009
@ Moon! It's not the East or the West side... it's the Dark Side
|
#28
|
![]() |
2013-02-26
, 03:23
|
Moderator |
Posts: 6,215 |
Thanked: 6,400 times |
Joined on Nov 2011
|
#29
|
![]() |
2013-02-26
, 04:08
|
Posts: 109 |
Thanked: 62 times |
Joined on Mar 2012
|
#30
|
And as Khertans and (most of) THP's applications are also written in Python, there is a really good chance of Python programs being the first useful Jolla/Sailfish apps.
modRana: a flexible GPS navigation system
Mieru: a flexible manga and comic book reader
Universal Components - a solution for native looking yet component set independent QML appliactions (QtQuick Controls 2 & Silica supported as backends)