Add missing methods in wxGridCellAttr

This commit is contained in:
Robin Dunn
2016-09-02 10:33:00 -07:00
parent 17bb46299e
commit 6988758648

View File

@@ -801,7 +801,10 @@ public:
Row,
/// Return the attribute set for this cells column.
Col
Col,
Default,
Merged
};
/**
@@ -978,6 +981,22 @@ public:
*/
void SetTextColour(const wxColour& colText);
void MergeWith(wxGridCellAttr *mergefrom);
void SetSize(int num_rows, int num_cols);
void SetOverflow(bool allow = true);
void SetKind(wxAttrKind kind);
bool HasReadWriteMode() const;
bool HasOverflowMode() const;
bool HasSize() const;
void GetSize(int *num_rows, int *num_cols) const;
bool GetOverflow() const;
wxAttrKind GetKind();
protected:
/**