forked from wtr9987/gvtree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedgeadapter.h
41 lines (34 loc) · 1.17 KB
/
edgeadapter.h
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
/* --------------------------------------------- */
/* */
/* Copyright (C) 2021 Wolfgang Trummer */
/* Contact: [email protected] */
/* */
/* gvtree V1.8-0 */
/* */
/* git version tree browser */
/* */
/* 28. December 2021 */
/* */
/* This program is licensed under */
/* GNU GENERAL PUBLIC LICENSE */
/* Version 3, 29 June 2007 */
/* */
/* --------------------------------------------- */
#ifndef __EDGEADAPTER_H__
#define __EDGEADAPTER_H__
#include <QWidget>
#include "edge.h"
class EdgeAdapter : public QWidget
{
Q_OBJECT
public:
EdgeAdapter(Edge* _e, QWidget* _parent = NULL);
public slots:
void compareVersions();
void focusSource();
void focusDestination();
void focusNeighbourBox();
private:
Edge* e;
};
#endif