]> Dogcows Code - chaz/openbox/blobdiff - otk/rendertest.cc
kill some whitespace
[chaz/openbox] / otk / rendertest.cc
index c9226b1f5560b5c094c423ee803cd69b3c19d902..b3a03a03b9b53c50f55b09aa0b42fec50e1e94cf 100644 (file)
@@ -1,7 +1,14 @@
+#include "config.h"
+
 #include "otk.hh"
 #include "rendercontrol.hh"
+#include "rendertexture.hh"
+
+extern "C" {
+#include <X11/Xlib.h>
+}
 
-#include <stdio.h>
+#include <cstdio>
 
 int main(int argc, char **argv)
 {
@@ -10,16 +17,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.020587 seconds and 4 git commands to generate.