diff options
author | Rider Linden <rider@lindenlab.com> | 2019-01-16 14:05:02 -0800 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2019-01-16 14:05:02 -0800 |
commit | 042454bda9506185ebf82e3bbdf4305214d6af84 (patch) | |
tree | 11d7b083db9d36c4d95470c53aada48b4be46bde /indra/newview/llfloatereditextdaycycle.h | |
parent | 82a8bcb24402978330ea184285fd498b9e50c0a0 (diff) |
Add Copy/Load/Clear track buttons. Clear track functionality.
Diffstat (limited to 'indra/newview/llfloatereditextdaycycle.h')
-rw-r--r-- | indra/newview/llfloatereditextdaycycle.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/indra/newview/llfloatereditextdaycycle.h b/indra/newview/llfloatereditextdaycycle.h index 1967f5a470..67a6f1e0e9 100644 --- a/indra/newview/llfloatereditextdaycycle.h +++ b/indra/newview/llfloatereditextdaycycle.h @@ -111,8 +111,11 @@ private: virtual void onClickCloseBtn(bool app_quitting = false) override; void onButtonImport(); void onButtonLoadFrame(); - void onAddTrack(); - void onRemoveTrack(); + void onAddFrame(); + void onRemoveFrame(); + void onCloneTrack(); + void onLoadTrack(); + void onClearTrack(); void onCommitName(class LLLineEditor* caller, void* user_data); void onTrackSelectionCallback(const LLSD& user_data); void onPlayActionCallback(const LLSD& user_data); @@ -147,10 +150,10 @@ private: void doImportFromDisk(); void loadSettingFromFile(const std::vector<std::string>& filenames); - void doApplyCreateNewInventory(const LLSettingsDay::ptr_t &day, std::string settings_name); - void doApplyUpdateInventory(const LLSettingsDay::ptr_t &day); - void doApplyEnvironment(const std::string &where, const LLSettingsDay::ptr_t &day); - void doApplyCommit(LLSettingsDay::ptr_t day); + void doApplyCreateNewInventory(const LLSettingsDay::ptr_t &day, std::string settings_name); + void doApplyUpdateInventory(const LLSettingsDay::ptr_t &day); + void doApplyEnvironment(const std::string &where, const LLSettingsDay::ptr_t &day); + void doApplyCommit(LLSettingsDay::ptr_t day); void onInventoryCreated(LLUUID asset_id, LLUUID inventory_id); void onInventoryCreated(LLUUID asset_id, LLUUID inventory_id, LLSD results); void onInventoryUpdated(LLUUID asset_id, LLUUID inventory_id, LLSD results); @@ -194,6 +197,9 @@ private: LLButton* mDeleteFrameButton; LLButton* mImportButton; LLButton* mLoadFrame; + LLButton * mCloneTrack; + LLButton * mLoadTrack; + LLButton * mClearTrack; LLMultiSliderCtrl* mTimeSlider; LLMultiSliderCtrl* mFramesSlider; LLView* mSkyTabLayoutContainer; |