• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/generic/

Lines Matching defs:wxGridCellAttr

65 class WXDLLIMPEXP_FWD_ADV wxGridCellAttr;
126 // in the grid. You may pass it to the wxGridCellAttr (below) to change the
143 wxGridCellAttr& attr,
151 wxGridCellAttr& attr,
165 wxGridCellAttr& attr,
173 wxGridCellAttr& attr,
183 const wxGridCellAttr& attr,
188 wxSize DoGetBestSize(const wxGridCellAttr& attr,
199 wxGridCellAttr& attr,
206 wxGridCellAttr& attr,
230 wxGridCellAttr& attr,
237 wxGridCellAttr& attr,
263 wxGridCellAttr& attr,
271 wxGridCellAttr& attr,
299 wxGridCellAttr* GetCellAttr() { return m_attr; }
300 void SetCellAttr(wxGridCellAttr* attr) { m_attr = attr; }
312 virtual void Show(bool show, wxGridCellAttr *attr = (wxGridCellAttr *)NULL);
316 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
368 wxGridCellAttr* m_attr;
397 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
536 virtual void Show(bool show, wxGridCellAttr *attr = NULL);
592 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
623 // wxGridCellAttr: this class can be used to alter the cells appearance in
628 class WXDLLIMPEXP_ADV wxGridCellAttr : public wxClientDataContainer
642 wxGridCellAttr(wxGridCellAttr *attrDefault = NULL)
650 // VZ: considering the number of members wxGridCellAttr has now, this ctor
652 wxGridCellAttr(const wxColour& colText,
664 wxGridCellAttr *Clone() const;
665 void MergeWith(wxGridCellAttr *mergefrom);
717 bool IsReadOnly() const { return m_isReadOnly == wxGridCellAttr::ReadOnly; }
721 void SetDefAttr(wxGridCellAttr* defAttr) { m_defGridAttr = defAttr; }
725 virtual ~wxGridCellAttr()
747 void Init(wxGridCellAttr *attrDefault = NULL);
765 wxGridCellAttr* m_defGridAttr;
772 DECLARE_NO_COPY_CLASS(wxGridCellAttr)
798 virtual wxGridCellAttr *GetAttr(int row, int col,
799 wxGridCellAttr::wxAttrKind kind ) const;
803 virtual void SetAttr(wxGridCellAttr *attr, int row, int col);
804 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
805 virtual void SetColAttr(wxGridCellAttr *attr, int col);
892 virtual wxGridCellAttr *GetAttr( int row, int col,
893 wxGridCellAttr::wxAttrKind kind );
897 virtual void SetAttr(wxGridCellAttr* attr, int row, int col);
898 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
899 virtual void SetColAttr(wxGridCellAttr *attr, int col);
1162 virtual void DrawCellHighlight( wxDC& dc, const wxGridCellAttr *attr );
1340 void SetAttr(int row, int col, wxGridCellAttr *attr);
1341 void SetRowAttr(int row, wxGridCellAttr *attr);
1342 void SetColAttr(int col, wxGridCellAttr *attr);
1348 wxGridCellAttr *GetOrCreateCellAttr(int row, int col) const;
1892 wxGridCellAttr *attr;
1899 void CacheAttr(int row, int col, wxGridCellAttr *attr) const;
1902 bool LookupAttr(int row, int col, wxGridCellAttr **attr) const;
1906 wxGridCellAttr *GetCellAttr(int row, int col) const;
1907 wxGridCellAttr *GetCellAttr(const wxGridCellCoords& coords )
1911 wxGridCellAttr* m_defaultCellAttr;