diff include/bprint.h @ 12:52958cd4a073

Implement Force Mask button in Batch Print Mode.
author pyon@macmini
date Sun, 18 May 2014 19:49:15 +0900
parents 76db82822e73
children 92188f60323d
line wrap: on
line diff
--- a/include/bprint.h	Wed May 07 20:38:57 2014 +0900
+++ b/include/bprint.h	Sun May 18 19:49:15 2014 +0900
@@ -1,5 +1,5 @@
 // Filename   : bprint.h
-// Last Change: 18-Sep-2013.
+// Last Change: 16-May-2014.
 //
 #ifndef __BPRINT_H__
 #define __BPRINT_H__
@@ -23,6 +23,8 @@
 		wxGrid*     m_grid;
 		wxButton*   m_buttonClear;
 		wxButton*   m_buttonPrint;
+		wxButton*   m_buttonMaskPrint;
+		wxButton*   m_buttonLdLog;
 		wxButton*   m_buttonClose;
 	
 	public:
@@ -34,6 +36,8 @@
         void OnInput( wxGridEvent& event );
         void OnClear( wxCommandEvent& WXUNUSED(event) );
         void OnPrint( wxCommandEvent& WXUNUSED(event) );
+        void OnMaskPrint( wxCommandEvent& WXUNUSED(event) );
+        void OnLoadLog( wxCommandEvent& WXUNUSED(event) );
         void SetMark( long lmin, long lmax, double zmin, double zmax ) { m_lmin = lmin; m_lmax = lmax; m_zmin = zmin; m_zmax = zmax; }
 
         // Accessor
@@ -49,6 +53,8 @@
 {
     ID_BPCLEAR = wxID_HIGHEST + 50,
     ID_BPPRINT,
+    ID_BPFFMP,
+    ID_BPLDLOG,
 };
 
 #endif //__BPRINT_H__