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
|
/*
Weather Protocol plugin for Miranda NG
Copyright (C) 2012-25 Miranda NG team
Copyright (c) 2005-2011 Boris Krasnovskiy All Rights Reserved
Copyright (c) 2002-2005 Calvin Che
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; version 2
of the License.
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, see <http://www.gnu.org/licenses/>.
*/
/* This file contains the includes, weather constants/declarations,
the structs, and the primitives for some of the functions.
*/
#pragma once
#include <share.h>
#include <time.h>
#include <windows.h>
#include <commctrl.h>
#include <richedit.h>
#include <malloc.h>
#include <vector>
#include <newpluginapi.h>
#include <m_acc.h>
#include <m_avatars.h>
#include <m_button.h>
#include <m_clc.h>
#include <m_cluiframes.h>
#include <m_contacts.h>
#include <m_database.h>
#include <m_findadd.h>
#include <m_fontservice.h>
#include <m_history.h>
#include <m_icolib.h>
#include <m_ignore.h>
#include <m_json.h>
#include <m_langpack.h>
#include <m_netlib.h>
#include <m_options.h>
#include <m_popup.h>
#include <m_protosvc.h>
#include <m_skin.h>
#include <m_skin_eng.h>
#include <m_userinfo.h>
#include <m_xstatus.h>
#include <m_tipper.h>
#include <m_toptoolbar.h>
#include "resource.h"
#include "version.h"
#include "proto.h"
/////////////////////////////////////////////////////////////////////////////////////////
// CONSTANTS
// name
#define MODULENAME "Weather"
#define DEFCURRENTWEATHER "WeatherCondition"
#define WEATHERCONDITION "Current"
// weather conditions
enum EWeatherCondition
{
SUNNY,
NA,
PCLOUDY,
CLOUDY,
RAIN,
RSHOWER,
FOG,
SNOW,
SSHOWER,
LIGHT,
MAX_COND
};
// limits
#define MAX_TEXT_SIZE 4096
#define MAX_DATA_LEN 1024
// db info mangement mode
#define WDBM_REMOVE 1
#define WDBM_DETAILDISPLAY 2
// more info list column width
#define LIST_COLUMN 150
// others
#define NODATA TranslateT("N/A")
#define UM_SETCONTACT 40000
// weather update error codes
#define INVALID_ID_FORMAT 10
#define INVALID_SVC 11
#define INVALID_ID 12
#define SVC_NOT_FOUND 20
#define NETLIB_ERROR 30
#define DATA_EMPTY 40
#define DOC_NOT_FOUND 42
#define DOC_TOO_SHORT 43
#define UNKNOWN_ERROR 99
#define SM_WEATHERALERT 16
#define WM_UPDATEDATA (WM_USER + 2687)
/////////////////////////////////////////////////////////////////////////////////////////
// GLOBAL VARIABLES
extern HWND hPopupWindow;
extern MWindowList hDataWindowList, hWindowList;
extern HANDLE hTBButton;
extern HGENMENU hMwinMenu;
extern bool g_bIsUtf;
/////////////////////////////////////////////////////////////////////////////////////////
// functions in weather_conv.c
void ClearStatusIcons();
void CaseConv(wchar_t *str);
void TrimString(char *str);
void TrimString(wchar_t *str);
void ConvertBackslashes(char *str);
char *GetSearchStr(char *dis);
wchar_t *GetDisplay(WEATHERINFO *w, const wchar_t *dis, wchar_t* str);
wchar_t *GetError(int code);
/////////////////////////////////////////////////////////////////////////////////////////
// functions in weather_data.c
void DBDataManage(MCONTACT hContact, uint16_t Mode, WPARAM wParam, LPARAM lParam);
/////////////////////////////////////////////////////////////////////////////////////////
// functions in weather_info.c
const wchar_t *GetDefaultText(int c);
/////////////////////////////////////////////////////////////////////////////////////////
// function from multiwin module
void UpdateMwinData(MCONTACT hContact);
/////////////////////////////////////////////////////////////////////////////////////////
// utils
class JsonReply
{
JSONNode *m_root = nullptr;
int m_errorCode = 0;
public:
JsonReply(MHttpResponse *);
~JsonReply();
__forceinline int error() const { return m_errorCode; }
__forceinline JSONNode &data() const { return *m_root; }
__forceinline operator bool() const { return m_errorCode == 200; }
};
|