view anagram/vaclgui/dpanel.hpp @ 17:12171da8943f

Don't refer to CVS.
author David A. Holland
date Tue, 31 May 2022 01:56:37 -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 */