I have my own theme definition:

  title : "My",

  meta :
  {
    color : qx.theme.classic.Color,
    decoration : qx.theme.classic.Decoration,
    font : qx.theme.classic.Font,
    appearance : letel.theme.Appearance,
    icon : qx.theme.icon.Oxygen
  }

letel.theme.Appearance:

qx.Theme.define("letel.theme.Appearance",
{
  extend : qx.theme.classic.Appearance,
  appearances :
  {
    "app-header" :
    {
      style : function(states)
      {
        return {
          font : "bold",
          textColor : "text-selected",
          padding : [8, 12],
          backgroundColor: '#223651'
        }
      }
    }

  }
});

relevant part of config.json:

   "include" :
      [

        "${APPLICATION}.Application",

        "${QXTHEME}"

      ],

      "settings" :
      {
        "qx.version"         : "alpha",
        "qx.application"     : "${APPLICATION}.Application",
        "qx.theme"             : "${QXTHEME}",
        "qx.icontheme"        : "Tango"
      },
        "themes" :
        {
              "qx.icontheme" : ["Tango", "Oxygen"],
              "qx.theme"     : ["Classic"]
        }

No warning and QXTHEME is defined.


2008/9/9 Sebastian Werner <[EMAIL PROTECTED]>

> A small check list:
>
> * Any warnings on the console regarding qx.icontheme?
> * Is this a custom config.json? Do you have a include directive for
> your Application class?
> * The arrows from the selectbox are named "decorations". These are
> normally included with the decoration theme you select.
> * Is the macro QXTHEME  configured?
>
> The generator also has a verbose option "-v". Maybe it gives you some
> more useful information.
>
> Sebastian
>
>
>
> Am 09.09.2008 um 23:07 schrieb Guilherme Aiolfi:
>
> > hi,
> >
> > do I need to do something else to get the right resources copied to
> > the build/resources on a "generate.py build"?
> >
> > Even icons from the qooxdoo widgets are missing in my build version.
> > The arrows from selectboxes are missing, for example.
> >
> > I have in the Application.js:
> >
> > #asset(qx/icon/${qx.icontheme}/16/*)
> >
> > this should copy all icons 16x16 to the build/resource, right?
> >
> >  but only "office-calendar.png" is being copied to build/resource/
> > icon/Oxygen/16/apps (just an example).
> >
> > --
> > Guilherme
> >
> >
> > -------------------------------------------------------------------------
> > This SF.Net email is sponsored by the Moblin Your Move Developer's
> > challenge
> > Build the coolest Linux based applications with Moblin SDK & win
> > great prizes
> > Grand prize is a trip for two to an Open Source event anywhere in
> > the world
> >
> http://moblin-contest.org/redirect.php?banner_id=100&url=/_______________________________________________
> > qooxdoo-devel mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
>
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to