From 69b001f36e1df9bfc80effd0e7fb5333335c2d87 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 18 Mar 2019 18:26:23 +0300 Subject: Notes & Reminders: - ANSI plugin became Unicode and therefore went under standard project templates; - globals.h renamed to stdafx.h, stdafx.cxx added to a project; - old pascal-style lists replaced with LIST<> templates; - massive code cleaning; - version bump --- plugins/NotesAndReminders/src/globals.h | 145 -------------------------------- 1 file changed, 145 deletions(-) delete mode 100644 plugins/NotesAndReminders/src/globals.h (limited to 'plugins/NotesAndReminders/src/globals.h') diff --git a/plugins/NotesAndReminders/src/globals.h b/plugins/NotesAndReminders/src/globals.h deleted file mode 100644 index c774dcffb7..0000000000 --- a/plugins/NotesAndReminders/src/globals.h +++ /dev/null @@ -1,145 +0,0 @@ -#pragma once - -#define _CRT_SECURE_NO_WARNINGS - -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include - -#include "miscutils.h" -#include "resource.h" -#include "version.h" - -#define MODULENAME "StickyNotes" -#define SECTIONNAME LPGEN("Notes & Reminders") - -struct CMPlugin : public PLUGIN -{ - CMPlugin(); - - int Load() override; - int Unload() override; -}; - -// normal timer interval for reminder update processing -#define REMINDER_UPDATE_INTERVAL 10000 -// short timer interval for reminder updates used as long as there are pending alarams in the event queue -#define REMINDER_UPDATE_INTERVAL_SHORT 5000 - - -// font IDs used with LoadNRFont -#define NR_FONTID_CAPTION 0 -#define NR_FONTID_BODY 1 -#define NR_FONTID_MAX NR_FONTID_BODY - -typedef struct { - HFONT hFont; - char size; - BYTE style; // see the DBFONTF_* flags - BYTE charset; - char szFace[LF_FACESIZE]; -} STICKYNOTEFONT; - -typedef struct { - HWND SNHwnd,REHwnd; - BOOL bVisible, bOnTop; - char *data; - ULARGE_INTEGER ID; // FILETIME in UTC - char *title; - BOOL CustomTitle; - DWORD BgColor; // custom bg color override (only valid if non-zero) - DWORD FgColor; // custom fg/text color override (only valid if non-zero) - STICKYNOTEFONT *pCustomFont;// custom (body) font override (NULL if default font is used) -} STICKYNOTE; - -typedef struct { - HWND handle; - BOOL RemVisible; - DWORD uid; - char *Reminder; - ULARGE_INTEGER When; // FILETIME in UTC - UINT RepeatSound; - UINT RepeatSoundTTL; - int SoundSel; // -1 if sound disabled - BOOL SystemEventQueued; -} REMINDERDATA; - - -extern void CreateMsgWindow(void); -extern void DestroyMsgWindow(void); - -extern STICKYNOTE* NewNote(int Ax,int Ay,int Aw,int Ah,char *Data, ULARGE_INTEGER *ID,BOOL Visible,BOOL bOnTop,int scrollV); - -extern void LoadNotes(BOOL bIsStartup); -extern void SaveNotes(void); -extern void DeleteNotes(void); -extern void ShowHideNotes(void); -extern void ListNotes(void); - -extern void NewReminder(void); -extern void LoadReminders(void); -extern void SaveReminders(void); -extern void DeleteReminders(void); -extern void ListReminders(void); -extern BOOL CheckRemindersAndStart(void); - -extern void InitSettings(void); -extern void TermSettings(void); -extern INT_PTR CALLBACK DlgProcOptions(HWND hdlg,UINT message, WPARAM wParam,LPARAM lParam); -extern void LoadNRFont(int i, LOGFONT *lf, COLORREF *colour); - -extern BOOL WS_Init(); -extern void WS_CleanUp(); - -extern LPCSTR GetDateFormatStr(); -extern LPCSTR GetTimeFormatStr(); - -extern HINSTANCE hmiranda; - -extern BOOL g_CloseAfterAddReminder, g_UseDefaultPlaySound; -extern HICON g_hReminderIcon; - -extern LOGFONT lfBody,lfCaption; -extern HFONT hBodyFont,hCaptionFont; - -extern long BodyColor; -extern long CaptionFontColor,BodyFontColor; - -extern BOOL g_ShowNotesAtStart,g_ShowScrollbar,g_AddContListMI,g_ShowNoteButtons; -extern int g_NoteTitleDate, g_NoteTitleTime; - -extern int g_NoteWidth,g_NoteHeight; - -extern int g_Transparency; - -extern char *g_RemindSMS; - -extern char *g_lpszAltBrowser; - -extern int g_reminderListGeom[4]; -extern int g_reminderListColGeom[2]; -extern int g_notesListGeom[4]; -extern int g_notesListColGeom[4]; - -extern HWND HKHwnd; -extern IconItem iconList[]; - -// these defs are only used to emphasize that SYSTEMTIMEtoFILETIME/FILETIMEtoSYSTEMTIME only convert the data type, -// it does not apply any time conversion/correction like UTC to local etc. (if input is local, then output is local too) -#define SYSTEMTIMEtoFILETIME SystemTimeToFileTime -#define FILETIMEtoSYSTEMTIME FileTimeToSystemTime -- cgit v1.2.3