您的位置:首页 > 移动开发 > Objective-C

PyGobject(十)布局容器之Button篇——Gtk.CheckButton

2016-07-26 13:01 435 查看

Gtk.CheckButton

继承关系

Gtk.CheckButton复选框。Gtk.CheckButton是Gtk.ToggleButton的直接子类





Methods

方法修饰词方法名及参数
staticnew ()
staticnew_with_label (label)
staticnew_with_mnemonic (label)

Virtual Methods

do_draw_indicator (cr)

例子



代码:

#!/usr/bin/env python3
# Created by xiaosanyu at 16/6/14
# section 011
TITLE = "CheckButton"
DESCRIPTION = """
A Gtk.CheckButton places a discrete Gtk.ToggleButton next to a widget,
(usually a Gtk.Label). See the section on Gtk.ToggleButton widgets for more information about toggle/check buttons.

The important signal ( Gtk.ToggleButton ::toggled ) is also inherited from Gtk.ToggleButton.
"""
import gi

gi.require_version('Gtk', '3.0')
from gi.repository import Gtk

class CheckButtonWindow(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self, title="CheckButton Demo")
self.set_border_width(10)

hbox = Gtk.Box(spacing=6)
self.add(hbox)

button1 = Gtk.CheckButton.new_with_label("Check Button")
button1.connect("toggled", self.on_button_toggled)
hbox.pack_start(button1, False, False, 0)

@staticmethod
def on_button_toggled(button):
if button.get_active():
state = "check"
else:
state = "not check"
print("Button was", state)

def main():
win = CheckButtonWindow()
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()

if __name__ == "__main__":
main()


使用方法同Gtk.ToggleButton

只是多一个复选框而已

代码下载地址:http://download.csdn.net/detail/a87b01c14/9594728
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息