Mercurial > ~dholland > hg > ag > index.cgi
view anagram/vaclgui/dpanel.hpp @ 8:ec2b657edf13
Add explicit lint-comment-style fallthrough annotations.
GCC now assumes that if you don't have these you're making a mistake,
which is annoying.
XXX: This changeset updates the AG output files only (by hand) and is
XXX: abusive - rebuilding them will erase the change. However, I need
XXX: to get things to build before I can try to get AG to issue the
XXX: annotations itself, so this seems like a reasonable expedient.
author | David A. Holland |
---|---|
date | Mon, 30 May 2022 23:51:43 -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. * * dpanel.hpp */ #ifndef DPANEL_HPP #define DPANEL_HPP //#include <iframe.hpp> //#include <isysmenu.hpp> #include "dview.hpp" #include "frame.hpp" class AgDataPanel : public AgFrame { public: AgDataPanel(WindowData *); AgDataPanel(); ~AgDataPanel(); void init(); int getCursorLine(); AgDataPanel &close(); void disconnect(); virtual unsigned getLineNumber(); virtual void setLineNumber(unsigned); virtual Boolean findNext(AgString); virtual Boolean findPrev(AgString); protected: HelpDemon helpDemon; public: // Child Windows AgDataView *dataView; AgDataPanel ©To(IClipboard &c) { dataView->copyTo(c); return *this; } AgString copyTitle() { return dataView->copyTitle; } // Window parameters AgDataPanel &setFocus() { dataView->setFocus(); return *this; } }; inline int AgDataPanel::getCursorLine() { return dataView->getCursorLine(); } #endif /* DPANEL_HPP */