-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #130 from ararslan/aa/0.6
Updates for Julia 0.6, drop 0.4 support
- Loading branch information
Showing
12 changed files
with
329 additions
and
345 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ language: julia | |
os: | ||
- linux | ||
julia: | ||
- 0.4 | ||
- 0.5 | ||
- nightly | ||
notifications: | ||
|
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Julia interface to the Tk windowing toolkit. | ||
|
||
[![Tk](http://pkg.julialang.org/badges/Tk_0.3.svg)](http://pkg.julialang.org/?pkg=Tk&ver=0.3) | ||
[![Tk](http://pkg.julialang.org/badges/Tk_0.4.svg)](http://pkg.julialang.org/?pkg=Tk&ver=0.4) | ||
[![Build Status](https://travis-ci.org/JuliaLang/Tk.jl.svg?branch=master)](https://travis-ci.org/JuliaLang/Tk.jl) | ||
[![Coverage Status](https://coveralls.io/repos/JuliaLang/Tk.jl/badge.svg)](https://coveralls.io/r/JuliaLang/Tk.jl) | ||
[![Tk](http://pkg.julialang.org/badges/Tk_0.5.svg)](http://pkg.julialang.org/?pkg=Tk) | ||
[![Tk](http://pkg.julialang.org/badges/Tk_0.6.svg)](http://pkg.julialang.org/?pkg=Tk) | ||
[![Build Status](https://travis-ci.org/JuliaGraphics/Tk.jl.svg?branch=master)](https://travis-ci.org/JuliaGraphics/Tk.jl) | ||
[![Coverage Status](https://coveralls.io/repos/JuliaGraphics/Tk.jl/badge.svg)](https://coveralls.io/r/JuliaGraphics/Tk.jl) | ||
|
||
The documentation for this package is in the `examples` directory. |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
julia 0.4 | ||
Compat 0.7.20 | ||
julia 0.5 | ||
Compat 0.17.0 | ||
Cairo | ||
Graphics 0.1 | ||
BinDeps 0.2.2- | ||
|
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
## Abstract types | ||
abstract Tk_Widget | ||
abstract TTk_Widget <: Tk_Widget ## for ttk::widgets | ||
abstract TTk_Container <: Tk_Widget ## for containers (frame, labelframe, ???) | ||
@compat abstract type Tk_Widget end | ||
@compat abstract type TTk_Widget <: Tk_Widget end ## for ttk::widgets | ||
@compat abstract type TTk_Container <: Tk_Widget end ## for containers (frame, labelframe, ???) | ||
|
||
Widget = (@compat Union{TkWidget, Tk_Widget, Canvas, AbstractString}) | ||
const Widget = Union{TkWidget, Tk_Widget, Canvas, AbstractString} | ||
|
||
## Maybe -- can this be parameterized? | ||
## https://groups.google.com/forum/?fromgroups=#!topic/julia-dev/IbbWwplrqlc (takeaway -- this style is frowned upon) | ||
MaybeFunction = (@compat Union{Function, (@compat Void)}) | ||
MaybeString = (@compat Union{AbstractString, (@compat Void)}) | ||
MaybeStringInteger = (@compat Union{AbstractString, Integer, (@compat Void)}) # for at in tree insert | ||
MaybeVector = (@compat Union{Vector, (@compat Void)}) | ||
MaybeWidget = (@compat Union{Widget, (@compat Void)}) | ||
MaybeBool = (@compat Union{Bool, (@compat Void)}) | ||
const MaybeFunction = Union{Function, Void} | ||
const MaybeString = Union{AbstractString, Void} | ||
const MaybeStringInteger = Union{AbstractString, Integer, Void} # for at in tree insert | ||
const MaybeVector = Union{Vector, Void} | ||
const MaybeWidget = Union{Widget, Void} | ||
const MaybeBool = Union{Bool, Void} |
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
Oops, something went wrong.