Mercurial > ~dholland > hg > ag > index.cgi
view anagram/vaclgui/multiline.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. * * multiline.hpp */ #ifndef MULTILINE_HPP #define MULTILINE_HPP #include <ipainhdr.hpp> #include <istattxt.hpp> #include "agstring.h" #include "base.h" class MultiLineText : public IStaticText , public IPaintHandler { private: int nLines; AgString textString; ISize margin; int vTab; public: MultiLineText(IWindow *owner, IRectangle r = IRectangle(), IStaticText::Style s = IStaticText::classDefaultStyle) : IStaticText(nextChildId(), owner, owner, r, s) , nLines(0) , margin(8,8) , vTab(0) { IPaintHandler::handleEventsFor(this); } ~MultiLineText() { IPaintHandler::stopHandlingEventsFor(this); } MultiLineText &setTextString(AgString s); // otherwise the compiler complains that this is hidden virtual IStaticText &setText(const IResourceId &ir) { return IStaticText::setText(ir); } virtual MultiLineText &setText(const char *s); Boolean paintWindow(IPaintEvent &event); ISize calcMinimumSize() const; MultiLineText &setMargin(ISize s) { margin = s; return *this; } MultiLineText &setMargin(int w, int h) { margin = ISize(w,h); return *this; } MultiLineText &setVTab(int v) { vTab = v; return *this; } }; #endif /* MULTILINE_HPP */