默认的Gtk.Window是继承自Gtk.Bin的, 只能放置一个控件, 如果想要放置多个控件就需要容器container, 常用的容器有 盒子, 网格, 笔记本, 固定板 等, 下面的文章会慢慢讲解
首先, 来说盒子容器
-
什么是盒子
- 盒子可以垂直或水平的放置许多容器
上面的是垂直盒子 - 主要继承关系 Gtk.Box < Gtk.Container < Gtk.Widget
-
创建一个盒子
self.box = Gtk.Box()
可以实例化一个盒子, 默认是水平盒子
垂直盒子可以 self.box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
Gtk.Orientation 枚举类型
Gtk.Orientaion.HORIZONTAL = 0
Gtk.Orientaion.VERITICAL = 1
所以上面写self.box = Gtk.Box(orientation=1) 也是可以的 但是不太容易理解
或者 self.box = Gtk.VBox()
-
盒子的使用
Gtk.Box().pack_start(sub_widget, expand, fill, padding)
Gtk.Box().pack_end(sub_widget, expand, fill, padding)
第一个方法是从开始放置, 第二个从末尾
sub_widget 是被放置的控件
expand(bool) 是否分配额外的空间
fill (bool) 是否填充额外的空间, 当expand = False时, fill 无效
padding(int) 向外扩展的像素
例如
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk
class MyWindow(Gtk.Window):
def __init__(self):
super(MyWindow, self).__init__(title="Hello")
self.box = Gtk.Box()
self.add(self.box)
self.label = Gtk.Label(label="I am a label")
self.button = Gtk.Button(label="I am a Button")
self.box.pack_start(self.label, True, True, 0)
self.box.pack_start(self.button, True, True, 0)
win = MyWindow()
win.show_all()
win.connect("destroy", Gtk.main_quit)
Gtk.main()
Example
- 盒子的属性
- orientation 接受Gtk.Orientaion 类型
- spacing 接受int, 控件间像素距离
- homogeneous 接受bool, 控件是否等高(等宽)
- border_width 边框大小
- 常用方法
- pack_start(sub_widget, expand, fill, padding)
- pack_end(sub_widget, expand, fill, padding)
- set_homogeneous(bool) 设定是否等高(等宽)
- set_spacing(int) 设定控件间距离
- remove(widget) 移除控件
- 常见信号
- add 容器内添加控件
- remove 移除控件
- check-resize 改变大小
下篇文章讲grid 网格容器
欢迎大家留言
网友评论