summaryrefslogtreecommitdiff
path: root/indra/newview/fsfloatersearch.h
blob: 61cef8bab9847d5edb1db338e6e6cee776f6f732 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
/**
 * @file fsfloatersearch.h
 * @brief Firestorm search definitions
 *
 * $LicenseInfo:firstyear=2012&license=fsviewerlgpl$
 * Phoenix Firestorm Viewer Source Code
 * Copyright (C) 2012, Cinder Roxley <cinder.roxley@phoenixviewer.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation;
 * version 2.1 of the License only.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * The Phoenix Firestorm Project, Inc., 1831 Oakwood Drive, Fairmont, Minnesota 56031-3225 USA
 * http://www.firestormviewer.org
 * $/LicenseInfo$
 */

#ifndef FS_FLOATERSEARCH_H
#define FS_FLOATERSEARCH_H

#include "llfloater.h"
#include "lliconctrl.h"
#include "lltexteditor.h"
#include "lltexturectrl.h"
#include "llremoteparcelrequest.h"
#include "llavatarpropertiesprocessor.h"
#include "llgroupmgr.h"
#include "llavatarnamecache.h"
#include "llmediactrl.h"
#include "llradiogroup.h"
#include "llsearchcombobox.h"
#include "llscrolllistctrl.h"
#include "lltabcontainer.h"
#include "lleventnotifier.h"

class FSSearchRemoteParcelInfoObserver;
class LLAvatarPropertiesObserver;
class LLGroupMgrObserver;
class LLSearchEditor;
class LLSearchComboBox;
class FSFloaterSearch;
class LLPanelProfile;
class FSScrollListCtrl;

struct SearchQuery : public LLInitParam::Block<SearchQuery>
{
    Optional<std::string> category;
    Optional<std::string> query;

    SearchQuery();
};

///////////////////////////////
//       Search Panels       //
///////////////////////////////

class FSSearchPanelBase : public LLPanel
{
public:
    FSSearchPanelBase() : LLPanel() { }
    virtual ~FSSearchPanelBase() = default;
    virtual void focusDefaultElement() { }
};

class FSPanelSearchPeople : public FSSearchPanelBase
{
    LOG_CLASS(FSFloaterSearch);
public:
    FSPanelSearchPeople();
    static void processSearchReply(LLMessageSystem* msg, void**);

    /*virtual*/ void focusDefaultElement();

protected:
    const S32& getNumResultsReturned() const { return mNumResultsReturned; };
    const S32& getNumResultsReceived() const { return mResultsReceived; };

private:
    /*virtual*/ BOOL postBuild();
    virtual ~FSPanelSearchPeople();

    void onBtnFind();
    void onSelectItem();
    void onBtnNext();
    void onBtnBack();

    void find();
    void resetSearch();
    S32  showNextButton(S32);

    const LLUUID& getQueryID() const { return mQueryID; }

    void onAvatarNameCallback(const LLUUID& id, const LLAvatarName& av_name);

    typedef boost::signals2::connection avatar_name_callback_connection_t;
    avatar_name_callback_connection_t mAvatarNameCallbackConnection;

    S32         mNumResultsReturned;
    S32         mStartSearch;
    S32         mResultsReceived;
    LLSD        mResultsContent;
    LLUUID      mQueryID;

    LLSearchComboBox*       mSearchComboBox;
    LLScrollListCtrl*       mSearchResults;
};

class FSPanelSearchGroups : public FSSearchPanelBase
{
    LOG_CLASS(FSFloaterSearch);
public:
    FSPanelSearchGroups();
    static void processSearchReply(LLMessageSystem* msg, void**);

    /*virtual*/ void focusDefaultElement();

private:
    /*virtual*/ BOOL postBuild();
    virtual ~FSPanelSearchGroups();

    void onBtnFind();
    void onSelectItem();
    void onBtnNext();
    void onBtnBack();

    void find();
    void resetSearch();
    S32  showNextButton(S32);

    const LLUUID& getQueryID() const { return mQueryID; }

    S32         mNumResultsReturned;
    S32         mStartSearch;
    S32         mResultsReceived;
    LLSD        mResultsContent;
    LLUUID      mQueryID;

