summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmdragwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmdragwidget.cpp')
-rw-r--r--kpovmodeler/pmdragwidget.cpp49
1 files changed, 49 insertions, 0 deletions
diff --git a/kpovmodeler/pmdragwidget.cpp b/kpovmodeler/pmdragwidget.cpp
new file mode 100644
index 00000000..7b63baf5
--- /dev/null
+++ b/kpovmodeler/pmdragwidget.cpp
@@ -0,0 +1,49 @@
+/*
+**************************************************************************
+ description
+ --------------------
+ copyright : (C) 2004 by Luis Carvalho
+ email : lpassos@oninetspeed.pt
+**************************************************************************
+
+**************************************************************************
+* *
+* This program is free software; you can redistribute it and/or modify *
+* it under the terms of the GNU General Public License as published by *
+* the Free Software Foundation; either version 2 of the License, or *
+* (at your option) any later version. *
+* *
+**************************************************************************/
+
+#include "pmdragwidget.h"
+
+PMDragWidget::PMDragWidget( QWidget* parent, const char* name, WFlags f )
+ : QWidget( parent, name, f )
+{
+ dragging = false;
+}
+
+void PMDragWidget::mousePressEvent( QMouseEvent* )
+{
+ dragging = true;
+}
+
+void PMDragWidget::mouseReleaseEvent( QMouseEvent* )
+{
+ dragging = false;
+}
+
+void PMDragWidget::mouseMoveEvent( QMouseEvent* )
+{
+ if( dragging )
+ {
+ startDrag( );
+ dragging = false;
+ }
+}
+
+void PMDragWidget::startDrag( )
+{
+}
+
+#include "pmdragwidget.moc"