KissCount/view/UsersDialog.h

35 lines
578 B
C
Raw Normal View History

#ifndef USERSDIALOG_H
#define USERSDIALOG_H
#include <list>
#include <wx/wx.h>
#include <wx/choice.h>
#include <wx/textctrl.h>
2010-06-27 21:39:49 +02:00
#include <wx/textdlg.h>
#include <controller/KissCount.h>
#include "wxUI.h"
class wxUI;
class KissCount;
class UsersDialog : public wxDialog
{
2010-07-04 16:33:25 +02:00
public:
UsersDialog(KissCount* kiss, wxUI *parent);
void OnOK(wxCommandEvent& event);
void OnCancel(wxCommandEvent& event);
2010-06-27 21:39:49 +02:00
void OnNewUser(wxCommandEvent& event);
2010-07-04 16:33:25 +02:00
private:
KissCount* _kiss;
wxUI* _wxUI;
wxChoice* _users;
wxTextCtrl* _password;
2010-07-04 16:33:25 +02:00
DECLARE_EVENT_TABLE();
};
#endif