2014-08-17 12:56:05 +00:00
|
|
|
/* gFooBar Header
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2018-03-28 07:10:52 +00:00
|
|
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef GFOOBAR_H
|
|
|
|
#define GFOOBAR_H
|
|
|
|
|
2014-04-23 17:20:38 +00:00
|
|
|
#include "Graphs/layer.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class gShadowArea
|
|
|
|
\brief Displays a Shadow for all graph areas not highlighted (used in Event Flags)
|
|
|
|
*/
|
2014-04-17 05:55:38 +00:00
|
|
|
class gShadowArea: public Layer
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2014-04-17 05:55:38 +00:00
|
|
|
public:
|
|
|
|
gShadowArea(QColor shadow_color = QColor(40, 40, 40, 40), QColor line_color = Qt::blue);
|
|
|
|
virtual ~gShadowArea();
|
2014-05-13 17:47:33 +00:00
|
|
|
|
|
|
|
virtual void paint(QPainter &painter, gGraph &w, const QRegion ®ion);
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
protected:
|
|
|
|
QColor m_shadow_color;
|
|
|
|
QColor m_line_color;
|
2011-08-25 09:00:19 +00:00
|
|
|
};
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class gFooBar
|
|
|
|
\brief Was a kind of scrollbar thingy that used to be used for representing the overall graph areas.
|
|
|
|
Currently Unused and empty.
|
|
|
|
*/
|
2014-04-17 05:55:38 +00:00
|
|
|
class gFooBar: public Layer
|
2011-08-25 09:00:19 +00:00
|
|
|
{
|
2014-05-13 17:47:33 +00:00
|
|
|
public:
|
|
|
|
static const int Margin = 15;
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
public:
|
|
|
|
gFooBar(int offset = 10, QColor handle_color = QColor("orange"),
|
|
|
|
QColor line_color = QColor("dark grey"));
|
|
|
|
virtual ~gFooBar();
|
2014-05-13 17:47:33 +00:00
|
|
|
|
|
|
|
virtual void paint(QPainter &painter, gGraph &w, const QRegion ®ion);
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
protected:
|
|
|
|
int m_offset;
|
|
|
|
QColor m_handle_color;
|
|
|
|
QColor m_line_color;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GFOOBAR_H
|