summaryrefslogtreecommitdiff
path: root/plugins/WinterSpeak/src/SpeakAnnounce.h
blob: cb1a53f8bf46b0c9e615fb9989117aa273fdd367 (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
#pragma once

#include "Common.h"
#include <m_database.h>

class SpeakAnnounce
{
public:
	SpeakAnnounce(HINSTANCE instance);
	~SpeakAnnounce();

	//--------------------------------------------------------------------------
	// Description : handle a status change
	//--------------------------------------------------------------------------
	void statusChange(DBCONTACTWRITESETTING *write_setting, HCONTACT user);

	//--------------------------------------------------------------------------
	// Description : handle an event
	//--------------------------------------------------------------------------
	void incomingEvent(HCONTACT user, HANDLE event);

	//--------------------------------------------------------------------------
	// Description : handle a protocol state change
	//--------------------------------------------------------------------------
	void protocolAck(ACKDATA *ack);

	//--------------------------------------------------------------------------
	// Description : speak a sentence
	// Parameters  : sentence - the sentence to speak
	//               user - the user who is speaking, or NULL for no user
	// Returns     : true - speak successful
	//               false - speak failed
	//--------------------------------------------------------------------------
	void message(const std::wstring &sentence, HCONTACT user);
	void status(const std::wstring &sentence, HCONTACT user);

private:
	//--------------------------------------------------------------------------
	// Description : check if the users message window is open and focused
	// Parameters  : contact - the user to check for
	// Returns     : true = message window is open
	//               false = message window not open
	//--------------------------------------------------------------------------
	bool readMessage(HCONTACT contact);

	HINSTANCE           m_instance;

	AnnounceDatabase    m_db;
	AnnounceDialog      m_dialog;
	UserInformation     m_user_info;
	EventInformation    m_event_info;
	ProtocolInformation m_protocol_info;
};