diff options
author | Jacek Antonelli | 2008-08-15 23:45:16 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:16 -0500 |
commit | 3f27ba891ac4d032753b219b4b96d1ffbc9fb488 (patch) | |
tree | 504932ee91a0356fba7ea48798887c96867e492f /linden/indra/newview/llpaneldirfind.h | |
parent | Second Life viewer sources 1.18.4.3 (diff) | |
download | meta-impy-3f27ba891ac4d032753b219b4b96d1ffbc9fb488.zip meta-impy-3f27ba891ac4d032753b219b4b96d1ffbc9fb488.tar.gz meta-impy-3f27ba891ac4d032753b219b4b96d1ffbc9fb488.tar.bz2 meta-impy-3f27ba891ac4d032753b219b4b96d1ffbc9fb488.tar.xz |
Second Life viewer sources 1.18.5.0-RC
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llpaneldirfind.h | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/linden/indra/newview/llpaneldirfind.h b/linden/indra/newview/llpaneldirfind.h index 57bdadb..baff473 100644 --- a/linden/indra/newview/llpaneldirfind.h +++ b/linden/indra/newview/llpaneldirfind.h | |||
@@ -34,17 +34,27 @@ | |||
34 | 34 | ||
35 | #include "llpaneldirbrowser.h" | 35 | #include "llpaneldirbrowser.h" |
36 | 36 | ||
37 | // UI class forward declarations | 37 | class LLUICtrl; |
38 | class LLLineEditor; | 38 | class LLLineEditor; |
39 | class LLPanelDirFindAll; | ||
40 | class LLFloaterDirectory; | ||
39 | 41 | ||
42 | class LLPanelDirFindAllInterface | ||
43 | { | ||
44 | public: | ||
45 | static LLPanelDirFindAll* create(LLFloaterDirectory* floater); | ||
46 | static void search(LLPanelDirFindAll* panel, const std::string& search_text); | ||
47 | static void focus(LLPanelDirFindAll* panel); | ||
48 | }; | ||
40 | 49 | ||
41 | class LLPanelDirFind : public LLPanelDirBrowser | 50 | |
51 | class LLPanelDirFindAllOld : public LLPanelDirBrowser | ||
42 | { | 52 | { |
43 | public: | 53 | public: |
44 | LLPanelDirFind(const std::string& name, LLFloaterDirectory* floater); | 54 | LLPanelDirFindAllOld(const std::string& name, LLFloaterDirectory* floater); |
45 | virtual ~LLPanelDirFind(); | 55 | /*virtual*/ ~LLPanelDirFindAllOld(); |
46 | 56 | ||
47 | virtual BOOL postBuild(); | 57 | /*virtual*/ BOOL postBuild(); |
48 | 58 | ||
49 | /*virtual*/ void draw(); | 59 | /*virtual*/ void draw(); |
50 | 60 | ||
@@ -53,6 +63,4 @@ public: | |||
53 | static void onKeystrokeName(LLLineEditor* line, void* data); | 63 | static void onKeystrokeName(LLLineEditor* line, void* data); |
54 | }; | 64 | }; |
55 | 65 | ||
56 | BOOL enable_never(void*); | ||
57 | |||
58 | #endif | 66 | #endif |