Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleX
提交
4fad8510
P
PaddleX
项目概览
PaddlePaddle
/
PaddleX
通知
138
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
43
列表
看板
标记
里程碑
合并请求
5
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleX
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
43
Issue
43
列表
看板
标记
里程碑
合并请求
5
合并请求
5
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
4fad8510
编写于
3月 28, 2020
作者:
L
LaraStuStu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Create tool_bar.py
上级
99212056
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
36 addition
and
0 deletion
+36
-0
DataAnnotation/labelme/labelme/widgets/tool_bar.py
DataAnnotation/labelme/labelme/widgets/tool_bar.py
+36
-0
未找到文件。
DataAnnotation/labelme/labelme/widgets/tool_bar.py
0 → 100644
浏览文件 @
4fad8510
from
qtpy
import
QtCore
from
qtpy
import
QtWidgets
class
ToolBar
(
QtWidgets
.
QToolBar
):
def
__init__
(
self
,
title
):
super
(
ToolBar
,
self
).
__init__
(
title
)
layout
=
self
.
layout
()
m
=
(
0
,
0
,
0
,
0
)
layout
.
setSpacing
(
0
)
layout
.
setContentsMargins
(
*
m
)
self
.
setContentsMargins
(
*
m
)
self
.
setWindowFlags
(
self
.
windowFlags
()
|
QtCore
.
Qt
.
FramelessWindowHint
)
def
addAction
(
self
,
action
):
if
isinstance
(
action
,
QtWidgets
.
QWidgetAction
):
return
super
(
ToolBar
,
self
).
addAction
(
action
)
btn
=
ToolButton
()
btn
.
setDefaultAction
(
action
)
btn
.
setToolButtonStyle
(
self
.
toolButtonStyle
())
self
.
addWidget
(
btn
)
class
ToolButton
(
QtWidgets
.
QToolButton
):
"""ToolBar companion class which ensures all buttons have the same size."""
minSize
=
(
60
,
60
)
def
minimumSizeHint
(
self
):
ms
=
super
(
ToolButton
,
self
).
minimumSizeHint
()
w1
,
h1
=
ms
.
width
(),
ms
.
height
()
w2
,
h2
=
self
.
minSize
self
.
minSize
=
max
(
w1
,
w2
),
max
(
h1
,
h2
)
return
QtCore
.
QSize
(
*
self
.
minSize
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录