1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
package gtka
import "github.com/twstrike/gotk3adapter/gtki"
import "github.com/gotk3/gotk3/gtk"
func unwrapTreeModel(s gtki.TreeModel) gtk.ITreeModel {
if s == nil {
return nil
}
switch ss := s.(type) {
case *listStore:
return unwrapListStore(ss)
case *treeStore:
return unwrapTreeStore(ss)
}
return nil
}
func wrapTreeModelSimple(s gtk.ITreeModel) gtki.TreeModel {
if s == nil {
return nil
}
switch ss := s.(type) {
case *gtk.ListStore:
return wrapListStoreSimple(ss)
case *gtk.TreeStore:
return wrapTreeStoreSimple(ss)
}
return nil
}
|