-
Notifications
You must be signed in to change notification settings - Fork 0
/
wxMsAccountsDialogh.h
41 lines (36 loc) · 1.4 KB
/
wxMsAccountsDialogh.h
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
/*-----------------------------------------------------------------
* Name: wxMsAccountsDialogh.h
* Purpose: Account info is stored in the master INI file
* Author: A. Wiegert
*
* Copyright:
* Licence: wxWidgets license
*-------------------------------------------------------------- */
#ifndef _WX_MS_ACCOUNTS_DIALOG_H
#define _WX_MS_ACCOUNTS_DIALOG_H
// ------------------------------------------------------------------
#include "wxMsBaseFrame.h"
#include "wxMsFrameh.h"
// ------------------------------------------------------------------
extern iniPrefs_t g_iniPrefs;
// ------------------------------------------------------------------
class MyAccountsDialog : public MyBaseAccountsDialog
{
public:
MyAccountsDialog( wxWindow* parent );
bool TransferDataToWindow( void );
bool TransferDataFromWindow( void );
void OnAccountAdd( wxCommandEvent& event );
void OnAccountEdit( wxCommandEvent& event );
void OnAccountDelete( wxCommandEvent& event );
void OnAccountSelect( wxGridEvent& event);
void InitAccountsGrid();
void OnAccountGridSize(wxSizeEvent& event);
void AccountGridSize();
bool m_bEditingAccount;
iniPrefs_t m_iniDialogPrefs; // Account info is stored in the master INI file
int m_iSelectedAccount;
DECLARE_EVENT_TABLE()
};
#endif // _WX_MS_ACCOUNTS_DIALOG_H
// ------------------------------- eof ---------------------------