소스 검색

uiterm: remove LayoutFunc, remove InputFunc type

master
Tim Cooper 10 년 전
부모
커밋
e026b662ce
2개의 변경된 파일1개의 추가작업 그리고 5개의 파일을 삭제
  1. +1
    -3
      uiterm/textbox.go
  2. +0
    -2
      uiterm/ui.go

+ 1
- 3
uiterm/textbox.go 파일 보기

@@ -7,14 +7,12 @@ import (
"github.com/nsf/termbox-go"
)

type InputFunc func(ui *Ui, textbox *Textbox, text string)

type Textbox struct {
Text string
Fg Attribute
Bg Attribute

Input InputFunc
Input func(ui *Ui, textbox *Textbox, text string)

ui *Ui
active bool


+ 0
- 2
uiterm/ui.go 파일 보기

@@ -6,8 +6,6 @@ import (
"github.com/nsf/termbox-go"
)

type LayoutFunc func(ui *Ui, width, height int)

type KeyListener func(ui *Ui, key Key)

type UiManager interface {


불러오는 중...
취소
저장