C++11 tidying.
[dcpomatic.git] / src / wx / email_dialog.cc
index 97f974a90050a17699c0bcb22d2eacacf815e6d3..65fb47473f1cccd40d0bd1f584722168234dcef1 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2015-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "email_dialog.h"
 #include "wx_util.h"
 
+
 using std::string;
-using boost::shared_ptr;
+using std::shared_ptr;
+using boost::optional;
+
 
 EmailDialog::EmailDialog (wxWindow* parent)
        : TableDialog (parent, _("Email address"), 2, 1, true)
 {
        add (_("Email address"), true);
-       _email = add (new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, wxSize (400, -1)));
+       _email = add (new wxTextCtrl(this, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(400, -1)));
 
        layout ();
+
+       _email->SetFocus ();
 }
 
+
 void
 EmailDialog::set (string address)
 {
-       _email->SetValue (std_to_wx (address));
+       _email->SetValue (std_to_wx(address));
 }
 
-string
+
+optional<string>
 EmailDialog::get () const
 {
-       return wx_to_std (_email->GetValue ());
+       auto s = wx_to_std (_email->GetValue ());
+       if (s.empty()) {
+               /* Invalid email address */
+               return {};
+       }
+
+       return s;
 }