-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgcall.h
41 lines (34 loc) · 1.28 KB
/
gcall.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
/******************************************************************************************/
/**** FILE: gcall.h ****/
/******************************************************************************************/
#ifndef GCALL_H
#define GCALL_H
#include <q3canvas.h>
//Added by qt3to4:
#include <QPixmap>
class CallConnection;
class FigureEditor;
class NetworkClass;
class QPixmap;
/******************************************************************************************/
/**** CLASS: GCallClass ****/
/******************************************************************************************/
class GCallClass : public Q3CanvasRectangle
{
public:
GCallClass(FigureEditor *editor, int p_master_idx, int p_traffic_type_idx);
~GCallClass();
int rtti() const;
CallConnection *connection;
static void setNetworkStruct( NetworkClass *p_np);
static void setPixmap();
static void deletePixmap();
private:
int master_idx;
int traffic_type_idx;
static NetworkClass *np;
static QPixmap **pixmap;
void drawShape( QPainter & );
};
/******************************************************************************************/
#endif