X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ffull_config_dialog.cc;h=e6147c3eab706dfbfcfc62111362a3c3758c3875;hb=e075012124424b77044b5d61885ed2646d3781cd;hp=80db5b7c0af4e0aca0d05b24fa820aafb3a92517;hpb=1473441e9436fb921b34b62d802d4313427c9129;p=dcpomatic.git diff --git a/src/wx/full_config_dialog.cc b/src/wx/full_config_dialog.cc index 80db5b7c0..e6147c3ea 100644 --- a/src/wx/full_config_dialog.cc +++ b/src/wx/full_config_dialog.cc @@ -695,7 +695,7 @@ private: void tms_protocol_changed () { - Config::instance()->set_tms_protocol (static_cast (_tms_protocol->GetSelection ())); + Config::instance()->set_tms_protocol(static_cast(_tms_protocol->GetSelection())); } void tms_ip_changed () @@ -766,6 +766,14 @@ private: _port = new wxSpinCtrl (_panel, wxID_ANY); _port->SetRange (0, 65535); s->Add (_port); + add_label_to_sizer (s, _panel, _("protocol"), false); + _protocol = new wxChoice (_panel, wxID_ANY); + /* Make sure this matches the switches in config_changed and port_changed below */ + _protocol->Append (_("Auto")); + _protocol->Append (_("Plain")); + _protocol->Append (_("STARTTLS")); + _protocol->Append (_("SSL")); + s->Add (_protocol); table->Add (s, 1, wxEXPAND | wxALL); } @@ -779,6 +787,7 @@ private: _server->Bind (wxEVT_TEXT, boost::bind (&EmailPage::server_changed, this)); _port->Bind (wxEVT_SPINCTRL, boost::bind (&EmailPage::port_changed, this)); + _protocol->Bind (wxEVT_CHOICE, boost::bind (&EmailPage::protocol_changed, this)); _user->Bind (wxEVT_TEXT, boost::bind (&EmailPage::user_changed, this)); _password->Bind (wxEVT_TEXT, boost::bind (&EmailPage::password_changed, this)); } @@ -789,6 +798,20 @@ private: checked_set (_server, config->mail_server ()); checked_set (_port, config->mail_port ()); + switch (config->mail_protocol()) { + case EMAIL_PROTOCOL_AUTO: + checked_set (_protocol, 0); + break; + case EMAIL_PROTOCOL_PLAIN: + checked_set (_protocol, 1); + break; + case EMAIL_PROTOCOL_STARTTLS: + checked_set (_protocol, 2); + break; + case EMAIL_PROTOCOL_SSL: + checked_set (_protocol, 3); + break; + } checked_set (_user, config->mail_user ()); checked_set (_password, config->mail_password ()); } @@ -803,6 +826,24 @@ private: Config::instance()->set_mail_port (_port->GetValue ()); } + void protocol_changed () + { + switch (_protocol->GetSelection()) { + case 0: + Config::instance()->set_mail_protocol(EMAIL_PROTOCOL_AUTO); + break; + case 1: + Config::instance()->set_mail_protocol(EMAIL_PROTOCOL_PLAIN); + break; + case 2: + Config::instance()->set_mail_protocol(EMAIL_PROTOCOL_STARTTLS); + break; + case 3: + Config::instance()->set_mail_protocol(EMAIL_PROTOCOL_SSL); + break; + } + } + void user_changed () { Config::instance()->set_mail_user (wx_to_std (_user->GetValue ())); @@ -815,6 +856,7 @@ private: wxTextCtrl* _server; wxSpinCtrl* _port; + wxChoice* _protocol; wxTextCtrl* _user; wxTextCtrl* _password; }; @@ -1392,7 +1434,7 @@ private: { add_top_aligned_label_to_sizer (table, _panel, _("DCP metadata filename format")); dcp::NameFormat::Map titles; - titles['t'] = "type (cpl/pkl)"; + titles['t'] = wx_to_std (_("type (cpl/pkl)")); dcp::NameFormat::Map examples; examples['t'] = "cpl"; _dcp_metadata_filename_format = new NameFormatEditor ( @@ -1404,10 +1446,10 @@ private: { add_top_aligned_label_to_sizer (table, _panel, _("DCP asset filename format")); dcp::NameFormat::Map titles; - titles['t'] = "type (j2c/pcm/sub)"; - titles['r'] = "reel number"; - titles['n'] = "number of reels"; - titles['c'] = "content filename"; + titles['t'] = wx_to_std (_("type (j2c/pcm/sub)")); + titles['r'] = wx_to_std (_("reel number")); + titles['n'] = wx_to_std (_("number of reels")); + titles['c'] = wx_to_std (_("content filename")); dcp::NameFormat::Map examples; examples['t'] = "j2c"; examples['r'] = "1"; @@ -1585,7 +1627,7 @@ create_full_config_dialog () the containing window doesn't shrink too much when we select those panels. This is obviously an unpleasant hack. */ - wxSize ps = wxSize (600, -1); + wxSize ps = wxSize (700, -1); int const border = 16; #else wxSize ps = wxSize (-1, -1);