-
Notifications
You must be signed in to change notification settings - Fork 0
/
wxMsPop3AdvancedOptionsDlgh.h
36 lines (31 loc) · 1.12 KB
/
wxMsPop3AdvancedOptionsDlgh.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
/*-----------------------------------------------------------------
* Name: wxMsPop3AdvancedOptionsDlgh.h
* Purpose: dialog to allow user to set the advanced options for the
* POP3 server
* Author: A. Wiegert
*
* Copyright:
* Licence: wxWidgets licence
*-------------------------------------------------------------- */
#ifndef _WX_MS_POP3_ADVANCED_OPTIONS_H
#define _WX_MS_POP3_ADVANCED_OPTIONS_H
// ------------------------------------------------------------------
#include "wxMsBaseFrame.h"
#include "wxMsFrameh.h"
#include "wxMsConfh.h"
#include "wxMsAccountsDialogh.h"
#include "wxMsAccountDetailsh.h"
// ------------------------------------------------------------------
/**
* Advanced info is stored in the master INI file
*/
class MyAdvancedPopConfigDlg : public MyBaseAdvancedPopConfigDlg
{
public:
MyAdvancedPopConfigDlg( MyAccountsDetailsDialog* parent );
bool TransferDataToWindow( void );
bool TransferDataFromWindow( void );
MyAccountsDetailsDialog* m_parent;
};
#endif // _WX_MS_POP3_ADVANCED_OPTIONS_H
// ------------------------------- eof ---------------------------