first commit

This commit is contained in:
2026-02-21 17:11:31 +09:00
commit 18b4338361
4001 changed files with 365464 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
#ifndef RM_FRAME_TOP_H
#define RM_FRAME_TOP_H
#if (DUAL_VIEWER)
#include "../rm_include.h"
#include "rm_widget_base.h"
#include "rm_frame_right.h"
#include "rm_frame_video_main.h"
#include "rm_frame_video_sub.h"
class RMFrameVideoMain;
class RMFrameVideoSub;
class RMFrameTop : public RMWidgetBase
{
Q_OBJECT
public:
explicit RMFrameTop(QWidget *parent = nullptr);
RMFrameVideoMain* frameMainVideo; // main video
RMFrameVideoSub* frameVideoSub; // sub video
protected:
QHBoxLayout* layout;
public slots:
void onAppEvent(RMApp::Event event) override;
};
#endif // DUAL_VIEWER
#endif // RM_FRAME_TOP_H