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
|
//=========================================================
// MusE
// Linux Music Editor
// $Id: tools.h,v 1.1.1.1 2003/10/29 10:06:28 wschweer Exp $
// (C) Copyright 1999 Werner Schweer (ws@seh.de)
//=========================================================
#ifndef __TOOLS_H__
#define __TOOLS_H__
#include <qtoolbar.h>
class QAction;
class Action;
class QMainWindow;
enum Tool { PointerTool=1, PencilTool=2, RubberTool=4, CutTool=8,
ScoreTool=16, GlueTool=32, QuantTool=64, DrawTool=128, MuteTool=256};
const int arrangerTools = PointerTool | PencilTool | RubberTool | CutTool | GlueTool | MuteTool;
struct ToolB {
QPixmap** icon;
const char* tip;
const char* ltip;
};
extern ToolB toolList[];
//---------------------------------------------------------
// EditToolBar
//---------------------------------------------------------
class EditToolBar : public QToolBar {
Q_OBJECT
Action** actions;
int nactions;
private slots:
void toolChanged(QAction* action);
signals:
void toolChanged(int);
public slots:
void set(int id);
public:
EditToolBar(QMainWindow*, int, const char* name = 0);
~EditToolBar();
};
#endif
|