1 Star 0 Fork 39

cc8848 / loginsight

forked from compilelife / loginsight 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
FilterDialog.qml 631 Bytes
一键复制 编辑 原始数据 按行查看 历史
chenyong 提交于 2022-09-15 08:57 . 支持反转过滤
import QtQuick 2.0
import QtQuick.Controls 2.15
import QtQuick.Controls 1.4 as QC1
Dialog {
id: root
width: 450
height: 150
focus: true
standardButtons: Dialog.Ok | Dialog.Cancel
title: '过滤'
contentItem: Row{
spacing: 10
PatternBox {
id: patternBox
}
QC1.CheckBox {
id: reverseCheckBox
text: '反转过滤'
}
}
onAccepted: {
patternBox.addCurToCompleter()
}
function getFilterArgs() {
return {
regex: patternBox.isRegex,
pattern: patternBox.curText,
caseSense: patternBox.isCaseSense,
reverse: reverseCheckBox.checked
}
}
}
Python
1
https://gitee.com/supergame/loginsight.git
git@gitee.com:supergame/loginsight.git
supergame
loginsight
loginsight
master

搜索帮助