2016-04-11 11:48:35 -05:00
# -*- coding: utf-8 -*-
2019-01-02 04:42:53 +03:00
from __future__ import unicode_literals
2016-04-11 11:48:35 -05:00
import wx
import widgetUtils
class attachDialog ( widgetUtils . BaseDialog ) :
2017-03-13 02:16:34 -06:00
def __init__ ( self , voice_messages = False ) :
2019-01-02 04:42:53 +03:00
super ( attachDialog , self ) . __init__ ( None , title = _ ( " Add an attachment " ) )
2016-04-11 11:48:35 -05:00
panel = wx . Panel ( self )
sizer = wx . BoxSizer ( wx . VERTICAL )
2019-01-02 04:42:53 +03:00
lbl1 = wx . StaticText ( panel , wx . NewId ( ) , _ ( " Attachments " ) )
self . attachments = widgetUtils . list ( panel , _ ( " Type " ) , _ ( " Title " ) , style = wx . LC_REPORT )
2016-04-11 11:48:35 -05:00
box = wx . BoxSizer ( wx . HORIZONTAL )
box . Add ( lbl1 , 0 , wx . ALL , 5 )
box . Add ( self . attachments . list , 0 , wx . ALL , 5 )
sizer . Add ( box , 0 , wx . ALL , 5 )
2019-01-02 04:42:53 +03:00
static = wx . StaticBox ( panel , label = _ ( " Add attachments " ) )
self . photo = wx . Button ( panel , wx . NewId ( ) , _ ( " &Photo " ) )
self . audio = wx . Button ( panel , wx . NewId ( ) , _ ( " Audio file " ) )
2017-03-13 02:16:34 -06:00
if voice_messages :
2019-01-02 04:42:53 +03:00
self . voice_message = wx . Button ( panel , wx . NewId ( ) , _ ( " Voice message " ) )
self . remove = wx . Button ( panel , wx . NewId ( ) , _ ( " Remove attachment " ) )
2016-04-25 05:26:55 -05:00
self . remove . Enable ( False )
2016-04-11 11:48:35 -05:00
btnsizer = wx . StaticBoxSizer ( static , wx . HORIZONTAL )
btnsizer . Add ( self . photo , 0 , wx . ALL , 5 )
2017-03-13 02:16:34 -06:00
btnsizer . Add ( self . audio , 0 , wx . ALL , 5 )
if voice_messages :
btnsizer . Add ( self . voice_message , 0 , wx . ALL , 5 )
2016-04-11 11:48:35 -05:00
sizer . Add ( btnsizer , 0 , wx . ALL , 5 )
ok = wx . Button ( panel , wx . ID_OK )
ok . SetDefault ( )
cancelBtn = wx . Button ( panel , wx . ID_CANCEL )
btnSizer = wx . BoxSizer ( )
btnSizer . Add ( ok , 0 , wx . ALL , 5 )
btnSizer . Add ( cancelBtn , 0 , wx . ALL , 5 )
sizer . Add ( btnSizer , 0 , wx . ALL , 5 )
panel . SetSizer ( sizer )
self . SetClientSize ( sizer . CalcMin ( ) )
def get_image ( self ) :
2019-01-02 04:42:53 +03:00
openFileDialog = wx . FileDialog ( self , _ ( " Select the picture to be uploaded " ) , " " , " " , _ ( " Image files (*.png, *.jpg, *.gif)|*.png; *.jpg; *.gif " ) , wx . FD_OPEN | wx . FD_FILE_MUST_EXIST )
2016-04-11 11:48:35 -05:00
if openFileDialog . ShowModal ( ) == wx . ID_CANCEL :
return None
2018-12-10 12:20:01 -06:00
dsc = self . ask_description ( )
2016-04-11 11:48:35 -05:00
return ( openFileDialog . GetPath ( ) , dsc )
def ask_description ( self ) :
2019-01-02 04:42:53 +03:00
dlg = wx . TextEntryDialog ( self , _ ( " please provide a description " ) , _ ( " Description " ) )
2016-04-11 11:48:35 -05:00
dlg . ShowModal ( )
result = dlg . GetValue ( )
dlg . Destroy ( )
return result
2018-12-20 17:29:23 -06:00
def get_audio ( self ) :
2019-01-02 04:42:53 +03:00
openFileDialog = wx . FileDialog ( self , _ ( " Select the audio file to be uploaded " ) , " " , " " , _ ( " Audio files (*.mp3)|*.mp3 " ) , wx . FD_OPEN | wx . FD_FILE_MUST_EXIST )
2018-12-20 17:29:23 -06:00
if openFileDialog . ShowModal ( ) == wx . ID_CANCEL :
return None
return openFileDialog . GetPath ( )