Mercurial > mercurial > hgweb_searcher03.cgi
comparison include/bprint.h @ 6:76db82822e73
Implement kana fuzzy search.
Implement batch print log.
author | pyon@macmini |
---|---|
date | Wed, 18 Sep 2013 18:20:40 +0900 |
parents | bc2e2b304095 |
children | 52958cd4a073 |
comparison
equal
deleted
inserted
replaced
5:bc2e2b304095 | 6:76db82822e73 |
---|---|
1 // Filename : bprint.h | 1 // Filename : bprint.h |
2 // Last Change: 13-Sep-2013. | 2 // Last Change: 18-Sep-2013. |
3 // | 3 // |
4 #ifndef __BPRINT_H__ | 4 #ifndef __BPRINT_H__ |
5 #define __BPRINT_H__ | 5 #define __BPRINT_H__ |
6 | 6 |
7 #include "common.h" | 7 #include "common.h" |
28 public: | 28 public: |
29 FrameBatchPrint( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ); | 29 FrameBatchPrint( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ); |
30 ~FrameBatchPrint(); | 30 ~FrameBatchPrint(); |
31 | 31 |
32 void SetGridReadOnly( void ); | 32 void SetGridReadOnly( void ); |
33 void WriteLog( wxArrayString logline ); | |
33 void OnInput( wxGridEvent& event ); | 34 void OnInput( wxGridEvent& event ); |
34 void OnClear( wxCommandEvent& WXUNUSED(event) ); | 35 void OnClear( wxCommandEvent& WXUNUSED(event) ); |
35 void OnPrint( wxCommandEvent& WXUNUSED(event) ); | 36 void OnPrint( wxCommandEvent& WXUNUSED(event) ); |
36 void SetMark( long lmin, long lmax, double zmin, double zmax ) { m_lmin = lmin; m_lmax = lmax; m_zmin = zmin; m_zmax = zmax; } | 37 void SetMark( long lmin, long lmax, double zmin, double zmax ) { m_lmin = lmin; m_lmax = lmax; m_zmin = zmin; m_zmax = zmax; } |
37 | 38 |