initial gui for new project
This commit is contained in:
parent
45660bbc08
commit
06f3670a85
1 changed files with 18 additions and 1 deletions
|
@ -19,9 +19,11 @@ import core.decorators
|
||||||
|
|
||||||
import util.cli
|
import util.cli
|
||||||
|
|
||||||
|
from easygui import *
|
||||||
|
|
||||||
|
|
||||||
class Module(core.module.Module):
|
class Module(core.module.Module):
|
||||||
@core.decorators.every(minutes=5)
|
# @core.decorators.every(minutes=5)
|
||||||
def __init__(self, config, theme):
|
def __init__(self, config, theme):
|
||||||
super().__init__(config, theme, core.widget.Widget(self.text))
|
super().__init__(config, theme, core.widget.Widget(self.text))
|
||||||
|
|
||||||
|
@ -33,9 +35,22 @@ class Module(core.module.Module):
|
||||||
self.__project_list = []
|
self.__project_list = []
|
||||||
|
|
||||||
core.input.register(self, button=core.input.LEFT_MOUSE, cmd=self.toggle)
|
core.input.register(self, button=core.input.LEFT_MOUSE, cmd=self.toggle)
|
||||||
|
core.input.register(self, button=core.input.RIGHT_MOUSE, cmd=self.new_project)
|
||||||
core.input.register(self, button=core.input.WHEEL_UP, cmd=self.change_project)
|
core.input.register(self, button=core.input.WHEEL_UP, cmd=self.change_project)
|
||||||
core.input.register(self, button=core.input.WHEEL_DOWN, cmd=self.change_project)
|
core.input.register(self, button=core.input.WHEEL_DOWN, cmd=self.change_project)
|
||||||
|
|
||||||
|
def new_project(self, widget):
|
||||||
|
# on right-click, open dialog to enter the name of a new project
|
||||||
|
# TODO: enable entering a new tag in a second dialog box
|
||||||
|
if self.__tracking:
|
||||||
|
return
|
||||||
|
text = "Enter the name of a new project to start"
|
||||||
|
title = "Watson"
|
||||||
|
output = enterbox(text,title,self.__project)
|
||||||
|
if output:
|
||||||
|
self.__project = output
|
||||||
|
util.cli.execute("watson start " + self.__project)
|
||||||
|
|
||||||
def toggle(self, widget):
|
def toggle(self, widget):
|
||||||
# on click, starts the timer if the project is slected
|
# on click, starts the timer if the project is slected
|
||||||
if self.__project != "Select Project":
|
if self.__project != "Select Project":
|
||||||
|
@ -46,6 +61,7 @@ class Module(core.module.Module):
|
||||||
util.cli.execute("watson start " + self.__project)
|
util.cli.execute("watson start " + self.__project)
|
||||||
self.__status = "Tracking"
|
self.__status = "Tracking"
|
||||||
self.__tracking = not self.__tracking
|
self.__tracking = not self.__tracking
|
||||||
|
self.update()
|
||||||
|
|
||||||
def change_project(self, event):
|
def change_project(self, event):
|
||||||
# on scroll, cycles the currently selected project
|
# on scroll, cycles the currently selected project
|
||||||
|
@ -59,6 +75,7 @@ class Module(core.module.Module):
|
||||||
self.__project = self.__project_list[n + 1]
|
self.__project = self.__project_list[n + 1]
|
||||||
else:
|
else:
|
||||||
self.__project = self.__project_list[0]
|
self.__project = self.__project_list[0]
|
||||||
|
self.update()
|
||||||
|
|
||||||
def text(self, widget):
|
def text(self, widget):
|
||||||
if self.__tracking:
|
if self.__tracking:
|
||||||
|
|
Loading…
Reference in a new issue