-
Notifications
You must be signed in to change notification settings - Fork 1
/
access.h
49 lines (40 loc) · 1.54 KB
/
access.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
42
43
44
45
46
47
48
//----------------------------------------------------------------------------------------
// Name: access.h
// Purpose: Describes access dialog
// Author: Steven Henke [email protected]
// Modified by:
// Created: 2008
// Copyright: (C)XELATEC,LLC http://www.xelatec.com
// Licence: GPL
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------
// Begin single inclusion of this .h file condition
//----------------------------------------------------------------------------------------
#ifndef _ACCESS_H_
#define _ACCESS_H_
//----------------------------------------------------------------------------------------
// GCC interface
//----------------------------------------------------------------------------------------
#if defined(__GNUG__) && ! defined(__APPLE__)
#pragma interface "access.h"
#endif
//----------------------------------------------------------------------------------------
// Headers
//----------------------------------------------------------------------------------------
#include "app.h"
class AccessDialog : public wxDialog
{
public:
AccessDialog( wxWindow* parent );
wxTextCtrl *Password;
wxTextCtrl *Confirm;
private:
wxStaticText *BlockLabel;
wxButton *UpdateButton;
wxString strPassword;
void Show(void);
void OnUpdate(wxCommandEvent &event);
void OnOK(wxCommandEvent &event);
DECLARE_EVENT_TABLE()
};
#endif //_ACCESS_H_