MuseScore/mscore/paletteBoxButton.h

73 lines
2 KiB
C
Raw Normal View History

//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2013 Werner Schweer
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2
// as published by the Free Software Foundation and appearing in
// the file LICENCE.GPL
//=============================================================================
#ifndef __PALETTE_BOX_BUTTON_H__
#define __PALETTE_BOX_BUTTON_H__
2013-05-13 18:49:17 +02:00
namespace Ms {
class Palette;
enum class PaletteCommand : char {
PDELETE,
SAVE,
LOAD,
EDIT,
UP,
DOWN,
NEW
};
//---------------------------------------------------------
// PaletteBoxButton
//---------------------------------------------------------
class PaletteBoxButton : public QToolButton {
Q_OBJECT
Palette* palette;
QAction* editAction;
int id;
virtual void changeEvent(QEvent*);
virtual void paintEvent(QPaintEvent*);
virtual void contextMenuEvent(QContextMenuEvent*);
virtual QSize sizeHint() const;
private slots:
void deleteTriggered() { emit paletteCmd(PaletteCommand::PDELETE, id); }
void saveTriggered() { emit paletteCmd(PaletteCommand::SAVE, id); }
void loadTriggered() { emit paletteCmd(PaletteCommand::LOAD, id); }
void propertiesTriggered() { emit paletteCmd(PaletteCommand::EDIT, id); }
void upTriggered() { emit paletteCmd(PaletteCommand::UP, id); }
void downTriggered() { emit paletteCmd(PaletteCommand::DOWN, id); }
void newTriggered() { emit paletteCmd(PaletteCommand::NEW, id); }
public slots:
void showPalette(bool);
void enableEditing(bool);
signals:
void paletteCmd(PaletteCommand, int);
void closeAll();
public:
PaletteBoxButton(Palette*, QWidget* parent = 0);
void setId(int v) { id = v; }
};
2013-05-13 18:49:17 +02:00
} // namespace Ms
#endif