diff options
author | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
commit | 420b91db29485df39fd6e724e782c449158811cb (patch) | |
tree | b471a94563af914d3ed3edd3e856d21cb1b69945 /indra/newview/llfloaternamedesc.h |
Print done when done.
Diffstat (limited to 'indra/newview/llfloaternamedesc.h')
-rw-r--r-- | indra/newview/llfloaternamedesc.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/indra/newview/llfloaternamedesc.h b/indra/newview/llfloaternamedesc.h new file mode 100644 index 0000000000..b6f4a489f3 --- /dev/null +++ b/indra/newview/llfloaternamedesc.h @@ -0,0 +1,42 @@ +/** + * @file llfloaternamedesc.h + * @brief LLFloaterNameDesc class definition + * + * Copyright (c) 2002-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +#ifndef LL_LLFLOATERNAMEDESC_H +#define LL_LLFLOATERNAMEDESC_H + +#include "llfloater.h" +#include "llresizehandle.h" +#include "llstring.h" + +class LLLineEditor; +class LLButton; +class LLRadioGroup; + +class LLFloaterNameDesc : public LLFloater +{ +public: + LLFloaterNameDesc(const std::string& filename); + virtual ~LLFloaterNameDesc(); + virtual BOOL postBuild(); + + static void doCommit(class LLUICtrl *, void* userdata); +protected: + virtual void onCommit(); + virtual void centerWindow(); + +protected: + BOOL mIsAudio; + + LLString mFilenameAndPath; + LLString mFilename; + + static void onBtnOK(void*); + static void onBtnCancel(void*); +}; + +#endif // LL_LLFLOATERNAMEDESC_H |