errorbox.h

来自「模糊聚类的算法实现程序」· C头文件 代码 · 共 40 行

H
40
字号
//**************************************************************//*   filename: errorbox.h                                     *//*                                                            *//**************************************************************//* programmed by: Thomas Wagner                               *//* last change:  (XXX: not updated)                           *//**************************************************************#include <stdio.h>#include <stdlib.h>#include <X11/Xlib.h>#include <X11/Xutil.h>class ErrorBox;#ifndef ERRORBOX_H#define ERRORBOX_H#include "window.h"#include "mainwindow.h"class ErrorBox:  public Window_Info{  public:  ErrorBox (Display * initdisplay,	    GC initgc,	    MainWindow * Parentwindow,	    XFontStruct * fontstruct,	    int initx, int inity,	    int initwidth, int initheight);    virtual ~ ErrorBox () {  } virtual void HandleEvent (XEvent * Event);  void ChangeText (char *newtext);protected:  void Redraw ();};#endif

⌨️ 快捷键说明

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