I got it figured out now. I was always able to load themes so long as
they were in c:\camelbox but I wanted to bundle a theme with my app
and have the theme's files in my app's directory. Before, I couldn't
get my app to find the theme's engine .dll unless it was in c:
\camelboxlib\gtk-2.0\2.10.0\engines but after some research I found
out about the GTK_EXE_PREFIX environmental variable. In my apps
directory I copied lib\gtk-2.0\2.10.0\engines and share\themes from c:
\camelbox. This is what I ended up doing:
my $theme = "share\\themes\\MS-Windows\\gtk-2.0\\gtkrc";
$ENV{'GTK_EXE_PREFIX'} = ".";
Gtk2->init;
Gtk2::Rc->parse($theme);
Thanks for the response.
On Apr 19, 2:39 am, Brian Manning <
elspicyj...@gmail.com> wrote: