plasma-framework/declarativeimports/locale/tests/contents/code/klocaleqmltest.qml

426 lines
15 KiB
QML
Raw Normal View History

2012-02-16 13:04:09 +01:00
// -*- coding: iso-8859-1 -*-
/*
* Author: Giorgos Tsiapaliwkas <terietor@gmail.com>
* Date: Wed Feb 15 2012, 18:28:32
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2 or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import QtQuick 1.1
import org.kde.plasma.components 0.1 as PlasmaComponents
2012-02-16 13:04:09 +01:00
import org.kde.plasma.core 0.1 as PlasmaCore
import org.kde.plasma.locale 0.1
2012-02-16 13:04:09 +01:00
Item {
id: root
2012-02-22 16:57:31 +01:00
property int minimumHeight: 200
property int minimumWidth: 500
2012-02-21 19:23:04 +01:00
Column {
id: column
anchors.horizontalCenter: root.horizontalCenter
spacing: 20
Text {
id: text1
anchors.horizontalCenter: column.horizontalCenter
text: "<B>This is a test plasmoid for the locale bindings</B>"
color: "black"
}
2012-02-21 19:23:04 +01:00
Text {
id: text2
anchors.horizontalCenter: column.horizontalCenter
text: "<B>If you see this text,that means that every" +
"non printable property/method has been already set. And it works!!</B>"
color: "black"
}
2012-02-21 19:23:04 +01:00
PlasmaComponents.Button {
id: bt1
anchors.horizontalCenter: column.horizontalCenter
text: "click in order to test the Locale component"
onClicked:{
console.log("=====Locale Component====")
console.log("country:" + locale.country)
// locale.binaryUnitDialect = Locale.BinaryUnitDialect.IECBinaryDialect
// locale.calendarSystem = CalendarSystem.CopticCalendar
locale.countryDivisionCode = "AL"
console.log("countryDivisionCode:" + locale.countryDivisionCode)
//locale.currencyCode = "AFN" //TODO add the right value
//console.log("currencyCode:" + locale.currencyCode)
//locale.currencySymbol = TODO
//console.log("currencySymbol" + locale.currencySymbol)
//locale.dateTimeDigitSet = DigitSet.EasternArabicIndicDigits
2012-02-21 19:23:04 +01:00
locale.dateFormat = "Y"
console.log("dateFormat:" + locale.dateFormat)
locale.dateFormatShort = "Y"
console.log("dateFormatShort:" + locale.dateFormatShort)
locale.dateMonthNamePossessive = false
console.log("dateMonthNamePossessive:" + locale.dateMonthNamePossessive)
locale.decimalPlaces = 2
console.log("decimalPlaces:" + locale.decimalPlaces)
locale.decimalSymbol = "."
console.log("decimalSymbol:" + locale.decimalSymbol)
//locale.digitSet = DigitSet.EasternArabicIndicDigits
//The encoding property takes its value from encodingMib property, and the encodingMib property
//is read-only so there is no need for me to change its value.
for (var i in locale.encoding) {
console.log("encoding:" + locale.encoding[i])
}
//the language property is read-only
console.log("language:" + locale.language)
//locale.measureSystem = MeasureSystem.Imperial
locale.monetaryDecimalPlaces = 3
console.log("monetaryDecimalPlaces:" + locale.monetaryDecimalPlaces)
locale.monetaryDecimalSymbol = "."
console.log("monetaryDecimalSymbol:" + locale.monetaryDecimalSymbol)
//locale.monetaryDigitSet = DigitSet.EasternArabicIndicDigits
locale.monetaryThousandsSeparator = "."
console.log("monetaryThousandsSeparator:" + locale.monetaryThousandsSeparator)
//locale.negativeMonetarySignPosition = SignPosition.AfterMoney
locale.negativePrefixCurrencySymbol = false
console.log("negativePrefixCurrencySymbol:" + locale.negativePrefixCurrencySymbol)
locale.negativeSign = "-"
console.log("negativeSign:" + locale.negativeSign)
locale.pageSize = 6
console.log("pageSize:" + locale.pageSize)
//locale.positiveMonetarySignPosition = SignPosition.AfterMoney
locale.positivePrefixCurrencySymbol = false
console.log("positivePrefixCurrencySymbol:" + locale.positivePrefixCurrencySymbol)
locale.positiveSign = "+"
console.log("positiveSign:" + locale.positiveSign)
locale.thousandsSeparator = "."
console.log("thousandsSeparator:" + locale.thousandsSeparator)
locale.weekDayOfPray = 10
console.log("weekDayOfPray:" + locale.weekDayOfPray)
//locale.weekNumberSystem = WeekNumberSystem.FirstFullWeek
locale.weekStartDay = 3
console.log("weekStartDay:" + locale.weekStartDay)
locale.workingWeekEndDay = 6
console.log("workingWeekEndDay:" + locale.workingWeekEndDay)
locale.workingWeekStartDay = 2
console.log("workingWeekStartDay:" + locale.workingWeekEndDay)
console.log("use12Clock:" + locale.use12Clock)
2012-02-22 16:57:31 +01:00
print("before static")
//TODO the plasmoid seg faults
/*console.log("the defaultLanguage:" + locale.defaultLanguage)
console.log("the defaultCountry:" + locale.defaultCountry)
console.log("the defaultCurrencyCode:" + locale.defaultCurrencyCode)
console.log("the useTranscript:" + locale.useTranscript)
2012-02-22 13:55:21 +01:00
console.log("the encodingMib:" + locale.encodingMib)*/
2012-02-21 19:23:04 +01:00
console.log("===========end===========")
}
}
PlasmaComponents.Button {
id: bt2
anchors.horizontalCenter: column.horizontalCenter
text: "click in order to test the CalendarSystem component"
onClicked:{
console.log("=====CalendarSystem Component====")
2012-02-22 16:57:31 +01:00
console.log("calendarLabel:" + calendar.CalendarLabel)
2012-02-22 16:57:31 +01:00
console.log("epoch:" + calendar.epoch)
2012-02-22 16:57:31 +01:00
console.log("earliestValidDate:" + calendar.earliestValidDate)
2012-02-22 16:57:31 +01:00
console.log("latestValidDate:" + calendar.latestValidDate)
2012-02-22 16:57:31 +01:00
console.log("shortYearWindowStartYear:" + calendar.shortYearWindowStartYear)
2012-02-22 13:55:21 +01:00
console.log("weekStartDay:" + locale.weekStartDay)
2012-02-22 16:57:31 +01:00
console.log("isLunar:" + calendar.isLunar)
2012-02-22 16:57:31 +01:00
console.log("isLunisolar:" + calendar.isLunisolar)
2012-02-22 16:57:31 +01:00
console.log("isSolar:" + calendar.isSolar)
2012-02-22 16:57:31 +01:00
console.log("isProleptic:" + calendar.isProleptic)
2012-02-21 19:23:04 +01:00
console.log("===============end===============")
}
}
Locale {
id: locale
binaryUnitDialect: BinaryUnitDialect.DefaultBinaryDialect
onBinaryUnitDialectChanged: {
console.log("the binaryUnitDialect property has been changed")
}
calendarSystem: Locale.QDateCalendar
onCalendarSystemChanged: {
console.log("the calendarSystem property has been changed")
}
//TODO:Add the proper value
/*currencyCode: "AED"
onCurrencyCodeChanged: {
console.log("the currencyCode property has been changed")
}*/
/*TODO
currencySymbol: ""
onCurrencySymbolChanged: {
console.log("the currencySymbol property has been changed")
}*/
countryDivisionCode: "AD"
onCountryDivisionCodeChanged: {
console.log("the countryDivisionCode property has been changed")
}
dateFormat: "y"
onDateFormatChanged: {
console.log("the dateFormat property has been changed")
}
dateFormatShort: "y"
onDateFormatShortChanged: {
console.log("the dateFormatShort property has been changed")
}
dateMonthNamePossessive: true
onDateMonthNamePossessiveChanged: {
console.log("the dateMonthNamePossessive property has been changed")
}
dateTimeDigitSet: Digit.ArabicDigits
onDateTimeDigitSetChanged: {
console.log("the dateTimeDigitSet property has been changed")
}
decimalPlaces: 1
onDecimalPlacesChanged: {
console.log("the decimalPlaces property has been changed")
}
decimalSymbol: ","
onDecimalSymbolChanged: {
console.log("the decimalSymbol property has been changed")
}
digitSet: Digit.ArabicDigits
onDigitSetChanged: {
console.log("the digitSet property has been changed")
}
encoding: encodingMib
onEncodingChanged: {
console.log("the digitSet property has been changed")
}
measureSystem: MeasureSystem.Metric
onMeasureSystemChanged: {
console.log("the measureSystem property has been changed")
}
monetaryDecimalPlaces: 2
onMonetaryDecimalPlacesChanged: {
console.log("the monetaryDecimalPlaces property has been changed")
}
monetaryDecimalSymbol: ","
onMonetaryDecimalSymbolChanged: {
console.log("the monetaryDecimalSymbol property has been changed")
}
monetaryDigitSet: DigitSet.ArabicDigits
onMonetaryDigitSetChanged: {
console.log("the monetaryDigitSet property has been changed")
}
monetaryThousandsSeparator: ","
onMonetaryThousandsSeparatorChanged: {
console.log("the monetaryThousandsSeparator property has been changed")
}
negativeMonetarySignPosition: SignPosition.ParensAround
onNegativeMonetarySignPositionChanged: {
console.log("the negativeMonetarySignPosition property has been changed")
}
negativePrefixCurrencySymbol: true
onNegativePrefixCurrencySymbolChanged: {
console.log("the negativePrefixCurrencySymbol property has been changed")
}
negativeSign: "-----"
onNegativeSignChanged: {
console.log("the negativeSign property has been changed")
}
pageSize: 5
onPageSizeChanged: {
console.log("the pageSign property has been changed")
}
positiveMonetarySignPosition: SignPosition.ParensAround
onPositiveMonetarySignPositionChanged: {
console.log("the positiveMonetarySignPosition property has been changed")
}
positivePrefixCurrencySymbol: true
onPositivePrefixCurrencySymbolChanged: {
console.log("the positivePrefixCurrencySymbol property has been changed")
}
positiveSign: " "
onPositiveSignChanged: {
console.log("the positiveSign property has been changed")
}
thousandsSeparator: ","
onThousandsSeparatorChanged: {
console.log("the thousandsSeparator property has been changed")
}
weekDayOfPray: 20
2012-02-22 13:55:21 +01:00
onWeekDayOfPrayChanged: {
console.log("the weekDayOfPray property has been changed")
}
weekNumberSystem: WeekNumberSystem.DefaultWeekNumber
2012-02-22 13:55:21 +01:00
onWeekNumberSystemChanged: {
console.log("the weekNumberSystem property has been changed")
}
weekStartDay: 2
onWeekStartDayChanged: {
console.log("the weekStartDay property has been changed")
}
workingWeekEndDay: 5
onWorkingWeekEndDayChanged: {
console.log("the workingWeekEndDay property has been changed")
}
workingWeekStartDay: 1
onWorkingWeekStartDayChanged: {
console.log("the workingWeekStartDay property has been changed")
}
onUse12ClockChanged: {
console.log("the use12Clock property has been changed")
}
onDefaultLanguageChanged: {
console.log("the defaultLanguage property has been changed")
}
onDefaultCountryChanged: {
console.log("the defaultCountry property has been changed")
}
onDefaultCurrencyCodeChanged: {
console.log("the defaultCurrencyCode property has been changed")
}
onUseTranscriptChanged: {
console.log("the useTranscript property has been changed")
}
onEncodingMibChanged: {
console.log("the encodingMib property has been changed")
}
onCountryChanged: {
console.log("the country property has been changed")
}
onLanguageChanged: {
console.log("the language property has been changed")
}
2012-02-16 13:04:09 +01:00
}
2012-02-21 19:23:04 +01:00
CalendarSystem {
id: calendar
onCalendarSystemChanged: {
2012-02-22 13:55:21 +01:00
console.log("the calendarSystem property has been changed")
}
onCalendarLabelChanged: {
2012-02-22 13:55:21 +01:00
console.log("the calendarLabel property has been changed")
}
onEpochChanged: {
2012-02-22 13:55:21 +01:00
console.log("the epoch property has been changed")
}
onEarliestValidDateChanged: {
2012-02-22 13:55:21 +01:00
console.log("the earliestValidDate property has been changed")
}
onLatestValidDateChanged: {
2012-02-22 13:55:21 +01:00
console.log("the latestValidDate property has been changed")
}
onShortYearWindowStartYearChanged: {
2012-02-22 13:55:21 +01:00
console.log("the shortYearWindowStartYear property has been changed")
}
onWeekStartDayChanged: {
2012-02-22 13:55:21 +01:00
console.log("the weekStartDay property has been changed")
}
onIsLunarChanged: {
2012-02-22 13:55:21 +01:00
console.log("the isLunar property has been changed")
}
onIsLunisolarChanged: {
2012-02-22 13:55:21 +01:00
console.log("the isLunisolar property has been changed")
}
onIsSolarChanged: {
2012-02-22 13:55:21 +01:00
console.log("the isSolar property has been changed")
}
onIsProlepticChanged: {
2012-02-22 13:55:21 +01:00
console.log("the isProleptic property has been changed")
}
2012-02-21 19:23:04 +01:00
}
}
}