2007-06-05 12:10:51 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dialog_display_options.cpp
|
|
|
|
// Purpose:
|
|
|
|
// Author: jean-pierre Charras
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/02/2006 17:47:55
|
|
|
|
// RCS-ID:
|
|
|
|
// Copyright: License GNU
|
|
|
|
// Licence:
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Generated by DialogBlocks (unregistered), 17/02/2006 17:47:55
|
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
|
|
|
#pragma implementation "dialog_display_options.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// For compilers that support precompilation, includes "wx/wx.h".
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/wx.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
////@begin includes
|
|
|
|
////@end includes
|
|
|
|
#include "fctsys.h"
|
|
|
|
|
|
|
|
#include "wxstruct.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "cvpcb.h"
|
|
|
|
#include "protos.h"
|
|
|
|
|
|
|
|
#include "dialog_display_options.h"
|
|
|
|
|
|
|
|
////@begin XPM images
|
|
|
|
////@end XPM images
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************/
|
|
|
|
void WinEDA_DisplayFrame::InstallOptionsDisplay(wxCommandEvent& event)
|
|
|
|
/*********************************************************************/
|
|
|
|
/* Creation de la fenetre d'options de la fenetre de visu */
|
|
|
|
{
|
2007-10-25 02:01:28 +00:00
|
|
|
WinEDA_FootprintDisplayOptionsFrame * OptionWindow = new WinEDA_FootprintDisplayOptionsFrame(this);
|
2007-10-07 03:08:24 +00:00
|
|
|
OptionWindow->ShowModal();
|
|
|
|
OptionWindow->Destroy();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
2007-10-25 02:01:28 +00:00
|
|
|
* WinEDA_FootprintDisplayOptionsFrame type definition
|
2007-06-05 12:10:51 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
IMPLEMENT_DYNAMIC_CLASS( WinEDA_FootprintDisplayOptionsFrame, wxDialog )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
/*!
|
2007-10-25 02:01:28 +00:00
|
|
|
* WinEDA_FootprintDisplayOptionsFrame event table definition
|
2007-06-05 12:10:51 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
BEGIN_EVENT_TABLE( WinEDA_FootprintDisplayOptionsFrame, wxDialog )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
////@begin WinEDA_FootprintDisplayOptionsFrame event table entries
|
|
|
|
EVT_BUTTON( ID_SAVE_CONFIG, WinEDA_FootprintDisplayOptionsFrame::OnSaveConfigClick )
|
2007-10-24 19:19:47 +00:00
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
EVT_BUTTON( wxID_OK, WinEDA_FootprintDisplayOptionsFrame::OnOkClick )
|
2007-10-24 19:19:47 +00:00
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
EVT_BUTTON( wxID_CANCEL, WinEDA_FootprintDisplayOptionsFrame::OnCancelClick )
|
2007-10-24 19:19:47 +00:00
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
EVT_BUTTON( wxID_APPLY, WinEDA_FootprintDisplayOptionsFrame::OnApplyClick )
|
2007-10-24 19:19:47 +00:00
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
////@end WinEDA_FootprintDisplayOptionsFrame event table entries
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
/*!
|
2007-10-25 02:01:28 +00:00
|
|
|
* WinEDA_FootprintDisplayOptionsFrame constructors
|
2007-06-05 12:10:51 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
WinEDA_FootprintDisplayOptionsFrame::WinEDA_FootprintDisplayOptionsFrame( )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
WinEDA_FootprintDisplayOptionsFrame::WinEDA_FootprintDisplayOptionsFrame( WinEDA_BasePcbFrame* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
m_Parent = parent;
|
|
|
|
|
|
|
|
Create(parent, id, caption, pos, size, style);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
2007-10-25 02:01:28 +00:00
|
|
|
* WinEDA_FootprintDisplayOptionsFrame creator
|
2007-06-05 12:10:51 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
bool WinEDA_FootprintDisplayOptionsFrame::Create( wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-10-25 02:01:28 +00:00
|
|
|
////@begin WinEDA_FootprintDisplayOptionsFrame member initialisation
|
|
|
|
OuterBoxSizer = NULL;
|
|
|
|
MainBoxSizer = NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
m_EdgesDisplayOption = NULL;
|
|
|
|
m_TextDisplayOption = NULL;
|
2007-10-25 02:01:28 +00:00
|
|
|
ColumnBoxSizer = NULL;
|
2007-10-07 03:08:24 +00:00
|
|
|
m_IsShowPadFill = NULL;
|
2007-10-24 19:19:47 +00:00
|
|
|
m_IsShowPadNum = NULL;
|
2007-10-25 02:01:28 +00:00
|
|
|
BottomBoxSizer = NULL;
|
2008-07-21 13:44:01 +00:00
|
|
|
m_CancelButton = NULL;
|
2007-10-25 02:01:28 +00:00
|
|
|
////@end WinEDA_FootprintDisplayOptionsFrame member initialisation
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
////@begin WinEDA_FootprintDisplayOptionsFrame creation
|
2007-10-24 19:19:47 +00:00
|
|
|
SetExtraStyle(wxWS_EX_BLOCK_EVENTS);
|
2007-06-05 12:10:51 +00:00
|
|
|
wxDialog::Create( parent, id, caption, pos, size, style );
|
|
|
|
|
|
|
|
CreateControls();
|
2007-10-24 19:19:47 +00:00
|
|
|
if (GetSizer())
|
|
|
|
{
|
|
|
|
GetSizer()->SetSizeHints(this);
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
Centre();
|
2007-10-25 02:01:28 +00:00
|
|
|
////@end WinEDA_FootprintDisplayOptionsFrame creation
|
2007-06-05 12:10:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
2007-10-25 02:01:28 +00:00
|
|
|
* Control creation for WinEDA_FootprintDisplayOptionsFrame
|
2007-06-05 12:10:51 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
void WinEDA_FootprintDisplayOptionsFrame::CreateControls()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
SetFont(*g_DialogFont);
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
////@begin WinEDA_FootprintDisplayOptionsFrame content construction
|
2008-07-21 13:44:01 +00:00
|
|
|
// Generated by DialogBlocks, 21/07/2008 15:12:47 (unregistered)
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
WinEDA_FootprintDisplayOptionsFrame* itemDialog1 = this;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
OuterBoxSizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
itemDialog1->SetSizer(OuterBoxSizer);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
MainBoxSizer = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
OuterBoxSizer->Add(MainBoxSizer, 1, wxGROW|wxALL, 5);
|
2007-10-24 19:19:47 +00:00
|
|
|
|
|
|
|
wxArrayString m_EdgesDisplayOptionStrings;
|
|
|
|
m_EdgesDisplayOptionStrings.Add(_("&Line"));
|
|
|
|
m_EdgesDisplayOptionStrings.Add(_("&Filled"));
|
|
|
|
m_EdgesDisplayOptionStrings.Add(_("&Sketch"));
|
|
|
|
m_EdgesDisplayOption = new wxRadioBox( itemDialog1, EDGE_SELECT, _("Edges:"), wxDefaultPosition, wxDefaultSize, m_EdgesDisplayOptionStrings, 1, wxRA_SPECIFY_COLS );
|
|
|
|
m_EdgesDisplayOption->SetSelection(0);
|
2007-10-27 12:24:09 +00:00
|
|
|
MainBoxSizer->Add(m_EdgesDisplayOption, 0, wxALIGN_TOP|wxALL, 5);
|
2007-10-24 19:19:47 +00:00
|
|
|
|
|
|
|
wxArrayString m_TextDisplayOptionStrings;
|
|
|
|
m_TextDisplayOptionStrings.Add(_("&Line"));
|
|
|
|
m_TextDisplayOptionStrings.Add(_("&Filled"));
|
|
|
|
m_TextDisplayOptionStrings.Add(_("&Sketch"));
|
|
|
|
m_TextDisplayOption = new wxRadioBox( itemDialog1, TEXT_SELECT, _("Texts:"), wxDefaultPosition, wxDefaultSize, m_TextDisplayOptionStrings, 1, wxRA_SPECIFY_COLS );
|
|
|
|
m_TextDisplayOption->SetSelection(0);
|
2007-10-27 12:24:09 +00:00
|
|
|
MainBoxSizer->Add(m_TextDisplayOption, 0, wxALIGN_TOP|wxALL, 5);
|
2007-10-24 19:19:47 +00:00
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
ColumnBoxSizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
MainBoxSizer->Add(ColumnBoxSizer, 1, wxALIGN_TOP|wxLEFT|wxRIGHT|wxTOP, 5);
|
2007-10-24 19:19:47 +00:00
|
|
|
|
|
|
|
m_IsShowPadFill = new wxCheckBox( itemDialog1, PADFILL_OPT, _("&Pad Filled"), wxDefaultPosition, wxDefaultSize, wxCHK_2STATE );
|
|
|
|
m_IsShowPadFill->SetValue(false);
|
2007-10-25 02:01:28 +00:00
|
|
|
ColumnBoxSizer->Add(m_IsShowPadFill, 1, wxGROW|wxALL, 5);
|
2007-10-24 19:19:47 +00:00
|
|
|
|
|
|
|
m_IsShowPadNum = new wxCheckBox( itemDialog1, PADNUM_OPT, _("Display Pad &Num"), wxDefaultPosition, wxDefaultSize, wxCHK_2STATE );
|
2007-10-07 03:08:24 +00:00
|
|
|
m_IsShowPadNum->SetValue(false);
|
2008-07-21 13:44:01 +00:00
|
|
|
if (WinEDA_FootprintDisplayOptionsFrame::ShowToolTips())
|
2007-10-24 19:19:47 +00:00
|
|
|
m_IsShowPadNum->SetToolTip(_("Display pad number"));
|
2007-10-25 02:01:28 +00:00
|
|
|
ColumnBoxSizer->Add(m_IsShowPadNum, 1, wxGROW|wxALL, 5);
|
2007-10-07 03:08:24 +00:00
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
ColumnBoxSizer->Add(5, 5, 0, wxGROW|wxTOP, 5);
|
2007-10-07 03:08:24 +00:00
|
|
|
|
2007-10-24 19:19:47 +00:00
|
|
|
wxButton* itemButton10 = new wxButton( itemDialog1, ID_SAVE_CONFIG, _("Save Cfg"), wxDefaultPosition, wxDefaultSize, 0 );
|
2007-10-27 12:24:09 +00:00
|
|
|
ColumnBoxSizer->Add(itemButton10, 0, wxALIGN_LEFT|wxALL, 5);
|
2007-10-07 03:08:24 +00:00
|
|
|
|
2007-10-24 19:19:47 +00:00
|
|
|
wxStaticLine* itemStaticLine11 = new wxStaticLine( itemDialog1, ID_STATICLINE1, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
|
2007-10-25 02:01:28 +00:00
|
|
|
OuterBoxSizer->Add(itemStaticLine11, 0, wxGROW|wxALL, 5);
|
2007-10-07 03:08:24 +00:00
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
BottomBoxSizer = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
OuterBoxSizer->Add(BottomBoxSizer, 0, wxALIGN_RIGHT|wxALL, 5);
|
2007-10-07 03:08:24 +00:00
|
|
|
|
2007-10-24 19:19:47 +00:00
|
|
|
wxButton* itemButton13 = new wxButton( itemDialog1, wxID_OK, _("&OK"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemButton13->SetDefault();
|
|
|
|
itemButton13->SetForegroundColour(wxColour(255, 0, 0));
|
2007-10-25 02:01:28 +00:00
|
|
|
BottomBoxSizer->Add(itemButton13, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
2007-10-07 03:08:24 +00:00
|
|
|
|
2008-07-21 13:44:01 +00:00
|
|
|
m_CancelButton = new wxButton( itemDialog1, wxID_CANCEL, _("&Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
m_CancelButton->SetForegroundColour(wxColour(0, 0, 255));
|
|
|
|
BottomBoxSizer->Add(m_CancelButton, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
2007-10-07 03:08:24 +00:00
|
|
|
|
2007-10-24 19:19:47 +00:00
|
|
|
wxButton* itemButton15 = new wxButton( itemDialog1, wxID_APPLY, _("&Apply"), wxDefaultPosition, wxDefaultSize, 0 );
|
2007-10-25 02:01:28 +00:00
|
|
|
BottomBoxSizer->Add(itemButton15, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
// Set validators
|
|
|
|
m_EdgesDisplayOption->SetValidator( wxGenericValidator(& DisplayOpt.DisplayModEdge) );
|
|
|
|
m_TextDisplayOption->SetValidator( wxGenericValidator(& DisplayOpt.DisplayModText) );
|
2007-10-07 03:08:24 +00:00
|
|
|
m_IsShowPadFill->SetValidator( wxGenericValidator(& DisplayOpt.DisplayPadFill) );
|
2007-10-24 19:19:47 +00:00
|
|
|
m_IsShowPadNum->SetValidator( wxGenericValidator(& DisplayOpt.DisplayPadNum) );
|
2007-10-25 02:01:28 +00:00
|
|
|
////@end WinEDA_FootprintDisplayOptionsFrame content construction
|
2008-07-21 13:44:01 +00:00
|
|
|
|
|
|
|
m_CancelButton->SetFocus(); /* Necessary to use escape key as cancel under wxGRk */
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Should we show tooltips?
|
|
|
|
*/
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
bool WinEDA_FootprintDisplayOptionsFrame::ShowToolTips()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Get bitmap resources
|
|
|
|
*/
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
wxBitmap WinEDA_FootprintDisplayOptionsFrame::GetBitmapResource( const wxString& name )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
// Bitmap retrieval
|
2007-10-25 02:01:28 +00:00
|
|
|
////@begin WinEDA_FootprintDisplayOptionsFrame bitmap retrieval
|
2007-06-05 12:10:51 +00:00
|
|
|
wxUnusedVar(name);
|
|
|
|
return wxNullBitmap;
|
2007-10-25 02:01:28 +00:00
|
|
|
////@end WinEDA_FootprintDisplayOptionsFrame bitmap retrieval
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Get icon resources
|
|
|
|
*/
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
wxIcon WinEDA_FootprintDisplayOptionsFrame::GetIconResource( const wxString& name )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
// Icon retrieval
|
2007-10-25 02:01:28 +00:00
|
|
|
////@begin WinEDA_FootprintDisplayOptionsFrame icon retrieval
|
2007-06-05 12:10:51 +00:00
|
|
|
wxUnusedVar(name);
|
|
|
|
return wxNullIcon;
|
2007-10-25 02:01:28 +00:00
|
|
|
////@end WinEDA_FootprintDisplayOptionsFrame icon retrieval
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
2007-10-07 03:08:24 +00:00
|
|
|
* Update settings related to edges, text strings, and pads
|
2007-06-05 12:10:51 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
void WinEDA_FootprintDisplayOptionsFrame::UpdateObjectSettings(void)
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-10-07 03:08:24 +00:00
|
|
|
// Update settings
|
2007-10-25 02:01:28 +00:00
|
|
|
////@begin WinEDA_FootprintDisplayOptionsFrame update settings
|
2007-10-07 03:08:24 +00:00
|
|
|
DisplayOpt.DisplayModEdge = m_Parent->m_DisplayModEdge =
|
|
|
|
m_EdgesDisplayOption->GetSelection();
|
|
|
|
|
|
|
|
DisplayOpt.DisplayModText = m_Parent->m_DisplayModText =
|
|
|
|
m_TextDisplayOption->GetSelection();
|
|
|
|
|
|
|
|
DisplayOpt.DisplayPadNum = m_Parent->m_DisplayPadNum =
|
|
|
|
m_IsShowPadNum->GetValue();
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
DisplayOpt.DisplayPadFill = m_Parent->m_DisplayPadFill =
|
|
|
|
m_IsShowPadFill->GetValue();
|
2007-10-07 03:08:24 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
m_Parent->ReDrawPanel();
|
2007-10-25 02:01:28 +00:00
|
|
|
////@end WinEDA_FootprintDisplayOptionsFrame update settings
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
2007-10-07 03:08:24 +00:00
|
|
|
* wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_SAVE_CONFIG
|
2007-06-05 12:10:51 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
void WinEDA_FootprintDisplayOptionsFrame::OnSaveConfigClick( wxCommandEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-10-07 03:08:24 +00:00
|
|
|
Save_Config(this);
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
2007-10-07 03:08:24 +00:00
|
|
|
* wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_OK
|
2007-06-05 12:10:51 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
void WinEDA_FootprintDisplayOptionsFrame::OnOkClick( wxCommandEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-10-07 03:08:24 +00:00
|
|
|
UpdateObjectSettings();
|
|
|
|
EndModal( 1 );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
2007-10-07 03:08:24 +00:00
|
|
|
* wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL
|
2007-06-05 12:10:51 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
void WinEDA_FootprintDisplayOptionsFrame::OnCancelClick( wxCommandEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-10-07 03:08:24 +00:00
|
|
|
EndModal( -1 );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
2007-10-07 03:08:24 +00:00
|
|
|
* wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_APPLY
|
2007-06-05 12:10:51 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-25 02:01:28 +00:00
|
|
|
void WinEDA_FootprintDisplayOptionsFrame::OnApplyClick( wxCommandEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-10-07 03:08:24 +00:00
|
|
|
UpdateObjectSettings();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|