summaryrefslogtreecommitdiff
path: root/ui/syncgroup.h
blob: 5a9828f92ddaa8334dc0e21ae0376dc4d55d2fd3 (plain)
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
#pragma once

#include "viewframe.h"
#include "clickablelabel.h"

class BINARYNINJAUIAPI SyncGroup
{
	std::set<ViewFrame*> m_members;
	int m_id;

public:
	SyncGroup(int id);

	void addMember(ViewFrame* frame);
	void removeMember(ViewFrame* frame);
	bool isEmpty() const;
	int identifier() const { return m_id; }
	bool contains(ViewFrame* frame) const;
	const std::set<ViewFrame*>& members() const { return m_members; }

	void syncLocation(ViewFrame* frame, View* view, const ViewLocation& location);

	static void syncToTarget(View* srcView, ViewFrame* targetFrame, const ViewLocation& location);
};

class BINARYNINJAUIAPI SyncGroupWidget: public ClickableIcon
{
	Q_OBJECT

	ViewFrame* m_frame;

public:
	SyncGroupWidget(ViewFrame* frame);

	void updateStatus();

private Q_SLOTS:
	void handleClick();
};