    LLSearchComboBox*   mSearchComboBox;
    LLScrollListCtrl*   mSearchResults;
};

class FSPanelSearchPlaces : public FSSearchPanelBase
{
    LOG_CLASS(FSFloaterSearch);
public:
    FSPanelSearchPlaces();
    static void processSearchReply(LLMessageSystem* msg, void**);

    /*virtual*/ void focusDefaultElement();

private:
    /*virtual*/ BOOL postBuild();
    virtual ~FSPanelSearchPlaces();

    void onBtnFind();
    void onSelectItem();
    void onBtnNext();
    void onBtnBack();

    void find();
    void resetSearch();
    S32  showNextButton(S32);

    const LLUUID& getQueryID() const { return mQueryID; }

    S32         mNumResultsReturned;
    S32         mStartSearch;
    S32         mResultsReceived;
    LLSD        mResultsContent;
    LLUUID      mQueryID;

    LLSearchComboBox*   mSearchComboBox;
    LLScrollListCtrl*   mSearchResults;
    LLComboBox*         mPlacesCategory;
};

class FSPanelSearchLand : public FSSearchPanelBase
{
    LOG_CLASS(FSFloaterSearch);
public:
    FSPanelSearchLand();
    static void processSearchReply(LLMessageSystem* msg, void**);

private:
    /*virtual*/ BOOL postBuild();
    virtual ~FSPanelSearchLand();

    void onBtnFind();
    void onSelectItem();
    void onBtnNext();
    void onBtnBack();

    void find();
    void resetSearch();
    S32  showNextButton(S32);

    const LLUUID& getQueryID() const { return mQueryID; }

    S32         mNumResultsReturned;
    S32         mStartSearch;
    S32         mResultsReceived;
    LLSD        mResultsContent;
    LLUUID      mQueryID;

    LLLineEditor*       mPriceEditor;
    LLLineEditor*       mAreaEditor;
    LLScrollListCtrl*   mSearchResults;
};

class FSPanelSearchClassifieds : public FSSearchPanelBase
{
    LOG_CLASS(FSFloaterSearch);
public:
    FSPanelSearchClassifieds();
    static void processSearchReply(LLMessageSystem* msg, void**);

    /*virtual*/ void focusDefaultElement();

private:
    /*virtual*/ BOOL postBuild();
    virtual ~FSPanelSearchClassifieds();

    void onBtnFind();
    void onSelectItem();
    void onBtnNext();
    void onBtnBack();

    void find();
    void resetSearch();
    S32  showNextButton(S32);

    const LLUUID& getQueryID() const { return mQueryID; }

    S32         mNumResultsReturned;
    S32         mStartSearch;
    S32         mResultsReceived;
    LLSD        mResultsContent;
    LLUUID      mQueryID;

    LLSearchComboBox*   mSearchComboBox;
    LLScrollListCtrl*   mSearchResults;
    LLComboBox*         mClassifiedsCategory;
};

class FSPanelSearchEvents : public FSSearchPanelBase
{
    LOG_CLASS(FSFloaterSearch);
public:
    FSPanelSearchEvents();
    static void processSearchReply(LLMessageSystem* msg, void**);

    /*virtual*/ void focusDefaultElement();

private:
    /*virtual*/ BOOL postBuild();
    virtual ~FSPanelSearchEvents();

    void onBtnFind();
    void onSelectItem();
    void onBtnNext();
    void onBtnBack();
    void onBtnTomorrow();
    void onBtnYesterday();
    void onBtnToday();

    void find();
    void setDay(S32 day);
    void onSearchModeChanged();
    void resetSearch();
    S32  showNextButton(S32);

    const LLUUID& getQueryID() const { return mQueryID; }

    S32         mNumResultsReturned;
    S32         mResultsReceived;
    S32         mStartSearch;
    S32         mDay;
    LLSD        mResultsContent;
    LLUUID      mQueryID;

    LLSearchComboBox*   mSearchComboBox;
    LLScrollListCtrl*   mSearchResults;
    LLRadioGroup*       mEventsMode;
};

