There are no longer any qt headers included in wx/qt headers. Applications do not need to link with qt librarys anymore, only wxqt libraries. wxWindow and derived widgets only contain one pointer to their qtwidget, no longer carrying both base and derived pointers in parallel as was before.
33 lines
808 B
C++
33 lines
808 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/qt/colordlg.h
|
|
// Author: Sean D'Epagnier
|
|
// Copyright: (c) Sean D'Epagnier 2014
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_QT_COLORDLG_H_
|
|
#define _WX_QT_COLORDLG_H_
|
|
|
|
#include "wx/dialog.h"
|
|
|
|
class QColorDialog;
|
|
|
|
class WXDLLIMPEXP_CORE wxColourDialog : public wxDialog
|
|
{
|
|
public:
|
|
wxColourDialog() { }
|
|
wxColourDialog(wxWindow *parent,
|
|
wxColourData *data = NULL) { Create(parent, data); }
|
|
|
|
bool Create(wxWindow *parent, wxColourData *data = NULL);
|
|
|
|
wxColourData &GetColourData();
|
|
|
|
private:
|
|
QColorDialog *GetQColorDialog() const;
|
|
|
|
wxColourData m_data;
|
|
};
|
|
|
|
#endif // _WX_QT_COLORDLG_H_
|