Download
(32 Kb)
Download
Updated: 10-08-12 05:37 AM
Pictures
File Info
Updated:10-08-12 05:37 AM
Created:09-21-12 10:42 AM
Downloads:371
Favorites:13
MD5:
Docker
Version: 1.10r4
by: adelea [More]
Docker is a container for minimap icons.

If the icon is gray, it is unlocked and moveable. Click and hold the icon and move it to position.

Click the right button whilst holding the left to toggle lock status.

Once locked, right click on icon opens options popup.

* Arrow - click this toggles orientation of stack
* Aa - this toggles display of labels (always off when orientation is horizontal)
* Page - this toggles the autohide display
* Cloud - this toggles between FLOAT mode and BAR mode

* Using the mousewheel on the icon will scale the size of the icons in the dock.

If it is locked, then moving the mouse over it, will display a popup window containing all the docked icons from compatible addons.

In BAR mode:
- if unlocked, then the icons can be dragged around screen and will snap to one of 3 zones : Top/Center/Bottom (or Left/Center/Right)
- Icons dragged to these locations will remember their locations and remain there.
- The growth direction arrow indicates which edge of the screen to attach to

ADDON AUTHORS: See the included INFORMATION.txt on how to add support into your addon.

ADDON AUTHORS: 1.10r3 added an extra OPTIONAL parameter to the register function. See INFORMATION.txt for details.
1.10r4
- Removed code to reposition offscreen icons - was moving icons when global UI scale <> 1
+ Added command line /docker reset - to reset them instead
1.10r3
* Updated API with optional 3rd parameter (function to close any opened windows)
* Added new icon - cloud - toggles between FLOAT mode (can be repositioned on screen) to BAR mode - locks to an edge of the screen.
In BAR mode:
- if unlocked, then the icons can be dragged around screen and will snap to one of 3 zones : Top/Center/Bottom (or Left/Center/Right)
- Icons dragged to these locations will remember their locations and remain there.
- The growth direction arrow indicates which edge of the screen to attach to

1.10r2
* Changed mousebuttons around
* Hold left + Click right - toggles locked status
* If unlocked, can be dragged around by holding left and moving
* If locked, right click opens options popup
* Added options popup
1.10rb1
* Changed internal name to MINIMAPDOCKER from __DOCKER
* Exposed variable MINIMAPDOCKER.AUTOHIDE_DOCKED - set to false if you need to keep dock open, set to true when done
Archived Files (6)
File Name
Version
Size
Author
Date
1.10r4
32kB
adelea
10-08-12 05:35 AM
1.10r3
32kB
adelea
10-05-12 06:46 AM
1.10r2
26kB
adelea
09-22-12 11:05 AM
1.10r2
27kB
adelea
09-22-12 08:16 AM
1.10r1b1
3kB
adelea
09-21-12 01:24 PM
1.10r1
3kB
adelea
09-21-12 10:42 AM


Post A Reply Comment Options
Old 05-20-13, 02:38 AM  
adelea
Claw of Regulos
AddOn Author - Click to view AddOns

Forum posts: 16
File comments: 217
Uploads: 6
Re: Docs?

Quote:
Originally Posted by Valethar
Is there any documentation for this addon? Besides what's on the description page?

The icon for Docker vanished on one of my characters, and I can't figure out how to get it to reappear. The 'docker reset' command doesn't recall it, and even deleting the Docker information from my addons folder for that character doesn't make it reappear either.

I'm sure there are probably other / commands, but I've no idea what they'd be, and there's nothing in the ZIP file itself.
There is one slash command:

/docker reset

Which attempts to reposition the icon if it is offscreen - though looking at the code, it doesnt move it at that point, so a /reloadui would be needed.

Failing that:

/script Docker_Settings = nil
/reloadui

That should clear out all settings back to the defaults.

I have to admit I dont like the way I handled the configuration in Docker - and its on my list of things to redo.
adelea is offline Report comment to moderator  
Reply With Quote
Old 05-19-13, 05:29 PM  
Valethar

Forum posts: 0
File comments: 2
Uploads: 0
Docs?

Is there any documentation for this addon? Besides what's on the description page?

The icon for Docker vanished on one of my characters, and I can't figure out how to get it to reappear. The 'docker reset' command doesn't recall it, and even deleting the Docker information from my addons folder for that character doesn't make it reappear either.

I'm sure there are probably other / commands, but I've no idea what they'd be, and there's nothing in the ZIP file itself.
Valethar is offline Report comment to moderator  
Reply With Quote
Old 10-05-12, 07:03 AM  
adelea
Claw of Regulos
AddOn Author - Click to view AddOns

Forum posts: 16
File comments: 217
Uploads: 6
Quote:
Originally Posted by porsche
Quote:
Originally Posted by adelea
If you can think of a better way to do this, then I welcome the suggestions!
What about leaving transparent space at the top/side of the popout stack so you can move clearly out one addon that popped open (hopefully catching your mouseout) and then down into the other beside it. Alternatively, make the docker button be a toggle versus a transient. ie. click once to show the stack/icons, click a 2nd time to close it.
What happens with 1.10r3 and IF the addon supports it (Teleporter and Rifter do), when you mouseover a different docked icon, it will try and close any existing popups.
adelea is offline Report comment to moderator  
Reply With Quote
Old 10-01-12, 08:44 PM  
porsche

Forum posts: 0
File comments: 10
Uploads: 0
Quote:
Originally Posted by adelea
If you can think of a better way to do this, then I welcome the suggestions!
What about leaving transparent space at the top/side of the popout stack so you can move clearly out one addon that popped open (hopefully catching your mouseout) and then down into the other beside it. Alternatively, make the docker button be a toggle versus a transient. ie. click once to show the stack/icons, click a 2nd time to close it.
porsche is offline Report comment to moderator  
Reply With Quote
Old 10-01-12, 09:21 AM  
adelea
Claw of Regulos
AddOn Author - Click to view AddOns

Forum posts: 16
File comments: 217
Uploads: 6
Quote:
Originally Posted by porsche
Would be nice if going from one item to another hid the previous one. Two open subitems at once is hugely confusing and awkward.
The behaviour of the popups is down to the addons themselves, not docker.

However, since the only released addons that suppport it are mine, I can do something about it - but what?

The API that handles MouseIn/Out is sort of broken - if you have a window with some icons on it, then moving over the icon causes a mouseOUT event for the parent window.

This makes detecting the mouse leaving the window a non-trivial exercise, so what I end up doing is using something else to see if the mouse pointer is still inside the box area, and hide the popup if it isnt - that means if you move the mouse in such a way as to open two, that overlap, then there will be common area that covers both.

If you can think of a better way to do this, then I welcome the suggestions!
adelea is offline Report comment to moderator  
Reply With Quote
Old 09-30-12, 08:47 PM  
porsche

Forum posts: 0
File comments: 10
Uploads: 0
Would be nice if going from one item to another hid the previous one. Two open subitems at once is hugely confusing and awkward.
porsche is offline Report comment to moderator  
Reply With Quote
Old 09-25-12, 08:18 PM  
Tarien

Forum posts: 0
File comments: 15
Uploads: 0
So I see you went and did it

Nice work! Hope this catches on.
Tarien is offline Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: