wavplot.h

来自「wavlet compression on c++ only cods」· C头文件 代码 · 共 39 行

H
39
字号
// Copyright (c) 1999 Stephen T. Welstead. All rights reserved.
// File WAVPLOT.H  Header for Wavelet Plotting Window

#ifndef WAVPLOT_H
#define WAVPLOT_H

#include "uwl.h"
#include "wavelet.h"

class twavelet_plot_window_manager: public tmdi_manager {
   public:
   twavelet_plot_window_manager (HINSTANCE hInstance,
       tmdi_frame_window *parent,
       LPCSTR menu_name,LPCSTR class_name);
   virtual int respond_wm_create (HWND hwnd);
   };

class twavelet_plot_window: public tmdi_graph_window
{  public:
   int starting_component;
   int no_of_components;
   tHaar_wavelet *Haar_wavelet;
   tDaub4_wavelet *Daub4_wavelet;
   tDaub6_wavelet *Daub6_wavelet;
   twavelet_plot_window(HWND hwnd,
	 tmdi_manager *the_manager,LPCSTR title_name);
   virtual int set_starting_component(void);
   virtual int plot_wavelet (twavelet *wavelet,
	 char *wavelet_name);
   virtual int OnPlotHaarWavelet(void);
   virtual int OnPlotDaub4Wavelet(void);
   virtual int OnPlotDaub6Wavelet(void);
   virtual int respond_wm_command (WPARAM wParam,LPARAM);
   virtual int respond_wm_close (void);
   virtual int respond_wm_destroy (HWND hwnd);
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?