Rename 'Add folder' button to 'Add image sequence' and add some tooltips.
authorCarl Hetherington <cth@carlh.net>
Thu, 23 Oct 2014 21:00:12 +0000 (22:00 +0100)
committerCarl Hetherington <cth@carlh.net>
Thu, 23 Oct 2014 21:00:12 +0000 (22:00 +0100)
ChangeLog
src/wx/film_editor.cc

index 025f11c160ab2f0417d80f6acecf4f79c8ac9ffe..b9afc684f9fe1b53e2ed39b34a30754f742c869f 100644 (file)
--- 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.
 
index 275a7ab8149e1519fadc639ab366eed70540bc70..4b3898859686a6b1af2003ea2d57637daf1f6a7a 100644 (file)
@@ -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);