class FSPanelSearchWeb : public FSSearchPanelBase
{
    LOG_CLASS(FSFloaterSearch);
public:
    FSPanelSearchWeb();
    /*virtual*/ BOOL postBuild();
    void loadURL(const SearchQuery &query);
    /*virtual*/ void focusDefaultElement();
    /*virtual*/ void draw();
    void resetFocusOnLoad() { mResetFocusOnLoad = true; }

private:
    virtual ~FSPanelSearchWeb() {};

    LLMediaCtrl*    mWebBrowser;
    LLSD            mCategoryPaths;

    bool            mResetFocusOnLoad;
};

class FSFloaterSearch : public LLFloater
{
    LOG_CLASS(FSFloaterSearch);
public:
    typedef enum e_search_category
    {
        SC_AVATAR,
        SC_GROUP,
        SC_PLACE,
        SC_CLASSIFIED
    }   ESearchCategory;

    struct _Params : public LLInitParam::Block<_Params, LLFloater::Params>
    {
        Optional<SearchQuery> search;
    };

    typedef LLSDParamAdapter<_Params> Params;

    FSFloaterSearch(const Params& key);
    ~FSFloaterSearch();
    void onOpen(const LLSD& key);
    BOOL postBuild();

    void avatarNameUpdatedCallback(const LLUUID& id, const LLAvatarName& av_name);
    void groupNameUpdatedCallback(const LLUUID& id, const std::string& name, bool is_group);
    void onSelectedItem(const LLUUID& selected_item, ESearchCategory type);
    void onSelectedEvent(const S32 selected_event);
    void displayParcelDetails(const LLParcelData& parcel_data);
    void displayClassifiedDetails(LLAvatarClassifiedInfo*& c_info);
    void displayAvatarDetails(LLAvatarData* avatar_data);
    void displayGroupDetails(LLGroupMgrGroupData*& group_data);
    bool displayEventDetails(LLEventStruct event);
    void displayEventParcelImage(const LLParcelData& parcel_data);
    void setLoadingProgress(bool started);

    template <class T>
    static T* getSearchPanel(const std::string& panel_name);

private:
    virtual void onClose(bool app_quitting);
    const LLUUID& getSelectedID() { return mSelectedID; }
    LLVector3d  mParcelGlobal;
    LLUUID      mSelectedID;
    U32         mEventID;
    bool        mHasSelection;

    void resetVerbs();
    void flushDetails();
    void onTabChange();
    void onBtnPeopleProfile();
    void onBtnPeopleIM();
    void onBtnPeopleFriend();
    void onBtnGroupProfile();
    void onBtnGroupChat();
    void onBtnGroupJoin();
    void onBtnEventReminder();
    void onBtnTeleport();
    void onBtnMap();

    void regionHandleCallback(U64 region_handle, LLVector3d pos_global);

    FSSearchRemoteParcelInfoObserver* mRemoteParcelObserver;
    FSSearchRemoteParcelInfoObserver* mRemoteParcelEventLocationObserver;
    LLAvatarPropertiesObserver* mAvatarPropertiesObserver;
    LLGroupMgrObserver* mGroupPropertiesRequest;
    boost::signals2::connection mEventNotifierConnection;

    FSPanelSearchPeople*    mPanelPeople;
    FSPanelSearchGroups*    mPanelGroups;
    FSPanelSearchPlaces*    mPanelPlaces;
    FSPanelSearchEvents*    mPanelEvents;
    FSPanelSearchLand*      mPanelLand;
    FSPanelSearchClassifieds* mPanelClassifieds;
    FSPanelSearchWeb*       mPanelWeb;

    LLPanel*        mDetailsPanel;
    LLTextEditor*   mDetailTitle;
    LLTextEditor*   mDetailDesc;
    LLTextEditor*   mDetailAux1;
    LLTextEditor*   mDetailAux2;
    LLTextEditor*   mDetailLocation;
    LLTextureCtrl*  mDetailSnapshot;
    LLTextureCtrl*  mDetailSnapshotParcel;
    LLIconCtrl*     mDetailMaturity;
    LLTabContainer* mTabContainer;
};

#endif // FS_FLOATERSEARCH_H