File: timingfromplayer.cc

package info (click to toggle)
subtitleeditor 0.56.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,880 kB
  • sloc: cpp: 26,446; makefile: 1,713; perl: 434; sh: 259; xml: 149
file content (358 lines) | stat: -rw-r--r-- 15,285 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
// subtitleeditor -- a tool to create or edit subtitle
//
// https://subtitleeditor.github.io/subtitleeditor/
// https://github.com/subtitleeditor/subtitleeditor/
//
// Copyright @ 2005-2018, kitone
//
// 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
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.

#include <debug.h>
#include <extension/action.h>
#include <gtkmm_utility.h>
#include <i18n.h>
#include <player.h>
#include <utility.h>
#include <widget_config_utility.h>

class DialogTimingFromPlayerPreferences : public Gtk::Dialog {
  public:
   DialogTimingFromPlayerPreferences(BaseObjectType* cobject, const Glib::RefPtr<Gtk::Builder>& xml) : Gtk::Dialog(cobject) {
      xml->get_widget("spin-offset", m_spinOffset);
      widget_config::read_config_and_connect(m_spinOffset, "timing-from-player", "offset");

      utility::set_transient_parent(*this);
   }

   static void create() {
      std::unique_ptr<DialogTimingFromPlayerPreferences> dialog(gtkmm_utility::get_widget_derived<DialogTimingFromPlayerPreferences>(
         SE_DEV_VALUE(SE_PLUGIN_PATH_UI, SE_PLUGIN_PATH_DEV), "dialog-timing-from-player-preferences.ui", "dialog-timing-from-player-preferences"));

      dialog->run();
   }

  protected:
   Gtk::SpinButton* m_spinOffset;
};

// Actions to set time from the current player position.
class TimingFromPlayer : public Action {
  public:
   TimingFromPlayer() {
      activate();
      update_ui();
   }

   ~TimingFromPlayer() {
      deactivate();
   }

   void activate() {
      se_dbg(SE_DBG_PLUGINS);

      // actions
      action_group = Gtk::ActionGroup::create("TimingFromPlayer");

      // Set Subtitle Time
      action_group->add(
         Gtk::Action::create("menu-timing-from-player", _("Timing From Player"), _("Use the current player position to set subtitle timecodes")));
      // set current subtitle
      action_group->add(Gtk::Action::create("timing-from-player/set-subtitle-start",
                                            _("Set Subtitle _Start"),
                                            _("Use the current player position to set the start of the first "
                                              "selected subtitle and then move all the other selected "
                                              "subtitles by the same distance (like the tool Move Subtitles, but without dialogue)")),
                        sigc::mem_fun(*this, &TimingFromPlayer::set_subtitle_start));

      action_group->add(Gtk::Action::create("timing-from-player/set-subtitle-end",
                                            _("Set Subtitle _End"),
                                            _("Use the current player position to set the end "
                                              "of the first selected subtitle")),
                        sigc::mem_fun(*this, &TimingFromPlayer::set_subtitle_end));

      // set current subtitle and go to the next
      action_group->add(Gtk::Action::create("timing-from-player/set-subtitle-start-and-go-next",
                                            _("Set Subtitle Start And Go Next"),
                                            _("Use the current player position to set the start of the first "
                                              "selected subtitle, then move all the other selected subtitles "
                                              "by the same amount and select the subtitle next to the first "
                                              "selected one")),
                        sigc::mem_fun(*this, &TimingFromPlayer::set_subtitle_start_and_go_next));

      action_group->add(Gtk::Action::create("timing-from-player/set-subtitle-end-and-go-next",
                                            _("Set Subtitle End And Go Next"),
                                            _("Use the current player position to set the end "
                                              "of the first selected subtitle and select the "
                                              "subtitle next to the first selected one")),
                        sigc::mem_fun(*this, &TimingFromPlayer::set_subtitle_end_and_go_next));

      // set current subtitle and define the next
      action_group->add(Gtk::Action::create("timing-from-player/set-subtitle-start-and-next",
                                            _("Set Subtitle Start And Next"),
                                            _("Use the current player position to set the start of the current "
                                              "selected subtitle and then create a new subtitle next to it — "
                                              "use this action only when your selected subtitle is the last "
                                              "one, otherwise the results are funny")),
                        sigc::mem_fun(*this, &TimingFromPlayer::set_subtitle_start_and_next));

      action_group->add(Gtk::Action::create("timing-from-player/set-subtitle-end-and-next",
                                            _("Set Subtitle End And Next"),
                                            _("Use the current player position to set the end of the current "
                                              "selected subtitle and then create a new subtitle next to it — "
                                              "use this action only when your selected subtitle is the last "
                                              "one, otherwise the results are funny")),
                        sigc::mem_fun(*this, &TimingFromPlayer::set_subtitle_end_and_next));

      // set current subtile start and with one key
      action_group->add(Gtk::Action::create("timing-from-player/set-subtitle-start-and-end-with-one-key",
                                            _("Set Subtitle Start _And End"),
                                            _("Use this to time all your subtitles in one go as video plays. "
                                              "Press the associated (ideally) one-key shortcut to set the "
                                              "beginning and release to set the end of the subtitle. Then the "
                                              "next subtitle is selected or a new one created.")),
                        sigc::mem_fun(*this, &TimingFromPlayer::set_subtitle_start_and_end_with_one_key));

      // preferences
      action_group->add(Gtk::Action::create("timing-from-player/preferences", Gtk::Stock::PREFERENCES, _("Preferences"), _("Configure this submenu")),
                        sigc::mem_fun(*this, &TimingFromPlayer::create_configure_dialog));

      // ui
      Glib::RefPtr<Gtk::UIManager> ui = get_ui_manager();

      ui->insert_action_group(action_group);

      Glib::ustring submenu = R"(
      <ui>
        <menubar name='menubar'>
          <menu name='menu-video' action='menu-video'>
            <placeholder name='placeholder'>
              <menu action='menu-timing-from-player'>
                <menuitem action='timing-from-player/set-subtitle-start'/>
                <menuitem action='timing-from-player/set-subtitle-end'/>
                <separator/>
                <menuitem action='timing-from-player/set-subtitle-start-and-go-next'/>
                <menuitem action='timing-from-player/set-subtitle-end-and-go-next'/>
                <separator/>
                <menuitem action='timing-from-player/set-subtitle-start-and-next'/>
                <menuitem action='timing-from-player/set-subtitle-end-and-next'/>
                <separator/>
                <menuitem action='timing-from-player/set-subtitle-start-and-end-with-one-key'/>
                <separator/>
                <menuitem action='timing-from-player/preferences'/>
              </menu>
            </placeholder>
          </menu>
        </menubar>
      </ui>
    )";

