forked from zyedidia/micro
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes zyedidia#62 windows console may have FIFO hang
fixes zyedidia#63 Initial views API integration
- Loading branch information
Showing
18 changed files
with
1,605 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## tcell views | ||
|
||
This package provides some enhanced functionality on top of base tcell. | ||
In particular, support for logical views, and a few different kinds of | ||
widgets like title bars, and scrollable areas, are provided. | ||
|
||
These make up a higher level interface than tcell itself. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
// Copyright 2015 The Tops'l Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use file except in compliance with the License. | ||
// You may obtain a copy of the license at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package main | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
|
||
"github.com/gdamore/tcell" | ||
"github.com/gdamore/tcell/views" | ||
) | ||
|
||
type MyBox struct { | ||
views.BoxLayout | ||
} | ||
|
||
func (m *MyBox) HandleEvent(ev tcell.Event) bool { | ||
switch ev := ev.(type) { | ||
case *tcell.EventKey: | ||
if ev.Key() == tcell.KeyEscape { | ||
views.AppQuit() | ||
return true | ||
} | ||
} | ||
return m.BoxLayout.HandleEvent(ev) | ||
} | ||
|
||
func main() { | ||
|
||
if e := views.AppInit(); e != nil { | ||
fmt.Fprintln(os.Stderr, e.Error()) | ||
os.Exit(1) | ||
} | ||
|
||
outer := &MyBox{} | ||
outer.SetOrientation(views.Vertical) | ||
|
||
title := views.NewTextBar() | ||
title.SetStyle(tcell.StyleDefault. | ||
Background(tcell.ColorYellow). | ||
Foreground(tcell.ColorBlack)) | ||
title.SetCenter("Horizontal Boxes", tcell.StyleDefault) | ||
title.SetLeft("ESC to exit", tcell.StyleDefault. | ||
Background(tcell.ColorBlue). | ||
Foreground(tcell.ColorWhite)) | ||
title.SetRight("==>X", tcell.StyleDefault) | ||
|
||
box := views.NewBoxLayout(views.Horizontal) | ||
|
||
l := views.NewText() | ||
m := views.NewText() | ||
r := views.NewText() | ||
|
||
l.SetText("Left (0.0)") | ||
m.SetText("Middle (0.7)") | ||
r.SetText("Right (0.3)") | ||
l.SetStyle(tcell.StyleDefault.Foreground(tcell.ColorWhite). | ||
Background(tcell.ColorRed)) | ||
m.SetStyle(tcell.StyleDefault.Foreground(tcell.ColorWhite). | ||
Background(tcell.ColorLime)) | ||
r.SetStyle(tcell.StyleDefault.Foreground(tcell.ColorWhite). | ||
Background(tcell.ColorBlue)) | ||
l.SetAlignment(views.AlignBegin) | ||
m.SetAlignment(views.AlignMiddle) | ||
r.SetAlignment(views.AlignEnd) | ||
|
||
box.AddWidget(l, 0) | ||
box.AddWidget(m, 0.7) | ||
box.AddWidget(r, 0.3) | ||
|
||
outer.AddWidget(title, 0) | ||
outer.AddWidget(box, 1) | ||
views.SetApplication(outer) | ||
views.RunApplication() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
// Copyright 2015 The Tops'l Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use file except in compliance with the License. | ||
// You may obtain a copy of the license at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package main | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
|
||
"github.com/gdamore/tcell" | ||
"github.com/gdamore/tcell/views" | ||
) | ||
|
||
type MyBox struct { | ||
views.BoxLayout | ||
} | ||
|
||
func (m *MyBox) HandleEvent(ev tcell.Event) bool { | ||
switch ev := ev.(type) { | ||
case *tcell.EventKey: | ||
if ev.Key() == tcell.KeyEscape { | ||
views.AppQuit() | ||
return true | ||
} | ||
} | ||
return m.BoxLayout.HandleEvent(ev) | ||
} | ||
|
||
func main() { | ||
|
||
if e := views.AppInit(); e != nil { | ||
fmt.Fprintln(os.Stderr, e.Error()) | ||
os.Exit(1) | ||
} | ||
|
||
box := &MyBox{} | ||
box.SetOrientation(views.Vertical) | ||
|
||
title := views.NewTextBar() | ||
title.SetStyle(tcell.StyleDefault. | ||
Foreground(tcell.ColorBlack). | ||
Background(tcell.ColorYellow)) | ||
title.SetCenter("Vertical Layout", tcell.StyleDefault) | ||
top := views.NewText() | ||
mid := views.NewText() | ||
bot := views.NewText() | ||
|
||
top.SetText("Top-Right (0.0)\nLine Two") | ||
mid.SetText("Center (0.7)") | ||
bot.SetText("Bottom-Left (0.3)") | ||
top.SetStyle(tcell.StyleDefault.Foreground(tcell.ColorWhite). | ||
Background(tcell.ColorRed)) | ||
mid.SetStyle(tcell.StyleDefault.Foreground(tcell.ColorWhite). | ||
Background(tcell.ColorLime)) | ||
bot.SetStyle(tcell.StyleDefault.Foreground(tcell.ColorWhite). | ||
Background(tcell.ColorBlue)) | ||
|
||
top.SetAlignment(views.VAlignTop | views.HAlignRight) | ||
mid.SetAlignment(views.VAlignCenter | views.HAlignCenter) | ||
bot.SetAlignment(views.VAlignBottom | views.HAlignLeft) | ||
|
||
box.AddWidget(title, 0) | ||
box.AddWidget(top, 0) | ||
box.AddWidget(mid, 0.7) | ||
box.AddWidget(bot, 0.3) | ||
|
||
views.SetApplication(box) | ||
views.RunApplication() | ||
} |
Oops, something went wrong.