summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-10-23 22:00:12 +0100
committerCarl Hetherington <cth@carlh.net>2014-10-23 22:00:12 +0100
commit539ed8f0f6d1ee3d8c939f64ffd05f7c87df29ce (patch)
tree1ee2561866706331438eeef8b8f14382ca4b82a2
parentb2814c05c8d61c4c2c7e453223484473ea10513b (diff)
Rename 'Add folder' button to 'Add image sequence' and add some tooltips.
-rw-r--r--ChangeLog3
-rw-r--r--src/wx/film_editor.cc24
2 files changed, 21 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 025f11c16..b9afc684f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2014-10-23 Carl Hetherington <cth@carlh.net>
+ * Rename 'Add folder' to 'Add image sequence'
+ and add some tooltips.
+
* Move the "keep video in sequence" button into
the timeline dialogue.
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc
index 275a7ab81..4b3898859 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -276,18 +276,30 @@ FilmEditor::make_content_panel ()
_content->SetColumnWidth (0, 512);
wxBoxSizer* b = new wxBoxSizer (wxVERTICAL);
+
_content_add_file = new wxButton (_content_panel, wxID_ANY, _("Add file(s)..."));
- b->Add (_content_add_file, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
- _content_add_folder = new wxButton (_content_panel, wxID_ANY, _("Add folder..."));
+ _content_add_file->SetToolTip (_("Add video, image or sound files to the film."));
+ b->Add (_content_add_file, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
+
+ _content_add_folder = new wxButton (_content_panel, wxID_ANY, _("Add image\nsequence..."));
+ _content_add_folder->SetToolTip (_("Add a directory of image files which will be used as a moving image sequence."));
b->Add (_content_add_folder, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
+
_content_remove = new wxButton (_content_panel, wxID_ANY, _("Remove"));
- b->Add (_content_remove, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
+ _content_remove->SetToolTip (_("Remove the selected piece of content from the film."));
+ b->Add (_content_remove, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
+
_content_earlier = new wxButton (_content_panel, wxID_ANY, _("Up"));
- b->Add (_content_earlier, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
+ _content_earlier->SetToolTip (_("Move the selected piece of content earlier in the film."));
+ b->Add (_content_earlier, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
+
_content_later = new wxButton (_content_panel, wxID_ANY, _("Down"));
- b->Add (_content_later, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
+ _content_later->SetToolTip (_("Move the selected piece of content later in the film."));
+ b->Add (_content_later, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
+
_content_timeline = new wxButton (_content_panel, wxID_ANY, _("Timeline..."));
- b->Add (_content_timeline, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
+ _content_timeline->SetToolTip (_("Open the timeline for the film."));
+ b->Add (_content_timeline, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
s->Add (b, 0, wxALL, 4);