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
|
|
|
|
|
|
|
|
class textMessage(widgetUtils.BaseDialog):
|
|
|
|
def __init__(self, *args, **kwargs):
|
2016-02-14 18:53:58 -06:00
|
|
|
super(textMessage, self).__init__(parent=None, *args, **kwargs)
|
2016-02-13 17:06:36 -06:00
|
|
|
|
|
|
|
def createTextArea(self, message="", text=""):
|
|
|
|
self.panel = wx.Panel(self)
|
|
|
|
self.label = wx.StaticText(self.panel, -1, message)
|
|
|
|
self.text = wx.TextCtrl(self.panel, -1, text, size=(439, -1), style=wx.TE_MULTILINE)
|
|
|
|
self.text.SetFocus()
|
|
|
|
self.textBox = wx.BoxSizer(wx.HORIZONTAL)
|
|
|
|
self.textBox.Add(self.label, 0, wx.ALL, 5)
|
|
|
|
self.textBox.Add(self.text, 0, wx.ALL, 5)
|
|
|
|
|
|
|
|
def create_privacy_box(self):
|
2019-01-02 04:42:53 +03:00
|
|
|
lbl = wx.StaticText(self.panel, wx.NewId(), _("&Privacy"))
|
|
|
|
self.privacy = wx.ComboBox(self.panel, wx.NewId(), choices=[_("All users"), _("Friends of friends"),], value=_("All users"), style=wx.CB_READONLY)
|
2016-02-13 17:06:36 -06:00
|
|
|
self.privacyBox = wx.BoxSizer(wx.HORIZONTAL)
|
|
|
|
self.privacyBox.Add(lbl, 0, wx.ALL, 5)
|
|
|
|
self.privacyBox.Add(self.privacy, 0, wx.ALL, 5)
|
|
|
|
|
|
|
|
def text_focus(self):
|
|
|
|
self.text.SetFocus()
|
|
|
|
|
|
|
|
def get_text(self):
|
|
|
|
return self.text.GetValue()
|
|
|
|
|
|
|
|
def set_text(self, text):
|
|
|
|
return self.text.ChangeValue(text)
|
|
|
|
|
|
|
|
def enable_button(self, buttonName):
|
|
|
|
if getattr(self, buttonName):
|
|
|
|
return getattr(self, buttonName).Enable()
|
|
|
|
|
|
|
|
def disable_button(self, buttonName):
|
|
|
|
if getattr(self, buttonName):
|
|
|
|
return getattr(self, buttonName).Disable()
|
|
|
|
|
|
|
|
def onSelect(self, ev):
|
|
|
|
self.text.SelectAll()
|
|
|
|
|
|
|
|
def set_cursor_at_end(self):
|
|
|
|
self.text.SetInsertionPoint(len(self.text.GetValue()))
|
|
|
|
|
|
|
|
def set_cursor_at_position(self, position):
|
|
|
|
self.text.SetInsertionPoint(position)
|
|
|
|
|
|
|
|
def get_position(self):
|
|
|
|
return self.text.GetInsertionPoint()
|
|
|
|
|
|
|
|
class post(textMessage):
|
|
|
|
def createControls(self, title, message, text):
|
|
|
|
self.mainBox = wx.BoxSizer(wx.VERTICAL)
|
|
|
|
self.createTextArea(message, text)
|
|
|
|
self.mainBox.Add(self.textBox, 0, wx.ALL, 5)
|
|
|
|
self.create_privacy_box()
|
|
|
|
self.mainBox.Add(self.privacyBox, 0, wx.ALL, 5)
|
2019-01-02 04:42:53 +03:00
|
|
|
self.attach = wx.Button(self.panel, -1, _("Attach"), size=wx.DefaultSize)
|
|
|
|
self.mention = wx.Button(self.panel, wx.NewId(), _("Tag a friend"))
|
2016-03-22 11:21:35 -06:00
|
|
|
self.spellcheck = wx.Button(self.panel, -1, _("Spelling &correction"), size=wx.DefaultSize)
|
2019-01-02 04:42:53 +03:00
|
|
|
self.translateButton = wx.Button(self.panel, -1, _("&Translate message"), size=wx.DefaultSize)
|
|
|
|
self.okButton = wx.Button(self.panel, wx.ID_OK, _("Send"), size=wx.DefaultSize)
|
2016-02-13 17:06:36 -06:00
|
|
|
self.okButton.SetDefault()
|
2019-01-02 04:42:53 +03:00
|
|
|
cancelButton = wx.Button(self.panel, wx.ID_CANCEL, _("Close"), size=wx.DefaultSize)
|
2016-02-13 17:06:36 -06:00
|
|
|
self.buttonsBox1 = wx.BoxSizer(wx.HORIZONTAL)
|
2016-04-11 11:48:35 -05:00
|
|
|
self.buttonsBox1.Add(self.attach, 0, wx.ALL, 10)
|
2016-08-19 04:25:49 -05:00
|
|
|
self.buttonsBox1.Add(self.mention, 0, wx.ALL, 10)
|
2016-02-13 17:06:36 -06:00
|
|
|
self.buttonsBox1.Add(self.spellcheck, 0, wx.ALL, 10)
|
|
|
|
self.buttonsBox1.Add(self.translateButton, 0, wx.ALL, 10)
|
|
|
|
self.mainBox.Add(self.buttonsBox1, 0, wx.ALL, 10)
|
|
|
|
self.ok_cancelSizer = wx.BoxSizer(wx.HORIZONTAL)
|
|
|
|
self.ok_cancelSizer.Add(self.okButton, 0, wx.ALL, 10)
|
|
|
|
self.ok_cancelSizer.Add(cancelButton, 0, wx.ALL, 10)
|
|
|
|
self.mainBox.Add(self.ok_cancelSizer)
|
|
|
|
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)
|
|
|
|
self.panel.SetSizer(self.mainBox)
|
|
|
|
|
|
|
|
def __init__(self, title, message, text):
|
|
|
|
super(post, self).__init__()
|
|
|
|
self.createControls(message, title, text)
|
|
|
|
self.SetClientSize(self.mainBox.CalcMin())
|
|
|
|
|
|
|
|
|
|
|
|
class comment(textMessage):
|
|
|
|
def createControls(self, title, message, text):
|
|
|
|
self.mainBox = wx.BoxSizer(wx.VERTICAL)
|
|
|
|
self.createTextArea(message, text)
|
|
|
|
self.mainBox.Add(self.textBox, 0, wx.ALL, 5)
|
|
|
|
self.spellcheck = wx.Button(self.panel, -1, _("Spelling correction"), size=wx.DefaultSize)
|
2019-01-02 04:42:53 +03:00
|
|
|
self.mention = wx.Button(self.panel, wx.NewId(), _("Tag a friend"))
|
|
|
|
self.translateButton = wx.Button(self.panel, -1, _("Translate message"), size=wx.DefaultSize)
|
|
|
|
self.okButton = wx.Button(self.panel, wx.ID_OK, _("Send"), size=wx.DefaultSize)
|
2016-02-13 17:06:36 -06:00
|
|
|
self.okButton.SetDefault()
|
2019-01-02 04:42:53 +03:00
|
|
|
cancelButton = wx.Button(self.panel, wx.ID_CANCEL, _("Close"), size=wx.DefaultSize)
|
2016-02-13 17:06:36 -06:00
|
|
|
self.buttonsBox1 = wx.BoxSizer(wx.HORIZONTAL)
|
|
|
|
self.buttonsBox1.Add(self.spellcheck, 0, wx.ALL, 10)
|
2016-08-19 04:25:49 -05:00
|
|
|
self.buttonsBox1.Add(self.mention, 0, wx.ALL, 10)
|
2016-02-13 17:06:36 -06:00
|
|
|
self.buttonsBox1.Add(self.translateButton, 0, wx.ALL, 10)
|
|
|
|
self.mainBox.Add(self.buttonsBox1, 0, wx.ALL, 10)
|
|
|
|
self.ok_cancelSizer = wx.BoxSizer(wx.HORIZONTAL)
|
|
|
|
self.ok_cancelSizer.Add(self.okButton, 0, wx.ALL, 10)
|
|
|
|
self.ok_cancelSizer.Add(cancelButton, 0, wx.ALL, 10)
|
|
|
|
self.mainBox.Add(self.ok_cancelSizer)
|
|
|
|
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)
|
|
|
|
self.panel.SetSizer(self.mainBox)
|
|
|
|
|
|
|
|
def __init__(self, title, message, text):
|
|
|
|
super(comment, self).__init__()
|
|
|
|
self.createControls(message, title, text)
|
|
|
|
self.SetClientSize(self.mainBox.CalcMin())
|