FreeCAD/src/Gui/QSint/actionpanel/macpanelscheme.h
2015-07-07 11:10:13 +02:00

33 lines
495 B
C++

#ifndef MACPANELSCHEME_H
#define MACPANELSCHEME_H
#include "actionpanelscheme.h"
namespace QSint
{
/**
\brief MacOS-like color scheme for ActionPanel and ActionGroup.
\since 0.2
\image html ActionPanel6.png Example of the scheme
*/
class MacPanelScheme : public ActionPanelScheme
{
public:
explicit MacPanelScheme();
static ActionPanelScheme* defaultScheme()
{
static MacPanelScheme scheme;
return &scheme;
}
};
}
#endif // MACPANELSCHEME_H