aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llpaneldirplaces.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:54 -0500
committerJacek Antonelli2008-08-15 23:45:54 -0500
commitd0b03a62fd799317d5da0bd56615739ce3b5b052 (patch)
tree8bc79bbbb52e18294f62810d9fa66ce136f90e2d /linden/indra/newview/llpaneldirplaces.h
parentSecond Life viewer sources 1.20.8 (diff)
downloadmeta-impy-d0b03a62fd799317d5da0bd56615739ce3b5b052.zip
meta-impy-d0b03a62fd799317d5da0bd56615739ce3b5b052.tar.gz
meta-impy-d0b03a62fd799317d5da0bd56615739ce3b5b052.tar.bz2
meta-impy-d0b03a62fd799317d5da0bd56615739ce3b5b052.tar.xz
Second Life viewer sources 1.20.9
Diffstat (limited to 'linden/indra/newview/llpaneldirplaces.h')
-rw-r--r--linden/indra/newview/llpaneldirplaces.h20
1 files changed, 17 insertions, 3 deletions
diff --git a/linden/indra/newview/llpaneldirplaces.h b/linden/indra/newview/llpaneldirplaces.h
index 4785f94..7bc2b08 100644
--- a/linden/indra/newview/llpaneldirplaces.h
+++ b/linden/indra/newview/llpaneldirplaces.h
@@ -32,17 +32,31 @@
32#ifndef LL_LLPANELDIRPLACES_H 32#ifndef LL_LLPANELDIRPLACES_H
33#define LL_LLPANELDIRPLACES_H 33#define LL_LLPANELDIRPLACES_H
34 34
35#include "llpaneldirfind.h" 35#include "llpaneldirbrowser.h"
36 36
37// UI class forward declarations 37// UI class forward declarations
38class LLLineEditor;
38 39
39class LLPanelDirPlaces : public LLPanelDirFind 40class LLPanelDirPlaces : public LLPanelDirBrowser
40{ 41{
41public: 42public:
42 LLPanelDirPlaces(const std::string& name, LLFloaterDirectory* floater); 43 LLPanelDirPlaces(const std::string& name, LLFloaterDirectory* floater);
43 virtual ~LLPanelDirPlaces(); 44 virtual ~LLPanelDirPlaces();
44 45
45 /*virtual*/ void search(const std::string& search_text); 46 /*virtual*/ void draw();
46 47
48 virtual BOOL postBuild();
49
50 static void onClickSearch(void *userdata);
51 static void onKeystrokeName(LLLineEditor* line, void* data);
52
53 void performQuery();
54
55 // Initially fill in some data for the panel.
56 void initialQuery();
57
58private:
59 void queryCore(const LLString& name, S32 category, BOOL pg_only);
47}; 60};
61
48#endif 62#endif