Skip to content
Snippets Groups Projects
Commit 4415c850 authored by Leyla Farazha's avatar Leyla Farazha
Browse files

Adding the outbox

parent e5ca2b4b
No related branches found
No related tags found
No related merge requests found
...@@ -90,6 +90,7 @@ LLFolderDictionary::LLFolderDictionary() ...@@ -90,6 +90,7 @@ LLFolderDictionary::LLFolderDictionary()
addEntry(LLFolderType::FT_OUTFIT, new FolderEntry("outfit", FALSE)); addEntry(LLFolderType::FT_OUTFIT, new FolderEntry("outfit", FALSE));
addEntry(LLFolderType::FT_MY_OUTFITS, new FolderEntry("my_otfts", TRUE)); addEntry(LLFolderType::FT_MY_OUTFITS, new FolderEntry("my_otfts", TRUE));
addEntry(LLFolderType::FT_INBOX, new FolderEntry("inbox", TRUE)); addEntry(LLFolderType::FT_INBOX, new FolderEntry("inbox", TRUE));
addEntry(LLFolderType::FT_OUTBOX, new FolderEntry("outbox", TRUE));
addEntry(LLFolderType::FT_NONE, new FolderEntry("-1", FALSE)); addEntry(LLFolderType::FT_NONE, new FolderEntry("-1", FALSE));
}; };
......
...@@ -81,8 +81,9 @@ class LL_COMMON_API LLFolderType ...@@ -81,8 +81,9 @@ class LL_COMMON_API LLFolderType
FT_MY_OUTFITS = 48, FT_MY_OUTFITS = 48,
FT_INBOX = 49, FT_INBOX = 49,
FT_OUTBOX = 50,
FT_COUNT = 50, FT_COUNT = 51,
FT_NONE = -1 FT_NONE = -1
}; };
......
...@@ -131,6 +131,7 @@ LLViewerFolderDictionary::LLViewerFolderDictionary() ...@@ -131,6 +131,7 @@ LLViewerFolderDictionary::LLViewerFolderDictionary()
addEntry(LLFolderType::FT_OUTFIT, new ViewerFolderEntry("New Outfit", "Inv_LookFolderOpen", "Inv_LookFolderClosed", TRUE)); addEntry(LLFolderType::FT_OUTFIT, new ViewerFolderEntry("New Outfit", "Inv_LookFolderOpen", "Inv_LookFolderClosed", TRUE));
addEntry(LLFolderType::FT_MY_OUTFITS, new ViewerFolderEntry("My Outfits", "Inv_SysOpen", "Inv_SysClosed", TRUE)); addEntry(LLFolderType::FT_MY_OUTFITS, new ViewerFolderEntry("My Outfits", "Inv_SysOpen", "Inv_SysClosed", TRUE));
addEntry(LLFolderType::FT_INBOX, new ViewerFolderEntry("Inbox", "Inv_SysOpen", "Inv_SysClosed", FALSE, true)); addEntry(LLFolderType::FT_INBOX, new ViewerFolderEntry("Inbox", "Inv_SysOpen", "Inv_SysClosed", FALSE, true));
addEntry(LLFolderType::FT_OUTBOX, new ViewerFolderEntry("Outbox", "Inv_SysOpen", "Inv_SysClosed", FALSE, true));
addEntry(LLFolderType::FT_NONE, new ViewerFolderEntry("New Folder", "Inv_FolderOpen", "Inv_FolderClosed", FALSE, false, "default")); addEntry(LLFolderType::FT_NONE, new ViewerFolderEntry("New Folder", "Inv_FolderOpen", "Inv_FolderClosed", FALSE, false, "default"));
......
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
start_folder="Inbox" start_folder="Inbox"
layout="topleft" layout="topleft"
left="0" left="0"
name="All Items" name="inventory_inbox"
sort_order_setting="InventorySortOrder" sort_order_setting="InventorySortOrder"
show_item_link_overlays="true" show_item_link_overlays="true"
top="0" top="0"
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
max_dim="125" max_dim="125"
height="35"> height="35">
<panel <panel
follows="top|left|right" follows="all"
layout="topleft" layout="topleft"
left="10" left="10"
name="marketplace_outbox" name="marketplace_outbox"
...@@ -153,16 +153,26 @@ ...@@ -153,16 +153,26 @@
follows="all" follows="all"
left="0" left="0"
height="90" height="90"
width="250" width="330"
top="30" top="35"
> >
<text <inventory_panel
left ="40" bg_opaque_color="DkGray2"
top="15" bg_alpha_color="DkGray2"
align="left" background_visible="true"
height="14" background_opaque="true"
width="100" border="false"
>Just a panel</text> bevel_style="none"
follows="all"
height="90"
start_folder="Outbox"
layout="topleft"
left="0"
name="inventory_outbox"
sort_order_setting="InventorySortOrder"
show_item_link_overlays="true"
top="0"
width="308" />
</panel> </panel>
</panel> </panel>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment