2001-07-05 01:26:15 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/colrdlgg.h
|
|
|
|
// Purpose: wxColourDialog
|
|
|
|
// Author: Vadim Zeitiln
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) wxWindows team
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_COLORDLG_H_BASE_
|
|
|
|
#define _WX_COLORDLG_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-07-05 01:26:15 +00:00
|
|
|
#if wxUSE_COLOURDLG
|
|
|
|
|
1998-07-10 14:15:17 +00:00
|
|
|
#if defined(__WXMSW__)
|
2001-07-05 01:26:15 +00:00
|
|
|
#include "wx/msw/colordlg.h"
|
|
|
|
#else
|
|
|
|
#include "wx/generic/colrdlgg.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-07-05 01:26:15 +00:00
|
|
|
#define wxColourDialog wxGenericColourDialog
|
|
|
|
#define sm_classwxColourDialog sm_classwxGenericColourDialog
|
1998-11-08 22:35:18 +00:00
|
|
|
#endif
|
|
|
|
|
2000-02-08 01:08:51 +00:00
|
|
|
// get the colour from user and return it
|
2001-07-05 01:26:15 +00:00
|
|
|
wxColour WXDLLEXPORT
|
|
|
|
wxGetColourFromUser(wxWindow *parent = (wxWindow *)NULL,
|
|
|
|
const wxColour& colInit = wxNullColour);
|
|
|
|
|
|
|
|
#endif // wxUSE_COLOURDLG
|
2000-02-08 01:08:51 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_COLORDLG_H_BASE_
|