summaryrefslogtreecommitdiff
path: root/plugins/TrafficCounter/src/stdafx.h
blob: 9a60ab8008209ebeb32ef1c17123f1ee693fe4b6 (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#ifndef commonheaders_h__
#define commonheaders_h__

/*
Traffic Counter plugin for Miranda IM 
Copyright 2007-2011 Mironych.

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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/

#include <windows.h>
#include <windowsx.h>
#include <commctrl.h>

#include <m_system.h>

#include <newpluginapi.h>
#include <m_netlib.h>
#include <m_langpack.h>
#include <m_clc.h>
#include <m_clist.h>
#include <m_options.h>
#include <m_protosvc.h>
#include <m_cluiframes.h>
#include <m_fontservice.h>
#include <m_popup.h>
#include <m_skin.h>
#include <m_hotkeys.h>

#include <m_variables.h>
#include <m_skin_eng.h>
#include <m_tipper.h>

struct CMPlugin : public PLUGIN<CMPlugin>
{
	CMPlugin();

	int Load() override;
	int Unload() override;
};

#include "resource.h"
#include "version.h"
#include "misc.h"
#include "opttree.h"
#include "vars.h"
#include "TrafficCounter.h"

#pragma pack(push)
#pragma pack(1)
typedef	struct
{
	uint8_t Hour, Day, Month;
	uint16_t Year;
	uint32_t Incoming, Outgoing;
	uint16_t Time;
} HOURLYSTATS;
#pragma pack(pop)

typedef struct tagTimer
{
	uint32_t TimeAtStart; // Время в момент запуска таймера - в миллисекундах.
	uint32_t Timer; // Количество секунд со времени запуска таймера.
} TIMER;

struct PROTOLIST
{
	char *name; // Имя аккаунта.

	TIMER Session; // Таймер текущей сессии (протокол в онлайне).
	TIMER Total; // Таймер общий.

	uint32_t TotalRecvTraffic, // Общий трафик протокола (за выбранный период)
		  TotalSentTraffic,
		  CurrentRecvTraffic, // Текущий трафик протокола (за сессию)
		  CurrentSentTraffic;
	union
	{
		uint8_t Flags;
		struct
		{
			unsigned int Reserv0:1; // Активность потеряла смысл - статистика ведётся по всем аккаунтам.
			unsigned int Visible:1; // = 1 - аккаунт будет показываться во фрейме счётчиков
			unsigned int Enabled:1; // = 1 - аккаунт включен и не прячется
			unsigned int State:1;   // = 1 - аккаунт сейчас онлайн
			unsigned int Reserv1:3;
		};
	};

	// Добавлено в версии 0.1.1.0.
	int NumberOfRecords; // Количество часов в общей статистике.
	HOURLYSTATS *AllStatistics; // Полная статистика вместе со статистикой онлайна.
	HANDLE hFile; // Файл с сохранённой статистикой данного протокола.

	int StartIndex; // Номер записи в статистике, бывший актуальным на момент запуска.
	int StartIncoming; // Значение входящего трафика на момент запуска.
	int StartOutgoing; // Значение исходящего трафика на момент запуска.

	// 0.1.1.5.
	int Shift;	// Номер записи в статистике старейшего выбранного аккаунта,
					// дата которой соответствует началу статистики данного аккаунта.

	// 0.1.1.6
	wchar_t *tszAccountName; // Человеческое имя аккаунта для использования в графическом интерфейсе.
};

#include "statistics.h"

//---------------------------------------------------------------------------------------------
// Различные флаги
//---------------------------------------------------------------------------------------------
typedef union
{
	uint32_t Flags;
	struct
	{
		unsigned int NotifyBySize:1;			//0
		unsigned int DrawCurrentTraffic:1;		//1
		unsigned int DrawTotalTraffic:1;		//2
		unsigned int DrawCurrentTimeCounter:1;	//3
		unsigned int DrawProtoIcon:1;			//4
		unsigned int Reserv0:1;					//5
		unsigned int DrawProtoName:1;			//6
		unsigned int DrawFrmAsSkin:1;			//7
		unsigned int ShowSummary:1;				//8
		unsigned int ShowTooltip:1;				//9
		unsigned int ShowMainMenuItem:1;		//10
		unsigned int ShowOverall:1;				//11
		unsigned int Stat_Units:2;				//12,13
		unsigned int Stat_Tab:3;				//14,15,16
		unsigned int NotifyByTime:1;			//17
		unsigned int Reserv2:1;					//18
		unsigned int PeriodForShow:2;			//19,20
		unsigned int FrameIsVisible:1;			//21
		unsigned int Reserv1:1;					//22
		unsigned int DrawTotalTimeCounter:1;	//23
	};
} uTCFLAGS;

extern HWND TrafficHwnd;
extern PROTOLIST *ProtoList;
extern uTCFLAGS unOptions;

extern int  Traffic_PopupBkColor;
extern int  Traffic_PopupFontColor;
extern char Traffic_Notify_time_value;
extern int  Traffic_Notify_size_value;
extern char Traffic_PopupTimeoutDefault;
extern char Traffic_PopupTimeoutValue;
extern char Traffic_AdditionSpace;

extern wchar_t Traffic_CounterFormat[512];
extern wchar_t Traffic_TooltipFormat[512];

extern BOOL bVariablesExists, bTooltipExists;

extern BOOL UseKeyColor;
extern COLORREF KeyColor;

extern HGENMENU hTrafficMainMenuItem;

extern uint16_t Stat_SelAcc;
extern OPTTREE_OPTION *pOptions; // Объявлено в модуле TrafficCounter.c.
extern PROTOLIST OverallInfo;

#endif