summaryrefslogtreecommitdiff
path: root/checkbox.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-06-28 01:05:06 -0400
committerPietro Gagliardi <[email protected]>2014-06-28 01:05:06 -0400
commitea6200a432c2954ec2b38afc66d1795dd161e8d9 (patch)
tree10665ae3e2ed42bb6a16027b7eb40adf7c8dee58 /checkbox.go
parent05ffc6511ab11fa365b2e8961bc67770bbf79777 (diff)
Began the migration to the new API. Removed locks from the public control APIs; they won't be needed anymore.
Diffstat (limited to 'checkbox.go')
-rw-r--r--checkbox.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/checkbox.go b/checkbox.go
index 934da90..1293dfc 100644
--- a/checkbox.go
+++ b/checkbox.go
@@ -2,13 +2,8 @@
package ui
-import (
- "sync"
-)
-
// A Checkbox is a clickable square with a label. The square can be either checked or unchecked. Checkboxes start out unchecked.
type Checkbox struct {
- lock sync.Mutex
created bool
sysData *sysData
initText string
@@ -25,9 +20,6 @@ func NewCheckbox(text string) (c *Checkbox) {
// SetText sets the checkbox's text.
func (c *Checkbox) SetText(text string) {
- c.lock.Lock()
- defer c.lock.Unlock()
-
if c.created {
c.sysData.setText(text)
return
@@ -37,9 +29,6 @@ func (c *Checkbox) SetText(text string) {
// Text returns the checkbox's text.
func (c *Checkbox) Text() string {
- c.lock.Lock()
- defer c.lock.Unlock()
-
if c.created {
return c.sysData.text()
}
@@ -48,9 +37,6 @@ func (c *Checkbox) Text() string {
// SetChecked() changes the checked state of the Checkbox.
func (c *Checkbox) SetChecked(checked bool) {
- c.lock.Lock()
- defer c.lock.Unlock()
-
if c.created {
c.sysData.setChecked(checked)
return
@@ -60,9 +46,6 @@ func (c *Checkbox) SetChecked(checked bool) {
// Checked() returns whether or not the Checkbox has been checked.
func (c *Checkbox) Checked() bool {
- c.lock.Lock()
- defer c.lock.Unlock()
-
if c.created {
return c.sysData.isChecked()
}
@@ -70,9 +53,6 @@ func (c *Checkbox) Checked() bool {
}
func (c *Checkbox) make(window *sysData) error {
- c.lock.Lock()
- defer c.lock.Unlock()
-
err := c.sysData.make(window)
if err != nil {
return err