Search found 185 matches

by agamemnus
Sun Aug 15, 2010 20:22
Forum: Bug Reports, Suggestions, Feature Requests
Topic: EventMouseLeaves firing when a window is destroyed? [SOLVED]
Replies: 13
Views: 8350

Re: Should the mouse out event fire when a window is destroyed?

Dunno if anyone cares, but here's one fix that works for me. CEGUIWindowManager.cpp, line 221: if (wnd == CEGUI::System::getSingleton ().getWindowContainingMouse()) { MouseEventArgs ma(0); ma.window = wnd; ma.sysKeys = 0; ma.wheelChange = 0; ma.clickCount = 0; ma.button = NoButton; wnd->onMouseLeave...
by agamemnus
Sat Aug 14, 2010 17:13
Forum: Bug Reports, Suggestions, Feature Requests
Topic: EventMouseLeaves firing when a window is destroyed? [SOLVED]
Replies: 13
Views: 8350

Re: Should the mouse out event fire when a window is destroyed?

I see... so it's more of an automatic thing (chain of events) than something by design... maybe it should be by design.

I went through the destruction function and I still don't understand where it occurs... where does this all occur?
by agamemnus
Sat Aug 14, 2010 01:56
Forum: Bug Reports, Suggestions, Feature Requests
Topic: EventMouseLeaves firing when a window is destroyed? [SOLVED]
Replies: 13
Views: 8350

Re: Should the mouse out event fire when a window is destroyed?

Ok, it's no longer firing when I'm not moused over... that part must have been my bad. Still trying to figure out the detaching process, though. "CEGUI::System::updateWindowContainingMouse" doesn't do any detaching... I need to know where it does the detaching and where it calls the mousel...
by agamemnus
Sat Aug 14, 2010 01:37
Forum: Bug Reports, Suggestions, Feature Requests
Topic: American English / British English switch +
Replies: 16
Views: 11266

Re: American English / British English switch +

Kulik wrote:I am not getting down to your level, so I am quitting this thread... :lol: Have a nice day... You had enough hints, I guess you need a punch or a kick... :wink:

Translation: "I'll now read thoroughly what you say :lol: , so you win... take it up with CE." :wink:

:pint:

...
by agamemnus
Fri Aug 13, 2010 19:45
Forum: Bug Reports, Suggestions, Feature Requests
Topic: American English / British English switch +
Replies: 16
Views: 11266

Re: American English / British English switch +

Nobody is sharing code?? Have you seen the Wiki? Tutorials? Code snippets? The vast majority of the wiki/tutorials/code snippets don't even use strings, anyway. How it will be hard to keep up with releases? OK, please consider that somebody actually wants to add a new feature to CEGUI (not just cha...
by agamemnus
Fri Aug 13, 2010 16:18
Forum: Bug Reports, Suggestions, Feature Requests
Topic: EventMouseLeaves firing when a window is destroyed? [SOLVED]
Replies: 13
Views: 8350

Re: Should the mouse out event fire when a window is destroyed?

But that's just it. The "EventMouseLeaves"/mouseout event occurs even if the mouse is not hovering over the window! I just tested this. The event is only fired for the window that contained the mouse when destruction was initiated. I'll check again... perhaps it's called even if not mouse...
by agamemnus
Fri Aug 13, 2010 16:12
Forum: Bug Reports, Suggestions, Feature Requests
Topic: American English / British English switch +
Replies: 16
Views: 11266

Re: American English / British English switch +

Sharing CEGUI code snippets will be harder and it will create all sorts of weird bugs (subscribing to non existant events for example). It's a very simple difference. I don't really see people sharing code snippets here, unless they have a bug or issue. If they do, they can simply state whether the...
by agamemnus
Fri Aug 13, 2010 07:24
Forum: Bug Reports, Suggestions, Feature Requests
Topic: American English / British English switch +
Replies: 16
Views: 11266

Re: American English / British English switch +

10 people at IRC. They aren't here, though. :P Where's the link to the patch then? Nowhere. I said I'd start, which means I haven't started yet... and definitely wouldn't be close to any sort of patch any time soon. You're making your life much more difficult by obsessing over details like this... ...
by agamemnus
Fri Aug 13, 2010 03:53
Forum: Bug Reports, Suggestions, Feature Requests
Topic: American English / British English switch +
Replies: 16
Views: 11266

Re: American English / British English switch +

Frankly, others don't see this as a problem, and thus don't need it. Others, being everyone who posted here? So that's 2 people? So nobody is going to make define switches just for one man. In my first post, I actually offered to do this... As an alternative, you can change CEGUI sources yourself t...
by agamemnus
Thu Aug 12, 2010 23:56
Forum: Bug Reports, Suggestions, Feature Requests
Topic: American English / British English switch +
Replies: 16
Views: 11266

Re: American English / British English switch +

That's ridiculous. You better spend time on improving your app. You can't change the world and you don't want to. If everyone would be doing it, we won't get any standards. So it's Eddie who decides standards here. And you can't force. So live with it. Just like pissing every day. You'll like it, e...
by agamemnus
Thu Aug 12, 2010 18:16
Forum: Bug Reports, Suggestions, Feature Requests
Topic: American English / British English switch +
Replies: 16
Views: 11266

American English / British English switch +

I like consistency. The other parts that I am using from my program are based in American English, and I write in American English (and so will most of my customers), so I manually changed the CEGUI source code (using Notepad++) to American English--> centre to center, centred (or... idk) to centere...
by agamemnus
Thu Aug 12, 2010 17:49
Forum: Bug Reports, Suggestions, Feature Requests
Topic: EventMouseLeaves firing when a window is destroyed? [SOLVED]
Replies: 13
Views: 8350

Re: Should the mouse out event fire when a window is destroyed?

I see how a mouseout or "EventMouseLeaves" event makes sense if the mouse is actually over the window in question at the time that the window is removed! Yeah, this is correct, and is why the sequence occurs in the order that it does. I honestly do not consider this a bug, it's consistent...
by agamemnus
Thu Aug 12, 2010 02:39
Forum: Bug Reports, Suggestions, Feature Requests
Topic: More on tooltip vibration...
Replies: 7
Views: 6127

Re: More on tooltip vibration...

No, why would anyone ever want to update a tooltip _each frame_ anyways? 1) Just because you don't have a reason, or can't think of one, doesn't mean there isn't any. 2) I said " every second ", not each frame. However you are lucky, since CrazyEddie is a magician and can solve such probl...
by agamemnus
Wed Aug 11, 2010 17:39
Forum: Bug Reports, Suggestions, Feature Requests
Topic: EventMouseLeaves firing when a window is destroyed? [SOLVED]
Replies: 13
Views: 8350

Re: Should the mouse out event fire when a window is destroyed?

I'd also like to add that I see how a mouseout or "EventMouseLeaves" event makes sense if the mouse is actually over the window in question at the time that the window is removed!
by agamemnus
Wed Aug 11, 2010 06:25
Forum: Bug Reports, Suggestions, Feature Requests
Topic: Bug with slider extent.
Replies: 4
Views: 5238

Re: Bug with slider extent.

Thanks... I'll try it out, soonish.

Go to advanced search