harbour-seaprint/qml/components/DocumentFilterOffice.notqml

105 lines
1.7 KiB
Text
Raw Permalink Normal View History

2021-04-18 10:28:33 +03:00
import QtDocGallery 5.0
GalleryFilterUnion {
GalleryEndsWithFilter {
property: "fileName"
value: ".pdf"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".ps"
}
2021-06-12 13:45:58 +03:00
GalleryEndsWithFilter {
property: "fileName"
value: ".txt"
}
2021-04-18 10:28:33 +03:00
GalleryEndsWithFilter {
property: "fileName"
value: ".PDF"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".PS"
}
2021-06-12 13:45:58 +03:00
GalleryEndsWithFilter {
property: "fileName"
value: ".TXT"
}
2021-04-18 10:28:33 +03:00
GalleryEndsWithFilter {
property: "fileName"
value: ".odt"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".doc"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".docx"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".rtf"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".ODT"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".DOC"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".DOCX"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".RTF"
}
2021-06-12 17:54:17 +03:00
GalleryEndsWithFilter {
property: "fileName"
value: ".ppt"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".pptx"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".odp"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".PPT"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".PPTX"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".ODP"
}
2021-04-18 10:28:33 +03:00
}