X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ftext_panel.cc;h=ed49d8484d4575cfb534201f82701ed7472948b6;hb=8b2a3f31b6b4238d8534549f495e7276174ddfba;hp=4b53a941e768924c592ad6e83ce9dde06a9e5615;hpb=254b3044d72de6b033d7c584f5abd2b9aa70aad5;p=dcpomatic.git diff --git a/src/wx/text_panel.cc b/src/wx/text_panel.cc index 4b53a941e..ed49d8484 100644 --- a/src/wx/text_panel.cc +++ b/src/wx/text_panel.cc @@ -26,6 +26,9 @@ #include "fonts_dialog.h" #include "dcp_text_track_dialog.h" #include "subtitle_appearance_dialog.h" +#include "static_text.h" +#include "check_box.h" +#include "dcpomatic_button.h" #include "lib/ffmpeg_content.h" #include "lib/string_text_file_content.h" #include "lib/ffmpeg_subtitle_stream.h" @@ -58,40 +61,40 @@ TextPanel::TextPanel (ContentPanel* p, TextType t) refer = _("Use this DCP's closed caption as OV and make VF"); } - _reference = new wxCheckBox (this, wxID_ANY, refer); - _reference_note = new wxStaticText (this, wxID_ANY, wxT("")); + _reference = new CheckBox (this, refer); + _reference_note = new StaticText (this, wxT("")); _reference_note->Wrap (200); wxFont font = _reference_note->GetFont(); font.SetStyle(wxFONTSTYLE_ITALIC); font.SetPointSize(font.GetPointSize() - 1); _reference_note->SetFont(font); - _use = new wxCheckBox (this, wxID_ANY, _("Use as")); + _use = new CheckBox (this, _("Use as")); _type = new wxChoice (this, wxID_ANY); _type->Append (_("open subtitles")); _type->Append (_("closed captions")); - _burn = new wxCheckBox (this, wxID_ANY, _("Burn subtitles into image")); + _burn = new CheckBox (this, _("Burn subtitles into image")); _offset_label = create_label (this, _("Offset"), true); _x_offset_label = create_label (this, _("X"), true); _x_offset = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(64, -1)); - _x_offset_pc_label = new wxStaticText (this, wxID_ANY, _("%")); + _x_offset_pc_label = new StaticText (this, _("%")); _y_offset_label = create_label (this, _("Y"), true); _y_offset = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(64, -1)); - _y_offset_pc_label = new wxStaticText (this, wxID_ANY, _("%")); + _y_offset_pc_label = new StaticText (this, _("%")); _scale_label = create_label (this, _("Scale"), true); _x_scale_label = create_label (this, _("X"), true); _x_scale = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(64, -1)); - _x_scale_pc_label = new wxStaticText (this, wxID_ANY, _("%")); + _x_scale_pc_label = new StaticText (this, _("%")); _y_scale_label = create_label (this, _("Y"), true); _y_scale = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(64, -1)); - _y_scale_pc_label = new wxStaticText (this, wxID_ANY, _("%")); + _y_scale_pc_label = new StaticText (this, _("%")); _line_spacing_label = create_label (this, _("Line spacing"), true); _line_spacing = new wxSpinCtrl (this); - _line_spacing_pc_label = new wxStaticText (this, wxID_ANY, _("%")); + _line_spacing_pc_label = new StaticText (this, _("%")); _dcp_track_label = create_label (this, _("DCP track"), true); _dcp_track = new wxChoice (this, wxID_ANY); @@ -102,9 +105,9 @@ TextPanel::TextPanel (ContentPanel* p, TextType t) _stream_label = create_label (this, _("Stream"), true); _stream = new wxChoice (this, wxID_ANY); - _text_view_button = new wxButton (this, wxID_ANY, _("View...")); - _fonts_dialog_button = new wxButton (this, wxID_ANY, _("Fonts...")); - _appearance_dialog_button = new wxButton (this, wxID_ANY, _("Appearance...")); + _text_view_button = new Button (this, _("View...")); + _fonts_dialog_button = new Button (this, _("Fonts...")); + _appearance_dialog_button = new Button (this, _("Appearance...")); _x_offset->SetRange (-100, 100); _y_offset->SetRange (-100, 100);