X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ftry_unmount_dialog.cc;h=dcec6bb0b644fa351271715727e97743282b7ee2;hb=313319ba2d8544bc25524e02e634804a503b54f1;hp=2ca76527da34d0cba01537a4755ad0a328b6bd33;hpb=747e81de1927c71b39dc916be05bb9296ca6b882;p=dcpomatic.git diff --git a/src/wx/try_unmount_dialog.cc b/src/wx/try_unmount_dialog.cc index 2ca76527d..dcec6bb0b 100644 --- a/src/wx/try_unmount_dialog.cc +++ b/src/wx/try_unmount_dialog.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2020 Carl Hetherington + Copyright (C) 2020-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,19 +18,29 @@ */ + +#include "static_text.h" #include "try_unmount_dialog.h" #include "wx_util.h" -#include "static_text.h" #include + +static int constexpr width = 300; + + TryUnmountDialog::TryUnmountDialog (wxWindow* parent, wxString description) : wxDialog (parent, wxID_ANY, _("DCP-o-matic Disk Writer")) { - wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL); - wxStaticText* text = new StaticText (this, wxString::Format(_("The drive %s is mounted.\nIt must be unmounted before DCP-o-matic can write to it. Should DCP-o-matic try to unmount it now?"), description)); + auto sizer = new wxBoxSizer (wxVERTICAL); + auto text = new StaticText (this, wxEmptyString, wxDefaultPosition, wxSize(width, -1)); sizer->Add (text, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER); - wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL); + text->SetLabelMarkup ( + wxString::Format(_("The drive %s is mounted.\n\nIt must be unmounted before DCP-o-matic can write to it.\n\nShould DCP-o-matic try to unmount it now?"), description) + ); + text->Wrap(width); + + auto buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL); if (buttons) { sizer->Add(buttons, wxSizerFlags().Expand().DoubleBorder()); }