2016-02-13 17:06:36 -06:00
# -*- coding: utf-8 -*-
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 ) :
lbl = wx . StaticText ( self . panel , wx . NewId ( ) , _ ( u " Privacy " ) )
self . privacy = wx . ComboBox ( self . panel , wx . NewId ( ) , choices = [ _ ( u " All users " ) , _ ( u " Friends of friends " ) , ] , value = _ ( u " All users " ) , style = wx . CB_READONLY )
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 )
self . upload_image = wx . Button ( self . panel , - 1 , _ ( u " Upload a picture " ) , size = wx . DefaultSize )
self . upload_image . Enable ( False )
self . spellcheck = wx . Button ( self . panel , - 1 , _ ( " Spelling correction " ) , size = wx . DefaultSize )
self . translateButton = wx . Button ( self . panel , - 1 , _ ( u " Translate message " ) , size = wx . DefaultSize )
self . okButton = wx . Button ( self . panel , wx . ID_OK , _ ( u " Send " ) , size = wx . DefaultSize )
self . okButton . SetDefault ( )
cancelButton = wx . Button ( self . panel , wx . ID_CANCEL , _ ( u " Close " ) , size = wx . DefaultSize )
self . buttonsBox1 = wx . BoxSizer ( wx . HORIZONTAL )
self . buttonsBox1 . Add ( self . upload_image , 0 , wx . ALL , 10 )
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 ( ) )
def get_image ( self ) :
openFileDialog = wx . FileDialog ( self , _ ( u " Select the picture to be uploaded " ) , " " , " " , _ ( " Image files (*.png, *.jpg, *.gif)|*.png; *.jpg; *.gif " ) , wx . FD_OPEN | wx . FD_FILE_MUST_EXIST )
if openFileDialog . ShowModal ( ) == wx . ID_CANCEL :
return None
return openFileDialog . GetPath ( )
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 )
self . translateButton = wx . Button ( self . panel , - 1 , _ ( u " Translate message " ) , size = wx . DefaultSize )
self . okButton = wx . Button ( self . panel , wx . ID_OK , _ ( u " Send " ) , size = wx . DefaultSize )
self . okButton . SetDefault ( )
cancelButton = wx . Button ( self . panel , wx . ID_CANCEL , _ ( u " Close " ) , size = wx . DefaultSize )
self . buttonsBox1 = wx . BoxSizer ( wx . HORIZONTAL )
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 ( comment , self ) . __init__ ( )
self . createControls ( message , title , text )
self . SetClientSize ( self . mainBox . CalcMin ( ) )