// NewWidget creates the main Cairo-Dock configuration widget. // func NewWidget(source datatype.Source, log cdtype.Logger) *GuiConfigure { box := newgtk.Box(gtk.ORIENTATION_VERTICAL, 0) widget := &GuiConfigure{ Box: *box, Source: source, stack: newgtk.Stack(), btnAction: make(map[string]btnaction.Tune), pages: make(map[string]*Page), log: log, } // Create widgets. widget.Menu = confmenu.New(widget) menuIcons := pageswitch.New() menuIcons.Set("no-show-all", true) menuCore := pageswitch.New() menuCore.Set("no-show-all", true) // Box for separator on left of menuIcons. boxIcons := newgtk.Box(gtk.ORIENTATION_HORIZONTAL, 0) sepIcons := newgtk.Separator(gtk.ORIENTATION_VERTICAL) boxIcons.PackStart(sepIcons, false, false, 6) boxIcons.PackStart(menuIcons, false, false, 0) boxIcons.PackStart(menuCore, false, false, 0) widget.mainSwitch = pageswitch.New() btnIcons := btnaction.New(widget.Menu.Save) btnCore := btnaction.New(widget.Menu.Save) btnAdd := btnaction.New(widget.Menu.Save) btnAdd.SetAdd() icons := conficons.New(widget, log, menuIcons, btnIcons) core := confcore.New(widget, log, menuCore, btnCore) add := confapplets.New(widget, log, nil, confapplets.ListCanAdd) add.Hide() // TODO: REMOVE THE NEED OF THAT. // Add pages to the switcher. This will pack the pages widgets to the gui box. widget.AddPage(GroupIcons, "", icons, btnIcons, menuIcons.Show, menuIcons.Hide) widget.AddPage(GroupAdd, "list-add", add, btnAdd, nil, nil) widget.AddPage(GroupConfig, "", core, btnCore, menuCore.Show, menuCore.Hide) // Packing menu. sep := newgtk.Separator(gtk.ORIENTATION_HORIZONTAL) widget.Menu.PackStart(widget.mainSwitch, false, false, 0) widget.Menu.PackStart(boxIcons, false, false, 0) widget.PackStart(widget.Menu, false, false, 2) widget.PackStart(sep, false, false, 0) widget.PackStart(widget.stack, true, true, 0) return widget }
func packWindow(win *gtk.Window, source vdata.Sourcer, build cftype.Grouper) func() { return func() { win.SetDefaultSize(winWidth, winHeight) win.SetTitle(winTitle) win.SetIconFromFile(source.AppIcon()) win.Connect("destroy", gtk.MainQuit) // widgets. box := newgtk.Box(gtk.ORIENTATION_VERTICAL, 0) source.SetBox(box) menu := confmenu.New(source) switcher := pageswitch.New() w := build.BuildAll(switcher) btnAdd := btnaction.New(menu.Save) btnAdd.SetTest() btnHack := newgtk.ButtonWithLabel("Hack") btnHack.Connect("clicked", func() { build.KeyWalk(vdata.TestValues) }) menu.PackStart(switcher, false, false, 0) menu.PackEnd(btnHack, false, false, 0) win.Add(box) box.PackStart(menu, false, false, 0) box.PackStart(w, true, true, 0) win.ShowAll() } }