summaryrefslogtreecommitdiff
path: root/src/wx/repeat_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-03-26 16:43:34 +0000
committerCarl Hetherington <cth@carlh.net>2014-03-26 16:43:34 +0000
commit41b7a04cf3dedaa93aaf3c050db7a693281417f7 (patch)
tree9d5a2bf36e65dea84f105d5c96e705474020cf26 /src/wx/repeat_dialog.cc
parent5dc5a43bf61847cf863b29ef47d0046a9d4fdef0 (diff)
Cleanup of various dialogs by inherting TableDialog.
Diffstat (limited to 'src/wx/repeat_dialog.cc')
-rw-r--r--src/wx/repeat_dialog.cc27
1 files changed, 6 insertions, 21 deletions
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 <cth@carlh.net>
+ Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
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