123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /* dock/playback.h - playback controls dock
- * Copyright (C) 2017-2018 caryoscelus
- *
- * 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/>.
- */
- #ifndef STUDIO_DOCKS_PLAYBACK_H_107746CB_5F9B_5080_B6C1_A0670622A8FE
- #define STUDIO_DOCKS_PLAYBACK_H_107746CB_5F9B_5080_B6C1_A0670622A8FE
- #include <core/std/memory.h>
- #include <QTimer>
- #include <core/context.h>
- #include <generic/context_listener.h>
- #include <generic/dock_registry.h>
- #include "close_destroy_dock.h"
- namespace Ui {
- class PlaybackDock;
- }
- namespace rainynite::studio {
- /**
- * Dock with playback controls
- */
- class PlaybackDock : public DockWidget, public ContextListener {
- Q_OBJECT
- public:
- explicit PlaybackDock(shared_ptr<EditorContext> context_, QWidget* parent = nullptr);
- ~PlaybackDock();
- protected:
- void time_changed(core::Time time) override;
- void fps_changed(core::Time::fps_type fps) override;
- private Q_SLOTS:
- void toggle_playback(bool play);
- void stop();
- void next_frame();
- void move_start();
- void move_end();
- void change_time();
- void change_fps();
- private:
- unique_ptr<Ui::PlaybackDock> ui;
- QTimer* timer;
- bool is_looping = false;
- };
- REGISTER_CONTEXT_DOCK("Playback", PlaybackDock, Qt::BottomDockWidgetArea);
- } // namespace rainynite::studio
- #endif
|