Sophie

Sophie

distrib > Mandriva > 10.0-com > i586 > by-pkgid > 21280410b6ea906d791d7a12afae2579 > files > 1670

libace5-doc-5.4-2mdk.i586.rpm

/* -*- C++ -*- */
//=============================================================================
/**
 *  @file    Widget.h
 *
 *  Widget.h,v 1.1 2001/08/29 12:02:07 schmidt Exp
 *
 *  @author Christopher Kohlhoff <chris@kohlhoff.com>
 */
//=============================================================================

#ifndef WIDGET_H
#define WIDGET_H

#include "Widget_Part.h"

/**
 * @class Widget
 *
 * @brief An interface for some high-level application object.
 */
class Widget
{
public:
  /// Destructor.
  virtual ~Widget (void);

  /// Add a new part to the widget. The widget takes ownership of the part
  /// object.
  virtual void add_part (Widget_Part *part) = 0;

  /// Remove a random part from the widget. Ownership of the part is returned
  /// to the caller.
  virtual Widget_Part *remove_part (void) = 0;

  /// Ask the widget to print information about the parts that it contains.
  virtual void list_parts (void) = 0;
};

#endif /* WIDGET_H */