Also removed the hack I put in last week to allow building without the deprecated headers and fixed it the right way. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22298 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			77 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/////////////////////////////////////////////////////////////////////////////
 | 
						|
// Name:        divided.h
 | 
						|
// Purpose:     wxDividedShape
 | 
						|
// Author:      Julian Smart
 | 
						|
// Modified by:
 | 
						|
// Created:     12/07/98
 | 
						|
// RCS-ID:      $Id$
 | 
						|
// Copyright:   (c) Julian Smart
 | 
						|
// Licence:   	wxWindows licence
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
#ifndef _OGL_DIVIDED_H_
 | 
						|
#define _OGL_DIVIDED_H_
 | 
						|
 | 
						|
#if defined(__GNUG__) && !defined(__APPLE__)
 | 
						|
#pragma interface "divided.h"
 | 
						|
#endif
 | 
						|
 | 
						|
 | 
						|
/*
 | 
						|
 * Definition of a region
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
/*
 | 
						|
 * Box divided into horizontal regions
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
extern wxFont *g_oglNormalFont;
 | 
						|
class WXDLLIMPEXP_OGL wxDividedShape: public wxRectangleShape
 | 
						|
{
 | 
						|
 DECLARE_DYNAMIC_CLASS(wxDividedShape)
 | 
						|
 | 
						|
 public:
 | 
						|
  wxDividedShape(double w = 0.0, double h = 0.0);
 | 
						|
  ~wxDividedShape();
 | 
						|
 | 
						|
  void OnDraw(wxDC& dc);
 | 
						|
  void OnDrawContents(wxDC& dc);
 | 
						|
 | 
						|
  void SetSize(double w, double h, bool recursive = TRUE);
 | 
						|
 | 
						|
  void MakeControlPoints();
 | 
						|
  void ResetControlPoints();
 | 
						|
 | 
						|
  void MakeMandatoryControlPoints();
 | 
						|
  void ResetMandatoryControlPoints();
 | 
						|
 | 
						|
#if wxUSE_PROLOGIO
 | 
						|
  void WriteAttributes(wxExpr *clause);
 | 
						|
  void ReadAttributes(wxExpr *clause);
 | 
						|
#endif
 | 
						|
 | 
						|
  void Copy(wxShape ©);
 | 
						|
 | 
						|
  // Set all region sizes according to proportions and
 | 
						|
  // this object total size
 | 
						|
  void SetRegionSizes();
 | 
						|
 | 
						|
  // Edit region colours/styles
 | 
						|
  void EditRegions();
 | 
						|
 | 
						|
  // Attachment points correspond to regions in the divided box
 | 
						|
  bool GetAttachmentPosition(int attachment, double *x, double *y,
 | 
						|
                                     int nth = 0, int no_arcs = 1, wxLineShape *line = NULL);
 | 
						|
  bool AttachmentIsValid(int attachment) const;
 | 
						|
  int GetNumberOfAttachments() const;
 | 
						|
 | 
						|
  // Invoke editor on CTRL-right click
 | 
						|
  void OnRightClick(double x, double y, int keys = 0, int attachment = 0);
 | 
						|
};
 | 
						|
 | 
						|
#endif
 | 
						|
    // _OGL_DIVIDED_H_
 | 
						|
 |