summaryrefslogtreecommitdiff
path: root/wx+/image_tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/image_tools.h')
-rw-r--r--wx+/image_tools.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/wx+/image_tools.h b/wx+/image_tools.h
index bfd107d0..79b15e3a 100644
--- a/wx+/image_tools.h
+++ b/wx+/image_tools.h
@@ -58,6 +58,8 @@ inline wxImage shrinkImage(const wxImage& img, int maxSize) { return shrinkImage
wxImage resizeCanvas(const wxImage& img, wxSize newSize, int alignment);
+wxImage rectangleImage(wxSize size, const wxColor& col);
+wxImage rectangleImage(wxSize size, const wxColor& innerCol, const wxColor& borderCol, int borderWidth);
bgstack15