2020-07-14 07:24:55 +00:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/diamondburned/cchat"
|
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/primitives"
|
2020-07-17 00:21:14 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/primitives/drag"
|
2020-07-14 07:24:55 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/service/session"
|
|
|
|
"github.com/diamondburned/cchat-gtk/internal/ui/service/session/server"
|
|
|
|
"github.com/gotk3/gotk3/gtk"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ViewController interface {
|
2020-10-15 06:32:11 +00:00
|
|
|
MessengerSelected(*session.Row, *server.ServerRow)
|
2020-07-14 07:24:55 +00:00
|
|
|
SessionSelected(*Service, *session.Row)
|
|
|
|
AuthenticateSession(*List, *Service)
|
2020-07-16 05:41:21 +00:00
|
|
|
OnSessionRemove(*Service, *session.Row)
|
|
|
|
OnSessionDisconnect(*Service, *session.Row)
|
2020-07-14 07:24:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// List is a list of services. Each service is a revealer that contains
|
|
|
|
// sessions.
|
|
|
|
type List struct {
|
|
|
|
*gtk.ScrolledWindow
|
|
|
|
|
|
|
|
// same methods as ListController
|
|
|
|
ViewController
|
|
|
|
|
|
|
|
ListBox *gtk.Box
|
|
|
|
Services []*Service // TODO: collision check
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ ListController = (*List)(nil)
|
|
|
|
|
|
|
|
var listCSS = primitives.PrepareClassCSS("service-list", `
|
|
|
|
.service-list {
|
|
|
|
padding: 0;
|
|
|
|
background-color: mix(@theme_bg_color, @theme_fg_color, 0.03);
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
func NewList(vctl ViewController) *List {
|
|
|
|
svlist := &List{ViewController: vctl}
|
|
|
|
|
|
|
|
// List box of buttons.
|
|
|
|
svlist.ListBox, _ = gtk.BoxNew(gtk.ORIENTATION_VERTICAL, 0)
|
|
|
|
svlist.ListBox.Show()
|
2020-07-17 00:21:14 +00:00
|
|
|
svlist.ListBox.SetHAlign(gtk.ALIGN_START)
|
2020-07-14 07:24:55 +00:00
|
|
|
listCSS(svlist.ListBox)
|
|
|
|
|
|
|
|
svlist.ScrolledWindow, _ = gtk.ScrolledWindowNew(nil, nil)
|
|
|
|
svlist.ScrolledWindow.SetPolicy(gtk.POLICY_NEVER, gtk.POLICY_EXTERNAL)
|
2020-10-23 06:16:45 +00:00
|
|
|
svlist.ScrolledWindow.SetHExpand(false)
|
2020-07-14 07:24:55 +00:00
|
|
|
svlist.ScrolledWindow.Add(svlist.ListBox)
|
|
|
|
|
|
|
|
return svlist
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sl *List) SetSizeRequest(w, h int) {
|
|
|
|
sl.ScrolledWindow.SetSizeRequest(w, h)
|
|
|
|
sl.ListBox.SetSizeRequest(w, h)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sl *List) AuthenticateSession(svc *Service) {
|
|
|
|
sl.ViewController.AuthenticateSession(sl, svc)
|
|
|
|
}
|
|
|
|
|
2020-07-16 05:41:21 +00:00
|
|
|
func (sl *List) OnSessionRemove(svc *Service, row *session.Row) {
|
|
|
|
sl.ViewController.OnSessionRemove(svc, row)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sl *List) OnSessionDisconnect(svc *Service, row *session.Row) {
|
|
|
|
sl.ViewController.OnSessionDisconnect(svc, row)
|
|
|
|
}
|
|
|
|
|
2020-07-14 07:24:55 +00:00
|
|
|
func (sl *List) AddService(svc cchat.Service) {
|
|
|
|
row := NewService(svc, sl)
|
|
|
|
row.Show()
|
|
|
|
|
|
|
|
sl.ListBox.Add(row)
|
|
|
|
sl.Services = append(sl.Services, row)
|
|
|
|
|
|
|
|
// Try and restore all sessions.
|
|
|
|
row.restoreAll()
|
|
|
|
|
|
|
|
// TODO: drag-and-drop?
|
|
|
|
}
|
|
|
|
|
2020-07-17 00:21:14 +00:00
|
|
|
func (sl *List) MoveService(targetID, movingID string) {
|
|
|
|
// Find the widgets.
|
|
|
|
var movingsv *Service
|
|
|
|
for _, svc := range sl.Services {
|
|
|
|
if svc.ID() == movingID {
|
|
|
|
movingsv = svc
|
|
|
|
}
|
2020-07-14 07:24:55 +00:00
|
|
|
}
|
|
|
|
|
2020-07-17 00:21:14 +00:00
|
|
|
// Not found, return.
|
|
|
|
if movingsv == nil {
|
2020-07-14 07:24:55 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-07-17 00:21:14 +00:00
|
|
|
// Get the location of where to move the widget to.
|
|
|
|
var targetix = drag.Find(sl.ListBox, targetID)
|
2020-07-14 07:24:55 +00:00
|
|
|
|
2020-07-17 00:21:14 +00:00
|
|
|
// Actually move the child.
|
|
|
|
sl.ListBox.ReorderChild(movingsv, targetix)
|
2020-07-14 07:24:55 +00:00
|
|
|
}
|