view include/hhsdb.h @ 14:ac17a73e39b3

Zoom in / out in Preview Dialog.
author pyon@macmini
date Thu, 05 Jun 2014 04:19:03 +0900
parents bbd65edf71d4
children a2ad87cad48b
line wrap: on
line source

// Filename   : hhsdb.h
// Last Change: 21-May-2014.
//

#ifndef __HHSDB_H__
#define __HHSDB_H__

#include "common.h"

class HhsDialog : public wxDialog 
{
    DECLARE_EVENT_TABLE()
	private:
	
	protected:
		wxFilePickerCtrl* m_filePicker;
		wxButton*         m_buttonUpdate;
		wxButton*         m_buttonCancel;
	
	public:
		HhsDialog( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style );
		~HhsDialog();
        void OnUpdate( wxCommandEvent& WXUNUSED(event) );	
};

enum
{
    ID_FPICKR = wxID_HIGHEST + 130,
    ID_UPDATE,
};

#endif //__HHSDB_H__