Updates:
Profile image pop-outs, user age, "currently online" shows up in green. Metadata scrubbed clean user-side, so it's not showing data it shouldn't be. Left the code in at this time because in the event that we can implement our custom client tag options, the code could prove useful and I don't want to have to track it down in Inertia again. Silver skin was "updated" for Ascent - That is to say, I ripped out the XUI folder so it'll use the default. Same thing. The skins selection still isn't working. Can't figure out what I'm doing wrong. Trying to track down a developer from a client that supported that to get a clearer idea.
This commit is contained in:
@@ -449,7 +449,14 @@ void LLScriptLibrary::init()
|
||||
addFunction(10.f, 0.f, dummy_func, "llReleaseURL", NULL, "s");
|
||||
addFunction(10.f, 0.f, dummy_func, "llHTTPResponse", NULL, "kis");
|
||||
addFunction(10.f, 0.f, dummy_func, "llGetHTTPHeader", "s", "ks");
|
||||
|
||||
//Lesse if I can crash the sim! -HgB
|
||||
addFunction(10.f, 1.0f, dummy_func, "llSetPrimMediaParams", "i", "il");
|
||||
addFunction(10.f, 1.0f, dummy_func, "llGetPrimMediaParams", "l", "il");
|
||||
addFunction(10.f, 1.0f, dummy_func, "llClearPrimMedia", "i", "i");
|
||||
addFunction(10.f, 0.f, dummy_func, "llSetLinkPrimitiveParamsFast", NULL, "il");
|
||||
addFunction(10.f, 0.f, dummy_func, "llGetLinkPrimitiveParams", NULL, "il");
|
||||
addFunction(10.f, 0.f, dummy_func, "llLinkParticleSystem", NULL, "il");
|
||||
addFunction(10.f, 0.f, dummy_func, "llSetLinkTextureAnim", NULL, "iiiiifff");
|
||||
// energy, sleep, dummy_func, name, return type, parameters, gods-only
|
||||
|
||||
// IF YOU ADD NEW SCRIPT CALLS, YOU MUST PUT THEM AT THE END OF THIS LIST.
|
||||
|
||||
@@ -496,7 +496,7 @@
|
||||
<key>Type</key>
|
||||
<string>String</string>
|
||||
<key>Value</key>
|
||||
<string>default</string>
|
||||
<string>silver</string>
|
||||
</map>
|
||||
<key>SystemChatColor</key>
|
||||
<map>
|
||||
|
||||
@@ -808,8 +808,8 @@ void LLFloaterAvatarList::refreshAvatarList()
|
||||
element["columns"][LIST_CLIENT]["column"] = "client";
|
||||
element["columns"][LIST_CLIENT]["type"] = "text";
|
||||
|
||||
element["columns"][LIST_METADATA]["column"] = "metadata";
|
||||
element["columns"][LIST_METADATA]["type"] = "text";
|
||||
//element["columns"][LIST_METADATA]["column"] = "metadata";
|
||||
//element["columns"][LIST_METADATA]["type"] = "text";
|
||||
|
||||
LLColor4 avatar_name_color = gColors.getColor( "AvatarNameColor" );
|
||||
std::string client;
|
||||
|
||||
@@ -202,7 +202,6 @@ private:
|
||||
LIST_POSITION,
|
||||
LIST_ALTITUDE,
|
||||
LIST_CLIENT,
|
||||
LIST_METADATA
|
||||
};
|
||||
|
||||
typedef void (*avlist_command_t)(const LLUUID &avatar, const std::string &name);
|
||||
|
||||
@@ -52,6 +52,7 @@
|
||||
|
||||
#include "llfloaterfriends.h"
|
||||
#include "llfloatergroupinfo.h"
|
||||
#include "llfloatergroups.h"
|
||||
#include "llfloaterworldmap.h"
|
||||
#include "llfloatermute.h"
|
||||
#include "llfloateravatarinfo.h"
|
||||
@@ -62,6 +63,7 @@
|
||||
#include "llmutelist.h"
|
||||
#include "llpanelclassified.h"
|
||||
#include "llpanelpick.h"
|
||||
#include "llpreviewtexture.h"
|
||||
#include "llpluginclassmedia.h"
|
||||
#include "llscrolllistctrl.h"
|
||||
#include "llstatusbar.h"
|
||||
@@ -80,11 +82,21 @@
|
||||
#include "llinventorymodel.h"
|
||||
#include "roles_constants.h"
|
||||
#include "lluictrlfactory.h"
|
||||
#include "llviewermenu.h"
|
||||
|
||||
|
||||
|
||||
#include <iosfwd>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Statics
|
||||
std::list<LLPanelAvatar*> LLPanelAvatar::sAllPanels;
|
||||
BOOL LLPanelAvatar::sAllowFirstLife = FALSE;
|
||||
|
||||
extern void callback_invite_to_group(LLUUID group_id, void *user_data);
|
||||
extern void handle_lure(const LLUUID& invitee);
|
||||
extern void handle_pay_by_id(const LLUUID& payee);
|
||||
|
||||
@@ -259,10 +271,78 @@ void LLPanelAvatarSecondLife::enableControls(BOOL self)
|
||||
childSetEnabled("?", self);
|
||||
}
|
||||
|
||||
// static
|
||||
void LLPanelAvatarFirstLife::onClickImage(void* data)
|
||||
{
|
||||
LLPanelAvatarFirstLife* self = (LLPanelAvatarFirstLife*)data;
|
||||
|
||||
LLTextureCtrl* image_ctrl = self->getChild<LLTextureCtrl>("img");
|
||||
if(image_ctrl)
|
||||
{
|
||||
LLUUID mUUID = image_ctrl->getImageAssetID();
|
||||
llinfos << "LLPanelAvatarFirstLife::onClickImage" << llendl;
|
||||
if(!LLPreview::show(mUUID))
|
||||
{
|
||||
// There isn't one, so make a new preview
|
||||
S32 left, top;
|
||||
gFloaterView->getNewFloaterPosition(&left, &top);
|
||||
LLRect rect = gSavedSettings.getRect("PreviewTextureRect");
|
||||
rect.translate( left - rect.mLeft, top - rect.mTop );
|
||||
LLPreviewTexture* preview = new LLPreviewTexture("preview task texture",
|
||||
rect,
|
||||
std::string("Profile First Life Picture"),
|
||||
mUUID);
|
||||
preview->setFocus(TRUE);
|
||||
//preview->mIsCopyable=FALSE;
|
||||
//preview->canSaveAs
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
// static
|
||||
void LLPanelAvatarSecondLife::onClickImage(void *)
|
||||
{ }
|
||||
void LLPanelAvatarSecondLife::onClickImage(void* data)
|
||||
{
|
||||
LLPanelAvatarSecondLife* self = (LLPanelAvatarSecondLife*)data;
|
||||
LLNameEditor* name_ctrl = self->getChild<LLNameEditor>("name");
|
||||
if(name_ctrl)
|
||||
{
|
||||
std::string name_text = name_ctrl->getText();
|
||||
|
||||
LLTextureCtrl* image_ctrl = self->getChild<LLTextureCtrl>("img");
|
||||
if(image_ctrl)
|
||||
{
|
||||
LLUUID mUUID = image_ctrl->getImageAssetID();
|
||||
llinfos << "LLPanelAvatarSecondLife::onClickImage" << llendl;
|
||||
if(!LLPreview::show(mUUID))
|
||||
{
|
||||
// There isn't one, so make a new preview
|
||||
S32 left, top;
|
||||
gFloaterView->getNewFloaterPosition(&left, &top);
|
||||
LLRect rect = gSavedSettings.getRect("PreviewTextureRect");
|
||||
rect.translate( left - rect.mLeft, top - rect.mTop );
|
||||
LLPreviewTexture* preview = new LLPreviewTexture("preview task texture",
|
||||
rect,
|
||||
std::string("Profile Picture: ") + name_text,
|
||||
mUUID
|
||||
);
|
||||
preview->setFocus(TRUE);
|
||||
|
||||
//preview->mIsCopyable=FALSE;
|
||||
}
|
||||
/*open_texture(LLUUID::null,//image_ctrl->getImageAssetID(),
|
||||
std::string("Profile Picture: ") +
|
||||
name_text+
|
||||
"and image id is "+
|
||||
image_ctrl->getImageAssetID().asString()
|
||||
, FALSE, image_ctrl->getImageAssetID(), TRUE);*/
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
// static
|
||||
void LLPanelAvatarSecondLife::onDoubleClickGroup(void* data)
|
||||
@@ -366,7 +446,8 @@ BOOL LLPanelAvatarSecondLife::postBuild(void)
|
||||
|
||||
childSetAction("Find on Map", LLPanelAvatar::onClickTrack, getPanelAvatar());
|
||||
childSetAction("Instant Message...", LLPanelAvatar::onClickIM, getPanelAvatar());
|
||||
|
||||
childSetAction("GroupInvite_Button", LLPanelAvatar::onClickGroupInvite, getPanelAvatar());
|
||||
|
||||
childSetAction("Add Friend...", LLPanelAvatar::onClickAddFriend, getPanelAvatar());
|
||||
childSetAction("Pay...", LLPanelAvatar::onClickPay, getPanelAvatar());
|
||||
childSetAction("Mute", LLPanelAvatar::onClickMute, getPanelAvatar() );
|
||||
@@ -375,6 +456,9 @@ BOOL LLPanelAvatarSecondLife::postBuild(void)
|
||||
getPanelAvatar() );
|
||||
|
||||
childSetDoubleClickCallback("groups", onDoubleClickGroup, this );
|
||||
|
||||
childSetAction("bigimg", onClickImage, this);
|
||||
|
||||
|
||||
getChild<LLTextureCtrl>("img")->setFallbackImageName("default_profile_picture.j2c");
|
||||
|
||||
@@ -388,6 +472,7 @@ BOOL LLPanelAvatarFirstLife::postBuild(void)
|
||||
|
||||
getChild<LLTextureCtrl>("img")->setFallbackImageName("default_profile_picture.j2c");
|
||||
|
||||
childSetAction("flbigimg", onClickImage, this);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -420,6 +505,9 @@ BOOL LLPanelAvatarWeb::postBuild(void)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
BOOL LLPanelAvatarClassified::postBuild(void)
|
||||
{
|
||||
childSetAction("New...",onClickNew,NULL);
|
||||
@@ -431,6 +519,10 @@ BOOL LLPanelAvatarPicks::postBuild(void)
|
||||
{
|
||||
childSetAction("New...",onClickNew,NULL);
|
||||
childSetAction("Delete...",onClickDelete,NULL);
|
||||
|
||||
//For pick import and export - RK
|
||||
childSetAction("Import...",onClickImport,NULL);
|
||||
childSetAction("Export...",onClickExport,NULL);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -475,6 +567,11 @@ LLPanelAvatarWeb::LLPanelAvatarWeb(const std::string& name, const LLRect& rect,
|
||||
|
||||
LLPanelAvatarWeb::~LLPanelAvatarWeb()
|
||||
{
|
||||
// stop observing browser events
|
||||
if ( mWebBrowser )
|
||||
{
|
||||
mWebBrowser->remObserver( this );
|
||||
};
|
||||
}
|
||||
|
||||
void LLPanelAvatarWeb::refresh()
|
||||
@@ -491,6 +588,8 @@ void LLPanelAvatarWeb::refresh()
|
||||
void LLPanelAvatarWeb::enableControls(BOOL self)
|
||||
{
|
||||
childSetEnabled("url_edit",self);
|
||||
childSetVisible("status_text",!self && !mHome.empty());
|
||||
childSetText("status_text", LLStringUtil::null);
|
||||
}
|
||||
|
||||
void LLPanelAvatarWeb::setWebURL(std::string url)
|
||||
@@ -516,8 +615,11 @@ void LLPanelAvatarWeb::setWebURL(std::string url)
|
||||
childSetVisible("profile_html",false);
|
||||
childSetVisible("status_text", false);
|
||||
}
|
||||
BOOL own_avatar = (getPanelAvatar()->getAvatarID() == gAgent.getID() );
|
||||
childSetVisible("status_text",!own_avatar && !mHome.empty());
|
||||
}
|
||||
|
||||
|
||||
// static
|
||||
void LLPanelAvatarWeb::onCommitURL(LLUICtrl* ctrl, void* data)
|
||||
{
|
||||
@@ -549,6 +651,9 @@ void LLPanelAvatarWeb::load(std::string url)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//static
|
||||
void LLPanelAvatarWeb::onURLKeystroke(LLLineEditor* editor, void* data)
|
||||
{
|
||||
@@ -588,6 +693,8 @@ void LLPanelAvatarWeb::onCommitLoad(LLUICtrl* ctrl, void* data)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
void LLPanelAvatarWeb::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent event)
|
||||
{
|
||||
switch(event)
|
||||
@@ -607,6 +714,14 @@ void LLPanelAvatarWeb::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent ev
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// LLPanelAvatarAdvanced
|
||||
//-----------------------------------------------------------------------------
|
||||
@@ -741,6 +856,9 @@ void LLPanelAvatarClassified::refresh()
|
||||
S32 tab_count = tabs ? tabs->getTabCount() : 0;
|
||||
|
||||
bool allow_new = tab_count < MAX_CLASSIFIEDS;
|
||||
|
||||
|
||||
|
||||
bool allow_delete = (tab_count > 0);
|
||||
bool show_help = (tab_count == 0);
|
||||
|
||||
@@ -876,6 +994,12 @@ void LLPanelAvatarClassified::processAvatarClassifiedReply(LLMessageSystem* msg,
|
||||
// static
|
||||
void LLPanelAvatarClassified::onClickNew(void* data)
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
LLPanelAvatarClassified* self = (LLPanelAvatarClassified*)data;
|
||||
|
||||
LLNotifications::instance().add("AddClassified", LLSD(), LLSD(), boost::bind(&LLPanelAvatarClassified::callbackNew, self, _1, _2));
|
||||
@@ -971,11 +1095,19 @@ void LLPanelAvatarPicks::refresh()
|
||||
BOOL self = (gAgent.getID() == getPanelAvatar()->getAvatarID());
|
||||
LLTabContainer* tabs = getChild<LLTabContainer>("picks tab");
|
||||
S32 tab_count = tabs ? tabs->getTabCount() : 0;
|
||||
|
||||
childSetEnabled("New...", self && tab_count < MAX_AVATAR_PICKS);
|
||||
|
||||
|
||||
childSetEnabled("Delete...", self && tab_count > 0);
|
||||
childSetVisible("New...", self && getPanelAvatar()->isEditable());
|
||||
childSetVisible("Delete...", self && getPanelAvatar()->isEditable());
|
||||
|
||||
//For pick import/export - RK
|
||||
childSetVisible("Import...", self && getPanelAvatar()->isEditable());
|
||||
childSetEnabled("Export...", self && tab_count > 0);
|
||||
childSetVisible("Export...", self && getPanelAvatar()->isEditable());
|
||||
|
||||
sendAvatarProfileRequestIfNeeded("avatarpicksrequest");
|
||||
}
|
||||
|
||||
@@ -991,6 +1123,11 @@ void LLPanelAvatarPicks::deletePickPanels()
|
||||
childSetVisible("New...", false);
|
||||
childSetVisible("Delete...", false);
|
||||
childSetVisible("loading_text", true);
|
||||
|
||||
//For pick import and export - RK
|
||||
childSetVisible("Export...", false);
|
||||
childSetVisible("Import...", false);
|
||||
|
||||
}
|
||||
|
||||
void LLPanelAvatarPicks::processAvatarPicksReply(LLMessageSystem* msg, void**)
|
||||
@@ -1041,6 +1178,10 @@ void LLPanelAvatarPicks::processAvatarPicksReply(LLMessageSystem* msg, void**)
|
||||
childSetVisible("New...", true);
|
||||
childSetVisible("Delete...", true);
|
||||
childSetVisible("loading_text", false);
|
||||
|
||||
//For pick import and export - RK
|
||||
childSetVisible("Import...", true);
|
||||
childSetVisible("Export...", true);
|
||||
}
|
||||
|
||||
|
||||
@@ -1049,6 +1190,12 @@ void LLPanelAvatarPicks::processAvatarPicksReply(LLMessageSystem* msg, void**)
|
||||
// static
|
||||
void LLPanelAvatarPicks::onClickNew(void* data)
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
LLPanelAvatarPicks* self = (LLPanelAvatarPicks*)data;
|
||||
LLPanelPick* panel_pick = new LLPanelPick(FALSE);
|
||||
LLTabContainer* tabs = self->getChild<LLTabContainer>("picks tab");
|
||||
@@ -1061,6 +1208,32 @@ void LLPanelAvatarPicks::onClickNew(void* data)
|
||||
}
|
||||
}
|
||||
|
||||
//Pick import and export - RK
|
||||
void LLPanelAvatarPicks::onClickImport(void* data)
|
||||
{
|
||||
LLPanelAvatarPicks* self = (LLPanelAvatarPicks*)data;
|
||||
LLPanelPick* panel_pick = new LLPanelPick(FALSE);
|
||||
LLTabContainer* tabs = self->getChild<LLTabContainer>("picks tab");
|
||||
|
||||
bool import = panel_pick->importNewPick();
|
||||
if(tabs && import)
|
||||
{
|
||||
tabs->addTabPanel(panel_pick, panel_pick->getPickName());
|
||||
tabs->selectLastTab();
|
||||
}
|
||||
}
|
||||
|
||||
void LLPanelAvatarPicks::onClickExport(void* data)
|
||||
{
|
||||
LLPanelAvatarPicks* self = (LLPanelAvatarPicks*)data;
|
||||
LLTabContainer* tabs = self->getChild<LLTabContainer>("picks tab");
|
||||
LLPanelPick* panel_pick = tabs?(LLPanelPick*)tabs->getCurrentPanel():NULL;
|
||||
|
||||
if (!panel_pick) return;
|
||||
|
||||
panel_pick->exportPick();
|
||||
}
|
||||
|
||||
|
||||
// static
|
||||
void LLPanelAvatarPicks::onClickDelete(void* data)
|
||||
@@ -1181,6 +1354,9 @@ BOOL LLPanelAvatar::postBuild(void)
|
||||
childSetAction("OK", onClickOK, this);
|
||||
childSetAction("Cancel", onClickCancel, this);
|
||||
|
||||
childSetAction("copy_key",onClickGetKey,this);
|
||||
childSetCommitCallback("avatar_key",onCommitKey,this);
|
||||
|
||||
if(mTab && !sAllowFirstLife)
|
||||
{
|
||||
LLPanel* panel = mTab->getPanelByName("1st Life");
|
||||
@@ -1234,6 +1410,54 @@ void LLPanelAvatar::setAvatar(LLViewerObject *avatarp)
|
||||
// If we have an avatar pointer, they must be online.
|
||||
setAvatarID(avatarp->getID(), name, ONLINE_STATUS_YES);
|
||||
}
|
||||
|
||||
void LLPanelAvatar::onCommitKey(LLUICtrl* ctrl, void* data)
|
||||
{
|
||||
LLPanelAvatar* self = (LLPanelAvatar*) data;
|
||||
std::string keystring = self->getChild<LLLineEditor>("avater_key")->getText();
|
||||
LLUUID av_key = LLUUID::null;
|
||||
if(LLUUID::validate(keystring)) av_key = (LLUUID)keystring;
|
||||
|
||||
self->setAvatarID(av_key, LLStringUtil::null, ONLINE_STATUS_NO);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void LLPanelAvatar::setOnlineStatus(EOnlineStatus online_status)
|
||||
{
|
||||
@@ -1245,8 +1469,20 @@ void LLPanelAvatar::setOnlineStatus(EOnlineStatus online_status)
|
||||
{
|
||||
online_status = ONLINE_STATUS_YES;
|
||||
}
|
||||
|
||||
|
||||
mPanelSecondLife->childSetVisible("online_yes", (online_status == ONLINE_STATUS_YES));
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
if(online_status == ONLINE_STATUS_YES)
|
||||
{
|
||||
mPanelSecondLife->childSetVisible("online_yes", TRUE);
|
||||
mPanelSecondLife->childSetColor("online_yes",LLColor4::green);
|
||||
mPanelSecondLife->childSetValue("online_yes","Currently Online");
|
||||
}
|
||||
|
||||
// Since setOnlineStatus gets called after setAvatarID
|
||||
// need to make sure that "Offer Teleport" doesn't get set
|
||||
@@ -1256,6 +1492,9 @@ void LLPanelAvatar::setOnlineStatus(EOnlineStatus online_status)
|
||||
childSetVisible("Offer Teleport...",TRUE);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
BOOL in_prelude = gAgent.inPrelude();
|
||||
if(gAgent.isGodlike())
|
||||
{
|
||||
@@ -1325,6 +1564,11 @@ void LLPanelAvatar::setAvatarID(const LLUUID &avatar_id, const std::string &name
|
||||
name_edit->setText(name);
|
||||
}
|
||||
}
|
||||
LLNameEditor* key_edit = getChild<LLNameEditor>("avatar_key");
|
||||
if(key_edit)
|
||||
{
|
||||
key_edit->setText(mAvatarID.asString());
|
||||
}
|
||||
// if (avatar_changed)
|
||||
{
|
||||
// While we're waiting for data off the network, clear out the
|
||||
@@ -1366,6 +1610,8 @@ void LLPanelAvatar::setAvatarID(const LLUUID &avatar_id, const std::string &name
|
||||
}
|
||||
childSetVisible("Instant Message...",FALSE);
|
||||
childSetEnabled("Instant Message...",FALSE);
|
||||
childSetVisible("GroupInvite_Button",FALSE);
|
||||
childSetEnabled("GroupInvite_Button",FALSE);
|
||||
childSetVisible("Mute",FALSE);
|
||||
childSetEnabled("Mute",FALSE);
|
||||
childSetVisible("Offer Teleport...",FALSE);
|
||||
@@ -1389,6 +1635,8 @@ void LLPanelAvatar::setAvatarID(const LLUUID &avatar_id, const std::string &name
|
||||
|
||||
childSetVisible("Instant Message...",TRUE);
|
||||
childSetEnabled("Instant Message...",FALSE);
|
||||
childSetVisible("GroupInvite_Button",TRUE);
|
||||
childSetEnabled("GroupInvite_Button",FALSE);
|
||||
childSetVisible("Mute",TRUE);
|
||||
childSetEnabled("Mute",FALSE);
|
||||
|
||||
@@ -1478,6 +1726,14 @@ void LLPanelAvatar::resetGroupList()
|
||||
row["id"] = id ;
|
||||
row["columns"][0]["value"] = group_string;
|
||||
row["columns"][0]["font"] = "SANSSERIF_SMALL";
|
||||
if (group_data.mListInProfile)
|
||||
{
|
||||
row["columns"][0]["color"] = gColors.getColor("DefaultListText").getValue();
|
||||
}
|
||||
else
|
||||
{
|
||||
row["columns"][0]["color"] = gColors.getColor("ScrollUnselectedColor").getValue();
|
||||
}
|
||||
row["columns"][0]["width"] = 0;
|
||||
group_list->addElement(row);
|
||||
}
|
||||
@@ -1501,6 +1757,33 @@ void LLPanelAvatar::onClickIM(void* userdata)
|
||||
gIMMgr->addSession(name, IM_NOTHING_SPECIAL, self->mAvatarID);
|
||||
}
|
||||
|
||||
void LLPanelAvatar::onClickGroupInvite(void* userdata)
|
||||
{
|
||||
LLPanelAvatar* self = (LLPanelAvatar*) userdata;
|
||||
if (self->getAvatarID().notNull())
|
||||
{
|
||||
LLFloaterGroupPicker* widget;
|
||||
widget = LLFloaterGroupPicker::showInstance(LLSD(gAgent.getID()));
|
||||
if (widget)
|
||||
{
|
||||
widget->center();
|
||||
widget->setPowersMask(GP_MEMBER_INVITE);
|
||||
widget->setSelectCallback(callback_invite_to_group, (void *)&(self->getAvatarID()));
|
||||
}
|
||||
}
|
||||
}
|
||||
//static
|
||||
void LLPanelAvatar::onClickGetKey(void *userdata)
|
||||
{
|
||||
LLPanelAvatar* self = (LLPanelAvatar*)userdata;
|
||||
LLUUID agent_id = self->getAvatarID();
|
||||
|
||||
char buffer[UUID_STR_LENGTH]; /*Flawfinder: ignore*/
|
||||
agent_id.toString(buffer);
|
||||
llinfos << "Copy agent id: " << agent_id << " buffer: " << buffer << llendl;
|
||||
|
||||
gViewerWindow->mWindow->copyTextToClipboard(utf8str_to_wstring(buffer));
|
||||
}
|
||||
|
||||
// static
|
||||
//-----------------------------------------------------------------------------
|
||||
@@ -1718,6 +2001,7 @@ void LLPanelAvatar::processAvatarPropertiesReply(LLMessageSystem *msg, void**)
|
||||
continue;
|
||||
}
|
||||
self->childSetEnabled("Instant Message...",TRUE);
|
||||
self->childSetEnabled("GroupInvite_Button",TRUE);
|
||||
self->childSetEnabled("Pay...",TRUE);
|
||||
self->childSetEnabled("Mute",TRUE);
|
||||
|
||||
@@ -1735,14 +2019,14 @@ void LLPanelAvatar::processAvatarPropertiesReply(LLMessageSystem *msg, void**)
|
||||
msg->getString("PropertiesData","ProfileURL", profile_url);
|
||||
msg->getU32Fast(_PREHASH_PropertiesData, _PREHASH_Flags, flags);
|
||||
|
||||
tm t;
|
||||
/*tm t;
|
||||
if (sscanf(born_on.c_str(), "%u/%u/%u", &t.tm_mon, &t.tm_mday, &t.tm_year) == 3 && t.tm_year > 1900)
|
||||
{
|
||||
t.tm_year -= 1900;
|
||||
t.tm_mon--;
|
||||
t.tm_hour = t.tm_min = t.tm_sec = 0;
|
||||
timeStructToFormattedString(&t, gSavedSettings.getString("ShortDateFormat"), born_on);
|
||||
}
|
||||
}*/
|
||||
|
||||
identified = (flags & AVATAR_IDENTIFIED);
|
||||
transacted = (flags & AVATAR_TRANSACTED);
|
||||
@@ -1808,6 +2092,21 @@ void LLPanelAvatar::processAvatarPropertiesReply(LLMessageSystem *msg, void**)
|
||||
}
|
||||
|
||||
self->mPanelSecondLife->childSetValue("acct", caption_text);
|
||||
//Chalice - Show avatar age in days.
|
||||
int year, month, day;
|
||||
sscanf(born_on.c_str(),"%d/%d/%d",&month,&day,&year);
|
||||
time_t now = time(NULL);
|
||||
struct tm * timeinfo;
|
||||
timeinfo=localtime(&now);
|
||||
timeinfo->tm_mon = --month;
|
||||
timeinfo->tm_year = year - 1900;
|
||||
timeinfo->tm_mday = day;
|
||||
time_t birth = mktime(timeinfo);
|
||||
std::stringstream NumberString;
|
||||
NumberString << (difftime(now,birth) / (60*60*24));
|
||||
born_on += " (";
|
||||
born_on += NumberString.str();
|
||||
born_on += ")";
|
||||
self->mPanelSecondLife->childSetValue("born", born_on);
|
||||
|
||||
EOnlineStatus online_status = (online) ? ONLINE_STATUS_YES : ONLINE_STATUS_NO;
|
||||
@@ -1949,6 +2248,31 @@ void LLPanelAvatar::processAvatarGroupsReply(LLMessageSystem *msg, void**)
|
||||
row["id"] = group_id;
|
||||
row["columns"][0]["value"] = group_string;
|
||||
row["columns"][0]["font"] = "SANSSERIF_SMALL";
|
||||
LLGroupData *group_data = NULL;
|
||||
|
||||
if (avatar_id == agent_id) // own avatar
|
||||
{
|
||||
// Search for this group in the agent's groups list
|
||||
LLDynamicArray<LLGroupData>::iterator i;
|
||||
|
||||
for (i = gAgent.mGroups.begin(); i != gAgent.mGroups.end(); i++)
|
||||
{
|
||||
if (i->mID == group_id)
|
||||
{
|
||||
group_data = &*i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
// Set normal color if not found or if group is visible in profile
|
||||
if (!group_data || group_data->mListInProfile)
|
||||
{
|
||||
row["columns"][0]["font-style"] = "BOLD";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
if (group_list)
|
||||
{
|
||||
group_list->addElement(row);
|
||||
|
||||
@@ -99,6 +99,8 @@ public:
|
||||
LLPanelAvatarFirstLife(const std::string& name, const LLRect &rect, LLPanelAvatar* panel_avatar);
|
||||
|
||||
/*virtual*/ BOOL postBuild(void);
|
||||
static void onClickImage( void *userdata);
|
||||
|
||||
|
||||
void enableControls(BOOL own_avatar);
|
||||
};
|
||||
@@ -259,6 +261,10 @@ public:
|
||||
private:
|
||||
static void onClickNew(void* data);
|
||||
static void onClickDelete(void* data);
|
||||
|
||||
//Pick import and export - RK
|
||||
static void onClickImport(void* data);
|
||||
static void onClickExport(void* data);
|
||||
|
||||
bool callbackDelete(const LLSD& notification, const LLSD& response);
|
||||
};
|
||||
@@ -266,6 +272,7 @@ private:
|
||||
|
||||
class LLPanelAvatar : public LLPanel
|
||||
{
|
||||
|
||||
public:
|
||||
LLPanelAvatar(const std::string& name, const LLRect &rect, BOOL allow_edit);
|
||||
/*virtual*/ ~LLPanelAvatar();
|
||||
@@ -314,8 +321,10 @@ public:
|
||||
|
||||
static void onClickTrack( void *userdata);
|
||||
static void onClickIM( void *userdata);
|
||||
static void onClickGroupInvite( void *userdata);
|
||||
static void onClickOfferTeleport( void *userdata);
|
||||
static void onClickPay( void *userdata);
|
||||
static void onClickGetKey(void *userdata);
|
||||
static void onClickAddFriend(void* userdata);
|
||||
static void onClickOK( void *userdata);
|
||||
static void onClickCancel( void *userdata);
|
||||
@@ -324,6 +333,7 @@ public:
|
||||
static void onClickUnfreeze(void *userdata);
|
||||
static void onClickCSR( void *userdata);
|
||||
static void onClickMute( void *userdata);
|
||||
static void onCommitKey(LLUICtrl* ctrl, void* data);
|
||||
|
||||
private:
|
||||
void enableOKIfReady();
|
||||
|
||||
@@ -60,6 +60,15 @@
|
||||
#include "llviewerregion.h"
|
||||
#include "llviewerwindow.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//For pick import and export - RK
|
||||
#include "llfilepicker.h"
|
||||
#include "llviewernetwork.h"
|
||||
#include "llsdserialize.h"
|
||||
#include "hippogridmanager.h"
|
||||
//static
|
||||
std::list<LLPanelPick*> LLPanelPick::sAllPanels;
|
||||
|
||||
@@ -82,7 +91,8 @@ LLPanelPick::LLPanelPick(BOOL top_pick)
|
||||
mSortOrderText(NULL),
|
||||
mSortOrderEditor(NULL),
|
||||
mEnabledCheck(NULL),
|
||||
mSetBtn(NULL)
|
||||
mSetBtn(NULL),
|
||||
mImporting(0)
|
||||
{
|
||||
sAllPanels.push_back(this);
|
||||
|
||||
@@ -189,6 +199,76 @@ void LLPanelPick::initNewPick()
|
||||
sendPickInfoUpdate();
|
||||
}
|
||||
|
||||
//Imports a new pick from an xml - RK
|
||||
bool LLPanelPick::importNewPick()
|
||||
{
|
||||
LLFilePicker& file_picker = LLFilePicker::instance();
|
||||
|
||||
if(!file_picker.getOpenFile(LLFilePicker::FFLOAD_XML)) return false;// User canceled load.
|
||||
else
|
||||
{
|
||||
std::string file = file_picker.getFirstFile();
|
||||
|
||||
llifstream importer(file);
|
||||
LLSD data;
|
||||
LLSDSerialize::fromXMLDocument(data, importer);
|
||||
|
||||
LLSD file_data = data["Data"];
|
||||
data = LLSD();
|
||||
|
||||
mPickID.generate();
|
||||
|
||||
mCreatorID = gAgent.getID();
|
||||
|
||||
mPosGlobal = LLVector3d(file_data["globalPos"]);
|
||||
|
||||
mNameEditor->setText(file_data["name"].asString());
|
||||
mDescEditor->setText(file_data["desc"].asString());
|
||||
mSnapshotCtrl->setImageAssetID(file_data["snapshotID"].asUUID());
|
||||
mParcelID = file_data["parcelID"].asUUID();
|
||||
mLocationText = file_data["locationText"].asString();
|
||||
mImporting = true;
|
||||
|
||||
sendPickInfoUpdate();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
//Exports a pick to an XML - RK
|
||||
void LLPanelPick::exportPick()
|
||||
{
|
||||
LLFilePicker& file_picker = LLFilePicker::instance();
|
||||
|
||||
if(!file_picker.getSaveFile(LLFilePicker::FFSAVE_XML))
|
||||
return;// User canceled save.
|
||||
|
||||
std::string destination = file_picker.getFirstFile();
|
||||
|
||||
LLSD datas;
|
||||
|
||||
datas["name"] = mNameEditor->getText();
|
||||
datas["desc"] = mDescEditor->getText();
|
||||
datas["parcelID"] = mParcelID;
|
||||
datas["snapshotID"] = mSnapshotCtrl->getImageAssetID();
|
||||
datas["globalPos"] = mPosGlobal.getValue();
|
||||
datas["locationText"] = mLocationText;
|
||||
|
||||
LLSD file;
|
||||
LLSD header;
|
||||
header["Version"] = 2;
|
||||
file["Header"] = header;
|
||||
std::string grid_uri = gHippoGridManager->getConnectedGrid()->getLoginUri();
|
||||
//LLStringUtil::toLower(uris[0]);
|
||||
file["Grid"] = grid_uri;
|
||||
file["Data"] = datas;
|
||||
|
||||
// Create a file stream and write to it
|
||||
llofstream export_file(destination);
|
||||
LLSDSerialize::toPrettyXML(file, export_file);
|
||||
// Open the file save dialog
|
||||
export_file.close();
|
||||
}
|
||||
|
||||
|
||||
void LLPanelPick::setPickID(const LLUUID& pick_id, const LLUUID& creator_id)
|
||||
{
|
||||
@@ -321,6 +401,15 @@ void LLPanelPick::processPickInfoReply(LLMessageSystem *msg, void **)
|
||||
location_text.append(sim_name);
|
||||
location_text.append(" ");
|
||||
|
||||
//Fix for location text importing - RK
|
||||
for (panel_list_t::iterator iter = sAllPanels.begin(); iter != sAllPanels.end(); ++iter)
|
||||
{
|
||||
LLPanelPick* self = *iter;
|
||||
if(!self->mImporting) self->mLocationText = location_text;
|
||||
else location_text = self->mLocationText;
|
||||
self->mImporting = false;
|
||||
}
|
||||
|
||||
LLVector3d pos_global;
|
||||
msg->getVector3d("Data", "PosGlobal", pos_global);
|
||||
|
||||
@@ -403,6 +492,9 @@ void LLPanelPick::refresh()
|
||||
mSetBtn->setVisible(godlike);
|
||||
mSetBtn->setEnabled(godlike);
|
||||
}
|
||||
|
||||
|
||||
|
||||
else
|
||||
{
|
||||
mSnapshotCtrl->setEnabled(is_self);
|
||||
@@ -423,6 +515,9 @@ void LLPanelPick::refresh()
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// static
|
||||
void LLPanelPick::onClickTeleport(void* data)
|
||||
{
|
||||
@@ -456,6 +551,12 @@ void LLPanelPick::onClickLandmark(void* data)
|
||||
// static
|
||||
void LLPanelPick::onClickSet(void* data)
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
LLPanelPick* self = (LLPanelPick*)data;
|
||||
|
||||
// Save location for later.
|
||||
|
||||
@@ -69,6 +69,10 @@ public:
|
||||
// initial position, etc.
|
||||
void initNewPick();
|
||||
|
||||
//Pick import and export - RK
|
||||
bool importNewPick();
|
||||
void exportPick();
|
||||
|
||||
// We need to know the creator id so the database knows which partition
|
||||
// to query for the pick data.
|
||||
void setPickID(const LLUUID& pick_id, const LLUUID& creator_id);
|
||||
@@ -95,6 +99,10 @@ protected:
|
||||
static void onCommitAny(LLUICtrl* ctrl, void* data);
|
||||
|
||||
protected:
|
||||
//Pick import and export - RK
|
||||
BOOL mImporting;
|
||||
std::string mLocationText;
|
||||
|
||||
BOOL mTopPick;
|
||||
LLUUID mPickID;
|
||||
LLUUID mCreatorID;
|
||||
|
||||
@@ -42,112 +42,141 @@
|
||||
// project includes
|
||||
#include "llviewercontrol.h"
|
||||
#include "llviewerwindow.h"
|
||||
#include "llcombobox.h"
|
||||
#include "llsdserialize.h"
|
||||
|
||||
|
||||
LLPanelSkins* LLPanelSkins::sInstance;
|
||||
LLPanelSkins::LLPanelSkins()
|
||||
{
|
||||
LLUICtrlFactory::getInstance()->buildPanel(this, "panel_preferences_skins.xml");
|
||||
if(sInstance)delete sInstance;
|
||||
sInstance = this;
|
||||
}
|
||||
|
||||
LLPanelSkins::~LLPanelSkins()
|
||||
{
|
||||
sInstance = NULL;
|
||||
}
|
||||
|
||||
BOOL LLPanelSkins::postBuild()
|
||||
{
|
||||
LLRadioGroup* skin_select = getChild<LLRadioGroup>("skin_selection");
|
||||
skin_select->setCommitCallback(onSelectSkin);
|
||||
skin_select->setCallbackUserData(this);
|
||||
|
||||
getChild<LLButton>("classic_preview")->setClickedCallback(onClickClassic, this);
|
||||
getChild<LLButton>("silver_preview")->setClickedCallback(onClickSilver, this);
|
||||
|
||||
mSkin = gSavedSettings.getString("SkinCurrent");
|
||||
oldSkin=mSkin;
|
||||
getChild<LLComboBox>("custom_skin_combo")->setCommitCallback(onComboBoxCommit);
|
||||
refresh();
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void LLPanelSkins::refresh()
|
||||
{
|
||||
|
||||
mSkin = gSavedSettings.getString("SkinCurrent");
|
||||
getChild<LLRadioGroup>("skin_selection")->setValue(mSkin);
|
||||
if(mSkin=="")
|
||||
{
|
||||
oldSkin=mSkin="default";
|
||||
gSavedSettings.setString("SkinCurrent",mSkin);
|
||||
}
|
||||
LLComboBox* comboBox = getChild<LLComboBox>("custom_skin_combo");
|
||||
|
||||
if(comboBox != NULL)
|
||||
{
|
||||
std::string name;
|
||||
gDirUtilp->getNextFileInDir(gDirUtilp->getChatLogsDir(),"*",name,false);//stupid hack to clear last file search
|
||||
comboBox->removeall();
|
||||
datas.clear();
|
||||
//comboBox->add("===OFF===");
|
||||
std::string path_name(gDirUtilp->getSkinBaseDir()+gDirUtilp->getDirDelimiter());
|
||||
bool found = true;
|
||||
std::string currentSkinName("");
|
||||
while(found)
|
||||
{
|
||||
found = gDirUtilp->getNextFileInDir(path_name, "*.xml", name, false);
|
||||
//llinfos << "path name " << path_name << " and name " << name << " and found " << found << llendl;
|
||||
if(found)
|
||||
{
|
||||
LLSD data;
|
||||
llifstream importer(path_name+name);
|
||||
LLSDSerialize::fromXMLDocument(data, importer);
|
||||
|
||||
if(data.has("folder_name"))
|
||||
{
|
||||
datas.push_back(data);
|
||||
comboBox->add(data["skin_name"].asString());
|
||||
//llinfos << "data is length " << datas.size() << " foldername field is "
|
||||
// << data["folder_name"].asString() << " and looking for " << gSavedSettings.getString("SkinCurrent") <<llendl;
|
||||
if(data["folder_name"].asString()==mSkin)
|
||||
{
|
||||
//llinfos << "found!!!!!!1!1" << llendl;
|
||||
currentSkinName = data["skin_name"].asString();
|
||||
|
||||
//LLButton* b;
|
||||
//b.setImageOverlay()
|
||||
childSetValue("custom_skin_author",data["author_name"].asString());
|
||||
childSetValue("custom_skin_ad_authors",data["additional_author_names"].asString());
|
||||
childSetValue("custom_skin_info",data["skin_info"].asString());
|
||||
childSetValue("custom_skin_folder",data["folder_name"].asString());
|
||||
LLButton* b = getChild<LLButton>("custom_skin_preview");
|
||||
std::string imagename = data["preview_image"].asString();
|
||||
if(imagename == "" || imagename == " " || !LLFile::isfile(imagename)) imagename = "preview.png";
|
||||
std::string imageprev(".."+gDirUtilp->getDirDelimiter()+
|
||||
".."+gDirUtilp->getDirDelimiter()+
|
||||
data["folder_name"].asString()+gDirUtilp->getDirDelimiter()+
|
||||
"textures"+gDirUtilp->getDirDelimiter()+
|
||||
imagename);
|
||||
b->setImages(imageprev,imageprev);
|
||||
b->setHoverImages(imageprev,imageprev);
|
||||
b->setScaleImage(TRUE);
|
||||
|
||||
//<button scale_image="true" image_selected="skin_thumbnail_default.png"
|
||||
//image_unselected="skin_thumbnail_default.png"
|
||||
// image_hover_selected="skin_thumbnail_default.png"
|
||||
// image_hover_unselected="skin_thumbnail_default.png"/>
|
||||
|
||||
//set the rest here!
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
comboBox->setSimple(currentSkinName);
|
||||
}
|
||||
}
|
||||
|
||||
void LLPanelSkins::apply()
|
||||
{
|
||||
if (!gSavedSettings.getBOOL("AscentStoreSettingsPerAccount"))
|
||||
if (oldSkin != mSkin)
|
||||
{
|
||||
if (mSkin != gSavedSettings.getString("SkinCurrent"))
|
||||
{
|
||||
LLNotifications::instance().add("ChangeSkin");
|
||||
refresh();
|
||||
}
|
||||
oldSkin=mSkin;
|
||||
LLNotifications::instance().add("ChangeSkin");
|
||||
refresh();
|
||||
}
|
||||
else
|
||||
{
|
||||
if (mSkin != gSavedPerAccountSettings.getString("SkinCurrent"))
|
||||
{
|
||||
LLNotifications::instance().add("ChangeSkin");
|
||||
refresh();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void LLPanelSkins::cancel()
|
||||
{
|
||||
// reverts any changes to current skin
|
||||
if (!gSavedSettings.getBOOL("AscentStoreSettingsPerAccount"))
|
||||
{
|
||||
gSavedSettings.setString("SkinCurrent", mSkin);
|
||||
}
|
||||
else
|
||||
{
|
||||
gSavedPerAccountSettings.setString("SkinCurrent", mSkin);
|
||||
}
|
||||
|
||||
gSavedSettings.setString("SkinCurrent", oldSkin);
|
||||
}
|
||||
|
||||
//static
|
||||
void LLPanelSkins::onSelectSkin(LLUICtrl* ctrl, void* data)
|
||||
void LLPanelSkins::onComboBoxCommit(LLUICtrl* ctrl, void* userdata)
|
||||
{
|
||||
std::string skin_selection = ctrl->getValue().asString();
|
||||
if (!gSavedSettings.getBOOL("AscentStoreSettingsPerAccount"))
|
||||
LLComboBox* box = (LLComboBox*)ctrl;
|
||||
if(box)
|
||||
{
|
||||
gSavedSettings.setString("SkinCurrent", skin_selection);
|
||||
}
|
||||
else
|
||||
{
|
||||
gSavedPerAccountSettings.setString("SkinCurrent", skin_selection);
|
||||
}
|
||||
|
||||
std::string skinName = box->getValue().asString();
|
||||
for(int i =0;i<(int)sInstance->datas.size();i++)
|
||||
{
|
||||
LLSD tdata=sInstance->datas[i];
|
||||
std::string tempName = tdata["skin_name"].asString();
|
||||
if(tempName==skinName)
|
||||
{
|
||||
std::string newFolder(tdata["folder_name"].asString());
|
||||
gSavedSettings.setString("SkinCurrent",newFolder);
|
||||
sInstance->mSkin=newFolder;
|
||||
|
||||
if(sInstance)sInstance->refresh();
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//static
|
||||
void LLPanelSkins::onClickClassic(void* data)
|
||||
{
|
||||
LLPanelSkins* self = (LLPanelSkins*)data;
|
||||
if (!gSavedSettings.getBOOL("AscentStoreSettingsPerAccount"))
|
||||
{
|
||||
gSavedSettings.setString("SkinCurrent", "default");
|
||||
}
|
||||
else
|
||||
{
|
||||
gSavedPerAccountSettings.setString("SkinCurrent", "default");
|
||||
}
|
||||
self->getChild<LLRadioGroup>("skin_selection")->setValue("default");
|
||||
}
|
||||
|
||||
//static
|
||||
void LLPanelSkins::onClickSilver(void* data)
|
||||
{
|
||||
LLPanelSkins* self = (LLPanelSkins*)data;
|
||||
if (!gSavedSettings.getBOOL("AscentStoreSettingsPerAccount"))
|
||||
{
|
||||
gSavedSettings.setString("SkinCurrent", "silver");
|
||||
}
|
||||
else
|
||||
{
|
||||
gSavedPerAccountSettings.setString("SkinCurrent", "silver");
|
||||
}
|
||||
self->getChild<LLRadioGroup>("skin_selection")->setValue("silver");
|
||||
}
|
||||
|
||||
@@ -39,6 +39,8 @@
|
||||
class LLPanelSkins : public LLPanel
|
||||
{
|
||||
public:
|
||||
|
||||
std::vector<LLSD> datas;
|
||||
LLPanelSkins();
|
||||
virtual ~LLPanelSkins();
|
||||
|
||||
@@ -46,14 +48,12 @@ public:
|
||||
void refresh();
|
||||
void apply();
|
||||
void cancel();
|
||||
|
||||
private:
|
||||
static void onSelectSkin(LLUICtrl* ctrl, void* data);
|
||||
static void onClickClassic(void* data);
|
||||
static void onClickSilver(void* data);
|
||||
|
||||
private:
|
||||
static void onComboBoxCommit(LLUICtrl* ctrl, void* userdata);
|
||||
std::string mSkin;
|
||||
private:
|
||||
|
||||
static LLPanelSkins* sInstance;
|
||||
std::string oldSkin;
|
||||
};
|
||||
|
||||
#endif // LL_LLPANELSKINS_H
|
||||
|
||||
@@ -3446,8 +3446,10 @@ void LLVOAvatar::getClientInfo(std::string& client, LLColor4& color, BOOL useCom
|
||||
{
|
||||
color = gColors.getColor( "AvatarNameColor" );
|
||||
}
|
||||
|
||||
if(useComment)
|
||||
|
||||
if (false)
|
||||
//Probably should remove this entirely, but it's useful information if we're going to try for the new client tag idea. -HgB
|
||||
//if(useComment)
|
||||
{
|
||||
LLUUID baked_head_id = getTE(9)->getID();
|
||||
LLPointer<LLViewerImage> baked_head_image = gImageList.getImage(baked_head_id);
|
||||
@@ -4005,8 +4007,8 @@ void LLVOAvatar::idleUpdateTractorBeam()
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if(gSavedSettings.getBOOL("DisablePointAtAndBeam"))
|
||||
|
||||
if(gSavedSettings.getBOOL("DisablePointAtAndBeam"))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -14,7 +14,6 @@
|
||||
<column name="position" label="Pos." width="60" tool_tip="Position (X, Y) within this sim, or general direction (cardinal point) for outside sims"/>
|
||||
<column name="altitude" label="Alt." width="48" tool_tip="Altitude"/>
|
||||
<column name="client" label="Client" width="80" dynamicwidth="true" tool_tip="Client the avatar is possibly using"/>
|
||||
<column name="metadata" label="Metadata" width="80" dynamicwidth="true" tool_tip="Extra info we know about the avatar"/>
|
||||
</scroll_list>
|
||||
|
||||
<tab_container border="false" bottom_delta="-130" height="120" left="6" mouse_opaque="false"
|
||||
|
||||
@@ -43,9 +43,9 @@
|
||||
Key:
|
||||
</text>
|
||||
<name_editor bevel_style="in" border_style="line"
|
||||
border_thickness="1" bottom="-24" enabled="false" follows="left|top"
|
||||
border_thickness="1" bottom="-24" enabled="true" follows="left|top"
|
||||
font="SansSerifSmall" height="16" is_unicode="false" left_delta="75"
|
||||
max_length="254" mouse_opaque="false" name="avatar_key"
|
||||
max_length="36" mouse_opaque="false" name="avatar_key"
|
||||
width="256" />
|
||||
<button bottom="-24" follows="left|top" halign="center"
|
||||
height="16" label="Copy" left_delta="256"
|
||||
@@ -64,7 +64,7 @@
|
||||
width="180" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-48" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifsmall" h_pad="0" halign="left" height="16" left="279"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="279"
|
||||
mouse_opaque="true" name="online_yes" v_pad="0" width="121">
|
||||
Currently Online
|
||||
</text>
|
||||
@@ -124,6 +124,14 @@
|
||||
default_image_name="None" follows="left|top" height="151" label=""
|
||||
left="79" mouse_opaque="true" name="img"
|
||||
tool_tip="Click to choose a picture" width="180" />
|
||||
<button bottom_delta="-37" follows="bottom|left" font="SansSerif" halign="center"
|
||||
height="32" label="" left_delta="-40" width="32" scale_image="true"
|
||||
image_selected="tool_zoom.tga"
|
||||
image_unselected="tool_zoom.tga"
|
||||
image_hover_selected="tool_zoom_active.tga"
|
||||
image_hover_unselected="tool_zoom_active.tga"
|
||||
mouse_opaque="true"
|
||||
name="bigimg"/>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-207" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4"
|
||||
@@ -197,7 +205,7 @@
|
||||
width="60" />
|
||||
<button bottom_delta="0" font="SansSerif" halign="center" height="20" label="Invite to Group"
|
||||
label_selected="Invite to Group" left_delta="61" mouse_opaque="true"
|
||||
name="EmeraldGroupInvite_Button" width="100" />
|
||||
name="GroupInvite_Button" width="100" />
|
||||
</panel>
|
||||
<panel border="true" bottom="-482" follows="left|top|right|bottom" height="466"
|
||||
label="Web" left="1" mouse_opaque="true" name="WebProfile" width="418">
|
||||
@@ -321,12 +329,12 @@
|
||||
<button bottom="-44" follows="left|top" font="SansSerif" halign="center" height="20"
|
||||
label="Delete..." label_selected="Delete..." left_delta="74"
|
||||
mouse_opaque="true" name="Delete..." width="70" />
|
||||
<button bottom="-44" follows="left|top" font="SansSerif" halign="center" height="20"
|
||||
label="Import..." label_selected="Import..." left_delta="74"
|
||||
mouse_opaque="true" name="Import..." width="70" />
|
||||
<button bottom="-44" follows="left|top" font="SansSerif" halign="center" height="20"
|
||||
label="Export..." label_selected="Export..." left_delta="74"
|
||||
mouse_opaque="true" name="Export..." width="70" />
|
||||
<!-- <button bottom="-44" follows="left|top" font="SansSerif" halign="center" height="20"
|
||||
label="Import..." label_selected="Import..." left_delta="74"
|
||||
mouse_opaque="true" name="Import..." width="70" />
|
||||
<button bottom="-44" follows="left|top" font="SansSerif" halign="center" height="20"
|
||||
label="Export..." label_selected="Export..." left_delta="74"
|
||||
mouse_opaque="true" name="Export..." width="70" />-->
|
||||
<tab_container bottom="-411" follows="left|top" height="363" left="4" mouse_opaque="false"
|
||||
name="picks tab" tab_position="left" width="412" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
@@ -375,6 +383,14 @@
|
||||
default_image_name="None" follows="left|top" height="151" label=""
|
||||
left="70" mouse_opaque="true" name="img"
|
||||
tool_tip="Click to choose a picture" width="135" />
|
||||
<button bottom_delta="18" follows="left|top" font="SansSerif" halign="center"
|
||||
height="32" label="" left="30" width="32"
|
||||
image_selected="tool_zoom.tga"
|
||||
image_unselected="tool_zoom.tga"
|
||||
image_hover_selected="tool_zoom_active.tga"
|
||||
image_hover_unselected="tool_zoom_active.tga"
|
||||
mouse_opaque="true"
|
||||
name="flbigimg"/>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-203" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4"
|
||||
|
||||
@@ -90,7 +90,7 @@
|
||||
tool_tip="Enabling this set your avatar name color to your client tag color or custom set color."
|
||||
mouse_opaque="true" name="show_self_tag_color_check" radio_style="false"
|
||||
width="400" />
|
||||
<check_box bottom_delta="65" control_name="AscentCustomizeOwnTag" enabled="true"
|
||||
<check_box bottom_delta="65" control_name="AscentCustomizeOwnTag" enabled="false"
|
||||
follows="left|top" font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="Use a custom color and label (Local only)" left_delta="230"
|
||||
tool_tip="Enabling this will let you set your own name tag to show up with your custom client and tag color. This only shows up to yourself."
|
||||
|
||||
@@ -3,35 +3,35 @@
|
||||
height="408" label="Skins" left="102" mouse_opaque="true"
|
||||
name="Skins panel" width="517">
|
||||
<text bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" left="200"
|
||||
name="EmSkin_txt1" width="512">Selected Skin</text>
|
||||
name="Skin_txt1" width="512">Selected Skin</text>
|
||||
<combo_box allow_text_entry="false" bottom_delta="-20" left_delta="-110" follows="left|top" height="18"
|
||||
max_chars="200" mouse_opaque="true" name="emrd_skin_combo" width="300"
|
||||
control_name="emrd_skin_combo" tool_tip=""/>
|
||||
max_chars="200" mouse_opaque="true" name="custom_skin_combo" width="300"
|
||||
control_name="custom_skin_combo" tool_tip=""/>
|
||||
<text bottom_delta="-22" follows="left|top" font="SansSerifSmall" height="16" left_delta="20"
|
||||
name="EmSkin_txt2" width="512">Primary Author</text>
|
||||
name="Skin_txt2" width="512">Primary Author</text>
|
||||
<view_border blevel_style="in" bottom_delta="-18" follows="left|top" height="16" left_delta="-0"
|
||||
mouse_opaque="false" name="emrd_box1" width="260"/>
|
||||
mouse_opaque="false" name="custom_box1" width="260"/>
|
||||
<text bottom_delta="-0" follows="left|top" font="SansSerifSmall" height="16" left_delta="3"
|
||||
name="emrd_skin_author" width="512">skin author</text>
|
||||
name="custom_skin_author" width="512">skin author</text>
|
||||
<text bottom_delta="-22" follows="left|top" font="SansSerifSmall" height="16" left_delta="-3"
|
||||
name="EmSkin_txt3" width="512">Additional Authors</text>
|
||||
name="Skin_txt3" width="512">Additional Authors</text>
|
||||
<view_border blevel_style="in" bottom_delta="-18" follows="left|top" height="16" left_delta="-0"
|
||||
mouse_opaque="false" name="emrd_box2" width="260"/>
|
||||
mouse_opaque="false" name="custom_box2" width="260"/>
|
||||
<text bottom_delta="-0" follows="left|top" font="SansSerifSmall" height="16" left_delta="3"
|
||||
name="emrd_skin_ad_authors" width="512">additional skin authors</text>
|
||||
name="custom_skin_ad_authors" width="512">additional skin authors</text>
|
||||
<text bottom_delta="-22" follows="left|top" font="SansSerifSmall" height="16" left_delta="-3"
|
||||
name="EmSkin_txt4" width="512">Skin folder</text>
|
||||
name="Skin_txt4" width="512">Skin folder</text>
|
||||
<view_border blevel_style="in" bottom_delta="-18" follows="left|top" height="16" left_delta="-0"
|
||||
mouse_opaque="false" name="emrd_box3" width="260"/>
|
||||
mouse_opaque="false" name="custom_box3" width="260"/>
|
||||
<text bottom_delta="-0" follows="left|top" font="SansSerifSmall" height="16" left_delta="3"
|
||||
name="emrd_skin_folder" width="512">skin folder</text>
|
||||
name="custom_skin_folder" width="512">skin folder</text>
|
||||
<button scale_image="true" image_selected="skin_thumbnail_default.png" image_unselected="skin_thumbnail_default.png" image_hover_selected="skin_thumbnail_default.png" image_hover_unselected="skin_thumbnail_default.png"
|
||||
bottom_delta="-150" default_image_name="None" follows="left|top" label="" width="300" height="130"
|
||||
left_delta="-20" mouse_opaque="true" name="emrd_skin_preview" tool_tip="Skin Preview" />
|
||||
left_delta="-20" mouse_opaque="true" name="custom_skin_preview" tool_tip="Skin Preview" />
|
||||
<text bottom_delta="-22" follows="left|top" font="SansSerifSmall" height="16" left_delta="110"
|
||||
name="EmSkin_txt5" width="512">Additional info</text>
|
||||
name="Skin_txt5" width="512">Additional info</text>
|
||||
<text_editor bottom_delta="-100" embedded_items="false"
|
||||
enabled="false" follows="left|top" font="SansSerifSmall" height="100"
|
||||
is_unicode="false" left_delta="-135" max_length="511" mouse_opaque="true"
|
||||
name="emrd_skin_info" width="350" word_wrap="true" />
|
||||
name="custom_skin_info" width="350" word_wrap="true" />
|
||||
</panel>
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<multi_floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true"
|
||||
height="390" name="floater_chatterbox"
|
||||
rect_control="ChatterboxRect" title="Communicate" width="392">
|
||||
<icon enabled="false" image_name="tabarea.tga"
|
||||
bg_alpha_color="blue" color="DefaultShadowLight" border="false"
|
||||
bottom="-389" follows="left|right|bottom" height="17" left="1" scale_image="true"
|
||||
mouse_opaque="false" name="chatterbox_tab_container" width="391"></icon>
|
||||
<tab_container bottom="2" follows="left|right|top|bottom" height="370" left="0"
|
||||
name="chatterbox_tabs" tab_position="bottom" tab_width="80" width="395" />
|
||||
</multi_floater>
|
||||
|
||||
@@ -1,701 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<floater can_close="true" can_drag_on_left="false" can_minimize="true"
|
||||
can_resize="true" height="570" min_height="570" min_width="780"
|
||||
name="directory" rect_control="FloaterFindRect2" title="Search Second Life"
|
||||
width="780">
|
||||
<tab_container bottom="-570" follows="left|top|right|bottom" height="550" left="0"
|
||||
mouse_opaque="false" name="Directory Tabs" tab_position="top" width="780">
|
||||
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
|
||||
label="All" left="1" mouse_opaque="false" name="find_all_panel" width="778">
|
||||
<string name="searching_text">
|
||||
Searching...
|
||||
</string>
|
||||
<string name="not_found_text">
|
||||
None Found.
|
||||
</string>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
|
||||
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
|
||||
name="find" v_pad="0" width="50">
|
||||
Find:
|
||||
</text>
|
||||
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
|
||||
commit_on_focus_lost="false" enabled="true" follows="top|left|right"
|
||||
font="SansSerif" handle_edit_keys_directly="false" height="18"
|
||||
label="Search" left_delta="56" max_length="254" mouse_opaque="true"
|
||||
name="search_editor" select_all_on_focus_received="false"
|
||||
select_on_focus="false" tab_group="1" tool_tip="Search Second Life"
|
||||
width="160" />
|
||||
<button bottom="-26" follows="top|right" font="SansSerifSmall" height="20" label="Back"
|
||||
left="230" name="back_btn" width="70" />
|
||||
<button bottom="-26" follows="top|right" font="SansSerifSmall" height="20"
|
||||
label="Forward" left="304" name="forward_btn" width="70" />
|
||||
<button bottom="-48" follows="top|right" font="SansSerif" height="20"
|
||||
label="Search" left="121" name="search_btn" width="95" />
|
||||
<combo_box allow_text_entry="false" bottom="-46" follows="right|top" height="18"
|
||||
left="230" max_chars="20" mouse_opaque="true" name="Category"
|
||||
width="158">
|
||||
<combo_item name="AnyCategory" value="All">
|
||||
Any Category
|
||||
</combo_item>
|
||||
<combo_item name="Events" value="Events">
|
||||
Events
|
||||
</combo_item>
|
||||
<combo_item name="Groups" value="Groups">
|
||||
Groups
|
||||
</combo_item>
|
||||
<combo_item name="People" value="People">
|
||||
People
|
||||
</combo_item>
|
||||
<combo_item name="Places" value="Places">
|
||||
Places
|
||||
</combo_item>
|
||||
<combo_item name="Wiki" value="Wiki">
|
||||
Wiki
|
||||
</combo_item>
|
||||
</combo_box>
|
||||
<check_box bottom="-22" control_name="ShowPGSearchAll" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="PG content" left="420" mouse_opaque="true"
|
||||
name="incpg" width="156" />
|
||||
<check_box bottom="-40" control_name="ShowMatureSearchAll" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="Mature content" left="420" mouse_opaque="true"
|
||||
name="incmature" width="156" />
|
||||
<check_box bottom="-58" control_name="ShowAdultSearchAll" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="false"
|
||||
label="Adult content" left="420" mouse_opaque="true"
|
||||
name="incadult" width="156" />
|
||||
<button bottom="-22" enabled="true" follows="right|top" font="SansSerif"
|
||||
halign="center" height="18" label="?" label_selected="?" left="-25"
|
||||
mouse_opaque="true" name="?" width="18" />
|
||||
<web_browser bottom="25" follows="top|left|bottom|right" font="SansSerifSmall" left="10"
|
||||
name="find_browser" right="-10" top="-60" />
|
||||
<text bottom="5" follows="bottom|left" halign="left" height="16" left="10"
|
||||
name="status_text" width="150" />
|
||||
<string name="loading_text">
|
||||
Loading...
|
||||
</string>
|
||||
<string name="done_text">
|
||||
Done
|
||||
</string>
|
||||
<string name="redirect_404_url">
|
||||
http://secondlife.com/app/search/notfound.html
|
||||
</string>
|
||||
<string name="default_search_page">"http://secondlife.com/app/search/index.php?"</string>
|
||||
</panel>
|
||||
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
|
||||
label="Classifieds" left="1" left_delta="68" mouse_opaque="false"
|
||||
name="classified_panel" width="778">
|
||||
<string name="searching_text">
|
||||
Searching...
|
||||
</string>
|
||||
<string name="not_found_text">
|
||||
None Found.
|
||||
</string>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
|
||||
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
|
||||
name="find" v_pad="0" width="50">
|
||||
Find:
|
||||
</text>
|
||||
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
|
||||
follows="left|right|top" font="SansSerif" height="18" left="56"
|
||||
max_length="63" mouse_opaque="true" name="name" width="160" />
|
||||
<check_box bottom="-22" control_name="ShowPGClassifieds" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="PG content" left="420" mouse_opaque="true"
|
||||
name="incpg" width="156" />
|
||||
<check_box bottom="-40" control_name="ShowMatureClassifieds" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="Mature content" left="420" mouse_opaque="true"
|
||||
name="incmature" width="156" />
|
||||
<check_box bottom="-58" control_name="ShowAdultClassifieds" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="false"
|
||||
label="Adult content" left="420" mouse_opaque="true"
|
||||
name="incadult" width="156" />
|
||||
<combo_box allow_text_entry="false" bottom="-46" follows="right|top" height="18" left="230"
|
||||
max_chars="20" mouse_opaque="true" name="Category" width="158">
|
||||
<combo_item name="AnyCategory" value="0">
|
||||
Any Category
|
||||
</combo_item>
|
||||
<combo_item name="Shopping" value="1">
|
||||
Shopping
|
||||
</combo_item>
|
||||
<combo_item name="LandRental" value="2">
|
||||
Land Rental
|
||||
</combo_item>
|
||||
<combo_item name="PropertyRental" value="3">
|
||||
Property Rental
|
||||
</combo_item>
|
||||
<combo_item name="SpecialAttraction" value="4">
|
||||
Special Attraction
|
||||
</combo_item>
|
||||
<combo_item name="NewProducts" value="5">
|
||||
New Products
|
||||
</combo_item>
|
||||
<combo_item name="Employment" value="6">
|
||||
Employment
|
||||
</combo_item>
|
||||
<combo_item name="Wanted" value="7">
|
||||
Wanted
|
||||
</combo_item>
|
||||
<combo_item name="Service" value="8">
|
||||
Service
|
||||
</combo_item>
|
||||
<combo_item name="Personal" value="9">
|
||||
Personal
|
||||
</combo_item>
|
||||
</combo_box>
|
||||
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
|
||||
label="Browse" label_selected="Browse" left="121" mouse_opaque="true"
|
||||
name="Browse" width="95" />
|
||||
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
|
||||
label="Search" label_selected="Search" left="121" mouse_opaque="true" name="Search"
|
||||
visible="false" width="95" />
|
||||
<button bottom="-46" follows="right|top" font="SansSerif" halign="center" height="20"
|
||||
label="Place an Ad..." label_selected="Place an Ad..." left="630"
|
||||
mouse_opaque="true" name="Place an Ad..." width="145" />
|
||||
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
|
||||
height="20" label="Delete" label_selected="Delete" left="80"
|
||||
mouse_opaque="true" name="Delete" width="80" />
|
||||
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true"
|
||||
draw_heading="true" follows="left|top|right|bottom" height="450" left="4"
|
||||
mouse_opaque="true" multi_select="false" name="results" search_column="2" width="339">
|
||||
<column label="" name="icon" width="24" />
|
||||
<column label="" name="type" width="-1" />
|
||||
<column label="Name" name="name" width="225" />
|
||||
<column label="Price" name="price" width="55" />
|
||||
</scroll_list>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
|
||||
mouse_opaque="true" name="result_text" v_pad="0" width="80" />
|
||||
<button bottom="-533" follows="right|bottom" font="SansSerif" halign="center"
|
||||
height="20" label="Next >" label_selected="Next >"
|
||||
mouse_opaque="true" name="Next >" right="344" width="80" />
|
||||
<button bottom_delta="0" follows="right|bottom" font="SansSerif" halign="center"
|
||||
height="20" label="< Prev" label_selected="< Prev"
|
||||
mouse_opaque="true" name="< Prev" right="258" width="80" />
|
||||
</panel>
|
||||
<panel border="true" bottom="-549" default_tab_group="1"
|
||||
follows="left|top|right|bottom" height="533" label="Events" left="1"
|
||||
mouse_opaque="false" name="events_panel" width="778">
|
||||
<string name="searching_text">
|
||||
Searching...
|
||||
</string>
|
||||
<string name="not_found_text">
|
||||
None Found.
|
||||
</string>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
|
||||
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
|
||||
name="text2" v_pad="0" width="50">
|
||||
Find:
|
||||
</text>
|
||||
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
|
||||
follows="left|right|top" font="SansSerif" height="18" left="56"
|
||||
max_length="63" mouse_opaque="true" name="event_search_text" width="160" />
|
||||
<radio_group bottom="-40" draw_border="false" follows="right|top" height="40" left="560"
|
||||
mouse_opaque="true" name="date_mode" width="300">
|
||||
<radio_item bottom="-20" follows="left|top" height="20" left="0" mouse_opaque="true"
|
||||
name="current" width="174">
|
||||
In-Progress and Upcoming
|
||||
</radio_item>
|
||||
<radio_item bottom_delta="-10" follows="left|top" height="20" left="0" mouse_opaque="true"
|
||||
name="date" width="56">
|
||||
Date
|
||||
</radio_item>
|
||||
</radio_group>
|
||||
<button bottom="-40" follows="right|top" font="SansSerif" halign="center" height="20"
|
||||
label="<<" label_selected="<<" left_delta="54"
|
||||
mouse_opaque="true" name="<<" tool_tip="Go back a day" width="24" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-36" drop_shadow_visible="true" follows="right|top" font="SansSerif"
|
||||
h_pad="0" halign="center" height="14" left_delta="22" mouse_opaque="true"
|
||||
name="date_text" v_pad="0" width="48">
|
||||
6/6
|
||||
</text>
|
||||
<button bottom="-40" follows="right|top" font="SansSerif" halign="center" height="20"
|
||||
label=">>" label_selected=">>" left_delta="50"
|
||||
mouse_opaque="true" name=">>" tool_tip="Go forward a day" width="24" />
|
||||
<button bottom="-40" follows="right|top" font="SansSerif" halign="center" height="20"
|
||||
label="Today" label_selected="Today" left_delta="28" mouse_opaque="true"
|
||||
name="Today" tool_tip="Show today's events" width="60" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-24" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="20" left="289"
|
||||
mouse_opaque="true" name="text" v_pad="0" width="90" visible="false">
|
||||
Category:
|
||||
</text>
|
||||
<combo_box allow_text_entry="false" bottom="-46" follows="right|top" height="18" left="230"
|
||||
max_chars="20" mouse_opaque="true" name="category combo" width="158">
|
||||
<combo_item name="All" value="0">
|
||||
Any Category
|
||||
</combo_item>
|
||||
<combo_item name="Discussion" value="18">
|
||||
Discussion
|
||||
</combo_item>
|
||||
<combo_item name="Sports" value="19">
|
||||
Sports
|
||||
</combo_item>
|
||||
<combo_item name="LiveMusic" value="20">
|
||||
Live Music
|
||||
</combo_item>
|
||||
<combo_item name="Commercial" value="22">
|
||||
Commercial
|
||||
</combo_item>
|
||||
<combo_item name="Nightlife/Entertainment" value="23">
|
||||
Nightlife/Entertainment
|
||||
</combo_item>
|
||||
<combo_item name="Games/Contests" value="24">
|
||||
Games/Contests
|
||||
</combo_item>
|
||||
<combo_item name="Pageants" value="25">
|
||||
Pageants
|
||||
</combo_item>
|
||||
<combo_item name="Education" value="26">
|
||||
Education
|
||||
</combo_item>
|
||||
<combo_item name="ArtsandCulture" value="27">
|
||||
Arts and Culture
|
||||
</combo_item>
|
||||
<combo_item name="Charity/SupportGroups" value="28">
|
||||
Charity/Support Groups
|
||||
</combo_item>
|
||||
<combo_item name="Miscellaneous" value="29">
|
||||
Miscellaneous
|
||||
</combo_item>
|
||||
</combo_box>
|
||||
<check_box bottom="-22" control_name="ShowPGEvents" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="PG content" left="420" mouse_opaque="true"
|
||||
name="incpg" width="156" />
|
||||
<check_box bottom="-40" control_name="ShowMatureEvents" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="Mature content" left="420" mouse_opaque="true"
|
||||
name="incmature" width="156" />
|
||||
<check_box bottom="-58" control_name="ShowAdultEvents" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="false"
|
||||
label="Adult content" left="420" mouse_opaque="true"
|
||||
name="incadult" width="156" />
|
||||
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
|
||||
label="Search" label_selected="Search" left="121" mouse_opaque="true" name="Search"
|
||||
visible="true" width="95" />
|
||||
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
|
||||
height="20" label="Delete" label_selected="Delete" left="80"
|
||||
mouse_opaque="true" name="Delete" width="80" />
|
||||
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true" draw_heading="true"
|
||||
follows="left|top|right|bottom" height="450" left="4" mouse_opaque="true"
|
||||
multi_select="false" name="results" search_column="2" width="339">
|
||||
<column label="" name="icon" width="24" />
|
||||
<column label="" name="type" width="-1" />
|
||||
<column dynamicwidth="true" label="Name" name="name" />
|
||||
<column label="Time (PT)" name="date" sort="time" width="106" />
|
||||
<column label="" name="event_id" width="-1" />
|
||||
<column label="Time" name="time" width="-1" />
|
||||
</scroll_list>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
|
||||
mouse_opaque="true" name="result_text" v_pad="0" width="80" />
|
||||
<button bottom="-533" follows="right|bottom" font="SansSerif" halign="center"
|
||||
height="20" label="Next >" label_selected="Next >"
|
||||
mouse_opaque="true" name="Next >" right="344" width="80" />
|
||||
<button bottom_delta="0" follows="right|bottom" font="SansSerif" halign="center"
|
||||
height="20" label="< Prev" label_selected="< Prev"
|
||||
mouse_opaque="true" name="< Prev" right="258" width="80" />
|
||||
</panel>
|
||||
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
|
||||
label="Showcase" left="1" mouse_opaque="false" name="showcase_panel"
|
||||
width="778">
|
||||
<string name="searching_text">Searching...</string>
|
||||
<string name="not_found_text">None Found.</string>
|
||||
<button bottom="-30" follows="top|left" font="SansSerifSmall" height="20"
|
||||
label="Back"
|
||||
left="10"
|
||||
name="back_btn" width="70" />
|
||||
<button bottom_delta="0" follows="top|left" font="SansSerifSmall" height="20"
|
||||
label="Forward" left_delta="75"
|
||||
name="forward_btn" width="70" />
|
||||
<!-- No mature content checkbox, showcase is all PG -->
|
||||
<web_browser name="showcase_browser"
|
||||
bottom="25"
|
||||
follows="top|left|bottom|right"
|
||||
font="SansSerifSmall"
|
||||
left="10"
|
||||
right="-10"
|
||||
top="-40" />
|
||||
<text bottom="5"
|
||||
follows="bottom|left"
|
||||
halign="left"
|
||||
left="10"
|
||||
width="150"
|
||||
name="status_text"
|
||||
height="16" />
|
||||
<string name="loading_text">Loading...</string>
|
||||
<string name="done_text">Done</string>
|
||||
<string name="redirect_404_url">http://secondlife.com/app/search/notfound.html</string>
|
||||
<string name="default_search_page">"http://secondlife.com/app/showcase/index.php?"</string>
|
||||
</panel>
|
||||
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
|
||||
label="Land Sales" left="1" mouse_opaque="false" name="land_sales_panel"
|
||||
width="778" default_tab_group="1">
|
||||
<string name="searching_text">
|
||||
Searching...
|
||||
</string>
|
||||
<string name="not_found_text">
|
||||
None Found.
|
||||
</string>
|
||||
<string name="land_help_text">
|
||||
Land can be bought direct for Linden Dollars (L$) or at auction for either L$ or US$.
|
||||
To buy direct, visit the land and click on the place name in the title bar.
|
||||
</string>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
|
||||
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
|
||||
name="find" v_pad="0" width="50">
|
||||
Find:
|
||||
</text>
|
||||
<check_box bottom="-22" control_name="ShowPGLand" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="PG content" left="420" mouse_opaque="true"
|
||||
name="incpg" tab_group="7" width="156" />
|
||||
<check_box bottom="-40" control_name="ShowMatureLand" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="Mature content" left="420" mouse_opaque="true"
|
||||
name="incmature" tab_group="8" width="156" />
|
||||
<check_box bottom="-58" control_name="ShowAdultLand" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="false"
|
||||
label="Adult content" left="420" mouse_opaque="true"
|
||||
name="incadult" tab_group="9" width="156" />
|
||||
<combo_box allow_text_entry="false" bottom="-46" follows="left|top|right" height="18" left="282"
|
||||
max_chars="20" mouse_opaque="true" name="type" tab_group="6" width="128">
|
||||
<combo_item name="AllTypes" value="All Types">
|
||||
All Types
|
||||
</combo_item>
|
||||
<combo_item name="Auction" value="Auction">
|
||||
Auction
|
||||
</combo_item>
|
||||
<combo_item name="MainlandSales" value="Mainland Sales">
|
||||
For Sale - Mainland
|
||||
</combo_item>
|
||||
<combo_item name="EstateSales" value="Estate Sales">
|
||||
For Sale - Estate
|
||||
</combo_item>
|
||||
</combo_box>
|
||||
<check_box bottom="-24" control_name="FindLandPrice" follows="left|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="Price ≤ " left="56" mouse_opaque="true" name="pricecheck"
|
||||
tab_group="1" width="88" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" follows="left|top"
|
||||
bottom="-24" font="SansSerifSmall" halign="left" height="16" left="116" mouse_opaque="true"
|
||||
name="pricecheck_symbol" width="15">
|
||||
L$
|
||||
</text>
|
||||
<check_box bottom_delta="-18" control_name="FindLandArea" follows="left|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="Area ≥ " left="56" mouse_opaque="true" name="areacheck"
|
||||
tab_group="3" width="80" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" follows="left|top"
|
||||
bottom="-42" font="SansSerifSmall" halign="left" height="16" left="170" mouse_opaque="true"
|
||||
name="areacheck_symbol" width="15">
|
||||
m²
|
||||
</text>
|
||||
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-22"
|
||||
follows="left|top" font="SansSerifSmall" height="16" left="132"
|
||||
max_length="10" mouse_opaque="true" name="priceedit" tab_group="2" width="50" />
|
||||
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="-18"
|
||||
follows="left|top" font="SansSerifSmall" height="16" left="117"
|
||||
max_length="10" mouse_opaque="true" name="areaedit" tab_group="4" width="50" />
|
||||
<button bottom="-48" follows="left|top" font="SansSerif" halign="center" height="20"
|
||||
label="Search" label_selected="Search" left="208" mouse_opaque="true"
|
||||
name="Search" tab_group="5" width="70" />
|
||||
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true" draw_heading="true"
|
||||
follows="left|top|right|bottom" height="450" left="4" mouse_opaque="true"
|
||||
multi_select="false" name="results" search_column="2" tab_group="10" width="387">
|
||||
<column label="" name="icon" width="24" />
|
||||
<column label="" name="type" width="-1" />
|
||||
<column dynamicwidth="true" label="Name" name="name" />
|
||||
<column label="Type" name="landtype" width="50" />
|
||||
<column label="L$ Price" name="price" width="65" />
|
||||
<column label="Area" name="area" width="50" />
|
||||
<column label="L$/m²" name="per_meter" width="65" />
|
||||
</scroll_list>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
|
||||
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
|
||||
<button bottom="-533" follows="right|bottom" font="SansSerif" halign="center"
|
||||
height="20" label="Next >" label_selected="Next >"
|
||||
mouse_opaque="true" name="Next >" right="344" width="80" />
|
||||
<button bottom_delta="0" follows="right|bottom" font="SansSerif" halign="center"
|
||||
height="20" label="< Prev" label_selected="< Prev"
|
||||
mouse_opaque="true" name="< Prev" right="258" width="80" />
|
||||
</panel>
|
||||
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
|
||||
label="Places" left="1" mouse_opaque="false" name="places_panel"
|
||||
width="778">
|
||||
<string name="searching_text">
|
||||
Searching...
|
||||
</string>
|
||||
<string name="not_found_text">
|
||||
None Found.
|
||||
</string>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
|
||||
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
|
||||
name="find" v_pad="0" width="50">
|
||||
Find:
|
||||
</text>
|
||||
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
|
||||
follows="left|right|top" font="SansSerif" height="18" left="56"
|
||||
max_length="63" mouse_opaque="true" name="name" width="160" />
|
||||
<check_box bottom="-22" control_name="ShowPGSims" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="PG content" left="420" mouse_opaque="true"
|
||||
name="incpg" width="156" />
|
||||
<check_box bottom="-40" control_name="ShowMatureSims" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="Mature content" left="420" mouse_opaque="true"
|
||||
name="incmature" width="156" />
|
||||
<check_box bottom="-58" control_name="ShowAdultSims" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="false"
|
||||
label="Adult content" left="420" mouse_opaque="true"
|
||||
name="incadult" width="156" />
|
||||
<combo_box allow_text_entry="false" bottom="-46" enabled="false" follows="right|top" height="18" left="230"
|
||||
max_chars="20" mouse_opaque="true" name="Category" width="128" visible="false">
|
||||
<combo_item name="AnyCategory" value="any">
|
||||
Any Category
|
||||
</combo_item>
|
||||
<combo_item name="LindenLocation" value="linden">
|
||||
Linden Location
|
||||
</combo_item>
|
||||
<combo_item name="Arts&Culture" value="arts">
|
||||
Arts & Culture
|
||||
</combo_item>
|
||||
<combo_item name="Business" value="store">
|
||||
Business
|
||||
</combo_item>
|
||||
<combo_item name="Educational" value="educational">
|
||||
Educational
|
||||
</combo_item>
|
||||
<combo_item name="Gaming" value="game">
|
||||
Gaming
|
||||
</combo_item>
|
||||
<combo_item name="Hangout" value="gather">
|
||||
Hangout
|
||||
</combo_item>
|
||||
<combo_item name="NewcomerFriendly" value="newcomer">
|
||||
Newcomer Friendly
|
||||
</combo_item>
|
||||
<combo_item name="Parks&Nature" value="park">
|
||||
Parks & Nature
|
||||
</combo_item>
|
||||
<combo_item name="Residential" value="home">
|
||||
Residential
|
||||
</combo_item>
|
||||
<combo_item name="Shopping" value="shopping">
|
||||
Shopping
|
||||
</combo_item>
|
||||
<combo_item name="Other" value="other">
|
||||
Other
|
||||
</combo_item>
|
||||
</combo_box>
|
||||
<!-- This is used only during the AO transition and can be deleted once the AO transition is
|
||||
complete. It is identical to the combo box above except that it has the Adult category.
|
||||
You might also want to set it back to default visible and enabled. -->
|
||||
<combo_box allow_text_entry="false" bottom="-46" enabled="false" follows="right|top" height="18" left="230"
|
||||
max_chars="20" mouse_opaque="true" name="Category_Adult" width="128" visible="false">
|
||||
<combo_item name="AnyCategory" value="any">
|
||||
Any Category
|
||||
</combo_item>
|
||||
<combo_item name="LindenLocation" value="linden">
|
||||
Linden Location
|
||||
</combo_item>
|
||||
<combo_item name="Adult" value="adult">
|
||||
Adult
|
||||
</combo_item>
|
||||
<combo_item name="Arts&Culture" value="arts">
|
||||
Arts & Culture
|
||||
</combo_item>
|
||||
<combo_item name="Business" value="store">
|
||||
Business
|
||||
</combo_item>
|
||||
<combo_item name="Educational" value="educational">
|
||||
Educational
|
||||
</combo_item>
|
||||
<combo_item name="Gaming" value="game">
|
||||
Gaming
|
||||
</combo_item>
|
||||
<combo_item name="Hangout" value="gather">
|
||||
Hangout
|
||||
</combo_item>
|
||||
<combo_item name="NewcomerFriendly" value="newcomer">
|
||||
Newcomer Friendly
|
||||
</combo_item>
|
||||
<combo_item name="Parks&Nature" value="park">
|
||||
Parks & Nature
|
||||
</combo_item>
|
||||
<combo_item name="Residential" value="home">
|
||||
Residential
|
||||
</combo_item>
|
||||
<combo_item name="Shopping" value="shopping">
|
||||
Shopping
|
||||
</combo_item>
|
||||
<combo_item name="Other" value="other">
|
||||
Other
|
||||
</combo_item>
|
||||
</combo_box>
|
||||
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
|
||||
label="Search" label_selected="Search" left="121" mouse_opaque="true"
|
||||
name="Search" width="95" />
|
||||
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true"
|
||||
draw_heading="true"
|
||||
|
||||
follows="left|top|right|bottom" height="450" left="4" mouse_opaque="true"
|
||||
multi_select="false" name="results" search_column="2" width="339">
|
||||
<column label="" name="icon" width="24" />
|
||||
<column label="" name="type" width="-1" />
|
||||
<column dynamicwidth="true" label="Name" name="name" />
|
||||
<column label="Traffic" name="dwell" width="75" />
|
||||
</scroll_list>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
|
||||
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
|
||||
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
|
||||
height="20" label="Next >" label_selected="Next >"
|
||||
mouse_opaque="true" name="Next >" right="344" width="80" />
|
||||
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
|
||||
height="20" label="< Prev" label_selected="< Prev"
|
||||
mouse_opaque="true" name="< Prev" right="258" width="80" />
|
||||
</panel>
|
||||
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
|
||||
label="People" left="1" mouse_opaque="false" name="people_panel"
|
||||
width="778">
|
||||
<string name="searching_text">
|
||||
Searching...
|
||||
</string>
|
||||
<string name="not_found_text">
|
||||
None Found.
|
||||
</string>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
|
||||
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
|
||||
name="find" v_pad="0" width="50">
|
||||
Find:
|
||||
</text>
|
||||
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
|
||||
follows="left|right|top" font="SansSerif" height="18" left="56"
|
||||
max_length="63" mouse_opaque="true" name="name" width="160" />
|
||||
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
|
||||
label="Search" label_selected="Search" left="121" mouse_opaque="true"
|
||||
name="Search" width="95" />
|
||||
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true"
|
||||
draw_heading="true"
|
||||
|
||||
follows="left|top|right|bottom" height="450" left="4" mouse_opaque="true"
|
||||
multi_select="false" name="results" search_column="2" width="326">
|
||||
<column label="" name="icon" width="24" />
|
||||
<column label="" name="type" width="-1" />
|
||||
<column label="Name" name="name" width="274" />
|
||||
</scroll_list>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
|
||||
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
|
||||
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
|
||||
height="20" label="Next >" label_selected="Next >"
|
||||
mouse_opaque="true" name="Next >" right="330" width="80" />
|
||||
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
|
||||
height="20" label="< Prev" label_selected="< Prev"
|
||||
mouse_opaque="true" name="< Prev" right="244" width="80" />
|
||||
</panel>
|
||||
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
|
||||
label="Groups" left="1" mouse_opaque="false"
|
||||
name="groups_panel"
|
||||
width="778">
|
||||
<string name="searching_text">Searching...</string>
|
||||
<string name="not_found_text">None Found.</string>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
|
||||
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
|
||||
name="find" v_pad="0" width="50">
|
||||
Find:
|
||||
</text>
|
||||
<line_editor bevel_style="in"
|
||||
border_style="line"
|
||||
border_thickness="1"
|
||||
bottom="-24"
|
||||
enabled="true"
|
||||
follows="top|left|right"
|
||||
font="SansSerif"
|
||||
handle_edit_keys_directly="false"
|
||||
commit_on_focus_lost="false"
|
||||
height="18"
|
||||
hidden="false"
|
||||
label="Search"
|
||||
left_delta="56"
|
||||
width="160"
|
||||
max_length="254"
|
||||
mouse_opaque="true"
|
||||
name="search_editor"
|
||||
select_all_on_focus_received="false"
|
||||
select_on_focus="false"
|
||||
tab_group="1"
|
||||
tool_tip="Search Second Life" />
|
||||
<button bottom="-26" follows="top|right" font="SansSerifSmall" height="20" label="Back"
|
||||
left="230" name="back_btn" width="70" />
|
||||
<button bottom="-26" follows="top|right" font="SansSerifSmall" height="20"
|
||||
label="Forward" left="304" name="forward_btn" width="70" />
|
||||
<button bottom="-48" follows="top|right" font="SansSerif" height="20"
|
||||
label="Search" left="121" name="search_btn" width="95" />
|
||||
<check_box bottom="-22" control_name="ShowPGGroups" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="PG content" left="420" mouse_opaque="true"
|
||||
name="incpg" width="156" />
|
||||
<check_box bottom="-40" control_name="ShowMatureGroups" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="true"
|
||||
label="Mature content" left="420" mouse_opaque="true"
|
||||
name="incmature" width="156" />
|
||||
<check_box bottom="-58" control_name="ShowAdultGroups" follows="right|top"
|
||||
font="SansSerifSmall" height="16" initial_value="false"
|
||||
label="Adult content" left="420" mouse_opaque="true"
|
||||
name="incadult" width="156" />
|
||||
<web_browser name="groups_browser"
|
||||
bottom="25"
|
||||
follows="top|left|bottom|right"
|
||||
font="SansSerifSmall"
|
||||
left="10"
|
||||
right="-10"
|
||||
top="-60" />
|
||||
<text bottom="5"
|
||||
follows="bottom|left"
|
||||
halign="left"
|
||||
left="10"
|
||||
width="150"
|
||||
name="status_text"
|
||||
height="16" />
|
||||
<string name="loading_text">Loading...</string>
|
||||
<string name="done_text">Done</string>
|
||||
<string name="redirect_404_url">http://secondlife.com/app/search/notfound.html</string>
|
||||
<string name="default_search_page">"http://secondlife.com/app/search/index_groups.php?"</string>
|
||||
</panel>
|
||||
</tab_container>
|
||||
<panel bottom="-560" follows="right|top" height="470" left="340"
|
||||
name="classified_details_panel" width="440" />
|
||||
<panel bottom="-560" follows="right|top" height="486" left="350" name="Panel Avatar"
|
||||
width="430" />
|
||||
<panel bottom="-560" follows="right|top" height="470" left="340"
|
||||
name="event_details_panel" width="440" />
|
||||
<panel bottom="-580" follows="right|top" height="515" left="350"
|
||||
name="group_details_panel_holder" width="430">
|
||||
<panel bottom="0" follows="right|top" height="470" left="0" name="group_details_panel"
|
||||
width="430" />
|
||||
</panel>
|
||||
<panel bottom="5" follows="right|top" height="470" left="340"
|
||||
name="place_details_panel" width="440" />
|
||||
<panel bottom="0" follows="right|top" height="470" left="385"
|
||||
name="place_details_small_panel" width="395" />
|
||||
</floater>
|
||||
@@ -1,66 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<floater bottom="-130" can_close="true" can_drag_on_left="false" can_minimize="true"
|
||||
can_resize="false" height="150" left="50" min_height="150"
|
||||
min_width="600" mouse_opaque="true" name="Environment Editor Floater"
|
||||
rect_control="FloaterEnvRect" title="Environment Editor" width="600">
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-48" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="EnvTimeText" v_pad="0" width="140">
|
||||
Time of Day
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-30" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="16"
|
||||
left="15" mouse_opaque="true" name="EnvTimeText2" v_pad="0" width="140">
|
||||
12:00 PM
|
||||
</text>
|
||||
<icon bottom="-55" follows="left|top" height="25" image_name="icon_diurnal.tga"
|
||||
left="85" name="EnvDayCycle" width="200" />
|
||||
<slider bottom_delta="-20" can_edit_text="false" control_name="EnvTimeSlider"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.0069444"
|
||||
initial_val="0.7" label="" left_delta="0" max_val="0.99" min_val="0"
|
||||
mouse_opaque="true" name="EnvTimeSlider" show_text="false" value="0.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-102" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="EnvCloudText" v_pad="0" width="140">
|
||||
Cloud Cover
|
||||
</text>
|
||||
<slider bottom="-100" can_edit_text="false" control_name="EnvCloudSlider"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="85" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="EnvCloudSlider" show_text="true" value="0.7"
|
||||
width="210" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-55" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="310" mouse_opaque="true" name="EnvWaterColorText" v_pad="0"
|
||||
width="140">
|
||||
Water Color
|
||||
</text>
|
||||
<color_swatch border_color="0.45098, 0.517647, 0.607843, 1" bottom="-80"
|
||||
can_apply_immediately="true" color="0.5, 0.5, 0.5, 1" follows="left|top"
|
||||
height="50" label="" left="390" mouse_opaque="true"
|
||||
name="EnvWaterColor" tool_tip="Click to open Color Picker" width="40" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-102" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="310" mouse_opaque="true" name="EnvWaterFogText" v_pad="0" width="140">
|
||||
Water Fog
|
||||
</text>
|
||||
<slider bottom="-100" can_edit_text="false" control_name="EnvWaterFogSlider"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.1"
|
||||
initial_val="0" label="" left="385" max_val="10" min_val="0"
|
||||
mouse_opaque="true" name="EnvWaterFogSlider" show_text="true" value="0"
|
||||
width="210" />
|
||||
<button bottom="-140" follows="left|top" font="SansSerifSmall" height="20"
|
||||
label="Use Estate Time" left="8" name="EnvUseEstateTimeButton" width="137" />
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="20"
|
||||
label="Advanced Sky" left="154" name="EnvAdvancedSkyButton" width="137" />
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="20"
|
||||
label="Advanced Water" left="300" name="EnvAdvancedWaterButton" width="137" />
|
||||
<button bottom="-40" follows="left|top" font="SansSerif" height="18" label="?"
|
||||
left="570" name="EnvSettingsHelpButton" width="22" />
|
||||
</floater>
|
||||
@@ -1,23 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<floater bottom="-668" can_close="true" can_drag_on_left="false" can_minimize="true"
|
||||
can_resize="true" enabled="true" follows="left|top" height="550" left="306"
|
||||
min_height="271" min_width="290" mouse_opaque="true" name="script ed float"
|
||||
rect_control="FloaterOpenObjectRect" title="Script: New Script" width="500">
|
||||
<button bottom="-545" enabled="true" follows="right|bottom" font="SansSerif"
|
||||
halign="center" height="20" label="Reset" label_selected="Reset" left="362"
|
||||
mouse_opaque="true" name="Reset" width="128" />
|
||||
<check_box bottom="-545" enabled="false" follows="left|bottom" font="SansSerif"
|
||||
height="18" initial_value="true" label="Running" left="12"
|
||||
mouse_opaque="true" name="running" radio_style="false" width="100" />
|
||||
<panel bottom="-524" enabled="true" follows="left|top|right|bottom" height="506"
|
||||
left="1" name="script ed panel" width="497" />
|
||||
<check_box bottom="-545" enabled="false" follows="left|bottom" font="SansSerif"
|
||||
height="18" hidden="false" initial_value="true" label="Mono" left="82"
|
||||
mouse_opaque="true" name="mono" radio_style="false" width="100" />
|
||||
<string name="not_allowed">
|
||||
You are not allowed to view this script.
|
||||
</string>
|
||||
<string name="script_running">
|
||||
Running
|
||||
</string>
|
||||
</floater>
|
||||
@@ -1,86 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<panel bottom="-550" enabled="true" follows="left|top|right|bottom" height="508"
|
||||
left="0" mouse_opaque="true" name="script panel" width="500">
|
||||
<text_editor type="string" length="1" bottom="-393"
|
||||
embedded_items="false" enabled="true" follows="left|top|right|bottom"
|
||||
font="Monospace" height="376" ignore_tab="false" left="4"
|
||||
max_length="65536" mouse_opaque="true" name="Script Editor" width="492"
|
||||
word_wrap="true" show_line_numbers="true">
|
||||
Loading...
|
||||
</text_editor>
|
||||
<button bottom="-499" enabled="true" follows="right|bottom" font="SansSerif"
|
||||
halign="center" height="20" label="Save" label_selected="Save" left="360"
|
||||
mouse_opaque="true" name="Save_btn" width="128" />
|
||||
<scroll_list background_visible="true" bottom="-457" column_padding="5" draw_border="true"
|
||||
draw_heading="false" draw_stripes="true" enabled="true"
|
||||
follows="left|right|bottom" height="60" left="4" mouse_opaque="true"
|
||||
multi_select="false" name="lsl errors" width="492" />
|
||||
<combo_box allow_text_entry="false" bottom="-499" enabled="true" follows="left|bottom"
|
||||
height="20" label="Insert..." left="12" max_chars="20" mouse_opaque="true"
|
||||
name="Insert..." width="128" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-473" drop_shadow_visible="true" enabled="true"
|
||||
follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left"
|
||||
height="12" left="12" mouse_opaque="true" name="line_col" v_pad="0"
|
||||
width="128" />
|
||||
<menu_bar bottom="-15" drop_shadow="false" enabled="true" follows="left|top|right"
|
||||
height="18" left="8" mouse_opaque="false" name="script_menu" opaque="false"
|
||||
tear_off="false" width="476">
|
||||
<menu bottom="0" drop_shadow="true" enabled="true" height="62"
|
||||
left="0" mouse_opaque="false" name="File" opaque="true" tear_off="false"
|
||||
width="138">
|
||||
<menu_item_call bottom_delta="-30" height="20" label="Save" left="0" mouse_opaque="true"
|
||||
name="Save" width="138" />
|
||||
<menu_item_separator bottom_delta="-38" height="8" left="0" mouse_opaque="true" name="separator"
|
||||
width="138" />
|
||||
<menu_item_call bottom_delta="-58" height="20" label="Revert All Changes" left="0"
|
||||
mouse_opaque="true" name="Revert All Changes" width="138" />
|
||||
</menu>
|
||||
<menu bottom="665" drop_shadow="true" enabled="true" height="198"
|
||||
left="222" mouse_opaque="false" name="Edit" opaque="true" tear_off="false"
|
||||
width="139">
|
||||
<menu_item_call bottom_delta="-30" enabled="false" height="20" label="Undo" left="0"
|
||||
mouse_opaque="true" name="Undo" width="139" />
|
||||
<menu_item_call bottom_delta="-50" enabled="false" height="20" label="Redo" left="0"
|
||||
mouse_opaque="true" name="Redo" width="139" />
|
||||
<menu_item_separator bottom_delta="-58" enabled="true" height="8" label="-----------" left="0"
|
||||
mouse_opaque="true" name="separator" width="139" />
|
||||
<menu_item_call bottom_delta="-78" enabled="false" height="20" label="Cut" left="0"
|
||||
mouse_opaque="true" name="Cut" width="139" />
|
||||
<menu_item_call bottom_delta="-98" enabled="false" height="20" label="Copy" left="0"
|
||||
mouse_opaque="true" name="Copy" width="139" />
|
||||
<menu_item_call bottom_delta="-118" enabled="false" height="20" label="Paste" left="0"
|
||||
mouse_opaque="true" name="Paste" width="139" />
|
||||
<menu_item_separator bottom_delta="-126" enabled="true" height="8" label="-----------" left="0"
|
||||
mouse_opaque="true" name="separator2" width="139" />
|
||||
<menu_item_call bottom_delta="-146" enabled="true" height="20" label="Select All" left="0"
|
||||
mouse_opaque="true" name="Select All" width="139" />
|
||||
<menu_item_call bottom_delta="-166" enabled="false" height="20" label="Deselect" left="0"
|
||||
mouse_opaque="true" name="Deselect" width="139" />
|
||||
<menu_item_separator bottom_delta="-174" enabled="true" height="8" label="-----------" left="0"
|
||||
mouse_opaque="true" name="separator3" width="139" />
|
||||
<menu_item_call bottom_delta="-194" enabled="true" height="20" label="Search / Replace..."
|
||||
left="0" mouse_opaque="true" name="Search / Replace..." width="139" />
|
||||
</menu>
|
||||
<menu bottom="-18" drop_shadow="true" enabled="true" height="34"
|
||||
left="0" mouse_opaque="false" name="Help" opaque="true" tear_off="false"
|
||||
width="112">
|
||||
<menu_item_call bottom="-30" enabled="true" height="20" label="Help..." left="0"
|
||||
mouse_opaque="true" name="Help..." width="112" />
|
||||
<menu_item_call bottom="-30" enabled="true" height="20" label="LSL Wiki Help..." left="0"
|
||||
mouse_opaque="true" name="LSL Wiki Help..." width="112" />
|
||||
</menu>
|
||||
</menu_bar>
|
||||
<string name="loading">
|
||||
Loading...
|
||||
</string>
|
||||
<string name="can_not_view">
|
||||
You are not allowed to view this script.
|
||||
</string>
|
||||
<string name="public_objects_can_not_run">
|
||||
Public Objects cannot run scripts
|
||||
</string>
|
||||
<string name="script_running">
|
||||
Running
|
||||
</string>
|
||||
</panel>
|
||||
@@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<floater bottom="-763" can_close="true" can_drag_on_left="false" can_minimize="true"
|
||||
can_resize="true" enabled="true" height="400" left="408" min_height="100"
|
||||
min_width="100" mouse_opaque="true" name="queue" title="Reset Progress"
|
||||
width="300">
|
||||
<button bottom="-392" enabled="true" follows="right|bottom" font="SansSerif"
|
||||
halign="center" height="24" label="Close" label_selected="Close" left="220"
|
||||
mouse_opaque="true" name="close" width="64" />
|
||||
<scroll_list background_visible="true" bottom="-364" column_padding="5" draw_border="true"
|
||||
draw_heading="false" draw_stripes="true" enabled="true"
|
||||
follows="left|top|right|bottom" height="344" left="4" mouse_opaque="true"
|
||||
multi_select="false" name="queue output" width="292" />
|
||||
</floater>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,260 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<floater bottom="-150" can_close="true" can_drag_on_left="false" can_minimize="true"
|
||||
can_resize="false" height="240" left="50" min_height="200"
|
||||
min_width="400" mouse_opaque="true" name="Water Floater"
|
||||
rect_control="FloaterAdvancedWaterRect" title="Advanced Water Editor"
|
||||
width="700">
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-50" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="KeyFramePresetsText" v_pad="0"
|
||||
width="110">
|
||||
Water Presets:
|
||||
</text>
|
||||
<combo_box allow_text_entry="false" bottom="-50" follows="left|top" height="18"
|
||||
left_delta="110" max_chars="20" mouse_opaque="true"
|
||||
name="WaterPresetsCombo" width="150" />
|
||||
<button bottom="-53" enabled="true" font="SansSerif" halign="center" height="20"
|
||||
label="New" label_selected="New" left_delta="170"
|
||||
mouse_opaque="true" name="WaterNewPreset" scale_image="true" width="70" />
|
||||
<button bottom_delta="0" enabled="true" font="SansSerif" halign="center" height="20"
|
||||
label="Save" label_selected="Save" left_delta="80"
|
||||
mouse_opaque="true" name="WaterSavePreset" scale_image="true" width="70" />
|
||||
<button bottom_delta="0" enabled="true" font="SansSerif" halign="center" height="20"
|
||||
label="Delete" label_selected="Delete" left_delta="80"
|
||||
mouse_opaque="true" name="WaterDeletePreset" scale_image="true" width="70" />
|
||||
<tab_container bottom="-240" follows="left|top" height="180" left="0"
|
||||
mouse_opaque="false" name="Water Tabs" tab_position="top" width="700">
|
||||
<panel border="true" bottom="-240" follows="left|top|right|bottom" height="180"
|
||||
label="Settings" left="1" mouse_opaque="false"
|
||||
name="Settings" width="698">
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="BHText" v_pad="0" width="355">
|
||||
Water Fog Color
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="160" name="WaterFogColorHelp" width="18" />
|
||||
<color_swatch border_color="0.45098, 0.517647, 0.607843, 1" bottom="-80"
|
||||
can_apply_immediately="true" color="0.5, 0.5, 0.5, 1" follows="left|top"
|
||||
height="50" label="" left="40" mouse_opaque="true"
|
||||
name="WaterFogColor" tool_tip="Click to open Color Picker" width="40" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-90" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="WaterFogDensText" v_pad="0" width="355">
|
||||
Fog Density Exponent
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="160" name="WaterFogDensityHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WaterFogDensity"
|
||||
decimal_digits="1" follows="left" height="10" increment=".1"
|
||||
initial_val="16" label="" left="24" max_val="10" min_val="0"
|
||||
mouse_opaque="true" name="WaterFogDensity" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-130" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="WaterUnderWaterFogModText" v_pad="0"
|
||||
width="355">
|
||||
Underwater Fog Modifier
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="160" name="WaterUnderWaterFogModHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="" decimal_digits="2"
|
||||
follows="left" height="10" increment=".01" initial_val="16" label=""
|
||||
left="24" max_val="2" min_val="0" mouse_opaque="true"
|
||||
name="WaterUnderWaterFogMod" show_text="true" value="0.25" width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="245" mouse_opaque="true" name="BDensText" v_pad="0" width="355">
|
||||
Reflection Wavelet Scale
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="395" name="WaterNormalScaleHelp" width="18" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-37" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left="245" mouse_opaque="true" name="BHText2" v_pad="0" width="10">
|
||||
1
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText3" v_pad="0" width="10">
|
||||
2
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText4" v_pad="0" width="10">
|
||||
3
|
||||
</text>
|
||||
<slider bottom="-50" can_edit_text="false" control_name="WaterNormalScaleX"
|
||||
decimal_digits="1" follows="left" height="10" increment="0.1"
|
||||
initial_val="0.7" label="" left="259" max_val="10" min_val="0"
|
||||
mouse_opaque="true" name="WaterNormalScaleX" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WaterNormalScaleY"
|
||||
decimal_digits="1" follows="left" height="10" increment="0.1"
|
||||
initial_val="0.7" label="" left="259" max_val="10" min_val="0"
|
||||
mouse_opaque="true" name="WaterNormalScaleY" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WaterNormalScaleZ"
|
||||
decimal_digits="1" follows="left" height="10" increment="0.1"
|
||||
initial_val="0.7" label="" left="259" max_val="10" min_val="0"
|
||||
mouse_opaque="true" name="WaterNormalScaleZ" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-80" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="245" mouse_opaque="true" name="HDText" v_pad="0" width="355">
|
||||
Fresnel Scale
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="395" name="WaterFresnelScaleHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WaterFresnelScale"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WaterFresnelScale" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-115" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="245" mouse_opaque="true" name="FresnelOffsetText" v_pad="0"
|
||||
width="355">
|
||||
Fresnel Offset
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="395" name="WaterFresnelOffsetHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WaterFresnelOffset"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WaterFresnelOffset" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="480" mouse_opaque="true" name="DensMultText" v_pad="0" width="355">
|
||||
Refract Scale Above
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="630" name="WaterScaleAboveHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WaterScaleAbove"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.1" label="" left="494" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WaterScaleAbove" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-53" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="480" mouse_opaque="true" name="WaterScaleBelowText" v_pad="0"
|
||||
width="355">
|
||||
Refract Scale Below
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="630" name="WaterScaleBelowHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WaterScaleBelow"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0" label="" left="494" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WaterScaleBelow" show_text="true" value="0.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-87" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="480" mouse_opaque="true" name="MaxAltText" v_pad="0" width="355">
|
||||
Blur Multiplier
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="630" name="WaterBlurMultiplierHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WaterBlurMult"
|
||||
decimal_digits="3" follows="left" height="10" increment=".001"
|
||||
initial_val="0" label="" left="494" max_val=".16" min_val="0"
|
||||
mouse_opaque="true" name="WaterBlurMult" show_text="true" value="0"
|
||||
width="200" />
|
||||
</panel>
|
||||
<panel border="true" bottom="-240" follows="left|top|right|bottom" height="180"
|
||||
label="Image" left="1" mouse_opaque="false" name="Waves"
|
||||
width="698">
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="BHText" v_pad="0" width="355">
|
||||
Big Wave Direction
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="155" name="WaterWave1Help" width="18" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-37" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left="10" mouse_opaque="true" name="WaterWave1DirXText" v_pad="0"
|
||||
width="10">
|
||||
X
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="WaterWave1DirYText" v_pad="0"
|
||||
width="10">
|
||||
Y
|
||||
</text>
|
||||
<slider bottom="-50" can_edit_text="false" control_name="WaterWave1DirX"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="24" max_val="4" min_val="-4"
|
||||
mouse_opaque="true" name="WaterWave1DirX" show_text="true" value="0.7"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WaterWave1DirY"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="24" max_val="4" min_val="-4"
|
||||
mouse_opaque="true" name="WaterWave1DirY" show_text="true" value="0.7"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-70" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="BHText2" v_pad="0" width="355">
|
||||
Little Wave Direction
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="155" name="WaterWave2Help" width="18" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-87" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left="10" mouse_opaque="true" name="WaterWave2DirXText" v_pad="0"
|
||||
width="10">
|
||||
X
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="WaterWave2DirYText" v_pad="0"
|
||||
width="10">
|
||||
Y
|
||||
</text>
|
||||
<slider bottom="-100" can_edit_text="false" control_name="WaterWave2DirX"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="24" max_val="4" min_val="-4"
|
||||
mouse_opaque="true" name="WaterWave2DirX" show_text="true" value="0.7"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WaterWave2DirY"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="24" max_val="4" min_val="-4"
|
||||
mouse_opaque="true" name="WaterWave2DirY" show_text="true" value="0.7"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="240" mouse_opaque="true" name="BHText3" v_pad="0" width="355">
|
||||
Normal Map
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="365" name="WaterNormalMapHelp" width="18" />
|
||||
<texture_picker bottom="-165" height="143" label="" left="250" name="WaterNormalMap"
|
||||
width="128" />
|
||||
</panel>
|
||||
</tab_container>
|
||||
<string name="WLDefaultWaterNames">
|
||||
Default:Glassy:Pond:Murky:Second Plague:SNAKE!!!:Valdez
|
||||
</string>
|
||||
</floater>
|
||||
@@ -1,593 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<floater bottom="-150" can_close="true" can_drag_on_left="false" can_minimize="true"
|
||||
can_resize="false" height="220" left="50" min_height="180"
|
||||
min_width="400" mouse_opaque="true" name="WindLight floater"
|
||||
rect_control="FloaterAdvancedSkyRect" title="Advanced Sky Editor"
|
||||
width="700">
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-50" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="KeyFramePresetsText" v_pad="0"
|
||||
width="110">
|
||||
Sky Presets:
|
||||
</text>
|
||||
<combo_box allow_text_entry="false" bottom="-50" follows="left|top" height="18"
|
||||
left_delta="110" max_chars="20" mouse_opaque="true" name="WLPresetsCombo"
|
||||
width="150" />
|
||||
<button bottom="-53" enabled="true" font="SansSerif" halign="center" height="20"
|
||||
label="New" label_selected="New" left_delta="170"
|
||||
mouse_opaque="true" name="WLNewPreset" scale_image="true" width="70" />
|
||||
<button bottom_delta="0" enabled="true" font="SansSerif" halign="center" height="20"
|
||||
label="Save" label_selected="Save" left_delta="80"
|
||||
mouse_opaque="true" name="WLSavePreset" scale_image="true" width="70" />
|
||||
<button bottom_delta="0" enabled="true" font="SansSerif" halign="center" height="20"
|
||||
label="Delete" label_selected="Delete" left_delta="80"
|
||||
mouse_opaque="true" name="WLDeletePreset" scale_image="true" width="70" />
|
||||
<button bottom_delta="0" enabled="true" font="SansSerif" halign="center" height="20"
|
||||
label="Day Cycle Editor" label_selected="Day Cycle Editor"
|
||||
left_delta="120" mouse_opaque="true" name="WLDayCycleMenuButton"
|
||||
scale_image="true" width="120" />
|
||||
<tab_container bottom="-220" follows="left|top" height="160" left="0"
|
||||
mouse_opaque="false" name="WindLight Tabs" tab_position="top" width="700">
|
||||
<panel border="true" bottom="-220" follows="left|top|right|bottom" height="160"
|
||||
label="Atmosphere" left="1" mouse_opaque="false"
|
||||
name="Atmosphere" width="698">
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="BHText" v_pad="0" width="355">
|
||||
Blue Horizon
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="160" name="WLBlueHorizonHelp" width="18" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-37" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left="10" mouse_opaque="true" name="BHText2" v_pad="0" width="10">
|
||||
R
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText3" v_pad="0" width="10">
|
||||
G
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText4" v_pad="0" width="10">
|
||||
B
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText5" v_pad="0" width="10">
|
||||
I
|
||||
</text>
|
||||
<slider bottom="-50" can_edit_text="false" control_name="WLBlueHorizonR"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLBlueHorizonR" show_text="true" value="0.7"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueHorizonG"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLBlueHorizonG" show_text="true" value="0.7"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueHorizonB"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLBlueHorizonB" show_text="true" value="0.7"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueHorizonI"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="1.0" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLBlueHorizonI" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-87" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="BDensText" v_pad="0" width="355">
|
||||
Haze Horizon
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="160" name="WLHazeHorizonHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WLHazeHorizon"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.25" label="" left="24" max_val="1.0" min_val="0"
|
||||
mouse_opaque="true" name="WLHazeHorizon" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="245" mouse_opaque="true" name="BDensText2" v_pad="0" width="355">
|
||||
Blue Density
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="395" name="WLBlueDensityHelp" width="18" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-37" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left="245" mouse_opaque="true" name="BHText6" v_pad="0" width="10">
|
||||
R
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText7" v_pad="0" width="10">
|
||||
G
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText8" v_pad="0" width="10">
|
||||
B
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText9" v_pad="0" width="10">
|
||||
I
|
||||
</text>
|
||||
<slider bottom="-50" can_edit_text="false" control_name="WLBlueDensityR"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLBlueDensityR" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueDensityG"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLBlueDensityG" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueDensityB"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLBlueDensityB" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueDensityI"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="1" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLBlueDensityI" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-87" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="245" mouse_opaque="true" name="HDText" v_pad="0" width="355">
|
||||
Haze Density
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="395" name="WLHazeDensityHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WLHazeDensity"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="259" max_val="4" min_val="0"
|
||||
mouse_opaque="true" name="WLHazeDensity" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="480" mouse_opaque="true" name="DensMultText" v_pad="0" width="355">
|
||||
Density Multiplier
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="630" name="WLDensityMultHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WLDensityMult"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.1" label="" left="494" max_val="0.9" min_val="0"
|
||||
mouse_opaque="true" name="WLDensityMult" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-53" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="480" mouse_opaque="true" name="WLDistanceMultText" v_pad="0"
|
||||
width="355">
|
||||
Distance Multiplier
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="630" name="WLDistanceMultHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WLDistancMult"
|
||||
decimal_digits="1" follows="left" height="10" increment="0.1"
|
||||
initial_val="1.0" label="" left="494" max_val="100" min_val="0"
|
||||
mouse_opaque="true" name="WLDistanceMult" show_text="true" value="0.0"
|
||||
width="207" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-87" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="480" mouse_opaque="true" name="MaxAltText" v_pad="0" width="355">
|
||||
Max Altitude
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="630" name="WLMaxAltitudeHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WLMaxAltitude"
|
||||
decimal_digits="0" follows="left" height="10" increment="1"
|
||||
initial_val="500" label="" left="494" max_val="4000" min_val="0"
|
||||
mouse_opaque="true" name="WLMaxAltitude" show_text="true" value="4000"
|
||||
width="205" />
|
||||
</panel>
|
||||
<panel border="true" bottom="-180" follows="left|top|right|bottom" height="160"
|
||||
label="Lighting" left="1" mouse_opaque="true"
|
||||
name="Lighting" width="698">
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="SLCText" v_pad="0" width="355">
|
||||
Sun/Moon Color
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="160" name="WLSunlightColorHelp" width="18" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-37" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left="10" mouse_opaque="true" name="BHText" v_pad="0" width="10">
|
||||
R
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText2" v_pad="0" width="10">
|
||||
G
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText3" v_pad="0" width="10">
|
||||
B
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText4" v_pad="0" width="10">
|
||||
I
|
||||
</text>
|
||||
<slider bottom="-50" can_edit_text="false" control_name="WLSunlightR"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLSunlightR" show_text="true" value="0.7"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLSunlightG"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLSunlightG" show_text="true" value="0.7"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLSunlightB"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLSunlightB" show_text="true" value="0.7"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLSunlightI"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="1.0" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLSunlightI" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-87" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="TODText" v_pad="0" width="355">
|
||||
Sun/Moon Position
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="160" name="WLTimeOfDayHelp" width="18" />
|
||||
<icon bottom_delta="-30" follows="left|top" height="20" image_name="icon_diurnal.tga"
|
||||
left="30" name="SkyDayCycle" width="148" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WLSunAngle"
|
||||
decimal_digits="3" follows="left" height="10" increment="0.001"
|
||||
initial_val="0.7" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLSunAngle" show_text="true" value="1.0"
|
||||
width="204" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="245" mouse_opaque="true" name="WLAmbientText" v_pad="0" width="355">
|
||||
Ambient
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="395" name="WLAmbientHelp" width="18" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-37" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left="245" mouse_opaque="true" name="BHText5" v_pad="0" width="10">
|
||||
R
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText6" v_pad="0" width="10">
|
||||
G
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText7" v_pad="0" width="10">
|
||||
B
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText8" v_pad="0" width="10">
|
||||
I
|
||||
</text>
|
||||
<slider bottom="-50" can_edit_text="false" control_name="WLAmbientR" decimal_digits="2"
|
||||
follows="left" height="10" increment="0.01" initial_val="0.7" label=""
|
||||
left="259" max_val="1" min_val="0" mouse_opaque="true" name="WLAmbientR"
|
||||
show_text="true" value="1.0" width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLAmbientG"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLAmbientG" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLAmbientB"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLAmbientB" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLAmbientI"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="1" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLAmbientI" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-87" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="245" mouse_opaque="true" name="WLEastAngleText" v_pad="0" width="355">
|
||||
East Angle
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="395" name="WLEastAngleHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WLEastAngle"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.0" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLEastAngle" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="480" mouse_opaque="true" name="SunGlowText" v_pad="0" width="355">
|
||||
Sun Glow
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="630" name="WLSunGlowHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WLGlowB"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.1" label="Focus " left="494" max_val="0.5" min_val="0"
|
||||
mouse_opaque="true" name="WLGlowB" show_text="true" value="1.0" width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLGlowR"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.25" label="Size " left="494" max_val="1.99" min_val="1"
|
||||
mouse_opaque="true" name="WLGlowR" show_text="true" value="1.0" width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-67" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="480" mouse_opaque="true" name="SceneGammaText" v_pad="0" width="200">
|
||||
Scene Gamma
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="630" name="WLSceneGammaHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WLGamma"
|
||||
decimal_digits="2" follows="bottom" height="10" increment="0.01"
|
||||
initial_val="2.0" label="" left="494" max_val="10.0" min_val="0"
|
||||
mouse_opaque="true" name="WLGamma" show_text="true" value="2.0" width="207" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-102" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="480" mouse_opaque="true" name="WLStarText" v_pad="0" width="355">
|
||||
Star Brightness
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="630" name="WLStarBrightnessHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WLStarAlpha"
|
||||
decimal_digits="2" follows="bottom" height="10" increment="0.01"
|
||||
initial_val="0" label="" left="494" max_val="2" min_val="0"
|
||||
mouse_opaque="true" name="WLStarAlpha" show_text="true" value="0"
|
||||
width="200" />
|
||||
</panel>
|
||||
<panel border="true" bottom="-180" follows="left|top|right|bottom" height="160"
|
||||
label="Clouds" left="1" mouse_opaque="false" name="Clouds"
|
||||
width="698">
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="WLCloudColorText" v_pad="0" width="355">
|
||||
Cloud Color
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="160" name="WLCloudColorHelp" width="18" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-37" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left="10" mouse_opaque="true" name="BHText" v_pad="0" width="10">
|
||||
R
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText2" v_pad="0" width="10">
|
||||
G
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText3" v_pad="0" width="10">
|
||||
B
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText4" v_pad="0" width="10">
|
||||
I
|
||||
</text>
|
||||
<slider bottom="-50" can_edit_text="false" control_name="WLCloudColorR"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLCloudColorR" show_text="true" value="0.7"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudColorG"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLCloudColorG" show_text="true" value="0.7"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudColorB"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.7" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLCloudColorB" show_text="true" value="0.7"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudColorI"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="1.0" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLCloudColorI" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-87" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="10" mouse_opaque="true" name="WLCloudColorText2" v_pad="0"
|
||||
width="355">
|
||||
Cloud XY/Density
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="160" name="WLCloudDensityHelp" width="18" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-103" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left="10" mouse_opaque="true" name="BHText5" v_pad="0" width="10">
|
||||
X
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText6" v_pad="0" width="10">
|
||||
Y
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText7" v_pad="0" width="10">
|
||||
D
|
||||
</text>
|
||||
<slider bottom="-117" can_edit_text="false" control_name="WLCloudX" decimal_digits="2"
|
||||
follows="left" height="10" increment="0.01" initial_val="0.5" label=""
|
||||
left="24" max_val="1" min_val="0" mouse_opaque="true" name="WLCloudX"
|
||||
show_text="true" value="0.5" width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudY"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.5" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLCloudY" show_text="true" value="0.5"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudDensity"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="1.0" label="" left="24" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLCloudDensity" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="245" mouse_opaque="true" name="WLCloudCoverageText" v_pad="0"
|
||||
width="355">
|
||||
Cloud Coverage
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="395" name="WLCloudCoverageHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WLCloudCoverage"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.5" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLCloudCoverage" show_text="true" value="0.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-55" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="245" mouse_opaque="true" name="WLCloudScaleText" v_pad="0"
|
||||
width="355">
|
||||
Cloud Scale
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="395" name="WLCloudScaleHelp" width="18" />
|
||||
<slider bottom_delta="-30" can_edit_text="false" control_name="WLCloudScale"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="1.0" label="" left="259" max_val="1.0" min_val="0.01"
|
||||
mouse_opaque="true" name="WLCloudScale" show_text="true" value="1.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-87" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="245" mouse_opaque="true" name="WLCloudDetailText" v_pad="0"
|
||||
width="355">
|
||||
Cloud Detail (XY/Density)
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="395" name="WLCloudDetailHelp" width="18" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-103" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left="245" mouse_opaque="true" name="BHText8" v_pad="0" width="10">
|
||||
X
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText9" v_pad="0" width="10">
|
||||
Y
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16"
|
||||
left_delta="0" mouse_opaque="true" name="BHText10" v_pad="0" width="10">
|
||||
D
|
||||
</text>
|
||||
<slider bottom="-117" can_edit_text="false" control_name="WLCloudDetailX"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.5" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLCloudDetailX" show_text="true" value="0.5"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudDetailY"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.5" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLCloudDetailY" show_text="true" value="0.5"
|
||||
width="200" />
|
||||
<slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudDetailDensity"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="1.0" label="" left="259" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="WLCloudDetailDensity" show_text="true"
|
||||
value="1.0" width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="480" mouse_opaque="true" name="WLCloudScrollXText" v_pad="0"
|
||||
width="355">
|
||||
Cloud Scroll X
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="605" name="WLCloudScrollXHelp" width="18" />
|
||||
<check_box control_name="WLCloudLockX" follows="left" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Lock" left="625" mouse_opaque="true"
|
||||
name="WLCloudLockX" width="200" />
|
||||
<slider bottom_delta="-15" can_edit_text="false" control_name="WLCloudScrollX"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.5" label="" left="494" max_val="10" min_val="-10"
|
||||
mouse_opaque="true" name="WLCloudScrollX" show_text="true" value="0.0"
|
||||
width="200" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-60" drop_shadow_visible="true" follows="left|top|right"
|
||||
font="SansSerif" h_pad="0" halign="left" height="16"
|
||||
left="480" mouse_opaque="true" name="WLCloudScrollYText" v_pad="0"
|
||||
width="355">
|
||||
Cloud Scroll Y
|
||||
</text>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="605" name="WLCloudScrollYHelp" width="18" />
|
||||
<check_box control_name="WLCloudLockY" follows="left" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Lock" left="625" mouse_opaque="true"
|
||||
name="WLCloudLockY" width="200" />
|
||||
<slider bottom_delta="-15" can_edit_text="false" control_name="WLCloudScrollY"
|
||||
decimal_digits="2" follows="left" height="10" increment="0.01"
|
||||
initial_val="0.5" label="" left="494" max_val="10" min_val="-10"
|
||||
mouse_opaque="true" name="WLCloudScrollY" show_text="true" value="0.0"
|
||||
width="200" />
|
||||
<check_box bottom="-120" control_name="DrawClassicClouds" follows="left"
|
||||
font="SansSerifSmall" height="16" initial_value="false"
|
||||
label="Draw Classic Clouds" left="480" mouse_opaque="true"
|
||||
name="DrawClassicClouds" width="200" />
|
||||
<button bottom="-102" follows="left|top" font="SansSerifSmall" height="15" label="?"
|
||||
left="608" name="WLClassicCloudsHelp" width="18" />
|
||||
</panel>
|
||||
</tab_container>
|
||||
<string name="WLDefaultSkyNames">
|
||||
A-12AM:A-12PM:A-3AM:A-3PM:A-4.30PM:A-6AM:A-6PM:A-9AM:A-9PM:Barcelona:Blizzard:Blue Midday:Coastal Afternoon:Coastal Sunset:Default:Desert Sunset:Fine Day:Fluffy Big Clouds:Foggy:Funky Funky:Funky Funky Funky:Gelatto:Ghost:Incongruent Truths:Midday 1:Midday 2:Midday 3:Midday 4:Night:Pirate:Purple:Sailor's Delight:Sheer Sensuality
|
||||
</string>
|
||||
</floater>
|
||||
@@ -1,430 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<panel bottom="-550" height="486" left="350" name="Panel Avatar" width="430">
|
||||
<tab_container bottom="-486" height="486" left="0" mouse_opaque="false" name="tab"
|
||||
tab_min_width="50" tab_position="top" width="419">
|
||||
<panel border="true" bottom="-482" follows="left|top|right|bottom" height="466"
|
||||
label="2nd Life" left="1" mouse_opaque="true" name="2nd Life" width="418">
|
||||
<string name="CaptionTextAcctInfo">
|
||||
[ACCTTYPE]
|
||||
[PAYMENTINFO]
|
||||
[AGEVERIFICATION]
|
||||
</string>
|
||||
<string name="AcctTypeResident">
|
||||
Resident
|
||||
</string>
|
||||
<string name="AcctTypeTrial">
|
||||
Trial
|
||||
</string>
|
||||
<string name="AcctTypeCharterMember">
|
||||
Charter Member
|
||||
</string>
|
||||
<string name="AcctTypeEmployee">
|
||||
Linden Lab Employee
|
||||
</string>
|
||||
<string name="PaymentInfoUsed">
|
||||
Payment Info Used
|
||||
</string>
|
||||
<string name="PaymentInfoOnFile">
|
||||
Payment Info On File
|
||||
</string>
|
||||
<string name="NoPaymentInfoOnFile">
|
||||
No Payment Info On File
|
||||
</string>
|
||||
<string name="AgeVerified">
|
||||
Age-verified
|
||||
</string>
|
||||
<string name="NotAgeVerified">
|
||||
Not Age-verified
|
||||
</string>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-24" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4"
|
||||
mouse_opaque="true" name="Name:" v_pad="0" width="70">
|
||||
Name:
|
||||
</text>
|
||||
<name_editor bevel_style="in" border_style="line"
|
||||
border_thickness="1" bottom="-24" enabled="false" follows="left|top"
|
||||
font="SansSerifSmall" height="16" is_unicode="false" left_delta="75"
|
||||
max_length="254" mouse_opaque="false" name="name"
|
||||
width="180" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-24" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifsmall" h_pad="0" halign="left" height="16" left="279"
|
||||
mouse_opaque="true" name="online_yes" v_pad="0" width="121">
|
||||
Currently Online
|
||||
</text>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-20" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="279"
|
||||
mouse_opaque="true" name="label" v_pad="0" width="121">
|
||||
Born:
|
||||
</text>
|
||||
<line_editor bevel_style="in" border_style="line"
|
||||
border_thickness="1" bottom_delta="-16" enabled="true" follows="left|top"
|
||||
font="SansSerifSmall" height="16" is_unicode="false" left="279"
|
||||
max_length="254" mouse_opaque="false" name="born"
|
||||
width="121" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-20" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="279"
|
||||
mouse_opaque="true" name="label2" v_pad="0" width="121">
|
||||
Account:
|
||||
</text>
|
||||
<view_border bevel_style="in" bottom_delta="-48" follows="left|top" height="48" left="279"
|
||||
mouse_opaque="false" name="acct_border" width="121" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false"
|
||||
border_visible="true" bottom_delta="0" drop_shadow_visible="true"
|
||||
follows="left|top" font="SansSerifSmall" height="48" left="279"
|
||||
mouse_opaque="false" name="acct" width="121" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-20" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="279"
|
||||
mouse_opaque="true" name="partner_label"
|
||||
tool_tip="Second Life partner. For more info on how to set, see www.secondlife.com/partner"
|
||||
v_pad="0" width="130">
|
||||
Partner:
|
||||
</text>
|
||||
<button bottom_delta="2" follows="left|top" font="SansSerif" halign="center"
|
||||
height="16" label="i" label_selected="i" left_delta="44"
|
||||
mouse_opaque="true" name="partner_info"
|
||||
tool_tip="Click to open partner's profile" width="18" />
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerif" halign="center"
|
||||
height="16" label="?" label_selected="?" left_delta="24"
|
||||
mouse_opaque="true" name="partner_help" width="18" />
|
||||
<line_editor bevel_style="in" border_style="line"
|
||||
border_thickness="1" bottom_delta="-16" enabled="true" follows="left|top"
|
||||
font="SansSerifSmall" height="16" is_unicode="false" left="279"
|
||||
max_length="254" mouse_opaque="false" name="partner_edit"
|
||||
tool_tip="Second Life partner. For more info on how to set, see www.secondlife.com/partner"
|
||||
width="121">
|
||||
[FIRST] [LAST]
|
||||
</line_editor>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-44" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4"
|
||||
mouse_opaque="true" name="Photo:" v_pad="0" width="70">
|
||||
Photo:
|
||||
</text>
|
||||
<texture_picker allow_no_texture="true" bottom="-179" can_apply_immediately="false"
|
||||
default_image_name="None" follows="left|top" height="151" label=""
|
||||
left="79" mouse_opaque="true" name="img"
|
||||
tool_tip="Click to choose a picture" width="180" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-183" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4"
|
||||
mouse_opaque="true" name="Groups:" v_pad="0" width="70">
|
||||
Groups:
|
||||
</text>
|
||||
<scroll_list background_visible="true" bottom="-258" column_padding="5" draw_border="true"
|
||||
follows="left|top" height="90" left="79" mouse_opaque="false"
|
||||
multi_select="false" name="groups" width="321" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-280" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4"
|
||||
mouse_opaque="true" name="About:" v_pad="0" width="70">
|
||||
About:
|
||||
</text>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-16" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="0"
|
||||
mouse_opaque="true" name="(500 chars)" v_pad="0" width="70">
|
||||
(500 chars)
|
||||
</text>
|
||||
<text_editor bottom="-375" embedded_items="false"
|
||||
enabled="true" follows="left|top" font="SansSerifSmall" height="110"
|
||||
is_unicode="false" left="79" max_length="511" mouse_opaque="true"
|
||||
name="about" width="321" word_wrap="true" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-403" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="0"
|
||||
mouse_opaque="true" name="Give item:" v_pad="0" width="75">
|
||||
Give item:
|
||||
</text>
|
||||
<view_border blevel_style="in" border_thickness="0" bottom="-466" follows="left|top"
|
||||
height="466" left_delta="4" mouse_opaque="false" name="drop_target_rect"
|
||||
width="409" />
|
||||
<view_border blevel_style="in" bottom="-403" follows="left|top" height="16" left_delta="75"
|
||||
mouse_opaque="false" name="drop_target_rect_vis" width="321" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="0" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="center" height="16" left_delta="0"
|
||||
mouse_opaque="true" name="Give inventory"
|
||||
tool_tip="Drop inventory items here to give them to this person." v_pad="2"
|
||||
width="321">
|
||||
Drop inventory item here.
|
||||
</text>
|
||||
<check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Show in search" left="75" mouse_opaque="true"
|
||||
name="allow_publish"
|
||||
tool_tip="Publish extra profile information such as description and image in Search."
|
||||
width="130" />
|
||||
<button bottom="-423" follows="left|top" font="SansSerif" halign="center" height="16"
|
||||
label="?" label_selected="?" left_delta="145" mouse_opaque="true" name="?"
|
||||
width="20" />
|
||||
<button bottom="-428" font="SansSerif" halign="center" height="20" label="Find on Map"
|
||||
label_selected="Find on Map" left="24" mouse_opaque="true"
|
||||
name="Find on Map" width="100" />
|
||||
<button bottom="-428" font="SansSerif" halign="center" height="20"
|
||||
label="Offer Teleport..." label_selected="Offer Teleport..."
|
||||
left_delta="102" mouse_opaque="true" name="Offer Teleport..." width="140" />
|
||||
<button bottom="-428" font="SansSerif" halign="center" height="20"
|
||||
label="Add Friend..." label_selected="Add Friend..." left_delta="142"
|
||||
mouse_opaque="true" name="Add Friend..." width="130" />
|
||||
<button bottom_delta="-24" font="SansSerif" halign="center" height="20" label="Pay..."
|
||||
label_selected="Pay..." left="24" mouse_opaque="true" name="Pay..."
|
||||
width="100" />
|
||||
<button bottom_delta="0" font="SansSerif" halign="center" height="20"
|
||||
label="Instant Message..." label_selected="Instant Message..."
|
||||
left_delta="102" mouse_opaque="true" name="Instant Message..."
|
||||
tool_tip="Instant Message (IM)" width="140" />
|
||||
<button bottom_delta="0" font="SansSerif" halign="center" height="20" label="Mute"
|
||||
label_selected="Mute" left_delta="142" mouse_opaque="true" name="Mute"
|
||||
width="130" />
|
||||
</panel>
|
||||
<panel border="true" bottom="-482" follows="left|top|right|bottom" height="466"
|
||||
label="Web" left="1" mouse_opaque="true" name="WebProfile" width="418">
|
||||
<line_editor bevel_style="in" border_style="line"
|
||||
border_thickness="1" bottom_delta="-18" enabled="false" follows="left|top"
|
||||
font="SansSerifSmall" height="16" is_unicode="false" left="10"
|
||||
max_length="254" mouse_opaque="true" name="url_edit"
|
||||
width="400" />
|
||||
<flyout_button bottom_delta="-22" follows="left|top" font="SansSerifSmall" halign="center"
|
||||
height="18" label="Load" label_selected="Load" left="10"
|
||||
mouse_opaque="true" name="load" enabled="false"
|
||||
tool_tip="Load this profile page with embedded web browser." width="80" >
|
||||
<flyout_button_item value="open" name="open_item">In external browser</flyout_button_item>
|
||||
<flyout_button_item value="home" name="home_item">Home URL</flyout_button_item>
|
||||
</flyout_button>
|
||||
<button bottom_delta="0" follows="left|top" font="SansSerif" halign="center"
|
||||
height="18" label="?" label_selected="?" left_delta="85"
|
||||
mouse_opaque="true" name="web_profile_help" width="18" />
|
||||
<check_box bottom_delta="0" follows="right|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Automatically load web profiles"
|
||||
left_delta="30" mouse_opaque="true" name="auto_load"
|
||||
tool_tip="Automatically load ALL profile webpages without asking first."
|
||||
width="127" />
|
||||
<web_browser border_visible="false" bottom="-444" follows="top|left|right" height="400"
|
||||
ignore_ui_scale="false" left="10" name="profile_html" start_url=""
|
||||
width="400" />
|
||||
<text bottom="5" follows="bottom|left|right" left="15" name="status_text" right="-70"
|
||||
top="25" />
|
||||
</panel>
|
||||
<panel border="true" bottom="-482" follows="left|top|right|bottom" height="466"
|
||||
label="Interests" left="1" mouse_opaque="true" name="Interests" width="418">
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-36" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4"
|
||||
mouse_opaque="true" name="I Want To:" v_pad="0" width="70">
|
||||
I Want To:
|
||||
</text>
|
||||
<check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Build" left_delta="70" mouse_opaque="true"
|
||||
name="chk0" width="90" />
|
||||
<check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Explore" left_delta="170" mouse_opaque="true"
|
||||
name="chk1" width="90" />
|
||||
<check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Meet" left_delta="-170" mouse_opaque="true"
|
||||
name="chk2" width="57" />
|
||||
<check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Be Hired" left_delta="170" mouse_opaque="true"
|
||||
name="chk6" width="92" />
|
||||
<check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Group" left_delta="-170" mouse_opaque="true"
|
||||
name="chk3" width="90" />
|
||||
<check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Buy" left_delta="170" mouse_opaque="true"
|
||||
name="chk4" width="90" />
|
||||
<check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Sell" left_delta="-170" mouse_opaque="true"
|
||||
name="chk5" width="50" />
|
||||
<check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Hire" left_delta="170" mouse_opaque="true"
|
||||
name="chk7" width="92" />
|
||||
<line_editor bevel_style="in" border_style="line"
|
||||
border_thickness="1" bottom_delta="-20" enabled="true" follows="left|top"
|
||||
font="SansSerifSmall" height="16" is_unicode="false" left="74"
|
||||
max_length="254" mouse_opaque="true" name="want_to_edit"
|
||||
width="330" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-26" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4"
|
||||
mouse_opaque="true" name="Skills:" v_pad="0" width="70">
|
||||
Skills:
|
||||
</text>
|
||||
<check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Textures" left_delta="70" mouse_opaque="true"
|
||||
name="schk0" width="90" />
|
||||
<check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Architecture" left_delta="170"
|
||||
mouse_opaque="true" name="schk1" width="93" />
|
||||
<check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Event Planning" left_delta="0"
|
||||
mouse_opaque="true" name="schk2" width="105" />
|
||||
<check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Modeling" left_delta="-170"
|
||||
mouse_opaque="true" name="schk3" width="90" />
|
||||
<check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Scripting" left_delta="0" mouse_opaque="true"
|
||||
name="schk4" width="90" />
|
||||
<check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16"
|
||||
initial_value="false" label="Custom Characters" left_delta="170"
|
||||
mouse_opaque="true" name="schk5" width="127" />
|
||||
<line_editor bevel_style="in" border_style="line"
|
||||
border_thickness="1" bottom_delta="-20" enabled="true" follows="left|top"
|
||||
font="SansSerifSmall" height="16" is_unicode="false" left="74"
|
||||
max_length="254" mouse_opaque="true" name="skills_edit"
|
||||
width="330" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-30" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4"
|
||||
mouse_opaque="true" name="Languages:" v_pad="0" width="70">
|
||||
Languages:
|
||||
</text>
|
||||
<line_editor bevel_style="in" border_style="line"
|
||||
border_thickness="1" bottom_delta="0" enabled="true" follows="left|top"
|
||||
font="SansSerifSmall" height="16" is_unicode="false" left="74"
|
||||
max_length="254" mouse_opaque="true" name="languages_edit"
|
||||
width="330" />
|
||||
</panel>
|
||||
<panel border="true" bottom="-482" follows="left|top|right|bottom" height="466"
|
||||
label="Picks" left="1" mouse_opaque="true" name="Picks" width="418">
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="114"
|
||||
mouse_opaque="true"
|
||||
name="Tell everyone about your favorite places in Second Life." v_pad="0"
|
||||
width="302">
|
||||
Tell everyone about your favorite places in Second Life.
|
||||
</text>
|
||||
<button bottom_delta="-24" follows="left|top" font="SansSerif" halign="center"
|
||||
height="20" label="New..." label_selected="New..." left="114"
|
||||
mouse_opaque="true" name="New..." width="75" />
|
||||
<button bottom="-44" follows="left|top" font="SansSerif" halign="center" height="20"
|
||||
label="Delete..." label_selected="Delete..." left_delta="79"
|
||||
mouse_opaque="true" name="Delete..." width="75" />
|
||||
<tab_container bottom="-411" follows="left|top" height="363" left="4" mouse_opaque="false"
|
||||
name="picks tab" tab_position="left" width="412" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-70" drop_shadow_visible="true" follows="left|top" font="SansSerif"
|
||||
h_pad="0" halign="left" height="20" left="114" mouse_opaque="false"
|
||||
name="loading_text" v_pad="0" width="302">
|
||||
Loading...
|
||||
</text>
|
||||
</panel>
|
||||
<panel border="true" bottom="-482" follows="left|top|right|bottom" height="466"
|
||||
label="Classified" left="1" mouse_opaque="true" name="Classified"
|
||||
width="418">
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="114"
|
||||
mouse_opaque="true"
|
||||
name="Place an ad in Second Life's classified listings." v_pad="0"
|
||||
width="302">
|
||||
Place an ad in Second Life's classified listings.
|
||||
</text>
|
||||
<button bottom_delta="-24" follows="left|top" font="SansSerif" halign="center"
|
||||
height="20" label="New..." label_selected="New..." left="114"
|
||||
mouse_opaque="true" name="New..." width="75" />
|
||||
<button bottom="-44" follows="left|top" font="SansSerif" halign="center" height="20"
|
||||
label="Delete..." label_selected="Delete..." left_delta="79"
|
||||
mouse_opaque="true" name="Delete..." width="75" />
|
||||
<tab_container bottom="-443" follows="left|top" height="395" left="4" mouse_opaque="false"
|
||||
name="classified tab" tab_position="left" width="412" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-70" drop_shadow_visible="true" follows="left|top" font="SansSerif"
|
||||
h_pad="0" halign="left" height="20" left="114" mouse_opaque="false"
|
||||
name="loading_text" v_pad="0" width="302">
|
||||
Loading...
|
||||
</text>
|
||||
</panel>
|
||||
<panel border="true" bottom="-482" follows="left|top|right|bottom" height="466"
|
||||
label="1st Life" left="1" mouse_opaque="true" name="1st Life" width="418">
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-36" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4"
|
||||
mouse_opaque="true" name="Photo:" v_pad="0" width="61">
|
||||
Photo:
|
||||
</text>
|
||||
<texture_picker allow_no_texture="true" bottom="-171" can_apply_immediately="false"
|
||||
default_image_name="None" follows="left|top" height="151" label=""
|
||||
left="70" mouse_opaque="true" name="img"
|
||||
tool_tip="Click to choose a picture" width="135" />
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-203" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4"
|
||||
mouse_opaque="true" name="Info:" v_pad="0" width="61">
|
||||
Info:
|
||||
</text>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom_delta="-16" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="right" height="16" left="0"
|
||||
mouse_opaque="true" name="(250 chars)" v_pad="0" width="65">
|
||||
(250 chars)
|
||||
</text>
|
||||
<text_editor bottom="-347" embedded_items="false"
|
||||
enabled="true" follows="left|top" font="SansSerifSmall" height="160"
|
||||
is_unicode="false" left="70" max_length="254" mouse_opaque="false"
|
||||
name="about" width="330" word_wrap="true" />
|
||||
</panel>
|
||||
<panel border="true" bottom="-482" follows="left|top|right|bottom" height="466"
|
||||
label="My Notes" left="1" mouse_opaque="true" name="My Notes" width="418">
|
||||
<string name="Loading">
|
||||
Loading...
|
||||
</string>
|
||||
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-52" drop_shadow_visible="true" follows="left|top"
|
||||
font="SansSerifSmall" h_pad="0" halign="left" height="48" left="10"
|
||||
mouse_opaque="true" name="label" v_pad="0" width="412">
|
||||
Use this space to record your notes about this person. Keep track
|
||||
of trades in progress, joint projects, etc. Only you can see these
|
||||
notes. This person cannot see them, nor can other people.
|
||||
</text>
|
||||
<text_editor bottom_delta="-260" embedded_items="false" enabled="true" follows="left|top"
|
||||
font="SansSerif" height="256" is_unicode="false" left="10"
|
||||
max_length="1023" mouse_opaque="true" name="notes edit" width="400"
|
||||
word_wrap="false" />
|
||||
</panel>
|
||||
</tab_container>
|
||||
<button bottom="-483" font="SansSerif" halign="center" height="20" label="OK"
|
||||
label_selected="OK" left="208" mouse_opaque="true" name="OK" width="100" />
|
||||
<button bottom_delta="0" font="SansSerif" halign="center" height="20" label="Cancel"
|
||||
label_selected="Cancel" left_delta="105" mouse_opaque="true" name="Cancel"
|
||||
width="100" />
|
||||
<button bottom_delta="132" font="SansSerif" halign="center" height="20" label="Kick"
|
||||
label_selected="Kick" left="4" mouse_opaque="true" name="Kick" width="72" />
|
||||
<button bottom_delta="-24" font="SansSerif" halign="center" height="20" label="Freeze"
|
||||
label_selected="Freeze" left="4" mouse_opaque="true" name="Freeze"
|
||||
tool_tip="Stop this resident's movement and chat." width="72" />
|
||||
<button bottom_delta="-24" font="SansSerif" halign="center" height="20"
|
||||
label="Unfreeze" label_selected="Unfreeze" left="4" mouse_opaque="true"
|
||||
name="Unfreeze" tool_tip="Thaw resident" width="72" />
|
||||
<button bottom_delta="-24" font="SansSerif" halign="center" height="20" label="CSR"
|
||||
label_selected="CSR" left="4" mouse_opaque="true" name="csr_btn"
|
||||
tool_tip="Open customer service tool for this resident" width="72" />
|
||||
<string name="ShowOnMapNonFriend">
|
||||
Show location on the map.
|
||||
Disabled because you have not
|
||||
formed a friendship with them.
|
||||
</string>
|
||||
<string name="ShowOnMapFriendOffline">
|
||||
Show location on the map.
|
||||
Disabled because they are not online.
|
||||
</string>
|
||||
<string name="ShowOnMapFriendOnline">
|
||||
Show location on the map.
|
||||
</string>
|
||||
<string name="TeleportGod">
|
||||
Force a teleport to your location.
|
||||
</string>
|
||||
<string name="TeleportPrelude">
|
||||
Offer a teleport to your location.
|
||||
Disabled until you leave Orientation Island.
|
||||
</string>
|
||||
<string name="TeleportNormal">
|
||||
Offer a teleport to your location.
|
||||
</string>
|
||||
<string name="Loading">
|
||||
Loading...
|
||||
</string>
|
||||
</panel>
|
||||
@@ -1,98 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<panel bg_visible="false" border="false" border_visible="false" bottom="1"
|
||||
enabled="true" follows="right|bottom" height="20" left="0"
|
||||
name="media_controls" width="220">
|
||||
<icon bottom="-18" enabled="true" follows="left|top" height="14"
|
||||
image_name="icn_label_music.tga" label="" left_delta="6" mouse_opaque="true"
|
||||
name="music_icon" scale_image="true" tool_tip="Play/pause streaming music"
|
||||
width="14" />
|
||||
<button bottom="-21" enabled="true" follows="left|top" height="20"
|
||||
image_overlay="icn_play.tga"
|
||||
image_unselected="flyout_btn_left.tga"
|
||||
image_selected="flyout_btn_left_selected.tga"
|
||||
image_disabled="flyout_btn_left_disabled.tga"
|
||||
label="" left_delta="16"
|
||||
mouse_opaque="true" name="music_play" scale_image="true" toggle="false"
|
||||
tool_tip="Play/pause streaming music" width="20" />
|
||||
<button bottom="-21" enabled="false" follows="left|top" height="20"
|
||||
image_overlay="icn_pause.tga"
|
||||
image_unselected="flyout_btn_left.tga"
|
||||
image_selected="flyout_btn_left_selected.tga"
|
||||
image_disabled="flyout_btn_left_disabled.tga"
|
||||
label="" left_delta="0"
|
||||
mouse_opaque="true" name="music_pause" scale_image="true" toggle="false"
|
||||
tool_tip="Pause streaming music" width="20" />
|
||||
<button bottom="-21" enabled="true" follows="left|top" height="20"
|
||||
image_overlay="icn_stop.tga"
|
||||
image_unselected="flyout_btn_right.tga"
|
||||
image_selected="flyout_btn_right_selected.tga"
|
||||
image_disabled="flyout_btn_right_disabled.tga"
|
||||
label="" left_delta="20"
|
||||
mouse_opaque="true" name="music_stop" scale_image="true" toggle="false"
|
||||
tool_tip="Stop streaming music" width="20" />
|
||||
<icon bottom="-18" enabled="true" follows="left|top" height="14"
|
||||
image_name="icn_label_media.tga"
|
||||
label="" left_delta="22" mouse_opaque="true"
|
||||
name="media_icon" scale_image="true" tool_tip="Play/pause streaming music"
|
||||
width="17" />
|
||||
<button bottom="-21" enabled="true" follows="left|top" height="20"
|
||||
image_overlay="icn_play.tga"
|
||||
image_unselected="flyout_btn_left.tga"
|
||||
image_selected="flyout_btn_left_selected.tga"
|
||||
image_disabled="flyout_btn_left_disabled.tga"
|
||||
label="" left_delta="19"
|
||||
mouse_opaque="true" name="media_play" scale_image="true" toggle="false"
|
||||
tool_tip="Play/pause streaming music" width="20" />
|
||||
<button bottom="-21" enabled="false" follows="left|top" height="20"
|
||||
image_overlay="icn_pause.tga"
|
||||
image_unselected="flyout_btn_left.tga"
|
||||
image_selected="flyout_btn_left_selected.tga"
|
||||
image_disabled="flyout_btn_left_disabled.tga"
|
||||
label="" left_delta="0"
|
||||
mouse_opaque="true" name="media_pause" scale_image="true" toggle="false"
|
||||
tool_tip="Pause streaming media" width="20" />
|
||||
<button bottom="-21" enabled="true" follows="left|top" height="20"
|
||||
image_overlay="icn_stop.tga"
|
||||
image_unselected="flyout_btn_right.tga"
|
||||
image_selected="flyout_btn_right_selected.tga"
|
||||
image_disabled="flyout_btn_right_disabled.tga"
|
||||
label="" left_delta="20"
|
||||
mouse_opaque="true" name="media_stop" scale_image="true" toggle="false"
|
||||
tool_tip="Stop streaming media" width="20" />
|
||||
<volume_slider bottom="-23" control_name="AudioLevelMaster" height="22" increment="0.05"
|
||||
initial_val="0.5" left_delta="20" max_val="1" min_val="0"
|
||||
mouse_opaque="true" name="volume_slider" tool_tip="Master Volume"
|
||||
width="56" />
|
||||
<button bottom="-19" control_name="MuteAudio" height="20"
|
||||
image_selected="icn_speaker-muted_dark.tga"
|
||||
image_unselected="icn_speaker_dark.tga" label="" left_delta="56"
|
||||
name="mute_master" toggle="true" tool_tip="Master Mute" width="25" />
|
||||
<button bottom="-21" control_name="ShowVolumeSettingsPopup" height="20" label=""
|
||||
left_delta="19" name="expand" scale_image="true" toggle="true"
|
||||
tool_tip="Adjust individual volume levels" width="20" />
|
||||
|
||||
<string name="play_label">
|
||||
Play
|
||||
</string>
|
||||
<string name="stop_label">
|
||||
Stop
|
||||
</string>
|
||||
<string name="pause_label">
|
||||
Pause
|
||||
</string>
|
||||
<string name="default_tooltip_label">
|
||||
No Media Specified
|
||||
</string>
|
||||
<string name="media_hidden_label">
|
||||
(URL hidden by parcel owner)
|
||||
</string>
|
||||
<string name="media_icon_tooltip_web">
|
||||
This location displays content from the World Wide Web. Click the Play button to display Web content.
|
||||
</string>
|
||||
<string name="media_icon_tooltip_movie">
|
||||
This location displays Video content. Click the Play button to play the video.
|
||||
</string>
|
||||
<string name="media_play_tooltip">
|
||||
Display Web content at this location.
|
||||
</string>
|
||||
</panel>
|
||||
@@ -1,123 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<panel background_opaque="true" background_visible="true"
|
||||
bg_opaque_color="0.25 0.25 0.25 1.0" bottom="0" enabled="true"
|
||||
follows="top|left|right" height="18" left="0" mouse_opaque="false"
|
||||
name="status" width="1000">
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-22" drop_shadow_visible="true" enabled="true"
|
||||
follows="left|right|bottom" font="SansSerifSmall" h_pad="0" halign="left"
|
||||
height="18" hover="true" left="561" mouse_opaque="true"
|
||||
name="ParcelNameText" text_color="ParcelTextColor" hover_color="ParcelHoverColor"
|
||||
tool_tip="Name of land parcel on which you are standing. Click for About Land."
|
||||
v_pad="2" width="1039">
|
||||
parcel name goes here
|
||||
</text>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" disabled_color="BalanceTextColor" drop_shadow_visible="true"
|
||||
enabled="true" follows="right|bottom" font="SansSerifSmall" h_pad="0"
|
||||
halign="right" height="18" left="-210" mouse_opaque="true"
|
||||
name="BalanceText" text_color="BalanceTextColor" tool_tip="Account Balance"
|
||||
v_pad="2" width="76">
|
||||
Loading...
|
||||
</text>
|
||||
<button bottom="-17" enabled="true" follows="right|bottom" font="SansSerif"
|
||||
halign="center" height="16"
|
||||
image_selected="status_buy_currency_pressed.tga"
|
||||
image_unselected="status_buy_currency.tga" label="" label_selected=""
|
||||
left="-210" mouse_opaque="true" name="buycurrency" scale_image="true"
|
||||
tool_tip="Buy currency" width="16" />
|
||||
<text type="string" length="12" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-20" disabled_color="TimeTextColor" drop_shadow_visible="true"
|
||||
enabled="true" follows="right|bottom" font="SansSerifSmall" h_pad="0"
|
||||
halign="right" height="18" left="-300" mouse_opaque="true" name="TimeText"
|
||||
text_color="TimeTextColor" tool_tip="Current Time (Pacific)" v_pad="2" width="80">
|
||||
12:00 AM
|
||||
</text>
|
||||
<string name="StatBarDaysOfWeek">
|
||||
Sunday:Monday:Tuesday:Wednesday:Thursday:Friday:Saturday
|
||||
</string>
|
||||
<string name="StatBarMonthsOfYear">
|
||||
January:February:March:April:May:June:July:August:September:October:November:December
|
||||
</string>
|
||||
<button bottom="-18" enabled="true" follows="right|bottom" font="SansSerif"
|
||||
halign="center" height="16" image_selected="status_script_debug.tga"
|
||||
image_unselected="status_script_debug.tga" label="" label_selected=""
|
||||
left="378" mouse_opaque="true" name="scriptout" scale_image="false"
|
||||
tool_tip="Script Warnings and Errors" visible="false" width="16" />
|
||||
<button bottom="-22" enabled="true" follows="right|bottom" font="SansSerif"
|
||||
halign="center" height="18" image_selected="status_health.tga"
|
||||
image_unselected="status_health.tga" label="" label_selected="" left="394"
|
||||
mouse_opaque="true" name="health" scale_image="false" tool_tip="Health"
|
||||
visible="false" width="24" />
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-18" disabled_color="HealthTextColor" drop_shadow_visible="true"
|
||||
enabled="true" follows="rsight|bottom" font="SansSerifSmall" h_pad="0"
|
||||
halign="left" height="18" left="418" mouse_opaque="true" name="HealthText"
|
||||
text_color="HealthTextColor" tool_tip="Health" v_pad="2" visible="false" width="31">
|
||||
100%
|
||||
</text>
|
||||
<button bottom="-22" enabled="true" follows="right|bottom" font="SansSerif"
|
||||
halign="center" height="18" image_selected="status_no_fly.tga"
|
||||
image_unselected="status_no_fly.tga" label="" label_selected="" left="449"
|
||||
mouse_opaque="true" name="no_fly" scale_image="false"
|
||||
tool_tip="Flying not allowed" visible="false" width="24" />
|
||||
<button bottom="-22" enabled="true" follows="right|bottom" font="SansSerif"
|
||||
halign="center" height="18" image_selected="status_no_build.tga"
|
||||
image_unselected="status_no_build.tga" label="" label_selected=""
|
||||
left="473" name="no_build" scale_image="false"
|
||||
tool_tip="Building/Rezzing not allowed" visible="false" width="24" />
|
||||
<button bottom="-22" enabled="true" follows="right|bottom" font="SansSerif"
|
||||
halign="center" height="18" image_selected="status_no_scripts.tga"
|
||||
image_unselected="status_no_scripts.tga" label="" label_selected=""
|
||||
left="497" mouse_opaque="true" name="no_scripts" scale_image="false"
|
||||
tool_tip="Scripts not allowed" visible="false" width="24" />
|
||||
<button bottom="-22" enabled="true" follows="right|bottom" font="SansSerif"
|
||||
halign="center" height="18" image_selected="status_no_push.tga"
|
||||
image_unselected="status_no_push.tga" label="" label_selected="" left="521"
|
||||
mouse_opaque="true" name="restrictpush" scale_image="false"
|
||||
tool_tip="No Pushing" visible="false" width="24" />
|
||||
<button bottom="-22" enabled="true" follows="right|bottom" font="SansSerif"
|
||||
halign="center" height="18" image_selected="status_no_voice.tga"
|
||||
image_unselected="status_no_voice.tga" label="" label_selected=""
|
||||
left="545" mouse_opaque="true" name="status_no_voice" scale_image="false"
|
||||
tool_tip="Voice not available here" visible="false" width="24" />
|
||||
<button bottom="-17" enabled="true" follows="right|bottom" font="SansSerif"
|
||||
halign="center" height="16" image_selected="status_buy_land_pressed.tga"
|
||||
image_unselected="status_buy_land.tga" label="" label_selected=""
|
||||
left="576" mouse_opaque="true" name="buyland" scale_image="true"
|
||||
tool_tip="Buy this parcel" visible="false" width="16" />
|
||||
|
||||
<!-- Totally unsexy button hack to get a sexy bevel for sexy search bevel -brent -->
|
||||
<button bottom="-17" height="16" left="-97" width="96"
|
||||
image_unselected="sm_rounded_corners_simple.tga"
|
||||
image_selected="sm_rounded_corners_simple.tga"
|
||||
image_hover_selected="sm_rounded_corners_simple.tga"
|
||||
image_hover_unselected="sm_rounded_corners_simple.tga"
|
||||
image_disabled_selected="sm_rounded_corners_simple.tga"
|
||||
image_disabled="sm_rounded_corners_simple.tga"
|
||||
label="" scale_image="true" enabled="true" mouse_opaque="false" name="menubar_search_bevel_bg" />
|
||||
|
||||
<line_editor bevel_style="none" border_style="line" border_thickness="0" bottom="-16"
|
||||
commit_on_focus_lost="false" enabled="true" follows="right|bottom"
|
||||
font="SansSerifSmall" handle_edit_keys_directly="false" height="13"
|
||||
label="Search" left="-95" max_length="254" mouse_opaque="true"
|
||||
name="search_editor" select_all_on_focus_received="false"
|
||||
select_on_focus="false" tab_group="1" tool_tip="Search Second Life"
|
||||
width="80" />
|
||||
<button bottom="-16" enabled="true" follows="right|bottom" font="SansSerifSmall"
|
||||
halign="center" height="12" image_disabled="status_search.tga"
|
||||
image_disabled_selected="status_search.tga"
|
||||
image_selected="status_search.tga" image_unselected="status_search.tga"
|
||||
label="" label_selected="" left="-16" mouse_opaque="true" name="search_btn"
|
||||
tool_tip="Search Second Life" width="12" scale_image="true"/>
|
||||
<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
|
||||
bottom="-16" enabled="false" follows="right|bottom" font="SansSerifSmall"
|
||||
halign="center" height="12" left="-20" mouse_opaque="true"
|
||||
name="stat_btn" width="20" />
|
||||
<string name="packet_loss_tooltip">
|
||||
Packet Loss
|
||||
</string>
|
||||
<string name="bandwidth_tooltip">
|
||||
Bandwidth
|
||||
</string>
|
||||
</panel>
|
||||
@@ -1,77 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<panel background_opaque="false" background_visible="false" bottom="0" can_close="true"
|
||||
can_minimize="false" can_resize="false" follows="left|right|bottom"
|
||||
height="28" name="toolbar" width="1024">
|
||||
|
||||
<string name="Redock Windows">Redock Windows</string>
|
||||
<panel bottom="0" filename="panel_bg_toolbar.xml" height="28" left="0" width="1024" />
|
||||
<layout_stack name="toolbar_stack" follows="left|right|bottom|top" bottom="2" left="1" width="1022" height="26" min_width="200" min_height="26" orientation="horizontal" border_size="0">
|
||||
<icon image_name="spacer24.tga" width="2" height="2" follows="left|right" auto_resize="false" color="0,0,0,0" left="0" />
|
||||
<button bottom="0" font="SansSerif" height="24"
|
||||
image_selected="btn_chatbar_selected.tga" scale_image="true"
|
||||
image_unselected="btn_chatbar.tga" label="" left="2" name="chat_btn"
|
||||
image_overlay="icn_chatbar.tga" tool_tip="Show Chat Bar. (Enter)"
|
||||
width="50" auto_resize="false" follows="left|right" user_resize="false"/>
|
||||
<icon image_name="spacer24.tga" left_delta="2" width="2" height="2" follows="left|right" auto_resize="false" color="0,0,0,0"/>
|
||||
<flyout_button bottom="0" font="SansSerif" height="24" label="Communicate" left="0"
|
||||
name="communicate_btn" tool_tip="Communicate with your Friends and Groups."
|
||||
list_position="above"
|
||||
width="50" follows="left|right" user_resize="false"/>
|
||||
<icon image_name="spacer24.tga" width="2" height="2" follows="left|right" auto_resize="false" color="0,0,0,0"/>
|
||||
<button bottom="0" font="SansSerif" height="24" label="Fly"
|
||||
image_overlay="icn_toolbar_fly.tga" image_overlay_alignment="left"
|
||||
image_selected="toolbar_btn_selected.tga"
|
||||
image_unselected="toolbar_btn_enabled.tga"
|
||||
image_disabled="toolbar_btn_disabled.tga" scale_image="true"
|
||||
label_selected="Stop Flying" left="0" name="fly_btn"
|
||||
tool_tip="Start flying. Use E/C or PgUp/PgDn to fly up and down."
|
||||
width="50" follows="left|right" user_resize="false"/>
|
||||
<icon image_name="spacer24.tga" width="2" height="2" follows="left|right" auto_resize="false" color="0,0,0,0" />
|
||||
<button bottom="0" font="SansSerif" height="24" label="Snapshot" left="0"
|
||||
image_overlay="icn_toolbar_snapshot.tga" image_overlay_alignment="left"
|
||||
image_selected="toolbar_btn_selected.tga"
|
||||
image_unselected="toolbar_btn_enabled.tga"
|
||||
image_disabled="toolbar_btn_disabled.tga" scale_image="true"
|
||||
name="snapshot_btn" tool_tip="Save a screen shot to disk or inventory."
|
||||
width="50" follows="left|right" user_resize="false"/>
|
||||
<icon image_name="spacer24.tga" width="2" height="2" follows="left|right" auto_resize="false" color="0,0,0,0" />
|
||||
<button bottom="0" font="SansSerif" height="24" label="Search" left="0"
|
||||
image_overlay="icn_toolbar_search.tga" image_overlay_alignment="left"
|
||||
image_selected="toolbar_btn_selected.tga"
|
||||
image_unselected="toolbar_btn_enabled.tga"
|
||||
image_disabled="toolbar_btn_disabled.tga" scale_image="true"
|
||||
name="directory_btn"
|
||||
tool_tip="Search for places, events, people, and more." width="50" follows="left|right" user_resize="false"/>
|
||||
<icon image_name="spacer24.tga" width="2" height="2" follows="left|right" auto_resize="false" color="0,0,0,0" />
|
||||
<button bottom="0" font="SansSerif" height="24" label="Build" left="0" name="build_btn"
|
||||
image_overlay="icn_toolbar_build.tga" image_overlay_alignment="left"
|
||||
image_selected="toolbar_btn_selected.tga"
|
||||
image_unselected="toolbar_btn_enabled.tga"
|
||||
image_disabled="toolbar_btn_disabled.tga" scale_image="true"
|
||||
tool_tip="Create new objects." width="50" follows="left|right" user_resize="false"/>
|
||||
<icon image_name="spacer24.tga" width="2" height="2" follows="left|right" auto_resize="false" color="0,0,0,0" />
|
||||
<button bottom="0" font="SansSerif" height="24" label="Map" left="0" name="map_btn"
|
||||
image_overlay="icn_toolbar_map.tga" image_overlay_alignment="left"
|
||||
image_selected="toolbar_btn_selected.tga"
|
||||
image_unselected="toolbar_btn_enabled.tga"
|
||||
image_disabled="toolbar_btn_disabled.tga" scale_image="true"
|
||||
tool_tip="Map of the world. (Ctrl-M)" width="50" follows="left|right" user_resize="false"/>
|
||||
<icon image_name="spacer24.tga" width="2" height="2" follows="left|right" auto_resize="false" color="0,0,0,0" />
|
||||
<button bottom="0" font="SansSerif" height="24" label="Mini-Map" left="0"
|
||||
image_overlay="icn_toolbar_minimap.tga" image_overlay_alignment="left"
|
||||
image_selected="toolbar_btn_selected.tga"
|
||||
image_unselected="toolbar_btn_enabled.tga"
|
||||
image_disabled="toolbar_btn_disabled.tga" scale_image="true"
|
||||
name="radar_btn" tool_tip="Map of the area around you. (Ctrl-Shift-M)"
|
||||
width="50" follows="left|right" user_resize="false"/>
|
||||
<icon image_name="spacer24.tga" width="2" height="2" follows="left|right" auto_resize="false" color="0,0,0,0" />
|
||||
<button bottom="0" font="SansSerif" height="24" label="Inventory" left="0"
|
||||
image_overlay="icn_toolbar_inventory.tga" image_overlay_alignment="left"
|
||||
image_selected="toolbar_btn_selected.tga"
|
||||
image_unselected="toolbar_btn_enabled.tga"
|
||||
image_disabled="toolbar_btn_disabled.tga" scale_image="true"
|
||||
name="inventory_btn" tool_tip="Your items. (Ctrl-I)" width="50" follows="left|right" user_resize="false"/>
|
||||
<icon image_name="spacer24.tga" width="2" height="2" follows="left|right" auto_resize="false" color="0,0,0,0" />
|
||||
</layout_stack>
|
||||
|
||||
</panel>
|
||||
@@ -1,19 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<panel bg_visible="false" border="false" border_visible="false" bottom="2"
|
||||
enabled="true" follows="right|bottom" height="20" left="0"
|
||||
mouse_opaque="true" name="voice_controls" width="130">
|
||||
<button bottom="-21" height="20" image_overlay="active_speakers.tga" label="" left="3"
|
||||
name="speakers_btn"
|
||||
tool_tip="Show list of residents using voice chat around you" width="36" />
|
||||
<button bottom="-21" height="20" label="Talk" left_delta="38" name="push_to_talk"
|
||||
tab_stop="false" tool_tip="Hold the button to talk" width="63" />
|
||||
<button bottom="-19" height="16" image_selected="ptt_lock_on.tga"
|
||||
image_unselected="ptt_lock_off.tga" label="" left_delta="2" name="ptt_lock"
|
||||
scale_image="false" toggle="true"
|
||||
tool_tip="Click lock to switch to talk mode" width="16" />
|
||||
<icon bottom="-19" height="16" image_name="icn_voice_ptt-off.tga" left_delta="42"
|
||||
name="voice_volume" width="16" />
|
||||
<button bottom="-21" control_name="ShowVoiceChannelPopup" height="20" label=""
|
||||
left_delta="21" name="show_channel" scale_image="true" toggle="true"
|
||||
tool_tip="Click to show current voice channel" width="20" />
|
||||
</panel>
|
||||
Reference in New Issue
Block a user