xml-copy-editor-code/src/myhtmlpane.h

28 lines
543 B
C
Raw Normal View History

2007-09-07 23:17:30 +02:00
#ifndef MY_HTML_PANE_H
#define MY_HTML_PANE_H
#include <wx/wx.h>
#include <wx/wxhtml.h>
class MyHtmlPane : public wxHtmlWindow
{
2007-09-08 00:25:30 +02:00
public:
MyHtmlPane (
wxWindow *parent,
wxWindowID id = wxID_ANY,
const wxPoint& position = wxDefaultPosition,
const wxSize& size = wxDefaultSize );
private:
2007-09-07 23:17:30 +02:00
/*
void OnCellClicked(
wxHtmlCell *cell,
wxCoord x,
wxCoord y,
const wxMouseEvent& event);
*/
2007-09-08 00:25:30 +02:00
void OnLeftDoubleClick ( wxMouseEvent& event );
2007-09-07 23:17:30 +02:00
DECLARE_EVENT_TABLE()
};
#endif