dialog_scripting.h 525 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/////////////////////////////////////////////////////////////////////////////
// Name:        dialog_scripting.h
/////////////////////////////////////////////////////////////////////////////

#ifndef _DIALOG_SCRIPTING_H_
#define _DIALOG_SCRIPTING_H_

#include <dialog_scripting_base.h>

class DIALOG_SCRIPTING: public DIALOG_SCRIPTING_BASE
{
private:
    wxDialog * m_Parent;

public:
    DIALOG_SCRIPTING(wxWindow * parent );

private:
    void OnRunButtonClick( wxCommandEvent& event );
};

#endif  // _DIALOG_SCRIPTING_H_