git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61068
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
+static const char * disc_triangle_xpm[] = {
+"10 9 4 1",
+" c None",
+". c #737373",
+"+ c #989898",
+"- c #c6c6c6",
+" .- ",
+" ..+- ",
+" ....+ ",
+" ......- ",
+" .......- ",
+" ......- ",
+" ....+ ",
+" ..+- ",
+" .- ",
+};
+
@implementation wxDisclosureNSButton
+ (void)initialize
@implementation wxDisclosureNSButton
+ (void)initialize
+ static wxBitmap trianglebm(disc_triangle_xpm);
if ( downArray.get() == NULL )
{
if ( downArray.get() == NULL )
{
- downArray.reset( [wxDisclosureNSButton rotateImage:[NSImage imageNamed:NSImageNameRightFacingTriangleTemplate]] );
+ downArray.reset( [wxDisclosureNSButton rotateImage:trianglebm.GetNSImage()] );
}
if ( isOpen )
[self setImage:(NSImage*)downArray.get()];
else
}
if ( isOpen )
[self setImage:(NSImage*)downArray.get()];
else
- [self setImage:[NSImage imageNamed:NSImageNameRightFacingTriangleTemplate]];
+ [self setImage:trianglebm.GetNSImage()];
}
+ (NSImage *)rotateImage: (NSImage *)image
}
+ (NSImage *)rotateImage: (NSImage *)image