⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wavplot.h

📁 wavlet compression on c++ only cods
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -