comparison include/auth.h @ 5:e3b10fb860b3

release v1.0.
author pyon@macmini
date Mon, 22 Oct 2018 22:17:02 +0900
parents db4813125eb8
children 9a8b581c1993
comparison
equal deleted inserted replaced
4:06342fc544e4 5:e3b10fb860b3
1 // Filename : auth.h 1 // Filename : auth.h
2 // Last Change: 2018-10-11 –Ø 16:23:21. 2 // Last Change: 2018-10-22 ŒŽ 08:41:38.
3 // 3 //
4 4
5 #ifndef __AUTH_H__ 5 #ifndef __AUTH_H__
6 #define __AUTH_H__ 6 #define __AUTH_H__
7 7
45 AuthDialog( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE ); 45 AuthDialog( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE );
46 ~AuthDialog(); 46 ~AuthDialog();
47 47
48 void SetServer( wxString server ) { m_server = server; }; 48 void SetServer( wxString server ) { m_server = server; };
49 void CreateControls( void ); 49 void CreateControls( void );
50 bool LoadDB( void );
50 bool IsValidUser( void ); 51 bool IsValidUser( void );
51 wxString GetUser( void ) { return m_user; }; 52 wxString GetUser( void ) { return m_user; };
52 void InDevelop( bool ); 53 void InDevelop( bool );
53 54
54 void OnShow( wxShowEvent& event ); 55 void OnShow( wxShowEvent& event );