mirror of
https://github.com/diamondburned/cchat-gtk.git
synced 2024-10-31 19:44:23 +00:00
31 lines
701 B
Go
31 lines
701 B
Go
package ui
|
|
|
|
import (
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/message"
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/service"
|
|
"github.com/gotk3/gotk3/gtk"
|
|
)
|
|
|
|
type window struct {
|
|
*gtk.Box
|
|
Services *service.View
|
|
MessageView *message.View
|
|
}
|
|
|
|
func newWindow() *window {
|
|
services := service.NewView()
|
|
services.SetSizeRequest(LeftWidth, -1)
|
|
mesgview := message.NewView()
|
|
|
|
separator, _ := gtk.SeparatorNew(gtk.ORIENTATION_VERTICAL)
|
|
separator.Show()
|
|
|
|
box, _ := gtk.BoxNew(gtk.ORIENTATION_HORIZONTAL, 0)
|
|
box.PackStart(services, false, false, 0)
|
|
box.PackStart(separator, false, false, 0)
|
|
box.PackStart(mesgview, true, true, 0)
|
|
box.Show()
|
|
|
|
return &window{box, services, mesgview}
|
|
}
|