~ubuntu-branches/ubuntu/precise/kalgebra/precise-updates

« back to all changes in this revision

Viewing changes to mobile/plugins/widgets/kde/RealInput.qml

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-16 16:41:53 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20111216164153-ym1s7jhbqwn2ndz6
Tags: 4:4.7.90-0ubuntu2
PPA rebuild, no changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 1.1
 
2
import org.kde.plasma.components 0.1
 
3
 
 
4
TextField
 
5
{
 
6
        property double value: parseFloat(text)
 
7
        inputMethodHints: Qt.ImhDigitsOnly | Qt.ImhNoPredictiveText
 
8
        
 
9
        text: value.toString()
 
10
        
 
11
        validator: DoubleValidator {}
 
12
        
 
13
        onTextChanged: value=parseFloat(text)
 
14
}
 
 
b'\\ No newline at end of file'