]> Dogcows Code - chaz/openbox/blobdiff - otk/rendertest.cc
use otk objects in the ob scripts by importing otk
[chaz/openbox] / otk / rendertest.cc
index c9226b1f5560b5c094c423ee803cd69b3c19d902..484a08ffe601d508937f8a81634cc97c01db0355 100644 (file)
@@ -1,7 +1,9 @@
 #include "otk.hh"
 #include "rendercontrol.hh"
+#include "rendertexture.hh"
 
 #include <stdio.h>
+#include <X11/Xlib.h>
 
 int main(int argc, char **argv)
 {
@@ -10,16 +12,29 @@ int main(int argc, char **argv)
   otk::Application app(argc, argv);
   otk::AppWidget foo(&app);
   foo.resize(600, 500);
-  foo.show();
-  
-  otk::RenderControl *rc = otk::RenderControl::getRenderControl(0);
 
-  rc->render(foo.window());
+  otk::RenderColor color(0, 0x96, 0xba, 0x86);
+  otk::RenderColor color2(0, 0x5a, 0x72, 0x4c);
+  otk::RenderColor colord(0, 0, 0, 0);
+  otk::RenderColor colorl(0, 0xff, 0xff, 0xff);
+  otk::RenderTexture tex(false,
+                        otk::RenderTexture::Raised,
+                        otk::RenderTexture::Bevel1,
+                        false,
+                        otk::RenderTexture::Vertical,
+                        false,
+                        &color,
+                         &color2,
+                        &colord,
+                        &colorl,
+                        0,
+                        0);
+  foo.setTexture(&tex);
 
+  foo.show();
+  
   app.run();
 
-  delete rc;
-
   printf("\n");
   return 0;
 }
This page took 0.023711 seconds and 4 git commands to generate.