File: rwidget.cpp

package info (click to toggle)
qcad 1.3.3-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 4,504 kB
  • ctags: 2,449
  • sloc: cpp: 29,400; makefile: 49; sh: 15
file content (76 lines) | stat: -rw-r--r-- 1,604 bytes parent folder | download
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/***************************************************************************
                          rwidget.cpp  -  description
                             -------------------
    begin                : Mon Sep 27 1999
    copyright            : (C) 1999 by Andreas Mustun
    email                : andrew@ribbonsoft.com
 ***************************************************************************/


/****************************************************************************
** rwidget.cpp 1998/08/24 A. Mustun RibbonSoft
**
** Copyright (C) 1998 RibbonSoft.  All rights reserved.
**
*****************************************************************************/

#include "rwidget.h"

#include <qapplication.h>


// Constructor:
//
RWidget::RWidget(QWidget* _parent, 
                 const char* _name, 
                 WFlags _f,
                 bool _forwardRightClick,
                 bool _forwardMouseMove)
:QFrame(_parent, _name, _f)
{
  forwardRightClick = _forwardRightClick;
  forwardMouseMove = _forwardMouseMove;
}



// Destructor:
//
RWidget::~RWidget()
{

}


// Forward the right mouse click to parent widget:
//
//   Mouse Release event:
//
void 
RWidget::mouseReleaseEvent(QMouseEvent* _ev)
{
  if(forwardRightClick &&
     _ev->button()==RightButton) {
    //parentWidget()->event(_ev);
    qApp->notify(parentWidget(), _ev);
  }
}



// Forward the mouse moves to parent widget:
//
//   Mouse Move event:
//
void
RWidget::mouseMoveEvent(QMouseEvent* _ev)
{
  if(forwardMouseMove) {
    //parentWidget()->event(_ev);
    qApp->notify(parentWidget(), _ev);
  }
}


// EOF