ilayout.go 262 B

12345678910
  1. // Copyright 2016 The G3N Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package gui
  5. // ILayout is the interface for layouts
  6. type ILayout interface {
  7. Recalc(ipan IPanel)
  8. }