2016-02-13 17:06:36 -06:00
# -*- coding: utf-8 -*-
import wx
2018-09-02 07:57:21 -05:00
import wx . adv
2016-02-13 17:06:36 -06:00
import application
class mainWindow ( wx . Frame ) :
def makeMenu ( self ) :
mb = wx . MenuBar ( )
2016-04-04 17:54:59 -05:00
app_ = wx . Menu ( )
2016-06-19 12:25:06 -05:00
create = wx . Menu ( )
2019-01-02 04:42:53 +03:00
# self.audio_album = create.Append(wx.NewId(), _("Audio album"))
self . video_album = create . Append ( wx . NewId ( ) , _ ( " Video album " ) )
app_ . Append ( wx . NewId ( ) , _ ( " Create " ) , create )
2016-06-28 22:32:32 -05:00
delete = wx . Menu ( )
2019-01-02 04:42:53 +03:00
# self.delete_audio_album = delete.Append(wx.NewId(), _("Audio album"))
self . delete_video_album = delete . Append ( wx . NewId ( ) , _ ( " Video album " ) )
app_ . Append ( wx . NewId ( ) , _ ( " Delete " ) , delete )
self . settings_dialog = app_ . Append ( wx . NewId ( ) , _ ( " Preferences " ) )
2018-09-06 10:47:10 -05:00
me = wx . Menu ( )
profile = wx . Menu ( )
2019-01-02 04:42:53 +03:00
self . view_profile = profile . Append ( wx . NewId ( ) , _ ( " View profile " ) )
# self.edit_profile = profile.Append(wx.NewId(), _("Edit profile"))
self . open_in_browser = profile . Append ( wx . NewId ( ) , _ ( " Open in browser " ) )
me . Append ( wx . NewId ( ) , _ ( " Profile " ) , profile )
self . set_status = me . Append ( wx . NewId ( ) , _ ( " Set status message " ) )
2016-02-13 17:06:36 -06:00
buffer = wx . Menu ( )
2016-06-19 12:25:06 -05:00
search = wx . Menu ( )
2019-01-02 04:42:53 +03:00
self . search_audios = search . Append ( wx . NewId ( ) , _ ( " Audio " ) )
self . search_videos = search . Append ( wx . NewId ( ) , _ ( " Video " ) )
self . timeline = buffer . Append ( wx . NewId ( ) , _ ( " &New timeline " ) )
buffer . Append ( wx . NewId ( ) , _ ( " Search " ) , search )
self . update_buffer = buffer . Append ( wx . NewId ( ) , _ ( " Update current buffer " ) )
self . load_previous_items = buffer . Append ( wx . NewId ( ) , _ ( " Load previous items " ) )
self . remove_buffer_ = buffer . Append ( wx . NewId ( ) , _ ( " &Remove buffer " ) )
mb . Append ( app_ , _ ( " Application " ) )
mb . Append ( me , _ ( " Me " ) )
mb . Append ( buffer , _ ( " Buffer " ) )
2018-12-09 05:22:37 -06:00
player = wx . Menu ( )
2019-01-21 16:48:09 -06:00
self . player_play = player . Append ( wx . NewId ( ) , _ ( " Play/Pause " ) )
2019-01-02 04:42:53 +03:00
self . player_play_all = player . Append ( wx . NewId ( ) , _ ( " Play all " ) )
self . player_previous = player . Append ( wx . NewId ( ) , _ ( " Previous " ) )
self . player_next = player . Append ( wx . NewId ( ) , _ ( " Next " ) )
self . player_shuffle = player . AppendCheckItem ( wx . NewId ( ) , _ ( " Shuffle " ) )
self . player_volume_up = player . Append ( wx . NewId ( ) , _ ( " Volume up " ) )
self . player_volume_down = player . Append ( wx . NewId ( ) , _ ( " Volume down " ) )
self . player_mute = player . Append ( wx . NewId ( ) , _ ( " Mute " ) )
2016-02-13 17:06:36 -06:00
help_ = wx . Menu ( )
2019-01-02 04:42:53 +03:00
self . about = help_ . Append ( wx . NewId ( ) , _ ( " About {0} " ) . format ( application . name , ) )
self . documentation = help_ . Append ( wx . NewId ( ) , _ ( " Manual " ) )
self . check_for_updates = help_ . Append ( wx . NewId ( ) , _ ( " Check for updates " ) )
self . changelog = help_ . Append ( wx . NewId ( ) , _ ( " Chan&gelog " ) )
self . report = help_ . Append ( wx . NewId ( ) , _ ( " Report an error " ) )
mb . Append ( player , _ ( " Audio player " ) )
mb . Append ( help_ , _ ( " Help " ) )
2016-02-13 17:06:36 -06:00
self . SetMenuBar ( mb )
2019-01-21 16:48:09 -06:00
self . accel_tbl = wx . AcceleratorTable ( [
# Assign keystrokes to control the player object.
( wx . ACCEL_ALT , wx . WXK_LEFT , self . player_previous . GetId ( ) ) ,
( wx . ACCEL_ALT , wx . WXK_RIGHT , self . player_next . GetId ( ) ) ,
( wx . ACCEL_ALT , wx . WXK_DOWN , self . player_volume_down . GetId ( ) ) ,
( wx . ACCEL_ALT , wx . WXK_UP , self . player_volume_up . GetId ( ) ) ,
# Translators: Keystroke used to play/pause the current item in the playback queue. Use the latin alphabet, but you can match a different key here. For example if you want to assign this to the key "П", use G.
( wx . ACCEL_CTRL , ord ( _ ( " P " ) ) , self . player_play . GetId ( ) ) ,
( wx . ACCEL_CTRL | wx . ACCEL_SHIFT , ord ( _ ( " P " ) ) , self . player_play_all . GetId ( ) ) ,
] )
self . SetAcceleratorTable ( self . accel_tbl )
2016-02-13 17:06:36 -06:00
def __init__ ( self ) :
super ( mainWindow , self ) . __init__ ( parent = None , id = wx . NewId ( ) , title = application . name )
2016-06-08 05:12:25 -05:00
self . Maximize ( )
2016-02-13 17:06:36 -06:00
self . makeMenu ( )
self . panel = wx . Panel ( self )
self . sizer = wx . BoxSizer ( wx . VERTICAL )
self . sb = self . CreateStatusBar ( )
self . tb = wx . Treebook ( self . panel , - 1 )
2016-06-05 08:11:25 -05:00
self . sizer . Add ( self . tb , 1 , wx . ALL | wx . EXPAND , 5 )
2016-02-13 17:06:36 -06:00
def realize ( self ) :
self . panel . SetSizer ( self . sizer )
self . SetClientSize ( self . sizer . CalcMin ( ) )
2016-06-05 08:11:25 -05:00
self . Layout ( )
self . SetSize ( self . GetBestSize ( ) )
2016-02-13 17:06:36 -06:00
def change_status ( self , status ) :
self . sb . SetStatusText ( status )
def connection_error ( self ) :
2019-01-02 04:42:53 +03:00
wx . MessageDialog ( self , _ ( " There is a connection error. Check your internet connection and try again later. " ) , _ ( " Connection error " ) , wx . ICON_ERROR ) . ShowModal ( )
2016-02-13 17:06:36 -06:00
def get_buffer_count ( self ) :
return self . tb . GetPageCount ( )
def add_buffer ( self , buffer , name ) :
self . tb . AddPage ( buffer , name )
def insert_buffer ( self , buffer , name , pos ) :
2016-05-25 11:33:57 -05:00
return self . tb . InsertSubPage ( pos , buffer , name )
2016-02-13 17:06:36 -06:00
2019-01-22 16:20:37 -06:00
def insert_chat_buffer ( self , buffer , name , pos ) :
return self . tb . InsertPage ( pos , buffer , name )
2016-02-13 17:06:36 -06:00
def search ( self , name_ ) :
2019-01-02 04:42:53 +03:00
for i in range ( 0 , self . tb . GetPageCount ( ) ) :
2016-02-13 17:06:36 -06:00
if self . tb . GetPage ( i ) . name == name_ : return i
def get_current_buffer ( self ) :
return self . tb . GetCurrentPage ( )
def get_current_buffer_pos ( self ) :
return self . tb . GetSelection ( )
def get_buffer ( self , pos ) :
return self . GetPage ( pos )
def change_buffer ( self , position ) :
self . tb . ChangeSelection ( position )
2019-01-22 16:20:37 -06:00
def get_buffer_text ( self , pos = None ) :
if pos == None :
pos = self . tb . GetSelection ( )
return self . tb . GetPageText ( pos )
2016-02-13 17:06:36 -06:00
def get_buffer_by_id ( self , id ) :
return self . nb . FindWindowById ( id )
def advance_selection ( self , forward ) :
self . tb . AdvanceSelection ( forward )
def about_dialog ( self , * args , * * kwargs ) :
2018-09-02 07:57:21 -05:00
info = wx . adv . AboutDialogInfo ( )
2016-02-13 17:06:36 -06:00
info . SetName ( application . name )
info . SetVersion ( application . version )
info . SetDescription ( application . description )
info . SetCopyright ( application . copyright )
2016-04-05 08:35:25 -05:00
info . SetTranslators ( application . translators )
2016-02-13 17:06:36 -06:00
# info.SetLicence(application.licence)
info . AddDeveloper ( application . author )
2018-09-02 07:57:21 -05:00
wx . adv . AboutBox ( info )
2016-03-23 08:38:18 -06:00
2016-03-27 00:11:52 -06:00
def remove_buffer ( self , pos ) :
2018-12-10 00:45:56 -06:00
self . tb . DeletePage ( pos )
2019-01-22 16:20:37 -06:00
def remove_buffer_from_position ( self , pos ) :
return self . tb . RemovePage ( pos )
2018-12-10 00:45:56 -06:00
def notify ( self , title , text ) :
2019-01-22 16:35:52 -06:00
self . notification = wx . adv . NotificationMessage ( title = title , message = text , parent = self )
2018-12-12 08:08:07 -06:00
self . notification . Show ( )