如何使GtkTextView看起来像GtkEntry



或者"如何将可见(细)边框添加到GtkTextView"?有可能吗?

提前谢谢。

多年后。。。但是在网上搜索仍然不能很好地回答这个问题。

解决方案非常简单:只需创建一个GtkFrame并添加包含GtkTextViewGtkScrolledWindow,以下是python中的一些示例代码:

frame = Gtk.Frame()
scroll = Gtk.ScrolledWindow()
scroll.set_hexpand( True )
scroll.set_border_width( 3 )
textview = Gtk.TextView()
scroll.add( textview )
frame.add( scroll )

大约9年半后。。。

我将给出一个独立于语言的答案。

首先,添加一个GtkScrolledWindow,它将启用滚动。现在添加您的GtkTextView。然后将阴影类型设置为"无"以外的其他类型。它将显示GtkTextView周围的边界。

使用Glade编辑器:

  • 在glade编辑器中选择您的ScrolledWindow(您已将TextView打包到ScrolledWindow中,是吗?:),如果不是,请选择您的TextView
  • 选择Widget属性->Common选项卡
  • 根据您的喜好查找并调整边框宽度属性

发件人代码:

调用容器小部件的set_border_width(width)方法(ScrolledWindowTextView

请注意,在任何情况下,TextArea都不会完全像Entry,这取决于所使用的gtk+主题。

使用gtk.ScrolledWindow.set_shadow_type(type=gtk.SHADOW_ETCHED_IN)可以改善外观,但与gtk.Entry的风格不匹配。

如果将搜索窗口或文本视图的边框放置在窗口或窗格中,则不会出现问题,但如果目标是创建具有多行输入字段的表单,则会变得很难看。这里有一个黑客可以做到这一点。。。

import gtk
# create an entry widget that we use for appearances only
e=gtk.Entry()
e.set_size_request(width=250, height=150)
# create a texview and accompaying label
lbl = gtk.Label(str="Comments: ")
lbl.set_alignment(xalign=1, yalign=0)
field = gtk.TextView(buffer=None)
field.set_wrap_mode(wrap_mode=gtk.WRAP_WORD) # or gtk.WRAP_CHAR
# we need a scroll window
sw = gtk.ScrolledWindow(hadjustment=None, vadjustment=None)
sw.set_border_width(border_width=4)
sw.set_size_request(width=250, height=150)
sw.set_policy(hscrollbar_policy=gtk.POLICY_NEVER, vscrollbar_policy=gtk.POLICY_AUTOMATIC)
sw.add(field)
# create more widgets as needed for form here...
lbl2 = gtk.Label(str="email: ")
lbl2.set_alignment(xalign=1, yalign=0)
field2 = gtk.Entry()
# put everything in a table so the fields and labels are all aligned 
tbl = gtk.Table(rows=1, columns=2, homogeneous=False)
tbl.attach(lbl, left_attach=0, right_attach=1, top_attach=0, bottom_attach=1, xoptions=gtk.FILL|gtk.SHRINK, yoptions=gtk.FILL, xpadding=0, ypadding=0)
# sw and e must be attached in this order, the reverse will not work
tbl.attach(sw, left_attach=1, right_attach=2, top_attach=0, bottom_attach=1, xoptions=gtk.FILL|gtk.SHRINK, yoptions=gtk.FILL, xpadding=0, ypadding=0)
tbl.attach(e, left_attach=1, right_attach=2, top_attach=0, bottom_attach=1, xoptions=gtk.FILL|gtk.SHRINK, yoptions=gtk.FILL, xpadding=0, ypadding=0)
# comment out previous line to see difference
# attach other widgets here...
tbl.attach(lbl2, left_attach=0, right_attach=1, top_attach=1, bottom_attach=2, xoptions=gtk.FILL|gtk.SHRINK, yoptions=gtk.FILL, xpadding=0, ypadding=0)
tbl.attach(field2, left_attach=1, right_attach=2, top_attach=1, bottom_attach=2, xoptions=gtk.FILL|gtk.SHRINK, yoptions=gtk.FILL, xpadding=0, ypadding=0)
# display it!
window = gtk.Window()
window.set_default_size(350, 200)
window.connect("destroy", lambda w: gtk.main_quit())
window.add(tbl)
window.show_all()
gtk.main()

需要注意的是,滚动条变得不可见;它可以被选择,并且滚动像往常一样工作。如果要在字段中输入的数据往往不使用滚动,这可能是一个小问题。

相关内容

  • 没有找到相关文章

最新更新