summaryrefslogtreecommitdiff
path: root/attic/muse2-oom/muse2/muse/widgets/citem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'attic/muse2-oom/muse2/muse/widgets/citem.cpp')
-rw-r--r--attic/muse2-oom/muse2/muse/widgets/citem.cpp93
1 files changed, 0 insertions, 93 deletions
diff --git a/attic/muse2-oom/muse2/muse/widgets/citem.cpp b/attic/muse2-oom/muse2/muse/widgets/citem.cpp
deleted file mode 100644
index 2974196d..00000000
--- a/attic/muse2-oom/muse2/muse/widgets/citem.cpp
+++ /dev/null
@@ -1,93 +0,0 @@
-//=========================================================
-// MusE
-// Linux Music Editor
-// $Id: citem.cpp,v 1.2.2.3 2008/01/26 07:23:21 terminator356 Exp $
-// (C) Copyright 1999 Werner Schweer (ws@seh.de)
-//=========================================================
-
-#include "part.h"
-#include "citem.h"
-#include <stdio.h>
-
-//---------------------------------------------------------
-// CItem
-//---------------------------------------------------------
-
-CItem::CItem()
- {
- _isMoving = false;
- }
-
-CItem::CItem(const QPoint&p, const QRect& r)
- {
- _pos = p;
- _bbox = r;
- _isMoving = false;
- }
-
-// Changed by Tim. p3.3.20
-//CItem::CItem(Event e, Part* p)
-CItem::CItem(const Event& e, Part* p)
- {
- _event = e;
- _part = p;
- _isMoving = false;
- }
-
-//---------------------------------------------------------
-// isSelected
-//---------------------------------------------------------
-
-bool CItem::isSelected() const
- {
- return _event.empty() ? _part->selected() : _event.selected();
- }
-
-//---------------------------------------------------------
-// setSelected
-//---------------------------------------------------------
-
-void CItem::setSelected(bool f)
- {
- _event.empty() ? _part->setSelected(f) : _event.setSelected(f);
- }
-
-//---------------------------------------------------------
-// CItemList
-//---------------------------------------------------------
-
-CItem* CItemList::find(const QPoint& pos) const
- {
- rciCItem ius;
- bool usfound = false;
- for (rciCItem i = rbegin(); i != rend(); ++i) {
- if (i->second->contains(pos))
- {
- if(i->second->isSelected())
- return i->second;
-
- else
- {
- if(!usfound)
- {
- ius = i;
- usfound = true;
- }
- }
- }
- }
- if(usfound)
- return ius->second;
- else
- return 0;
- }
-
-//---------------------------------------------------------
-// CItemList
-//---------------------------------------------------------
-
-void CItemList::add(CItem* item)
- {
- std::multimap<int, CItem*, std::less<int> >::insert(std::pair<const int, CItem*> (item->bbox().x(), item));
- }
-