2009-01-17 05:43:43 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2010-07-13 09:29:58 -04:00
|
|
|
// Name: wx/osx/colordlg.h
|
2009-01-17 05:43:43 -05:00
|
|
|
// Purpose: wxColourDialog class. Use generic version if no
|
|
|
|
// platform-specific implementation.
|
|
|
|
// Author: Stefan Csomor
|
|
|
|
// Modified by:
|
|
|
|
// Created: 1998-01-01
|
|
|
|
// Copyright: (c) Stefan Csomor
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_COLORDLG_H_
|
|
|
|
#define _WX_COLORDLG_H_
|
|
|
|
|
|
|
|
#include "wx/dialog.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Platform-specific colour dialog implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_CORE wxColourDialog: public wxDialog
|
|
|
|
{
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxColourDialog);
|
2009-01-17 05:43:43 -05:00
|
|
|
public:
|
|
|
|
wxColourDialog();
|
2019-07-16 08:21:59 -04:00
|
|
|
wxColourDialog(wxWindow *parent, const wxColourData *data = NULL);
|
2008-06-11 12:30:48 -04:00
|
|
|
|
2019-07-16 08:21:59 -04:00
|
|
|
bool Create(wxWindow *parent, const wxColourData *data = NULL);
|
2009-01-17 05:43:43 -05:00
|
|
|
|
2019-04-05 14:08:53 -04:00
|
|
|
int ShowModal() wxOVERRIDE;
|
2009-01-17 05:43:43 -05:00
|
|
|
wxColourData& GetColourData() { return m_colourData; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxColourData m_colourData;
|
|
|
|
wxWindow* m_dialogParent;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_COLORDLG_H_
|