Пожалуйста, включите JavaScript.
Главная
Обзор
Помощь
Вход
Immanuel
/
barnard
Следить
1
В избранное
0
Форкнуть
0
Код
Задачи
0
Pull Request'ы
0
Релизы
0
Вики
Активность
Просмотр исходного кода
code formatting
master
Tim Cooper
10 лет назад
Родитель
686fb79e8f
Сommit
497db88dcb
5 измененных файлов
:
7 добавлений
и
12 удалений
Разделённый вид
Опции Diff
Показать статистику
Скачать 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
Редактирование
Предпросмотр
Загрузка…
Отмена
Сохранить