blob: 5e0c0e24033a6c42981357229a416678e9dae70f (
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
|
#ifndef guard_speak_config_dialog_config_active_h
#define guard_speak_config_dialog_config_active_h
//==============================================================================
// Miranda Speak Plugin, © 2002 Ryan Winter
//==============================================================================
#include "dialog/miranda_dialog.h"
#include "config/config_database.h"
#include <wtypes.h>
class DialogConfigActive : public MirandaDialog
{
public:
//--------------------------------------------------------------------------
// Description : Initialise
// Parameters : db - reference to the database to initalise and save
// control to and from
//--------------------------------------------------------------------------
DialogConfigActive(ConfigDatabase &db);
virtual ~DialogConfigActive();
//--------------------------------------------------------------------------
// Description : process a dialog message
// Return : 0 - process ok
// 1 - error
//--------------------------------------------------------------------------
static int CALLBACK process(HWND window, UINT message, WPARAM wparam,
LPARAM lparam);
private:
//--------------------------------------------------------------------------
// Description : load/save setting to the miranda database
//--------------------------------------------------------------------------
void load(HWND window);
void save(HWND window);
//--------------------------------------------------------------------------
// Description : select/unselect all the active status checkboxes
// Parameters : state - the state to apply to the checkboxes
//--------------------------------------------------------------------------
void selectAllUsers(HWND window, bool state);
static DialogConfigActive *m_instance;
ConfigDatabase &m_db;
};
//==============================================================================
//
// Summary : Configuration Engine Dialog box
//
// Description : Set up the configuration dialog box and process its input
//
//==============================================================================
#endif
|