MenuButton (Vala) Tiffany Antopolski tiffany.antopolski@gmail.com 2012 누르면 메뉴를 보여주는 위젯입니다 조성호 shcho@gnome.org 2017 MenuButton

GtkMenuButton 위젯은 눌렀을 때 메뉴를 띄울 목적으로 활용합니다. 이 메뉴는 GtkMenu로 또는 GMenuModel로도 제공합니다. GtkMenuButton 위젯은 제대로 된 하위 위젯을 지니고 있을 수 있습니다. 즉, GtkMenuButton으로 대부분의 다른 표준 GtkWidget을 붙들어둘 수 있습니다. 가장 널리 활용하는 하위 요소는 GtkArrow입니다.

MenuButton을 동작하게 하려면 그놈 3.6이 필요합니다.

public class MyWindow : Gtk.ApplicationWindow { internal MyWindow (MyApplication app) { Object (application: app, title: "MenuButton Example"); this.set_default_size (600, 400); var grid = new Gtk.Grid (); var menubutton = new Gtk.MenuButton(); menubutton.set_size_request (80, 35); var menumodel = new Menu (); menumodel.append ("New", "app.new"); menumodel.append ("About", "win.about"); /* We create the last item as a MenuItem, so that * a submenu can be appended to this menu item. */ var submenu = new Menu (); menumodel.append_submenu ("Other", submenu); submenu.append ("Quit", "app.quit"); menubutton.set_menu_model (menumodel); var about_action = new SimpleAction ("about", null); about_action.activate.connect (this.about_cb); this.add_action (about_action); this.add(grid); grid.attach(menubutton, 0, 0, 1, 1); } void about_cb (SimpleAction simple, Variant? parameter) { print ("You clicked \"About\"\n"); } } public class MyApplication : Gtk.Application { protected override void activate () { new MyWindow (this).show_all (); } internal MyApplication () { Object (application_id: "org.example.MyApplication"); } /* Override the 'startup' signal of GLib.Application. */ protected override void startup () { base.startup (); var new_action = new SimpleAction ("new", null); new_action.activate.connect (this.new_cb); this.add_action (new_action); var quit_action = new SimpleAction ("quit", null); quit_action.activate.connect (this.quit); this.add_action (quit_action); } void new_cb (SimpleAction simple, Variant? parameter) { print ("You clicked \"New\"\n"); } } public int main (string[] args) { return new MyApplication ().run (args); }

이 예제는 다음 참고자료가 필요합니다:

MenuButton