| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- // Copyright 2016 The G3N Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
- package gui
- import (
- "github.com/g3n/engine/text"
- )
- // All styles
- type Style struct {
- Font *text.Font
- FontIcon *text.Font
- Button ButtonStyles
- CheckRadio CheckRadioStyles
- Edit EditStyles
- ScrollBar ScrollBarStyle
- Slider SliderStyles
- Splitter SplitterStyles
- Window WindowStyles
- Scroller ScrollerStyles
- List ListStyles
- DropDown DropDownStyles
- Folder FolderStyles
- Tree TreeStyles
- ControlFolder ControlFolderStyles
- Menu MenuStyles
- Table TableStyles
- ImageButton ImageButtonStyles
- TabBar TabBarStyles
- }
- const (
- StyleOver = iota + 1
- StyleFocus
- StyleDisabled
- StyleNormal
- StyleDef
- )
|