      ui_id = ui->add_ui_from_string(submenu);

      // Connect to the player state changed
      // the actions can only be used when the player has a media
      get_subtitleeditor_window()->get_player()->signal_message().connect(sigc::mem_fun(*this, &TimingFromPlayer::on_player_message));
   }

   void deactivate() {
      se_dbg(SE_DBG_PLUGINS);

      Glib::RefPtr<Gtk::UIManager> ui = get_ui_manager();

      ui->remove_ui(ui_id);
      ui->remove_action_group(action_group);
   }

   void update_ui() {
      se_dbg(SE_DBG_PLUGINS);

      bool has_doc = (get_current_document() != NULL);
      bool has_media = get_subtitleeditor_window()->get_player()->get_state() != Player::NONE;

#define SET_SENSITIVE(action, state)                                    \
   {                                                                    \
      Glib::RefPtr<Gtk::Action> act = action_group->get_action(action); \
      if (act)                                                          \
         act->set_sensitive(state);                                     \
      else                                                              \
         g_warning(action);                                             \
   }

      SET_SENSITIVE("timing-from-player/set-subtitle-start", has_media && has_doc);
      SET_SENSITIVE("timing-from-player/set-subtitle-end", has_media && has_doc);

      SET_SENSITIVE("timing-from-player/set-subtitle-start-and-go-next", has_media && has_doc);
      SET_SENSITIVE("timing-from-player/set-subtitle-end-and-go-next", has_media && has_doc);

      SET_SENSITIVE("timing-from-player/set-subtitle-start-and-next", has_media && has_doc);
      SET_SENSITIVE("timing-from-player/set-subtitle-end-and-next", has_media && has_doc);

      SET_SENSITIVE("timing-from-player/set-subtitle-start-and-end-with-one-key", has_media && has_doc);

#undef SET_SENSITIVE
   }

   bool is_configurable() {
      return true;
   }

   void create_configure_dialog() {
      DialogTimingFromPlayerPreferences::create();
   }

   // Check the state of the player.
   // Update the menu from the current state of the player.
   void on_player_message(Player::Message msg) {
      se_dbg(SE_DBG_PLUGINS);
      // only if the player is enable or disable
      // don't update if is playing or paused
      if (msg == Player::STATE_NONE || msg == Player::STREAM_READY)
         update_ui();
   }

   enum OPTIONS { SET_SUBTITLE_START = 1 << 0, SET_SUBTITLE_END = 1 << 1, SELECT_NEXT_OR_CREATE = 1 << 2, SET_NEXT_SUBTITLE_POS = 1 << 3 };

   Glib::ustring get_command_name_from_option(int op) {
      if (op & SET_SUBTITLE_START)
         return _("Set subtitle start");
      else if (op & SET_SUBTITLE_END)
         return _("Set subtitle end");
      return _("Set subtitle");  // should not have happened
   }

   bool set_subtitle_from_player(int op) {
      se_dbg(SE_DBG_PLUGINS);

      Document* doc = get_current_document();
      g_return_val_if_fail(doc, false);

      Subtitle sub = doc->subtitles().get_first_selected();
      if (!sub)
         return false;

      Player* player = get_subtitleeditor_window()->get_player();
      SubtitleTime pos = player->get_position();
      // Apply offset correction only if playing
      if (player->get_state() == Player::PLAYING)
         pos = pos - get_prefered_offset();

      // Start recording
      doc->start_command(get_command_name_from_option(op));

      if (op & SET_SUBTITLE_START) {
         // Define the start of the subtitle from the
         // video position, we keep the duration
         std::vector<Subtitle> selection = doc->subtitles().get_selection();
         std::vector<Subtitle>::iterator it = selection.begin();
         std::vector<Subtitle>::iterator eit = selection.end();
         SubtitleTime diff = pos - it->get_start();
         while (it != eit) {
            it->set_start_and_end(it->get_start() + diff, it->get_end() + diff);
            ++it;
         }
      } else if (op & SET_SUBTITLE_END) {
         sub.set_end(pos);
      }

      // Select or create the next subtitle
      if (op & SELECT_NEXT_OR_CREATE) {
         Subtitle next = doc->subtitles().get_next(sub);
         if (!next) {
            next = doc->subtitles().append();
            next.set_duration(cfg::get_int("timing", "min-display"));
         }
         if (op & SET_NEXT_SUBTITLE_POS) {
            SubtitleTime sub_end = sub.get_end();
            SubtitleTime gap = cfg::get_int("timing", "min-gap-between-subtitles");
            next.set_start_and_end(sub_end + gap, sub_end + next.get_duration());
         }
         doc->subtitles().select(next);
      }

      doc->emit_signal("subtitle-time-changed");
      doc->finish_command();
      return true;
   }

   void set_subtitle_start() {
      set_subtitle_from_player(SET_SUBTITLE_START);
   }

   void set_subtitle_end() {
      set_subtitle_from_player(SET_SUBTITLE_END);
   }

   void set_subtitle_start_and_go_next() {
      set_subtitle_from_player(SET_SUBTITLE_START | SELECT_NEXT_OR_CREATE);
   }

   void set_subtitle_end_and_go_next() {
      set_subtitle_from_player(SET_SUBTITLE_END | SELECT_NEXT_OR_CREATE);
   }

   void set_subtitle_start_and_next() {
      set_subtitle_from_player(SET_SUBTITLE_START | SELECT_NEXT_OR_CREATE | SET_NEXT_SUBTITLE_POS);
   }

   void set_subtitle_end_and_next() {
      set_subtitle_from_player(SET_SUBTITLE_END | SELECT_NEXT_OR_CREATE | SET_NEXT_SUBTITLE_POS);
   }

   // Update the subtitle start.
   // We connect the signal key_release_event to update the
   // end of the subtitle when the key is released.
   void set_subtitle_start_and_end_with_one_key() {
      se_dbg(SE_DBG_PLUGINS);

      if (co)
         return;

      Document* doc = get_current_document();
      g_return_if_fail(doc);

      // connect the keyboard release signal to the main window
      SubtitleEditorWindow* win = get_subtitleeditor_window();
      Gtk::Window* gtk_win = dynamic_cast<Gtk::Window*>(win);
      Glib::RefPtr<Gdk::Window> gdk_win = gtk_win->get_window();

      co = gtk_win->signal_key_release_event().connect(sigc::mem_fun(*this, &TimingFromPlayer::on_key_release_event), false);

      set_subtitle_start();
   }

   // Any key have been released.
   // Update the end of the subtitle and disconnect
   // the callback.
   bool on_key_release_event(GdkEventKey*) {
      se_dbg(SE_DBG_PLUGINS);

      set_subtitle_end_and_go_next();
      co.disconnect();
      return true;
   }

   SubtitleTime get_prefered_offset() {
      // FIXME: config offset
      // int offset = 0;
      // get_config().get_value_int("timing-from-player", "offset", offset);
      // return SubtitleTime(offset);
      return cfg::get_int("timing-from-player", "offset");
   }

  protected:
   Gtk::UIManager::ui_merge_id ui_id;
   Glib::RefPtr<Gtk::ActionGroup> action_group;
   sigc::connection co;
};

REGISTER_EXTENSION(TimingFromPlayer)