Started workin the frontend
This commit is contained in:
parent
a22d403e46
commit
6a5c78742a
Binary file not shown.
After Width: | Height: | Size: 6.7 KiB |
97
server.py
97
server.py
|
@ -1,39 +1,90 @@
|
||||||
import remi.gui as gui
|
#!/usr/bin/env python3
|
||||||
|
import remi.gui as gui, random, os, time
|
||||||
from remi import start, App
|
from remi import start, App
|
||||||
|
from threading import Timer
|
||||||
|
|
||||||
|
class namespace(object): pass
|
||||||
|
|
||||||
|
#globals:
|
||||||
|
COLOR_BLUE = "rgb(33, 150, 243)"
|
||||||
|
COLOR_BLUE_SHADOW = "rgba(33, 150, 243, 0.75)"
|
||||||
|
|
||||||
class MyApp(App):
|
class MyApp(App):
|
||||||
def __init__(self, *args):
|
def __init__(self, *args):
|
||||||
super(MyApp, self).__init__(*args)
|
res_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'res')
|
||||||
self.pressed = 0
|
super(MyApp, self).__init__(*args, static_paths=(res_path,))
|
||||||
def main(self):
|
|
||||||
topContainer = gui.HBox()
|
|
||||||
container = gui.VBox(width=768)
|
|
||||||
topContainer.append(container)
|
|
||||||
#playback controls
|
|
||||||
|
|
||||||
|
def main(self):
|
||||||
|
container = gui.VBox(width=512)
|
||||||
|
|
||||||
|
#logo:
|
||||||
|
container.append(gui.Image('/res/logo.jpg', width=512))
|
||||||
|
|
||||||
|
#playback controls
|
||||||
|
playbackContainer = gui.HBox()#; container.append(playbackContainer)
|
||||||
|
self.playback = namespace()
|
||||||
|
for i in ("play", "pause", "next"):
|
||||||
|
button = gui.Button(i.capitalize(), margin="5px")
|
||||||
|
setattr(self.playback, i, button)
|
||||||
|
playbackContainer.append(button)
|
||||||
|
button.set_on_click_listener(self, 'playback_%s' % i)
|
||||||
|
self.playback.playing = gui.Label("Now playing: None")
|
||||||
|
self.playback.slider = gui.Slider(0, 0, 100, 1, width="85%", height=20, margin='10px')
|
||||||
|
|
||||||
|
container.append(self.playback.playing)
|
||||||
|
container.append(playbackContainer)
|
||||||
|
container.append(self.playback.slider)
|
||||||
|
|
||||||
#playlist
|
#playlist
|
||||||
|
self.playlist = namespace()
|
||||||
|
self.playlist.table = gui.Table(width="100%", margin="10px")
|
||||||
|
self.playlist.table.from_2d_matrix([['#', 'Name', "length"]])
|
||||||
|
container.append(self.playlist.table)
|
||||||
|
|
||||||
self.lbl = gui.Label('Hello world!')
|
#input
|
||||||
self.bt = gui.Button('Press me!')
|
container.append(gui.Label("Add songs:"))
|
||||||
self.asdasd = gui.TextInput(hiehgt=30)
|
inputContainer = gui.HBox(width=512)
|
||||||
|
self.input = namespace()
|
||||||
|
self.input.field = gui.TextInput(single_line=True, height="20px", margin="5px")
|
||||||
|
self.input.field.style["border"] = "1px solid %s" % COLOR_BLUE
|
||||||
|
self.input.field.style["box-shadow"] = "0px 0px 5px 0px %s" % COLOR_BLUE_SHADOW
|
||||||
|
self.input.submit = gui.Button("Submit!", margin="5px")
|
||||||
|
self.input.field.set_on_enter_listener(self, "input_submit")
|
||||||
|
self.input.submit.set_on_click_listener(self, "input_submit")
|
||||||
|
|
||||||
|
inputContainer.append(self.input.field)
|
||||||
|
inputContainer.append(self.input.submit)
|
||||||
|
container.append(inputContainer)
|
||||||
|
|
||||||
|
|
||||||
# setting the listener for the onclick event of the button
|
|
||||||
self.bt.set_on_click_listener(self, 'on_button_pressed')
|
|
||||||
|
|
||||||
# appending a widget to another, the first argument is a string key
|
#return the container
|
||||||
container.append(self.lbl)
|
self.mainLoop()
|
||||||
container.append(self.bt)
|
|
||||||
container.append(self.asdasd)
|
|
||||||
|
|
||||||
# returning the root widget
|
|
||||||
return container
|
return container
|
||||||
|
def mainLoop(self):
|
||||||
|
#self.playback.slider.get_value()
|
||||||
|
self.playback.slider.set_value(int(random.random()*100))
|
||||||
|
|
||||||
# listener function
|
self.playlist.table.from_2d_matrix([['#', 'Name', "length"],
|
||||||
def on_button_pressed(self):
|
['1', 'Awesome song', "5:23"],
|
||||||
self.pressed += 1
|
['2', 'min kuk er saa hard', "2:56"],
|
||||||
self.lbl.set_text('Button pressed %i times!' % self.pressed)
|
['3', 'spis meg', "90:01"],
|
||||||
|
['3', "Slidervalue: %s" % self.playback.slider.get_value(), "0:00"]])
|
||||||
|
|
||||||
|
mpv.step()
|
||||||
|
mpv.get_queue()
|
||||||
|
mpv.position()
|
||||||
|
|
||||||
|
Timer(1, self.mainLoop).start()
|
||||||
|
def playback_play(self): pass
|
||||||
|
def playback_pause(self): pass
|
||||||
|
def playback_next(self): pass
|
||||||
|
def input_submit(self, value=None):
|
||||||
|
if not value:
|
||||||
|
value = self.input.field.get_text()
|
||||||
|
|
||||||
|
print(value)
|
||||||
|
self.input.field.set_text("")
|
||||||
|
|
||||||
|
|
||||||
# starts the webserver
|
# starts the webserver
|
||||||
|
|
Loading…
Reference in New Issue