harbour-seaprint/qml/components/DocumentFilter.notqml

25 lines
390 B
Text
Raw Normal View History

2021-02-13 22:43:03 +03:00
import QtDocGallery 5.0
GalleryFilterUnion {
GalleryEndsWithFilter {
property: "fileName"
value: ".pdf"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".ps"
}
2021-02-17 23:02:19 +03:00
GalleryEndsWithFilter {
property: "fileName"
value: ".PDF"
}
GalleryEndsWithFilter {
property: "fileName"
value: ".PS"
}
2021-02-13 22:43:03 +03:00
}