Topic: Editor Skin Mochup

Started toying with a theme for the editor or the gui in general.

So what do you think?

http://i43.tinypic.com/2dw75g.png

Last edited by zester (2012-01-14 01:44:21)

Re: Editor Skin Mochup

Nice! Quite stylish.

Waiting for more updates.

Re: Editor Skin Mochup

rodolfo wrote:

Nice! Quite stylish.

Waiting for more updates.


I am working on extending MGui so you could use TinyXML to read something like ...

<?xml version="1.0"?>
<Widget id="MainWindow">
        <Widget id="PushButton1">Button</Widget>
</Widget>

And then use Json to style it.

{
      "#MainWindow": {
          "background-color": "#000000ff",
          "border-width": "1",
          "border-style": "dotted",
          "border-color": "#00000000",
          "padding": "5",
          "x": "0",
          "y": "0",
          "r": "0",
          "width": "100",
          "height": "50"
      }
}

I have different paint systems working for those who want to use them
currently (Cairo and QtArthur(Vector and Raster Painter & Svg ))

I am still trying to get Skia and AGG and Fog Framework to work.

In future I hope to have dynamic texture painting in Maratis

Re: Editor Skin Mochup

Hi, I was just curious how things were going on your project.