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

« back to all changes in this revision

Viewing changes to src/gui/npcdialog.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-07-11 10:09:41 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20130711100941-f0rwuvcwgl8ulqo8
Tags: 1.3.7.7.1-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
class ExtendedListBox;
42
42
class ItemLinkHandler;
43
43
class IntTextField;
 
44
class NpcDialog;
44
45
class PlayerBox;
45
46
class ScrollArea;
46
47
class TextBox;
47
48
class TextField;
48
49
 
 
50
typedef std::map<int, NpcDialog*> NpcDialogs;
 
51
 
49
52
/**
50
53
 * The npc dialog.
51
54
 *
202
205
 
203
206
        void clearRows();
204
207
 
 
208
        void mousePressed(gcn::MouseEvent &event);
 
209
 
 
210
        static void copyToClipboard(const int npcId, const int x, const int y);
 
211
 
 
212
        static NpcDialogs mNpcDialogs;
 
213
 
 
214
        static void clearDialogs();
 
215
 
205
216
    private:
206
217
        typedef std::list<NpcDialog*> DialogList;
207
218
        static DialogList instances;