No-op: remove all trailing whitespace.
[dcpomatic.git] / src / wx / table_dialog.cc
1 /*
2     Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "table_dialog.h"
21 #include "wx_util.h"
22
23 TableDialog::TableDialog (wxWindow* parent, wxString title, int columns, bool cancel)
24         : wxDialog (parent, wxID_ANY, title)
25 {
26         _overall_sizer = new wxBoxSizer (wxVERTICAL);
27         SetSizer (_overall_sizer);
28
29         _table = new wxFlexGridSizer (columns, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
30         _table->AddGrowableCol (1, 1);
31
32         _overall_sizer->Add (_table, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
33
34         long int flags = wxOK;
35         if (cancel) {
36                 flags |= wxCANCEL;
37         }
38
39         wxSizer* buttons = CreateSeparatedButtonSizer (flags);
40         if (buttons) {
41                 _overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
42         }
43 }
44
45 void
46 TableDialog::layout ()
47 {
48         _overall_sizer->Layout ();
49         _overall_sizer->SetSizeHints (this);
50 }
51
52 void
53 TableDialog::add (wxString text, bool label)
54 {
55         add_label_to_sizer (_table, this, text, label);
56 }
57
58 void
59 TableDialog::add_spacer ()
60 {
61         _table->AddSpacer (0);
62 }