• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/classic/
1/////////////////////////////////////////////////////////////////////////////
2// Name:        wx/mac/classic/colordlg.h
3// Purpose:     wxColourDialog class. Use generic version if no
4//              platform-specific implementation.
5// Author:      Stefan Csomor
6// Modified by:
7// Created:     1998-01-01
8// RCS-ID:      $Id: colordlg.h 37164 2006-01-26 17:20:50Z ABX $
9// Copyright:   (c) Stefan Csomor
10// Licence:     wxWindows licence
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef _WX_COLORDLG_H_
14#define _WX_COLORDLG_H_
15
16#include "wx/defs.h"
17#include "wx/dialog.h"
18#include "wx/cmndata.h"
19
20/*
21 * Platform-specific colour dialog implementation
22 */
23
24class WXDLLEXPORT wxColourDialog: public wxDialog
25{
26DECLARE_DYNAMIC_CLASS(wxColourDialog)
27public:
28    wxColourDialog();
29    wxColourDialog(wxWindow *parent, wxColourData *data = NULL);
30
31    bool Create(wxWindow *parent, wxColourData *data = NULL);
32
33    int ShowModal();
34    wxColourData& GetColourData() { return m_colourData; }
35
36protected:
37    wxColourData        m_colourData;
38    wxWindow*           m_dialogParent;
39};
40
41#endif
42    // _WX_COLORDLG_H_
43