switch move/swap tracks, add mv trk shortcut, update msg
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / cwindow.h
index 2eaad4b3a0d2b59cceb3cfe5af42160584b74d0a..449cc468ccc2b68c93305285d73def8d812a7d8e 100644 (file)
@@ -80,14 +80,18 @@ public:
        CPlayback *playback_engine;
 };
 
-class CWindowRemoteHandler : public RemoteHandler
+class CWindowKeyEvHandler : public RemoteHandler
 {
-       int last_key;
 public:
+       CWindowKeyEvHandler(RemoteControl *remote_control);
+       ~CWindowKeyEvHandler();
+       int remote_key(int key);
        int remote_process_key(RemoteControl *remote_control, int key);
+       int is_keytv() { return 1; }
 
-       CWindowRemoteHandler(RemoteControl *remote_control);
-       ~CWindowRemoteHandler();
+       int key, last_key;
+       RemoteControl *remote_control;
+       MWindow *mwindow;
 };
 
 #endif