initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
115
libs/wxWidgets-3.3.1/include/wx/osx/dvrenderer.h
Normal file
115
libs/wxWidgets-3.3.1/include/wx/osx/dvrenderer.h
Normal file
@@ -0,0 +1,115 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/osx/dvrenderer.h
|
||||
// Purpose: wxDataViewRenderer for OS X wxDataViewCtrl implementations
|
||||
// Author: Vadim Zeitlin
|
||||
// Created: 2009-11-07 (extracted from wx/osx/dataview.h)
|
||||
// Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_OSX_DVRENDERER_H_
|
||||
#define _WX_OSX_DVRENDERER_H_
|
||||
|
||||
class wxDataViewRendererNativeData;
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// wxDataViewRenderer
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class WXDLLIMPEXP_ADV wxDataViewRenderer : public wxDataViewRendererBase
|
||||
{
|
||||
public:
|
||||
// constructors / destructor
|
||||
// -------------------------
|
||||
|
||||
wxDataViewRenderer(const wxString& varianttype,
|
||||
wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
|
||||
int align = wxDVR_DEFAULT_ALIGNMENT);
|
||||
|
||||
virtual ~wxDataViewRenderer();
|
||||
|
||||
// inherited methods from wxDataViewRendererBase
|
||||
// ---------------------------------------------
|
||||
|
||||
virtual int GetAlignment() const override
|
||||
{
|
||||
return m_alignment;
|
||||
}
|
||||
virtual wxDataViewCellMode GetMode() const override
|
||||
{
|
||||
return m_mode;
|
||||
}
|
||||
virtual bool GetValue(wxVariant& value) const override
|
||||
{
|
||||
value = m_value;
|
||||
return true;
|
||||
}
|
||||
|
||||
// NB: in Carbon this is always identical to the header alignment
|
||||
virtual void SetAlignment(int align) override;
|
||||
virtual void SetMode(wxDataViewCellMode mode) override;
|
||||
virtual bool SetValue(const wxVariant& newValue) override
|
||||
{
|
||||
m_value = newValue;
|
||||
return true;
|
||||
}
|
||||
|
||||
virtual void EnableEllipsize(wxEllipsizeMode mode = wxELLIPSIZE_MIDDLE) override;
|
||||
virtual wxEllipsizeMode GetEllipsizeMode() const override;
|
||||
|
||||
// implementation
|
||||
// --------------
|
||||
|
||||
const wxVariant& GetValue() const
|
||||
{
|
||||
return m_value;
|
||||
}
|
||||
|
||||
wxDataViewRendererNativeData* GetNativeData() const
|
||||
{
|
||||
return m_NativeDataPtr;
|
||||
}
|
||||
|
||||
// a call to the native data browser function to render the data;
|
||||
// returns true if the data value could be rendered, false otherwise
|
||||
virtual bool MacRender() = 0;
|
||||
|
||||
void SetNativeData(wxDataViewRendererNativeData* newNativeDataPtr);
|
||||
|
||||
void OSXUpdateAlignment();
|
||||
|
||||
#if wxOSX_USE_COCOA
|
||||
// called when a value was edited by user
|
||||
virtual void OSXOnCellChanged(NSObject *value,
|
||||
const wxDataViewItem& item,
|
||||
unsigned col);
|
||||
|
||||
protected:
|
||||
virtual void SetAttr(const wxDataViewItemAttr& attr) override;
|
||||
virtual void SetEnabled(bool enabled) override;
|
||||
#else
|
||||
protected:
|
||||
void SetAttr(const wxDataViewItemAttr& WXUNUSED(attr)) override { };
|
||||
void SetEnabled(bool WXUNUSED(enabled)) override { };
|
||||
#endif
|
||||
|
||||
virtual bool IsHighlighted() const override;
|
||||
|
||||
private:
|
||||
// contains the alignment flags
|
||||
int m_alignment;
|
||||
|
||||
// storing the mode that determines how the cell is going to be shown
|
||||
wxDataViewCellMode m_mode;
|
||||
|
||||
// data used by implementation of the native renderer
|
||||
wxDataViewRendererNativeData* m_NativeDataPtr;
|
||||
|
||||
// value that is going to be rendered
|
||||
wxVariant m_value;
|
||||
|
||||
wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRenderer);
|
||||
};
|
||||
|
||||
#endif // _WX_OSX_DVRENDERER_H_
|
||||
|
||||
Reference in New Issue
Block a user