J
--
Vincent Vandenschrick
> Le 9 mai 2015 à 11:17, slah a écrit :
>
> JSPresso:
> "12 allée du Chien qui Fume" hh
> it remembers me "La société des vaches vièrges" a sample data I put and made
> my customer lough during demo.
>
>
>
>
> --
> View this message in context:
> http://qooxd
JSPresso:
"12 allée du Chien qui Fume" hh
it remembers me "La société des vaches vièrges" a sample data I put and made
my customer lough during demo.
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/Theming-tp7587082p7587132.html
Sent from the qooxdoo mailing list archive
This is what I fear since I don't have that luxury in qx-typed since the
qooxdoo.js file is already minified. I will try to request jbaron to
release qx-typed un-minified.
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/Theming-tp7587082p7587131.html
Sent from the qooxdoo ma
Hi Chris,
I'm very curiuos about your clean way which should find its way into
qooxdoo core as this is the way to go.
Thank you for sharing this with us.
Regarding my project: I'm not in hurry, so I can wait until you publish
your code.
Thank you for that.
Dietrich
Am 07.05.2015 um 19:34 sch
I'm definitely *very* interested about the clean way of using icon fonts in
place of image icons on qooxdoo components. So I'll stay tuned ;-)
> Le 7 mai 2015 à 19:34, SQville a écrit :
>
> My theme will have you covered there too Dietrich. I use Font Icons in my
> mobile apps so i figured out
So that looks like it gets the class in the ball park. Now get it playing out
on the field by mixing it into the qx Decorator class:
Add this to your Application code (this adds the "transition" property to
the Decorator qx class):
qx.Class.include(qx.ui.decoration.Decorator, JspressoMTransition
My theme will have you covered there too Dietrich. I use Font Icons in my
mobile apps so i figured out a way to do it in desktop too.
There's a dirty way to incorporate font icons into a desktop app and then
there's the clean way. I have the clean way figured out. Give me some time
and I'll post c
Thank you for your reply. I do not use generate.py as I'm using TypeScript
and qooxdoo at https://github.com/jbaron/cats. I created this function:
export function initFocusDecorator() {
/*
* Copyright (c) 2005-2015 Vincent Vandenschrick. All rights
reserved.
*
Really nice!
I'm searching for a simple flat theme for a coming project.
I've also seen the work of Chris (SQville) which also seems to be very
clear and flat.
The crowning touch would be able to use Font Awsome or similar as icons
(http://fortawesome.github.io/Font-Awesome/icons/).
Am 07.0
Hi Dietrich,
Sure, you can test-drive a very simple Jspresso demo app with new theme here
(log in with demo/demo):
http://www.jspresso.org/hrsample-webapp/html5
Feel free to play around; it's an in-memory db and the server is restarted
every 15 minutes, so you can just go and break everything :
Hi Vincent!
Do you have any demo of your theme publicly online?
Sounds very impressive and interesting!
Regards
Dietrich
Am 05.05.2015 um 22:03 schrieb Vincent Vandenschrick:
> Thank you Chris,
> I've applied your patch to mine.
>
>
>
Thank you Chris,
I've applied your patch to mine.
> Le 5 mai 2015 à 21:20, SQville a écrit :
>
> Vincent,
>
> add this to your Mixin to make it cross browser:
>
> // Transition
> var transitionpropName = qx.core.Environment.get("css.transition");
> transitionpropName = qx.bom.Style.getCssName
Vincent,
add this to your Mixin to make it cross browser:
// Transition
var transitionpropName = qx.core.Environment.get("css.transition");
transitionpropName = qx.bom.Style.getCssName(transitionpropName.name);
Then use the variable in your _styleTransition function:
styles[transitionpropName]
Tom,
it's super easy. Just add Vincent's one Mixin class to your project and
rename his mixin to anything. in his Mixin change:
qx.Mixin.define("org.jspresso.framework.patch.MTransition", {
to
qx.Mixin.define("toms.application.MTransition", {
Run generate.py source then add this one line of c
I wish there is an easier way to integrated that in my app too but I would
need to find a way of adding that "transition" property to the modern theme
without editing the source. Too bad I'm not a javascript/css/html guy so I
would have to stick with the basic modern theme for now.
--
View thi
I think we should start a Qooxdoo extension project.
Current Contrib is not organized and people rarely keep maintinaing.
How about we, the community do things that core qooxdoo do not have , but
all keep in a same repo (something like
https://github.com/borisyankov/DefinitelyTyped)
There we will
>From the responses of others, it looks like this is a very nice feature. I
would love to use it but what is the best method to use it? Do I need to
modify qx.theme.modern.Decoration.js to include the changes in the
"Transition" property?
--
View this message in context:
http://qooxdoo.678.n2
Hi George,
Great to hear about that. I must admit it has been a real surprise for me
either ;-)
> Le 1 mai 2015 à 18:51, George Nikolaidis a écrit :
>
> Vincent, thank you!
>
> We have integrated your wonderful patch in our soon to be released
> qx.Desktop application, I cannot overstate how
Vincent, thank you!
We have integrated your wonderful patch in our soon to be released
qx.Desktop application, I cannot overstate how much eye-candy it added
to its look and feel.
And yes, it works for everything - borders, backgrounds, sizes etc!
Regards,
--
George Nikolaidis (gnikolai...@e
Thank you Norbert,
And I've just discovered that it can work for almost anything! For instance,
I've used the collapsable panel in order to build an accordion. Styling it with
a "transition" makes the accordion sections smoothly close / open instead of
switching abruptly from one state to the o
Hello Vincent,
I've just tried your mixin. It works like a charm - and provides a good
starting point for further experimentation.
Thanks a lot for sharing,
Norbert
Am 29.04.2015 um 19:14 schrieb Vincent Vandenschrick:
Hi all,
For the record, I've succeeded in animating the focus by writin
Thats very nice ! good!
On Wed, Apr 29, 2015 at 11:44 PM, Vincent Vandenschrick
wrote:
> Hi all,
> For the record, I've succeeded in animating the focus by writing a simple
> Decorator mixin and then using the "transition" property in decorators for
> the focus state. Here is the source code :
>
Hi all,
For the record, I've succeeded in animating the focus by writing a simple
Decorator mixin and then using the "transition" property in decorators for the
focus state. Here is the source code :
https://github.com/jspresso/jspresso-ce/blob/master/qooxdoo/client/src/main/js/org/jspresso/fram
Thank you Norbert. That's what I thought, unfortunately.
--
Vincent Vandenschrick
> Le 27 avr. 2015 à 10:40, Norbert Schroeder a écrit :
>
> Hello Vincent,
>
> I'm not aware of any way to animate the focus change. As qooxdoo's animation
> capabilities in general are concerned there is still s
Hello Vincent,
I'm not aware of any way to animate the focus change. As qooxdoo's animation
capabilities in general are concerned there is still some room for
improvement...
Best regards,
Norbert
Vincent Vandenschrick schrieb am 27.04.2015 09:22:
> Thank you Norbert, that looks great. An ex
Thank you Norbert, that looks great. An extra question : is there a way,
through theming or app code itself, to animate the border focus change like
Bootstrap CSS does ?
Thanks again,
Vincent
> Le 27 avr. 2015 à 00:30, Norbert Schröder a écrit :
>
> Hi Vincent,
>
> here is a quick & dirty ex
Hi Vincent,
here is a quick & dirty example of how you could style a qooxdoo desktop
widget with a glowy border:
http://tinyurl.com/l9fyee4
As to your second question: you are right.
Best regards,
Norbert
Am 26.04.2015 um 16:24 schrieb Vincent Vandenschrick:
> Hi all,
> I'm trying to impr
Hi all,
I'm trying to improve the L&F of my qooxdoo applications and I wonder if there
is any possibility to mimic the "glowy" shadow border of twitter bootstrap css
focus borders using the qooxdoo desktop theming infrastructure (e.g.
http://getbootstrap.com/css/#forms-control-focus). Moreover,
In my case i had to add this
"interest-calculator-window": {
include: "window",
style: function(states) {
return {
width:500,
height:500
};
}
},
"interest-calculator-window/captionbar" :"window/captionbar",
"interest-calculator-win
HI,
I never digg to much into theming.
Today, i want to make a better usage of theming capabilities of qooxdoo.
My first issue is with the appearance of window.
I want to remove width and height definition from the class of my window.
And i want to define these size into my appearance.
Is that
Hey Tristan,
thank you for the quick reply. I reread the chapters twice again. I
think I understood the theming stuff a bit better now :-)
It works as you suggested. A simple alias was enough.
Best Regards,
Leo
On 04/05/2012 12:05 PM, Tristan Koch wrote:
> Hi Leo,
>
> you need to provide an
Hi Leo,
you need to provide an appearance for "fileprogress". Probably you just want to
map it to the appearance of the progress bar, using a child control alias. See
[1] and especially [2]
Regards
Tristan
[1] http://manual.qooxdoo.org/1.6.x/pages/gui_toolkit/ui_appearance.html
[2]
http://man
Hi,
sure, this link should work: http://preview.tinyurl.com/bq6qvly
Thanks!
On 04/04/2012 12:49 PM, Tristan Koch wrote:
> Hi Leo,
>
> the link you posted is broken. Could you please shorten it, for instance
> using tinyurl.com? Thanks!
>
> Am 01.04.2012 um 19:09 schrieb Leo von Klenze:
>
>> Hel
Hi Leo,
the link you posted is broken. Could you please shorten it, for instance using
tinyurl.com? Thanks!
Am 01.04.2012 um 19:09 schrieb Leo von Klenze:
> Hello,
>
> I've a problem with a progress bar in a complex widget. I wrote a small
> example to reproduce this issue:
> http://demo.qoox
Hello,
I've a problem with a progress bar in a complex widget. I wrote a small
example to reproduce this issue:
http://demo.qooxdoo.org/current/playground/#%7B%22code%22%3A%22qx.Class.define('test.ComplexWidget'%252C%2520%257B%250A%2520%2520%2520%2520extend%253A%2520qx.ui.core.Widget%252C%250A%2
2012/2/11 Norbert Schröder
> Your posting now reminded me of the problem, so I googled a bit and
> finally found this thread at stackoverflow.com:
>
> http://stackoverflow.com/questions/2043695/textareaselection-and-moz-selection
> .
> This was the essential hint, and I found a solution for Firef
Oh, yuck! This needs to be themable from within the qooxdoo appearance
system, especially if it's different by browser. Hopefully someone else
will reply that, "Oh yeah, qooxdoo already supports that. You just do..."
Otherwise, I'll create a bug report so this can get incorporated into the
appeara
Hi Derrell,
I had the same problem when I was developing the DarkTheme contribution,
and I posted a similar question to the mailing list some 1.5 years ago:
http://qooxdoo.678.n2.nabble.com/Qooxdoo-themes-td5510734.html#a5514201.
Since I never got any response regarding this particular theming
> thank you and now my next question
>
> the pats inside the themes like this
>
> "decoration/menu/bar-background.png"
>
> where is the startpath defined? how can i access my app folder ?
> myapp/..?!
The manual should answer all your questions. Maybe you start here:
http://manual.qooxdoo.org/cur
thank you and now my next question
the pats inside the themes like this
"decoration/menu/bar-background.png"
where is the startpath defined? how can i access my app folder ?
myapp/..?!
>
> On 10/27/2011 06:53 PM, smisobnline wrote:
>> Where are this defined
>>
>> qx.core.Environment.get("css.g
On 10/27/2011 06:53 PM, smisobnline wrote:
> Where are this defined
>
> qx.core.Environment.get("css.gradients"))
>
> css.gradients . what is t
See
http://manual.qooxdoo.org/1.5.x/pages/core/environment.html#pre-defined-environment-keys
> and how can i change it?
You can't. It's a detected
Where are this defined
qx.core.Environment.get("css.gradients"))
css.gradients . what is t and how can i change it?
Is it a color gradient?
--
The demand for IT networking professionals continues to grow, and the
dema
> in Appearance.js there are four entries defining the appearance of
Thanks, I saved the mail. Unfortunately I have way too much to do right now, so
I'll probably only be able to deal with this in the weekend again. I'll post
again if I have additional questions.
br,
flj
-
Hi.
> in Appearance.js there are four entries defining the appearance of ...
Thanks very much. I'll have a look. The problem is, right now I have way too
many things to do at the same time, so I won't be able to deal with this issue
again until the weekend, probably.
I saved the mail, and will
Hi flj,
in Appearance.js there are four entries defining the appearance of a
splitpane and its child controls (splitter, slider and knob). The
default splitter is defined in terms of width/height plus a background
color:
"splitpane/splitter" :
{
style : function(states)
{
return {
Hi.
I have to build a custom theme. I'm stuck with an issue: how can I modify the
appearance of splitters? According to the documentation, the splitter has no
specific appearance (its appearance is "widget"), and after spending a few
quite frustrating hours trying to set an appearance from code
Hello Matthew,
yes, null would als work, as we do a simple check like "if (decorator) ...
{} ". But we decided to use undefined anywhere in the qx.theme namespace, so
it would be convenient to stay with it. ;-)
Cheers
Jonathan
-
Jonathan Weiß
Framework Engineer
http://mysterycity.de/blog
Does undefined work? I would have thought null would be a better option?
Jonathan Weiß wrote:
> Hello Christian,
>
>
> overriding entries in your application's theme is the correct way to go. :-)
>
> What have you tried so far? You can remove a decorator by setting the value
> to undefined:
>
Hello Christian,
overriding entries in your application's theme is the correct way to go. :-)
What have you tried so far? You can remove a decorator by setting the value
to undefined:
qx.Theme.define("helloworld.theme.Appearance",
{
extend : qx.theme.modern.Appearance,
appearances :
{
Hello,
I am trying to get rid of the stylish gradient background image in the
toolbar and table headers which looks good in principle but gets old really
fast a complex UI with many toolbars and tables. I have experimented with
overriding entries in the Appeareance and Decoration classes in the "
Opened
http://bugzilla.qooxdoo.org/show_bug.cgi?id=2955
for this.
On Mon, Oct 19, 2009 at 10:14 AM, Christian Schmidt <
schmidt.christ...@1und1.de> wrote:
> Hi Jean-Noël,
>
> sorry, my mistake. You are right, this is really a bug. Setting the icon
> with the constructor should not make problems
Hi Jean-Noël,
sorry, my mistake. You are right, this is really a bug. Setting the icon
with the constructor should not make problems with using the appearance.
Could you please open a bug report for that and assign it to me.
Thanks,
Chris
Jean-Noël Rivasseau schrieb:
> Hi. I read all the docum
Hi. I read all the documentation 20 times, but this is not mentionned at
all, as it is quite specific :)
I repeat that I find it a strange behavior anyway - this is closer to a bug
IMHO.
Jean-Noel
On Fri, Oct 16, 2009 at 9:37 AM, Christian Schmidt <
schmidt.christ...@1und1.de> wrote:
> Hi Jean-
Hi Jean-Noël Rivasseau,
sorry, I haven't time to answer your question yesterday, but I see that
Matthew answered your question.
We have some documentation in our manual for theming:
http://qooxdoo.org/documentation/0.8/ui_appearance
http://qooxdoo.org/documentation/0.8/ui_custom_themes
http://qo
Yes, that works! Thanks for the help, you are really saving me on this. This
behavior is a bit strange for me, why does Qx act this way? At the very
least, shouldnt that be documented somewhere?
On Thu, Oct 15, 2009 at 5:55 PM, Matthew Gregory <
matthew+qoox...@nogsnet.com > wrote:
> You are sett
You are setting the icon inside the constructor for your page. If you
provide a custom icon in this way the icon from the theme is always
ignored. Try removing the icon from the constructor and use this in your
appearance:
return {"icon": states.hovered ? "common/margins-active.png" :
"commo
Hmm, and by the way. This also fails to apply with a simple Image widget and
its "source" property set on the Appearance.js file.
Can someone tell me where is applied the result of a theme so that I can
troubleshoot? eg, the place where you use the map object returned by the
style function in Appe
Hi,
here is the code snippet, but I do everything the normal way:
var marginsPage = new qx.ui.tabview.Page(null, "common/try.png");
marginsPage.setAppearance("InsidePaneTabViewPage");
This is the appearance:
"InsidePaneTabViewPage/button":
{
style: f
Hi Jean-Noël,
this sounds strange. I'm not a appearance expert, but I will try to help.
Could you please send a code snipped how you set the appearance on the
widget? Could you also explain if all TabButtons should get the icon or
only some?
> Also, I was wondering if there was available a list
Hi,
I am trying to achieve the following: I have a button with an associated
icon (actually the button is a TabButton but I dont think this matters), and
I want the icon to change when the mouse hovers in the button. I tried the
following:
"ParentAppearanceId/button":
{
Hi Mustafa,
if I understood, you want to use the modern theme with the icons from
the classic them?
Regards,
Chris
Mustafa Sak schrieb:
> Hi,
>
> i want to set the icon set from Tango to Oxygen. But i cannot, why?
>
> I am using this,
>
> qx.Class.define("radial.Application",
> {
> exte
Hi Mustafa,
Mustafa Sak wrote:
> But why is this not documented? I tried to set
> qx.theme.manager.Icon.setTheme(qx.theme.icon.Oxygen), with out success. I
> would never imagin to use getInstance. And could not find any example.
>
> qooxdoo is grade, but sometimes i feel like playing puzzle.
T
>
> But why is this not documented? I tried to set
> qx.theme.manager.Icon.setTheme(qx.theme.icon.Oxygen), with out success. I
> would never imagin to use getInstance. And could not find any example.
>
>
qx.theme.manager.Icon is a singleton (and the API defines it as such too).
This mean that one a
.
qooxdoo is grade, but sometimes i feel like playing puzzle.
regards Mustafa
qooxdoo weiter
Von: Mustafa Sak
Gesendet: Fr 16.01.2009 18:00
An: qooxdoo-devel@lists.sourceforge.net
Betreff: [qooxdoo-devel] Theming
Hi,
i want to set the icon set from Tango to
Hi,
i want to set the icon set from Tango to Oxygen. But i cannot, why?
I am using this,
qx.Class.define("radial.Application",
{
extend : qx.application.Standalone,
members :
{
main : function()
{
this.base(arguments);
...
}
}
});
qx.Theme.define("qx.theme.Modern",
{
meta :
2008/11/21 Derrell Lipman <[EMAIL PROTECTED]>
> On Fri, Nov 21, 2008 at 6:32 AM, Petr Kobalíček <[EMAIL PROTECTED]>wrote:
>
>> Hi devs,
>>
>> is it possible to theme tree box like that's in qooxdoo 0.7 ? I mean
>> tree lines, not only buttons.
>>
>>
> Hi Petr,
>
> Fabian has it on his todo list to
On Fri, Nov 21, 2008 at 6:32 AM, Petr Kobalíček <[EMAIL PROTECTED]>wrote:
> Hi devs,
>
> is it possible to theme tree box like that's in qooxdoo 0.7 ? I mean
> tree lines, not only buttons.
>
>
Hi Petr,
Fabian has it on his todo list to add the ability to have tree lines to Tree
when the Classic
Hi devs,
is it possible to theme tree box like that's in qooxdoo 0.7 ? I mean
tree lines, not only buttons.
I tried to debug tree theming and there are no informations about these lines.
Cheers
- Petr
-
This SF.Net email is
68 matches
Mail list logo