Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to
LinuxQuestions.org , a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free.
Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please
contact us . If you need to reset your password,
click here .
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
06-05-2010, 01:16 PM
#1
LQ Newbie
Registered: Jun 2010
Posts: 4
Rep:
[ruby][gtk2] Style Property - How to change?
Posted by Robux Biz (robux) on 05.06.2010 19:39
Hi everybody!
I can see style property:
btn = Gtk::Button.new
puts btn.style_get_property('image-spacing') # "2"
But how can I change the value to "0"?
06-05-2010, 02:02 PM
#2
LQ Newbie
Registered: Jun 2010
Posts: 4
Original Poster
Rep:
I did that:
Code:
class ClsBtn < Gtk::Button
type_register
install_style_property(GLib::Param::Int.new('image-spacing',
'image-spacing', '', 0, 10000, 0,
GLib::Param::READABLE|GLib::Param::WRITABLE))
end
closebtn = ClsBtn.new
image = Gtk::Image.new(Gtk::Stock::CLOSE, Gtk::IconSize::MENU)
closebtn.add(image)
p closebtn.style_get_property('image-spacing')
Property becames "0",
but border around image is still big (not equals 0)
How can I to decrease the button? (The button is needed for Notebook tabs)
Last edited by robuxbiz; 06-05-2010 at 02:42 PM .
06-06-2010, 02:55 AM
#3
LQ Newbie
Registered: Jun 2010
Posts: 4
Original Poster
Rep:
I did that:
Code:
style = closebtn.modifier_style
style.xthickness = 0
style.ythickness = 0
closebtn.modify_style(style)
But fields are still exist. Any else ideas?
06-06-2010, 04:46 AM
#4
LQ Newbie
Registered: Jun 2010
Posts: 4
Original Poster
Rep:
I find solution in Geany source code:
Code:
label_box = Gtk::HBox.new(false, 0)
label = Gtk::Label.new('Page1')
label_box.pack_start(label, false, false, 0)
btn = Gtk::Button.new
btn.relief = Gtk::RELIEF_NONE
btn.focus_on_click = false
style = btn.modifier_style
style.xthickness = 0
style.ythickness = 0
btn.modify_style(style)
btn.set_tooltip_text("Close page1")
wim,him = Gtk::IconSize.lookup(Gtk::IconSize::MENU)
btn.set_size_request(wim+2,him+2)
btn.signal_connect('clicked') do
$notebook.remove_page($notebook.children.index(treeview))
store.clear
label_box.destroy
treeview.destroy
end
image = Gtk::Image.new(Gtk::Stock::CLOSE, Gtk::IconSize::MENU)
btn.add(image)
align = Gtk::Alignment.new(1.0, 0.0, 0.0, 0.0)
align.add(btn)
label_box.pack_start(align, false, false, 0)
label_box.spacing = 3
label_box.show_all
page = $notebook.append_page(treeview, label_box)
treeview.show_all
$notebook.page = $notebook.n_pages-1
Thread Tools
Search this Thread
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
All times are GMT -5. The time now is 02:43 PM .
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know .
Latest Threads
LQ News