このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
サインイン
Immanuel
/
barnard
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
プルリクエスト
0
リリース
0
Wiki
アクティビティ
ソースを参照
code formatting
master
Tim Cooper
10年前
親
686fb79e8f
コミット
497db88dcb
5個のファイルの変更
、
7行の追加
、
12行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+2
-3
uiterm/label.go
+2
-3
uiterm/textbox.go
+1
-2
uiterm/textview.go
+1
-2
uiterm/tree.go
+1
-2
uiterm/ui.go
+ 2
- 3
uiterm/label.go
ファイルの表示
@@ -7,9 +7,8 @@ import (
)
type Label struct {
Text string
Fg Attribute
Bg Attribute
Text string
Fg, Bg Attribute
ui *Ui
x0, y0, x1, y1 int
+ 2
- 3
uiterm/textbox.go
ファイルの表示
@@ -8,9 +8,8 @@ import (
)
type Textbox struct {
Text string
Fg Attribute
Bg Attribute
Text string
Fg, Bg Attribute
Input func(ui *Ui, textbox *Textbox, text string)
+ 1
- 2
uiterm/textview.go
ファイルの表示
@@ -9,8 +9,7 @@ import (
type Textview struct {
Lines []string
CurrentLine int
Fg Attribute
Bg Attribute
Fg, Bg Attribute
parsedLines []string
+ 1
- 2
uiterm/tree.go
ファイルの表示
@@ -18,8 +18,7 @@ type renderedTreeItem struct {
}
type Tree struct {
Fg Attribute
Bg Attribute
Fg, Bg Attribute
Generator func(item TreeItem) []TreeItem
Listener func(ui *Ui, tree *Tree, item TreeItem)
+ 1
- 2
uiterm/ui.go
ファイルの表示
@@ -15,8 +15,7 @@ type UiManager interface {
}
type Ui struct {
Fg Attribute
Bg Attribute
Fg, Bg Attribute
close chan bool
manager UiManager
書き込み
プレビュー
読み込み中…
キャンセル
保存