view anagram/vaclgui/dpanel.hpp @ 21:1c9dac05d040

Add lint-style FALLTHROUGH annotations to fallthrough cases. (in the parse engine and thus the output code) Document this, because the old output causes warnings with gcc10.
author David A. Holland
date Mon, 13 Jun 2022 00:04:38 -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 &copyTo(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 */