statistics
People Online: 14
Today's Visitors: 332
Total Visitors: 3,793,884
May 23, 2012, 11:25:12 AM
Shoutbox
   
 
[DevTeam] [Zeke]: I love that I get emailed when someone reports spam on the boards, but I can't do anything about it.
[DevTeam] [Nachonut]: lol i got you
[DevTeam] [Astaldo]: How about "hide email address from public checked" and it's still visible in all my posts...
[DevTeam] [Astaldo]: I'd delete my account on this site, but by the time I realized the problem half the spambots on the planet had it already
[Developer] [Pazza]: Astaldo if you log out and view your profile with a refresh you'll see that your email is hidden.
[Developer] [Pazza]: Your user level on the forums permit you to see emails even though they are marked hidden.
[DevTeam] [Astaldo]: Ah.. thanks for the clarification and apologies for "crying wolf" in that case :
[DevTeam] [Kaidenn]: PAZZA! i miss you.
[DevTeam] [Nachonut]: Lol, it's funny how it takes spam message reports to get me to come back
[DevTeam] [sylvanaar]: Check out the beta tester forum. Need alpha testers and feedback so I can come up with a maintenance plan.
[Developer] [Pazza]: loaded some new spam prevention modules... lets see if this stops the bastards.
[DevTeam] [Maziel]: Thought I'd check in and say Howdy Doody from Australia
[DevTeam] [Maziel]: Yeah the spam from shoes salesmen was becoming insane
[Guest] [Delakando]: What ever happened to the ability to track friend's location by wim? Other then just showing their general zone location.
Zeke pokes his head around the corner.
[DevTeam] [Zeke]: Anybody home?
[Guest] [Theillur]: I would like to know if it is just me.
[Guest] [Theillur]: http://www.wimaddon.com/forums/index.php/topic,1796.0.html
[Guest] [Nev]: I'm here
[Guest] [Nev]: I don't think anyone else is though
[Guest] [tomasio]: great site [url=http://freeonlinemusicvideos.net].[/url] [url=http://freepeopleclothing.org].[/url]
[Guest] [Theillur]: Nev it is not working for Zeke as well.
[DevTeam] [lothaer]: im here
[DevTeam] [lothaer]: ...
lothaer yawns sleepily.
[DevTeam] [lothaer]: sooooooooooooooooo
[Guest] [j3ff]: Hello. It is very quiet. I would love a response to my thread directly below your "Been very quiet" thread!
[DevTeam] [lothaer]: Check out my new post in the Skins forum
[DevTeam] [lothaer]: Posted a new download in the skins forum check it out
[DevTeam] [lothaer]: Zeke, Maziel, Pazza, Nachonut, sylvanaar, Kaidenn, Astaldo where are you?
[DevTeam] [lothaer]: It would be a real shame if WIM was left to die.
[DevTeam] [lothaer]: i think these forums are dead, Sylvanaar dosnt post on them as he only bug fixes when possible. WIMs future isnt very bright
[Guest] [justgiz]: Yea, its rather sad.
[Guest] [silvercola]: I wish it had skype
[DevTeam] [lothaer]: noy possible for a addon to do.
[DevTeam] [lothaer]: ...........
[Guest] [elzershark]: where is the download file?
lothaer beckons everyone over to you.
[DevTeam] [lothaer]: has anyone been able to take WIM to the beta yet?
[DevTeam] [lothaer]: PTR*
[DevTeam] [Maziel]: *sticks head up and looks around*
lothaer cries.
[DevTeam] [lothaer]: who the hell flagged my post as spam?
[Guest] [primalforce]: Hey guys
[DevTeam] [lothaer]: hello Primalforce.
[DevTeam] [lothaer]: PAZZA COME BACK!!!
[DevTeam] [Nachonut]: Ahhh memories
[Guest] [Ignis]: wtb update
[DevTeam] [lothaer]: soooo.....
Pazza starts to complain... Kinda reminds you of Sloans dont it?
 
   
   
News: World of Warcraft v4.0.1
 
Pages: [1]
Print
Author Topic: Frame Toplevel - Window lapping  (Read 867 times)
Trysor
Newbie
*

Karma: +0/-0
Offline Offline

Posts: 2


View Profile
« on: June 07, 2007, 11:16:57 AM »

Hello!

I thought of a window lapping feature, as I wrote of on the curse forums.

The Feature Request
The main thing about this feature, is that the windows no longer interfare with frame strata (always being on the same layer of your UI). With this option, you can just click on the window / box, and it overlaps the other frames / windows / boxes with this option enabled.

Lets show an example:
You're at the Auction House. You search for something on AH and while scrolling down the massive lists of leather, you get a whisper. But because the AH box is so big, and you have chosen to disable the WIM option "Keep windows on top", you can't find the WIM whisper box as it appeared behind the Auction House window.

Facts
All frames with Toplevel == 1 appear above of everything with framestrata (main level of the object) equal or lower than the frame itself. This means that, if we follow my example, the WIM Whisper box appear above the AH window, and above all frames and objects that have FrameStrata > WIM Whisper Box Strata.

A suggestion
Let the options frame always have this option enabled. This helps people get other things above this frame again (for example, a you get a whisper and WIM opens up a new chat box). This is easily fixed, by doing this (line 5 in WIM_Options.xml).

Code:

<Frame name="WIM_Options" movable="true" enableMouse="true" Toplevel="true" parent="UIParent" hidden="true" clampedToScreen="true">
 

An example of the Chat box code
Around line 1013 in WIM.lua

Code:
if (WIM_Data.windowOnTop == 1) then
             theWin:SetFrameStrata("DIALOG");
             WIM_TabStrip:SetFrameStrata("DIALOG");

             theWin:SetToplevel(0);
             WIM_TabStrip:SetToplevel(0);

elseif (WIM_Data.windowOnTop == 2) then
         theWin:SetFrameStrata("MEDIUM");
         WIM_TabStrip:SetFrameStrata("MEDIUM");

         theWin:SetToplevel(1);
         WIM_TabStrip:SetToplevel(1);
elseif (WIM_Data.windowOnTop == 0) then
         theWin:SetFrameStrata("LOW");
         WIM_TabStrip:SetFrameStrata("LOW");

         theWin:SetToplevel(0);
         WIM_TabStrip:SetToplevel(0);
end

This means that the variable you use to save the "Keep windows on top." checkbutton must return either of the values 0, 1 or 2.

That is just an example on how you can fix it, but i think you understand what my request is by now.
Thanks!

Regards,
Trysor
Creator of MusicPlayer
Grim Batol - EU
Logged
Pazza
Administrator
Hero Member
*****

Karma: +89/-15
Offline Offline

Posts: 1375


Effin A


View Profile WWW
« Reply #1 on: June 07, 2007, 01:42:58 PM »

Thanks. I will review this later. I am going to be out of town for the next week. Damn job is sending me to DC again. DC = Boring conferences.
Logged

My hobbies consume way too much time :-).
Trysor
Newbie
*

Karma: +0/-0
Offline Offline

Posts: 2


View Profile
« Reply #2 on: June 08, 2007, 04:15:47 AM »

No problem mate! Good luck with your conferences, and keep up the good work!

Trysor
Logged
Pazza
Administrator
Hero Member
*****

Karma: +89/-15
Offline Offline

Posts: 1375


Effin A


View Profile WWW
« Reply #3 on: August 22, 2007, 10:53:55 PM »

I believe things are working in my developement version as you requested. I guess we'll see once it is release :-)

- DONE -
Logged

My hobbies consume way too much time :-).
Pages: [1]
Print
Jump to:  

You must be logged in to send a message to the shout box.
     
  test stamp