summaryrefslogtreecommitdiffstats
path: root/plugins/scheduler/bwswidget.h
blob: 9cb36ae1545af9b089af47fd7dc7715ad4f1233d (plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/***************************************************************************
 *   Copyright (C) 2006 by Ivan Vasić   								   *
 *   ivasic@gmail.com   												   *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   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.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
 ***************************************************************************/
#ifndef KTBWSWIDGET_H
#define KTBWSWIDGET_H

#include <tqtable.h>
#include <tqpixmap.h>
#include <tqpoint.h>
#include <tqcolor.h>

#include "bwscheduler.h"

namespace kt
{
	typedef struct _focusedCell
	{
		int x;
		int y;
	}
	FocusedCell;

	/**
	 * @brief Bandwidth scheduler widget.
	 * @author Ivan Vasić <ivasic@gmail.com>
	 * This class is a TQTable with customized cells. It's used for bandwidth scheduling by painting each cell with mouse moves or keyboard.
	 */
	class BWSWidget : public TQTable
	{
			TQ_OBJECT
  
		public:
			BWSWidget(TQWidget* parent = 0, const char* name = 0, bool useColors = true);
			~BWSWidget();

			///Repaints the whole widget
			void repaintWidget();

			///Clears selection (removes focus)
			void clearSelect();

			///Sets category for left mouse click.
			void setLeftCategory(const int& theValue);
			///Sets category for right mouse click.
			void setRightCategory(const int& theValue);

			
			/**
			 * Sets cell paint type.
			 * @param color TRUE - paints colors. FALSE - paints pixmaps.
			 */
			void setType(bool color);
			
			///Returns current schedule.
			const BWS& schedule();
			///Sets schedule.
			void setSchedule(const BWS& theValue);

		public slots:
			void resetSchedule();
			void setUseColors(bool theValue);

		private slots:
			void cellSelectionChanged(int row, int col);
			void cellMouseDown(int row, int col, int button, const TQPoint& mousePos);

		private:
			void paintFocus(TQPainter* p, const TQRect& cr);
			void paintCell(TQPainter* p, int row, int col, const TQRect& cr, bool selected);
			void drawCell(TQPainter* p, int category, bool focus = false);
			void focusOutEvent(TQFocusEvent*);

			TQPixmap* m_pix[5];
			TQPixmap* m_pixf[5];

			TQColor* m_color[5];
			TQColor* m_colorf[5];

			int m_leftCategory;
			int m_rightCategory;

			FocusedCell lastFocused;

			bool draw_focus;
			bool right_click;

			bool use_colors;
			
			BWS m_schedule;
	};
}
#endif