~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/gui/chatwindow.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-09-17 10:35:51 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20130917103551-az7p3nz9jgxwqjfn
Tags: 1.3.9.15-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
#include <guichan/actionlistener.hpp>
35
35
#include <guichan/keylistener.hpp>
36
 
#include <guichan/widget.hpp>
37
 
#include <guichan/widgetlistener.hpp>
38
36
 
39
37
#include <list>
40
38
#include <map>
41
39
#include <set>
42
40
 
43
 
class BrowserBox;
44
41
class ChatTab;
45
 
class Channel;
46
42
class ChatInput;
47
43
class ColorListModel;
48
44
class DropDown;
49
 
class EmoteWindow;
50
 
class ScrollArea;
51
45
class TabbedArea;
52
46
class ItemLinkHandler;
53
 
class Tab;
54
47
class WhisperTab;
55
48
 
56
49
const int DEFAULT_CHAT_WINDOW_SCROLL = 7;
273
266
 
274
267
        void parseHighlights();
275
268
 
 
269
        void parseGlobalsFilter();
 
270
 
276
271
        bool findHighlight(const std::string &str) A_WARN_UNUSED;
277
272
 
278
273
        void copyToClipboard(const int x, const int y) const;
293
288
 
294
289
        void widgetResized(const gcn::Event &event) override;
295
290
 
 
291
        void addGlobalMessage(const std::string &line);
 
292
 
296
293
#ifdef USE_PROFILER
297
294
        void logicChildren();
298
295
#endif
367
364
        unsigned int mChatHistoryIndex;
368
365
        std::list<std::string> mAwayLog;
369
366
        StringVect mHighlights;
 
367
        StringVect mGlobalsFilter;
370
368
        bool mGMLoaded;
371
369
        bool mHaveMouse;
372
370
        bool mAutoHide;