X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Frepeat_dialog.cc;h=574dcd1c0cdab38a4967ee48ca51dd5d96e6ef36;hb=fe47588e80b35c07fc25b1d9e79bc13b6e439ff0;hp=3721c61b926ab0d5b369606e54ddb05d99f18fa6;hpb=bd453939da140ea994282e1c167ea5f8d02e2d94;p=dcpomatic.git diff --git a/src/wx/repeat_dialog.cc b/src/wx/repeat_dialog.cc index 3721c61b9..574dcd1c0 100644 --- a/src/wx/repeat_dialog.cc +++ b/src/wx/repeat_dialog.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2014 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,30 +21,15 @@ #include "wx_util.h" RepeatDialog::RepeatDialog (wxWindow* parent) - : wxDialog (parent, wxID_ANY, _("Repeat Content")) + : TableDialog (parent, _("Repeat Content"), 3, true) { - wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL); - SetSizer (overall_sizer); - - wxFlexGridSizer* table = new wxFlexGridSizer (3, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); - table->AddGrowableCol (1, 1); - overall_sizer->Add (table, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER); - - add_label_to_sizer (table, this, _("Repeat"), true); - _number = new wxSpinCtrl (this, wxID_ANY); - table->Add (_number, 1); - - add_label_to_sizer (table, this, _("times"), false); + add (_("Repeat"), true); + _number = add (new wxSpinCtrl (this, wxID_ANY)); + add (_("times"), false); _number->SetRange (1, 1024); - wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL); - if (buttons) { - overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder()); - } - - overall_sizer->Layout (); - overall_sizer->SetSizeHints (this); + layout (); } int