Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. lupdate_only {
  2. SOURCES += $$PWD/ui/*.qml
  3. }
  4.  
  5. TRANSLATIONS +=
  6. translations/i18n_nl.ts translations/i18n_fr.ts translations/i18n_en.ts
  7.  
  8. MessageDialog {
  9. title: qsTr("Warning")
  10. text: qsTr("Please select Yes or No")
  11. icon: StandardIcon.Warning
  12. standardButtons: StandardButton.Yes | StandardButton.No
  13. .....
  14. }
  15.  
  16. Button {
  17. id: yesButton
  18. text: qsTr("Yes")
  19. onClicked: root.click(StandardButton.Yes)
  20. visible: root.standardButtons & StandardButton.Yes
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement