summaryrefslogtreecommitdiff
path: root/indra/newview/skins/default/xui/en/menu_marketplace_view.xml
blob: 6d31ff4960250b06579c4df3304d733453cbba39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu
 name="menu_group_plus"
 left="0" bottom="0" visible="false"
 mouse_opaque="false">
    <menu_item_check
       label="Sort by stock amount (low to high)"
       name="sort_by_stock_amount">
      <menu_item_check.on_click
         function="Marketplace.ViewSort.Action"
       parameter="sort_by_stock_amount"/>
      <menu_item_check.on_check
         function="Marketplace.ViewSort.CheckItem"
         parameter="sort_by_stock_amount"/>
    </menu_item_check>
    <menu_item_separator layout="topleft" />
    <menu_item_check name="show_low_stock" label="Show Low Stock Listings Only">
        <menu_item_check.on_click
         function="Marketplace.ViewSort.Action"
         parameter="show_low_stock" />
        <menu_item_check.on_check
         function="Marketplace.ViewSort.CheckItem"
         parameter="show_low_stock" />
    </menu_item_check>
    <menu_item_check name="show_associated_listings" label="Show Associated Listings Only">
        <menu_item_check.on_click
        function="Marketplace.ViewSort.Action"
        parameter="show_associated_listings" />
        <menu_item_check.on_check
        function="Marketplace.ViewSort.CheckItem"
        parameter="show_associated_listings" />
    </menu_item_check>
    <menu_item_check name="show_non_associated_listings" label="Show Non Associated Listings Only">
        <menu_item_check.on_click
        function="Marketplace.ViewSort.Action"
        parameter="show_non_associated_listings" />
        <menu_item_check.on_check
        function="Marketplace.ViewSort.CheckItem"
        parameter="show_non_associated_listings" />
    </menu_item_check>
    <menu_item_check name="show_active" label="Show Active Listings and Folders Only">
        <menu_item_check.on_click
        function="Marketplace.ViewSort.Action"
        parameter="show_active" />
        <menu_item_check.on_check
        function="Marketplace.ViewSort.CheckItem"
        parameter="show_active" />
    </menu_item_check>
</toggleable_menu>