view anagram/vaclgui/about.hpp @ 24:a4899cdfc2d6 default tip

Obfuscate the regexps to strip off the IBM compiler's copyright banners. I don't want bots scanning github to think they're real copyright notices because that could cause real problems.
author David A. Holland
date Mon, 13 Jun 2022 00:40:23 -0400
parents 13d2b8934445
children
line wrap: on
line source

/*
 * AnaGram, A System for Syntax Directed Programming
 * Copyright 1997-2002 Parsifal Software. All Rights Reserved.
 * See the file COPYING for license and usage terms.
 *
 * about.hpp
 */

#ifndef ABOUT_HPP
#define ABOUT_HPP

//#include <igroupbx.hpp>
#include <iiconctl.hpp>
#include <imcelcv.hpp>
#include <ipainevt.hpp>
#include <ipainhdr.hpp>
#include <isetcv.hpp>

#include "frame.hpp"
#include "multiline.hpp"

class AboutBox
  : public AgFrame
  , public IPaintHandler
{
  IMultiCellCanvas canvas;
    IIconControl anaGramIcon;
    ISetCanvas textBlock;
      MultiLineText titleLines;
      MultiLineText copyrightNotice;
      //IStaticText licenseBox;
      //  MultiLineText licensee;
      MultiLineText address;
      MultiLineText buildInfo;
public:
  AboutBox();
  Boolean paintWindow(IPaintEvent &event);
  ~AboutBox();
};


#endif /* ABOUT_HPP */