summaryrefslogtreecommitdiff
path: root/muse2
diff options
context:
space:
mode:
authorOrcan Ogetbil <oget.fedora@gmail.com>2010-11-28 09:37:24 +0000
committerOrcan Ogetbil <oget.fedora@gmail.com>2010-11-28 09:37:24 +0000
commitbb4dd6f24e8fe6de5e997497feacb0d6e8e9c465 (patch)
tree5fbbf6604f04dfb05d4cf93a3fb7c9ca69703c2f /muse2
parent6cf16f9407a7c503f69a07db0a82365b6d17338a (diff)
ported ctrlpanel
Diffstat (limited to 'muse2')
-rw-r--r--muse2/ChangeLog2
-rw-r--r--muse2/muse/ctrl/ctrlpanel.cpp83
-rw-r--r--muse2/muse/ctrl/ctrlpanel.h12
-rw-r--r--muse2/muse/icons.cpp2
-rw-r--r--muse2/muse/widgets/doublelabel.h4
5 files changed, 54 insertions, 49 deletions
diff --git a/muse2/ChangeLog b/muse2/ChangeLog
index 39767827..53366a1b 100644
--- a/muse2/ChangeLog
+++ b/muse2/ChangeLog
@@ -1,5 +1,7 @@
28.11.2010
- Finished porting Marker View. (Orcan)
+ - Ported ctrlpanel. Needs some testing. I also removed usage of the Oxygen's "pen" icon
+ in place of the pencil. The pen looks bad in ctrlpanel. (Orcan)
27.11.2010
- Completed porting pianoroll module including menus, shortcuts. Should be done. (Tim)
- Ported the following .ui widgets to Qt4: organguibase, gatetime, midisync,
diff --git a/muse2/muse/ctrl/ctrlpanel.cpp b/muse2/muse/ctrl/ctrlpanel.cpp
index 820e6428..e04ecc1d 100644
--- a/muse2/muse/ctrl/ctrlpanel.cpp
+++ b/muse2/muse/ctrl/ctrlpanel.cpp
@@ -11,16 +11,12 @@
#include "ctrlpanel.h"
#include "ctrlcanvas.h"
-#include <qlayout.h>
-#include <qpushbutton.h>
-#include <q3popupmenu.h>
-#include <qlabel.h>
-#include <qtooltip.h>
-#include <qsizepolicy.h>
-#include <qtimer.h>
-//Added by qt3to4:
-#include <Q3HBoxLayout>
-#include <Q3VBoxLayout>
+#include <QMenu>
+#include <QPushButton>
+#include <QSizePolicy>
+#include <QHBoxLayout>
+#include <QVBoxLayout>
+
#include <math.h>
#include "globals.h"
@@ -51,27 +47,36 @@ CtrlPanel::CtrlPanel(QWidget* parent, MidiEditor* e, const char* name)
inHeartBeat = true;
editor = e;
setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding));
- Q3VBoxLayout* vbox = new Q3VBoxLayout(this);
- Q3HBoxLayout* bbox = new Q3HBoxLayout(vbox);
+ QVBoxLayout* vbox = new QVBoxLayout;
+ QHBoxLayout* bbox = new QHBoxLayout;
+ bbox->setSpacing (0);
+ vbox->addLayout(bbox);
vbox->addStretch();
- Q3HBoxLayout* kbox = new Q3HBoxLayout(vbox);
- Q3HBoxLayout* dbox = new Q3HBoxLayout(vbox);
+ QHBoxLayout* kbox = new QHBoxLayout;
+ QHBoxLayout* dbox = new QHBoxLayout;
+ vbox->addLayout(kbox);
+ vbox->addLayout(dbox);
vbox->addStretch();
- selCtrl = new QPushButton(tr("S"), this, "selCtrl");
+ vbox->setContentsMargins(0, 0, 0, 0);
+ bbox->setContentsMargins(0, 0, 0, 0);
+ kbox->setContentsMargins(0, 0, 0, 0);
+ dbox->setContentsMargins(0, 0, 0, 0);
+
+ selCtrl = new QPushButton(tr("S"));
selCtrl->setFont(config.fonts[3]);
selCtrl->setFixedHeight(20);
selCtrl->setSizePolicy(
QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed));
- QToolTip::add(selCtrl, tr("select controller"));
- pop = new Q3PopupMenu(selCtrl);
+ selCtrl->setToolTip(tr("select controller"));
+ pop = new QMenu;
// destroy button
- QPushButton* destroy = new QPushButton(tr("X"), this, "destroy");
+ QPushButton* destroy = new QPushButton(tr("X"));
destroy->setFont(config.fonts[3]);
destroy->setFixedHeight(20);
destroy->setSizePolicy(
QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed));
- QToolTip::add(destroy, tr("remove panel"));
+ destroy->setToolTip(tr("remove panel"));
// Cursor Position
connect(selCtrl, SIGNAL(clicked()), SLOT(ctrlPopup()));
connect(destroy, SIGNAL(clicked()), SIGNAL(destroyPanel()));
@@ -81,19 +86,19 @@ CtrlPanel::CtrlPanel(QWidget* parent, MidiEditor* e, const char* name)
_val = CTRL_VAL_UNKNOWN;
_dnum = -1;
- _knob = new Knob(this);
+ _knob = new Knob;
_knob->setFixedWidth(25);
_knob->setFixedHeight(25);
- QToolTip::add(_knob, tr("manual adjust"));
+ _knob->setToolTip(tr("manual adjust"));
_knob->setRange(0.0, 127.0, 1.0);
_knob->setValue(0.0);
_knob->setEnabled(false);
_knob->hide();
_knob->setAltFaceColor(Qt::red);
- _dl = new DoubleLabel(-1.0, 0.0, +127.0, this);
+ _dl = new DoubleLabel(-1.0, 0.0, +127.0);
_dl->setPrecision(0);
- QToolTip::add(_dl, tr("double click on/off"));
+ _dl->setToolTip(tr("double click on/off"));
_dl->setSpecialText(tr("off"));
_dl->setFont(config.fonts[1]);
_dl->setBackgroundMode(Qt::PaletteMid);
@@ -121,6 +126,7 @@ CtrlPanel::CtrlPanel(QWidget* parent, MidiEditor* e, const char* name)
dbox->addStretch();
connect(heartBeatTimer, SIGNAL(timeout()), SLOT(heartBeat()));
inHeartBeat = false;
+ setLayout(vbox);
}
//---------------------------------------------------------
// heartBeat
@@ -531,8 +537,8 @@ void CtrlPanel::ctrlPopup()
bool isDrum = track->type() == Track::DRUM;
pop->clear();
- pop->insertItem(tr("Velocity"), 1);
-
+ pop->addAction(tr("Velocity"))->setData(1);
+
MidiCtrlValListList* cll = port->controller();
int min = channel << 24;
int max = min + 0x1000000;
@@ -576,19 +582,20 @@ void CtrlPanel::ctrlPopup()
}
for (isList i = sList.begin(); i != sList.end(); ++i) {
if (i->used)
- pop->insertItem(QIcon(*greendotIcon), i->s);
+ pop->addAction(QIcon(*greendotIcon), i->s);
else
- pop->insertItem(i->s);
+ pop->addAction(i->s);
}
- pop->insertItem(QIcon(*configureIcon), tr("add new ..."), 2);
- int rv = pop->exec(selCtrl->mapToGlobal(QPoint(0,0)));
+ pop->addAction(QIcon(*configureIcon), tr("add new ..."))->setData(2);
+ QAction *act = pop->exec(selCtrl->mapToGlobal(QPoint(0,0)));
selCtrl->setDown(false);
- if (rv == -1)
+ if (!act)
return;
- QString s = pop->text(rv);
+ int rv = act->data().toInt();
+ QString s = act->text();
if (rv == 1) { // special case velocity
emit controllerChanged(CTRL_VELOCITY);
}
@@ -596,7 +603,7 @@ void CtrlPanel::ctrlPopup()
//
// add new controller
//
- Q3PopupMenu* pop1 = new Q3PopupMenu(this);
+ QMenu* pop1 = new QMenu(this);
pop1->setCheckable(false);
//
// populate popup with all controllers available for
@@ -611,11 +618,11 @@ void CtrlPanel::ctrlPopup()
num = (num & ~0xff) + drumMap[curDrumInstrument].anote;
if(cll->find(channel, num) == cll->end())
- pop1->insertItem(ci->second->name());
+ pop1->addAction(ci->second->name());
}
- int rv = pop1->exec(selCtrl->mapToGlobal(QPoint(0,0)));
- if (rv != -1) {
- QString s = pop1->text(rv);
+ QAction *act2 = pop1->exec(selCtrl->mapToGlobal(QPoint(0,0)));
+ if (act2) {
+ QString s = act2->text();
MidiController* c;
for (iMidiController ci = mcl->begin(); ci != mcl->end(); ++ci) {
c = ci->second;
@@ -639,10 +646,8 @@ void CtrlPanel::ctrlPopup()
}
}
}
- else if (rv == -1)
- return;
else {
- QString s = pop->text(rv);
+ QString s = act->text();
iMidiCtrlValList i = cll->begin();
for (; i != cll->end(); ++i) {
MidiCtrlValList* cl = i->second;
diff --git a/muse2/muse/ctrl/ctrlpanel.h b/muse2/muse/ctrl/ctrlpanel.h
index 8d3379c0..94746f49 100644
--- a/muse2/muse/ctrl/ctrlpanel.h
+++ b/muse2/muse/ctrl/ctrlpanel.h
@@ -8,15 +8,13 @@
#ifndef __CTRL_PANEL_H__
#define __CTRL_PANEL_H__
-#include <qwidget.h>
-//Added by qt3to4:
-#include <Q3PopupMenu>
-#include <QLabel>
+#include <QWidget>
class MidiController;
-class QLabel;
-class Q3PopupMenu;
+
+class QMenu;
class QPushButton;
+
class MidiEditor;
class Knob;
class DoubleLabel;
@@ -28,7 +26,7 @@ class MidiTrack;
//---------------------------------------------------------
class CtrlPanel: public QWidget {
- Q3PopupMenu* pop;
+ QMenu* pop;
QPushButton* selCtrl;
MidiEditor* editor;
diff --git a/muse2/muse/icons.cpp b/muse2/muse/icons.cpp
index 7e93d037..d89977c2 100644
--- a/muse2/muse/icons.cpp
+++ b/muse2/muse/icons.cpp
@@ -451,7 +451,7 @@ void initIcons()
{
track_commentIcon = new MPIXMAP(track_comment_xpm, NULL);
pointerIcon = new MPIXMAP(pointer_xpm, NULL);
- pencilIcon = new MPIXMAP(pencil_xpm, "pen");
+ pencilIcon = new MPIXMAP(pencil_xpm, NULL);
deleteIcon = new MPIXMAP(delete_xpm, "draw-eraser");
punchinIcon = new MPIXMAP(punchin_xpm, NULL);
punchoutIcon = new MPIXMAP(punchout_xpm, NULL);
diff --git a/muse2/muse/widgets/doublelabel.h b/muse2/muse/widgets/doublelabel.h
index 0887368e..b5e40597 100644
--- a/muse2/muse/widgets/doublelabel.h
+++ b/muse2/muse/widgets/doublelabel.h
@@ -36,8 +36,8 @@ class DoubleLabel : public Dentry {
virtual void decValue(double);
public:
- DoubleLabel(QWidget*, const char* name = 0);
- DoubleLabel(double val, double min, double max, QWidget*);
+ DoubleLabel(QWidget* parent = 0, const char* name = 0);
+ DoubleLabel(double val, double min, double max, QWidget* parent = 0);
virtual QSize sizeHint() const;
virtual QSize minimumSizeHint () const;
double minValue() const { return min; }