Mercurial > ~dholland > hg > ag > index.cgi
view anagram/vaclgui/dpanel.hpp @ 14:a02e9434072e
Fix friend declaration for gcc10.
XXX: did not check it against the IBM compiler, might end up needing
XXX: to be conditional.
author | David A. Holland |
---|---|
date | Tue, 31 May 2022 00:59:42 -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 */