1998-05-20 10:12:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: colordlg.h
|
|
|
|
// Purpose: wxColourDialog class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 19:52:45 -04:00
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:12:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 19:52:45 -04:00
|
|
|
#ifndef _WX_COLORDLG_H_
|
|
|
|
#define _WX_COLORDLG_H_
|
1998-05-20 10:12:05 -04:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "colordlg.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/setup.h"
|
|
|
|
#include "wx/dialog.h"
|
|
|
|
#include "wx/cmndata.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* COLOUR DIALOG
|
|
|
|
*/
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxColourDialog: public wxDialog
|
|
|
|
{
|
1998-08-07 19:52:45 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxColourDialog)
|
|
|
|
public:
|
|
|
|
wxColourDialog(void);
|
|
|
|
wxColourDialog(wxWindow *parent, wxColourData *data = NULL);
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent, wxColourData *data = NULL);
|
|
|
|
|
|
|
|
int ShowModal(void);
|
|
|
|
wxColourData& GetColourData(void) { return m_colourData; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxColourData m_colourData;
|
|
|
|
wxWindow* m_dialogParent;
|
1998-05-20 10:12:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-07 19:52:45 -04:00
|
|
|
// _WX_COLORDLG_H_
|