Merge branch 'coretk' into coretk-progress
This commit is contained in:
commit
8278641cf4
7 changed files with 24 additions and 12 deletions
|
@ -3,8 +3,10 @@ from tkinter import ttk
|
|||
|
||||
from core.api.grpc import core_pb2
|
||||
from coretk.dialogs.dialog import Dialog
|
||||
from coretk.images import ImageEnum, Images
|
||||
|
||||
PAD = 5
|
||||
ICON_SIZE = 16
|
||||
|
||||
|
||||
class MobilityPlayerDialog(Dialog):
|
||||
|
@ -39,14 +41,22 @@ class MobilityPlayerDialog(Dialog):
|
|||
|
||||
frame = ttk.Frame(self.top)
|
||||
frame.grid(sticky="ew", pady=PAD)
|
||||
for i in range(3):
|
||||
frame.columnconfigure(i, weight=1)
|
||||
|
||||
self.play_button = ttk.Button(frame, text="Play", command=self.click_play)
|
||||
image = Images.get(ImageEnum.START, width=ICON_SIZE)
|
||||
self.play_button = ttk.Button(frame, image=image, command=self.click_play)
|
||||
self.play_button.image = image
|
||||
self.play_button.grid(row=0, column=0, sticky="ew", padx=PAD)
|
||||
|
||||
self.pause_button = ttk.Button(frame, text="Pause", command=self.click_pause)
|
||||
image = Images.get(ImageEnum.PAUSE, width=ICON_SIZE)
|
||||
self.pause_button = ttk.Button(frame, image=image, command=self.click_pause)
|
||||
self.pause_button.image = image
|
||||
self.pause_button.grid(row=0, column=1, sticky="ew", padx=PAD)
|
||||
|
||||
self.stop_button = ttk.Button(frame, text="Stop", command=self.click_stop)
|
||||
image = Images.get(ImageEnum.STOP, width=ICON_SIZE)
|
||||
self.stop_button = ttk.Button(frame, image=image, command=self.click_stop)
|
||||
self.stop_button.image = image
|
||||
self.stop_button.grid(row=0, column=2, sticky="ew", padx=PAD)
|
||||
|
||||
loop = tk.IntVar(value=int(self.config["loop"].value == "1"))
|
||||
|
|
BIN
coretk/coretk/icons/pause.png
Normal file
BIN
coretk/coretk/icons/pause.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
|
@ -56,6 +56,7 @@ class ImageEnum(Enum):
|
|||
EDITNODE = "edit-node"
|
||||
PLOT = "plot"
|
||||
TWONODE = "twonode"
|
||||
PAUSE = "pause"
|
||||
STOP = "stop"
|
||||
OBSERVE = "observe"
|
||||
RUN = "run"
|
||||
|
|
|
@ -43,6 +43,7 @@ class WirelessConnection:
|
|||
self.add_connection(
|
||||
link_event.link.node_one_id, link_event.link.node_two_id
|
||||
)
|
||||
self.canvas.tag_raise("node")
|
||||
|
||||
if link_event.message_type == core_pb2.MessageType.DELETE:
|
||||
self.delete_connection(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue