2016-02-13 17:06:36 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
2019-01-02 04:42:53 +03:00
|
|
|
from __future__ import unicode_literals
|
2016-02-13 17:06:36 -06:00
|
|
|
import wx
|
|
|
|
import widgetUtils
|
|
|
|
from pubsub import pub
|
|
|
|
|
|
|
|
class homeTab(wx.Panel):
|
|
|
|
|
|
|
|
def create_list(self):
|
2019-01-02 04:42:53 +03:00
|
|
|
self.lbl = wx.StaticText(self, wx.NewId(), _("Po&sts"))
|
|
|
|
self.list = widgetUtils.list(self, *[_("User"), _("Text"), _("Date")], style=wx.LC_REPORT)
|
2016-06-05 08:11:25 -05:00
|
|
|
self.list.set_windows_size(0, 200)
|
|
|
|
self.list.set_windows_size(1, 300)
|
|
|
|
self.list.set_windows_size(2, 250)
|
2016-02-13 17:06:36 -06:00
|
|
|
self.list.set_size()
|
|
|
|
self.list.list.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnKeyDown)
|
|
|
|
|
|
|
|
def create_post_buttons(self):
|
2019-01-20 11:00:15 -06:00
|
|
|
self.postBox = wx.StaticBoxSizer(parent=self, orient=wx.HORIZONTAL, label=_("Actions"))
|
|
|
|
self.post = wx.Button(self.postBox.GetStaticBox(), wx.NewId(), _("&Post"))
|
2016-02-13 17:06:36 -06:00
|
|
|
self.postBox.Add(self.post, 0, wx.ALL, 5)
|
|
|
|
|
|
|
|
def __init__(self, parent):
|
|
|
|
super(homeTab, self).__init__(parent=parent)
|
|
|
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
2019-01-20 11:00:15 -06:00
|
|
|
self.create_list()
|
2016-02-13 17:06:36 -06:00
|
|
|
self.create_post_buttons()
|
|
|
|
sizer.Add(self.postBox, 0, wx.ALL, 5)
|
2016-02-24 08:54:04 -06:00
|
|
|
sizer.Add(self.lbl, 0, wx.ALL, 5)
|
2016-06-08 05:12:25 -05:00
|
|
|
sizer.Add(self.list.list, 1, wx.EXPAND, 5)
|
2016-02-13 17:06:36 -06:00
|
|
|
self.SetSizer(sizer)
|
2016-06-05 08:11:25 -05:00
|
|
|
self.SetClientSize(sizer.CalcMin())
|
2016-02-13 17:06:36 -06:00
|
|
|
|
|
|
|
def OnKeyDown(self, ev=None):
|
|
|
|
pub.sendMessage("show-current-status", buffer=self.name)
|
|
|
|
ev.Skip()
|
|
|
|
|
|
|
|
def showMenu(self, ev):
|
2016-06-08 05:12:25 -05:00
|
|
|
if self.list.get_count() == 0: return
|
2016-02-13 17:06:36 -06:00
|
|
|
pub.sendMessage("show-menu", position=ev.GetPosition())
|
|
|
|
|
|
|
|
def showMenuByKey(self, ev):
|
2016-06-08 05:12:25 -05:00
|
|
|
if self.list.get_count() == 0: return
|
2016-02-13 17:06:36 -06:00
|
|
|
if ev.GetKeyCode() == wx.WXK_WINDOWS_MENU:
|
|
|
|
pub.sendMessage("show-menu", position=self.results.list.GetPosition())
|
|
|
|
|
2016-06-05 14:15:40 -05:00
|
|
|
def set_focus_function(self, focus_function):
|
|
|
|
self.list.list.Bind(wx.EVT_LIST_ITEM_FOCUSED, focus_function)
|
|
|
|
|
2016-02-13 17:06:36 -06:00
|
|
|
class feedTab(homeTab):
|
|
|
|
def __init__(self, parent):
|
|
|
|
super(feedTab, self).__init__(parent=parent)
|
|
|
|
self.name = "me_feed"
|
|
|
|
|
2018-12-31 11:51:13 -06:00
|
|
|
class communityTab(feedTab):
|
|
|
|
|
|
|
|
def create_post_buttons(self):
|
2019-01-20 11:00:15 -06:00
|
|
|
self.postBox = wx.StaticBoxSizer(parent=self, orient=wx.HORIZONTAL, label=_("Actions"))
|
2019-02-18 13:41:49 -06:00
|
|
|
self.load = wx.Button(self.postBox.GetStaticBox(), wx.NewId(), _("Load buffer"))
|
2019-01-20 11:00:15 -06:00
|
|
|
self.post = wx.Button(self.postBox.GetStaticBox(), -1, _("&Post"))
|
2018-12-31 11:51:13 -06:00
|
|
|
self.postBox.Add(self.load, 0, wx.ALL, 5)
|
|
|
|
self.postBox.Add(self.post, 0, wx.ALL, 5)
|
|
|
|
|
2016-02-13 17:06:36 -06:00
|
|
|
class audioTab(homeTab):
|
|
|
|
def create_list(self):
|
2019-01-02 04:42:53 +03:00
|
|
|
self.lbl = wx.StaticText(self, wx.NewId(), _("Mu&sic"))
|
2019-04-30 17:36:53 -05:00
|
|
|
self.list = widgetUtils.multiselectionList(self, *[_("Title"), _("Artist"), _("Duration")], style=wx.LC_REPORT)
|
2016-06-08 05:12:25 -05:00
|
|
|
self.list.set_windows_size(0, 160)
|
|
|
|
self.list.set_windows_size(1, 380)
|
|
|
|
self.list.set_windows_size(2, 80)
|
2016-02-13 17:06:36 -06:00
|
|
|
self.list.set_size()
|
|
|
|
self.list.list.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnKeyDown)
|
|
|
|
|
2016-02-15 02:15:38 -06:00
|
|
|
def create_post_buttons(self):
|
2019-01-20 11:00:15 -06:00
|
|
|
self.postBox = wx.StaticBoxSizer(parent=self, orient=wx.HORIZONTAL, label=_("Actions"))
|
2019-02-26 13:57:37 -06:00
|
|
|
self.post = wx.Button(self.postBox.GetStaticBox(), -1, _("&Upload audio"))
|
|
|
|
self.post.Enable(False)
|
2019-01-20 11:00:15 -06:00
|
|
|
self.play = wx.Button(self.postBox.GetStaticBox(), -1, _("P&lay"))
|
|
|
|
self.play_all = wx.Button(self.postBox.GetStaticBox(), -1, _("Play &All"))
|
2016-02-15 02:15:38 -06:00
|
|
|
self.postBox.Add(self.post, 0, wx.ALL, 5)
|
|
|
|
self.postBox.Add(self.play, 0, wx.ALL, 5)
|
|
|
|
self.postBox.Add(self.play_all, 0, wx.ALL, 5)
|
|
|
|
|
2019-02-26 13:57:37 -06:00
|
|
|
def get_file_to_upload(self):
|
|
|
|
openFileDialog = wx.FileDialog(self, _("Select the audio file to be uploaded"), "", "", _("Audio files (*.mp3)|*.mp3"), wx.FD_OPEN | wx.FD_FILE_MUST_EXIST)
|
|
|
|
if openFileDialog.ShowModal() == wx.ID_CANCEL:
|
|
|
|
return None
|
|
|
|
return openFileDialog.GetPath()
|
|
|
|
|
2016-06-29 12:33:09 -05:00
|
|
|
class audioAlbumTab(audioTab):
|
|
|
|
|
|
|
|
def create_post_buttons(self):
|
2019-01-20 11:00:15 -06:00
|
|
|
self.postBox = wx.StaticBoxSizer(parent=self, orient=wx.HORIZONTAL, label=_("Actions"))
|
2019-02-18 13:41:49 -06:00
|
|
|
self.load = wx.Button(self.postBox.GetStaticBox(), wx.NewId(), _("Load buffer"))
|
2019-01-20 11:00:15 -06:00
|
|
|
self.post = wx.Button(self.postBox.GetStaticBox(), -1, _("&Post"))
|
|
|
|
self.play = wx.Button(self.postBox.GetStaticBox(), -1, _("P&lay"))
|
|
|
|
self.play_all = wx.Button(self.postBox.GetStaticBox(), -1, _("Play &All"))
|
2018-12-31 11:51:13 -06:00
|
|
|
self.postBox.Add(self.load, 0, wx.ALL, 5)
|
2016-06-29 12:33:09 -05:00
|
|
|
self.postBox.Add(self.post, 0, wx.ALL, 5)
|
|
|
|
self.postBox.Add(self.play, 0, wx.ALL, 5)
|
|
|
|
self.postBox.Add(self.play_all, 0, wx.ALL, 5)
|
|
|
|
|
2016-02-13 17:06:36 -06:00
|
|
|
class notificationsTab(homeTab):
|
|
|
|
def __init__(self, parent):
|
|
|
|
super(notificationsTab, self).__init__(parent=parent)
|
|
|
|
self.name = "notifications"
|
|
|
|
|
|
|
|
def OnKeyDown(self, ev=None):
|
|
|
|
pub.sendMessage("show-notification", buffer=self.name)
|
|
|
|
ev.Skip()
|
|
|
|
|
|
|
|
def create_list(self):
|
2019-01-02 04:42:53 +03:00
|
|
|
self.list = widgetUtils.list(self, *[_("Notification")], style=wx.LC_REPORT)
|
2016-02-13 17:06:36 -06:00
|
|
|
self.list.set_windows_size(0, 190)
|
|
|
|
self.list.list.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnKeyDown)
|
|
|
|
|
|
|
|
class albumTab(homeTab):
|
|
|
|
def __init__(self, parent):
|
|
|
|
super(albumTab, self).__init__(parent=parent)
|
|
|
|
self.name = "albums"
|
|
|
|
|
|
|
|
def OnKeyDown(self, ev=None):
|
|
|
|
pub.sendMessage("show-album", buffer=self.name)
|
|
|
|
ev.Skip()
|
|
|
|
|
|
|
|
def create_list(self):
|
2019-01-02 04:42:53 +03:00
|
|
|
self.list = widgetUtils.list(self, *[_("User"), _("Name"), _("Description"), _("Photos"), _("Created at")], style=wx.LC_REPORT)
|
2016-02-13 17:06:36 -06:00
|
|
|
self.list.set_windows_size(0, 190)
|
|
|
|
self.list.set_windows_size(1, 320)
|
|
|
|
self.list.set_windows_size(2, 513)
|
|
|
|
self.list.set_windows_size(3, 390)
|
|
|
|
self.list.set_windows_size(4, 180)
|
|
|
|
self.list.list.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnKeyDown)
|
|
|
|
|
|
|
|
class friendsTab(homeTab):
|
|
|
|
def OnKeyDown(self, ev=None):
|
|
|
|
pub.sendMessage("show-album", buffer=self.name)
|
|
|
|
ev.Skip()
|
|
|
|
|
|
|
|
def create_list(self):
|
2019-01-02 04:42:53 +03:00
|
|
|
self.list = widgetUtils.list(self, *[_("Name")], style=wx.LC_REPORT)
|
2016-02-13 17:06:36 -06:00
|
|
|
self.list.set_windows_size(0, 400)
|
|
|
|
self.list.list.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnKeyDown)
|
|
|
|
|
2019-01-31 16:47:27 -06:00
|
|
|
class topicTab(homeTab):
|
|
|
|
def create_list(self):
|
|
|
|
self.lbl = wx.StaticText(self, wx.NewId(), _("Topics"))
|
|
|
|
self.list = widgetUtils.list(self, *[_("User"), _("Title"), _("Posts"), _("Last")], style=wx.LC_REPORT)
|
|
|
|
self.list.set_windows_size(0, 200)
|
|
|
|
self.list.set_windows_size(1, 64)
|
|
|
|
self.list.set_windows_size(2, 15)
|
|
|
|
self.list.set_windows_size(2, 250)
|
|
|
|
self.list.set_size()
|
|
|
|
self.list.list.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnKeyDown)
|
|
|
|
|
2019-02-06 11:34:54 -06:00
|
|
|
class documentCommunityTab(homeTab):
|
2019-02-05 12:20:50 -06:00
|
|
|
def create_list(self):
|
|
|
|
self.lbl = wx.StaticText(self, wx.NewId(), _("Documents"))
|
|
|
|
self.list = widgetUtils.list(self, *[_("User"), _("Title"), _("Type"), _("Size"), _("Date")], style=wx.LC_REPORT)
|
|
|
|
self.list.set_windows_size(0, 200)
|
|
|
|
self.list.set_windows_size(1, 128)
|
|
|
|
self.list.set_windows_size(2, 35)
|
|
|
|
self.list.set_windows_size(3, 15)
|
|
|
|
self.list.set_windows_size(4, 25)
|
|
|
|
self.list.set_size()
|
|
|
|
self.list.list.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnKeyDown)
|
|
|
|
|
2019-03-05 17:43:19 -06:00
|
|
|
def get_download_path(self, filename):
|
|
|
|
saveFileDialog = wx.FileDialog(self, _("Save document as"), "", filename, _("All files (*.*)|*.*"), wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT)
|
|
|
|
if saveFileDialog.ShowModal() == widgetUtils.OK:
|
|
|
|
return saveFileDialog.GetPath()
|
|
|
|
|
2019-02-06 11:34:54 -06:00
|
|
|
class documentTab(documentCommunityTab):
|
|
|
|
def create_post_buttons(self):
|
|
|
|
self.postBox = wx.StaticBoxSizer(parent=self, orient=wx.HORIZONTAL, label=_("Actions"))
|
2019-02-18 13:41:49 -06:00
|
|
|
self.load = wx.Button(self.postBox.GetStaticBox(), wx.NewId(), _("Load buffer"))
|
2019-02-06 11:34:54 -06:00
|
|
|
self.post = wx.Button(self.postBox.GetStaticBox(), -1, _("&Post"))
|
|
|
|
self.postBox.Add(self.load, 0, wx.ALL, 5)
|
|
|
|
self.postBox.Add(self.post, 0, wx.ALL, 5)
|
|
|
|
|
2016-03-23 08:57:16 -06:00
|
|
|
class empty(wx.Panel):
|
|
|
|
def __init__(self, parent, name):
|
|
|
|
super(empty, self).__init__(parent=parent, name=name)
|
|
|
|
self.name = name
|
|
|
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
|
|
|
self.SetSizer(sizer)
|
2016-05-17 12:46:57 -05:00
|
|
|
|
|
|
|
class chatTab(wx.Panel):
|
|
|
|
|
2016-09-25 14:24:40 -05:00
|
|
|
def insert_attachments(self, attachments):
|
|
|
|
for i in attachments:
|
|
|
|
self.attachments.insert_item(False, *i)
|
|
|
|
|
2016-05-17 12:46:57 -05:00
|
|
|
def __init__(self, parent):
|
|
|
|
super(chatTab, self).__init__(parent=parent)
|
|
|
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
|
|
|
sizer.Add(self.create_controls())
|
2016-09-25 14:24:40 -05:00
|
|
|
sizer.Add(self.create_attachments(), 0, wx.ALL, 5)
|
|
|
|
sizer.Add(self.create_chat(), 0, wx.ALL, 5)
|
2019-01-02 04:42:53 +03:00
|
|
|
self.attachment = wx.Button(self, wx.NewId(), _("Add"))
|
2017-03-13 02:16:34 -06:00
|
|
|
sizer.Add(self.attachment, 0, wx.ALL, 5)
|
2019-01-02 04:42:53 +03:00
|
|
|
self.send = wx.Button(self, -1, _("Send"))
|
2016-05-17 12:46:57 -05:00
|
|
|
sizer.Add(self.send, 0, wx.ALL, 5)
|
|
|
|
self.SetSizer(sizer)
|
|
|
|
|
|
|
|
def create_controls(self):
|
2019-01-02 04:42:53 +03:00
|
|
|
lbl1 = wx.StaticText(self, wx.NewId(), _("History"))
|
2018-12-04 16:58:40 -06:00
|
|
|
self.history = wx.TextCtrl(self, wx.NewId(), style=wx.TE_READONLY|wx.TE_MULTILINE, size=(500, 300))
|
2019-01-24 16:07:02 -06:00
|
|
|
selectId = wx.NewId()
|
|
|
|
self.Bind(wx.EVT_MENU, self.onSelect, id=selectId)
|
|
|
|
self.accel_tbl = wx.AcceleratorTable([(wx.ACCEL_CTRL, ord('A'), selectId)])
|
|
|
|
self.SetAcceleratorTable(self.accel_tbl)
|
2016-05-17 12:46:57 -05:00
|
|
|
box = wx.BoxSizer(wx.HORIZONTAL)
|
|
|
|
box.Add(lbl1, 0, wx.ALL, 5)
|
2018-12-04 16:58:40 -06:00
|
|
|
box.Add(self.history, 0, wx.ALL, 5)
|
2016-09-25 14:24:40 -05:00
|
|
|
return box
|
|
|
|
|
2019-01-24 16:07:02 -06:00
|
|
|
def onSelect(self, event, *args, **kwargs):
|
|
|
|
if self.history.HasFocus():
|
|
|
|
self.history.SelectAll()
|
|
|
|
else:
|
|
|
|
self.text.SelectAll()
|
|
|
|
event.Skip()
|
|
|
|
|
2016-09-25 14:24:40 -05:00
|
|
|
def create_attachments(self):
|
2019-01-02 04:42:53 +03:00
|
|
|
lbl = wx.StaticText(self, -1, _("Attachments"))
|
|
|
|
self.attachments = widgetUtils.list(self, _("Type"), _("Title"), style=wx.LC_REPORT)
|
2016-09-25 14:24:40 -05:00
|
|
|
box = wx.BoxSizer(wx.HORIZONTAL)
|
|
|
|
box.Add(lbl, 0, wx.ALL, 5)
|
|
|
|
box.Add(self.attachments.list, 0, wx.ALL, 5)
|
|
|
|
self.attachments.list.Enable(False)
|
|
|
|
return box
|
|
|
|
|
|
|
|
def create_chat(self):
|
2019-01-02 04:42:53 +03:00
|
|
|
lbl2 = wx.StaticText(self, -1, _("Write a message"))
|
2018-12-19 04:32:47 -06:00
|
|
|
self.text = wx.TextCtrl(self, -1, size=(400, -1), style=wx.TE_MULTILINE)
|
2016-09-25 14:24:40 -05:00
|
|
|
box = wx.BoxSizer(wx.HORIZONTAL)
|
2016-05-17 12:46:57 -05:00
|
|
|
box.Add(lbl2, 0, wx.ALL, 20)
|
|
|
|
box.Add(self.text, 0, wx.ALL, 5)
|
|
|
|
return box
|
|
|
|
|
2016-06-06 04:27:07 -05:00
|
|
|
def set_focus_function(self, focus_function):
|
2018-12-05 12:43:33 -06:00
|
|
|
self.history.Bind(wx.EVT_KEY_UP , focus_function)
|
2018-12-04 16:58:40 -06:00
|
|
|
|
|
|
|
def add_message(self, message, reverse=False):
|
2018-12-04 17:53:10 -06:00
|
|
|
old_line = self.history.GetNumberOfLines()#.count("\n")
|
2018-12-04 16:58:40 -06:00
|
|
|
point = self.history.GetInsertionPoint()
|
2018-12-05 12:43:33 -06:00
|
|
|
if reverse:
|
2018-12-04 16:58:40 -06:00
|
|
|
self.history.SetValue(message+"\n"+self.history.GetValue())
|
|
|
|
else:
|
|
|
|
self.history.AppendText(message+"\n")
|
|
|
|
self.history.SetInsertionPoint(point)
|
2018-12-04 17:53:10 -06:00
|
|
|
new_line = self.history.GetNumberOfLines()#.count("\n")
|
|
|
|
return (old_line, new_line)
|
2016-06-06 04:27:07 -05:00
|
|
|
|
2016-05-25 11:33:57 -05:00
|
|
|
class peopleTab(homeTab):
|
|
|
|
|
|
|
|
def create_list(self):
|
2019-01-02 04:42:53 +03:00
|
|
|
self.lbl = wx.StaticText(self, wx.NewId(), _("Friends"))
|
|
|
|
self.list = widgetUtils.list(self, *[_("Name"), _("Last seen")], style=wx.LC_REPORT)
|
2016-05-25 11:33:57 -05:00
|
|
|
self.list.set_windows_size(0, 190)
|
|
|
|
self.list.set_windows_size(1, 100)
|
|
|
|
self.list.set_size()
|
|
|
|
self.list.list.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnKeyDown)
|
|
|
|
|
|
|
|
def create_post_buttons(self):
|
2019-01-20 11:00:15 -06:00
|
|
|
self.postBox = wx.StaticBoxSizer(parent=self, orient=wx.HORIZONTAL, label=_("Actions"))
|
|
|
|
self.post = wx.Button(self.postBox.GetStaticBox(), -1, _("&Post"))
|
|
|
|
self.new_chat = wx.Button(self.postBox.GetStaticBox(), wx.NewId(), _("Send message"))
|
2016-05-25 11:33:57 -05:00
|
|
|
self.postBox.Add(self.post, 0, wx.ALL, 5)
|
|
|
|
self.postBox.Add(self.new_chat, 0, wx.ALL, 5)
|
2016-08-14 07:46:41 -05:00
|
|
|
|
|
|
|
class videoTab(homeTab):
|
|
|
|
def create_list(self):
|
2019-01-02 04:42:53 +03:00
|
|
|
self.lbl = wx.StaticText(self, wx.NewId(), _("Video&s"))
|
|
|
|
self.list = widgetUtils.list(self, *[_("Title"), _("Description"), _("Duration")], style=wx.LC_REPORT)
|
2016-08-14 07:46:41 -05:00
|
|
|
self.list.set_windows_size(0, 160)
|
|
|
|
self.list.set_windows_size(1, 380)
|
|
|
|
self.list.set_windows_size(2, 80)
|
|
|
|
self.list.set_size()
|
|
|
|
self.list.list.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnKeyDown)
|
|
|
|
|
|
|
|
def create_post_buttons(self):
|
2019-01-20 11:00:15 -06:00
|
|
|
self.postBox = wx.StaticBoxSizer(parent=self, orient=wx.HORIZONTAL, label=_("Actions"))
|
|
|
|
self.post = wx.Button(self.postBox.GetStaticBox(), -1, _("&Post"))
|
|
|
|
self.play = wx.Button(self.postBox.GetStaticBox(), -1, _("P&lay"))
|
2016-08-14 07:46:41 -05:00
|
|
|
self.postBox.Add(self.post, 0, wx.ALL, 5)
|
|
|
|
self.postBox.Add(self.play, 0, wx.ALL, 5)
|
|
|
|
|
|
|
|
class videoAlbumTab(videoTab):
|
|
|
|
|
|
|
|
def create_post_buttons(self):
|
2019-01-20 11:00:15 -06:00
|
|
|
self.postBox = wx.BoxSizer(parent=self, orient=wx.HORIZONTAL, label=_("Actions"))
|
2019-02-18 13:41:49 -06:00
|
|
|
self.load = wx.Button(self.postBox.GetStaticBox(), wx.NewId(), _("Load buffer"))
|
2019-01-20 11:00:15 -06:00
|
|
|
self.post = wx.Button(self.postBox.GetStaticBox(), -1, _("&Post"))
|
|
|
|
self.play = wx.Button(self.postBox.GetStaticBox(), -1, _("P&lay"))
|
2016-08-14 07:46:41 -05:00
|
|
|
self.postBox.Add(self.post, 0, wx.ALL, 5)
|
|
|
|
self.postBox.Add(self.play, 0, wx.ALL, 5)
|