52 lines
1.9 KiB
C++
52 lines
1.9 KiB
C++
//=============================================================================
|
|
// MusE Score
|
|
// Linux Music Score Editor
|
|
// $Id: element.h 4383 2011-06-14 21:28:16Z wschweer $
|
|
//
|
|
// Copyright (C) 2002-2011 Werner Schweer and others
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
//=============================================================================
|
|
|
|
#ifndef __ICON_H__
|
|
#define __ICON_H__
|
|
|
|
#include "element.h"
|
|
|
|
//---------------------------------------------------------
|
|
// Icon
|
|
// dummy element, used for drag&drop
|
|
//---------------------------------------------------------
|
|
|
|
class Icon : public Element {
|
|
Q_OBJECT
|
|
|
|
int _iconType;
|
|
const char* _action;
|
|
QIcon _icon;
|
|
|
|
public:
|
|
Icon(Score* s) : Element(s), _iconType(0), _action(0) { }
|
|
virtual Icon* clone() const { return new Icon(*this); }
|
|
virtual ElementType type() const { return ICON; }
|
|
int iconType() const { return _iconType; }
|
|
void setIconType(int val) { _iconType = val; }
|
|
void setAction(const char* s, const QIcon& i) { _action = s; _icon = i; }
|
|
const char* action() const { return _action; }
|
|
QIcon icon() const { return _icon; }
|
|
virtual void write(Xml&) const;
|
|
virtual void read(XmlReader&);
|
|
};
|
|
|
|
#endif
|
|
|