Artifact 6ffb33222b0079917f1814755b0ed7b5ea552269:
- File src/0dev.org/imgui/imgui.go — part of check-in [1e328bcd88] at 2015-09-22 09:14:47 on branch trunk — imgui design notes additions (user: spaskalev, size: 426) [annotate] [blame] [check-ins using]
package imgui // Defines a point in a top-left coordinate system type Point struct { X, Y uint16 // might revisit type for bigger resolutions } type Layout interface { // Advances the layout and returns a starting point // for an element based on the last ending point. Next(last Point) Point } // Groups UI drawing routines type Canvas interface { Layout // Draws a string Label(string) //Button() //TextArea() }