summaryrefslogtreecommitdiff
path: root/muse2/muse/widgets/combobox.cpp
blob: bd78d6f20c9b73c6055283f1a1d835ec98ab4d56 (plain)
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
//=========================================================
//  MusE
//  Linux Music Editor
//    $Id: combobox.cpp,v 1.4 2004/05/06 15:08:07 wschweer Exp $
//  (C) Copyright 2004 Werner Schweer (ws@seh.de)
//=========================================================

#include <QMenu>
#include <QSignalMapper>
#include <QWheelEvent>

#include "combobox.h"

//---------------------------------------------------------
//   ComboBox
//---------------------------------------------------------

ComboBox::ComboBox(QWidget* parent, const char* name)
   : QToolButton(parent)
      {
      setObjectName(name);
      _currentItem = 0;

      menu = new QMenu(this);

      autoTypeSignalMapper = new QSignalMapper(this);
      connect(autoTypeSignalMapper, SIGNAL(mapped(int)), this, SLOT(activatedIntern(int)));
      }

ComboBox::~ComboBox()
      {
      delete menu;
      }

//---------------------------------------------------------
//   mousePressEvent
//---------------------------------------------------------

void ComboBox::mousePressEvent(QMouseEvent* /*ev*/)
      {
      menu->exec(QCursor::pos());
      }

//---------------------------------------------------------
//   wheelEvent
//---------------------------------------------------------

void ComboBox::wheelEvent(QWheelEvent* ev)
      {
      int i = itemlist.indexOf(_currentItem);
      int len = itemlist.count();
      if (ev->delta() > 0 && i > 0)
            activatedIntern(_currentItem-1);
      else if (ev->delta() < 0 && -1 < i && i < len - 1)
            activatedIntern(_currentItem+1);
      }

//---------------------------------------------------------
//   activated
//---------------------------------------------------------

void ComboBox::activatedIntern(int id)
      {
      setCurrentItem(id);
      emit activated(id);
      }

//---------------------------------------------------------
//   setCurrentItem
//---------------------------------------------------------

void ComboBox::setCurrentItem(int id)
      {
      QAction* act = (QAction*) autoTypeSignalMapper->mapping(id);
      _currentItem = id;
      setText(act->text());
      }

//---------------------------------------------------------
//   insertItem
//---------------------------------------------------------

void ComboBox::addAction(const QString& s, int id)
      {
      QAction *act = menu->addAction(s);
      connect(act, SIGNAL(triggered()), autoTypeSignalMapper, SLOT(map()));
      autoTypeSignalMapper->setMapping(act, id);
      itemlist << id;
      }