~s.jansen/+junk/gogglesmm

« back to all changes in this revision

Viewing changes to src/gap/include/ap_event.h

  • Committer: Sander Jansen
  • Date: 2016-07-18 21:09:51 UTC
  • mfrom: (1.1.2)
  • Revision ID: s.jansen@gmail.com-20160718210951-pzq7qyvo6bfq7tfy
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
 
55
55
class Event;
56
56
 
57
 
class Event {
 
57
class GMAPI Event {
58
58
public:
59
59
  Event     * next;       /// used by pool and queue to   (8)
60
60
  FXuchar     type;       /// type of event               (1)
69
69
  static void unref(Event*&);
70
70
  };
71
71
 
72
 
class ErrorMessage : public Event {
 
72
class GMAPI ErrorMessage : public Event {
73
73
public:
74
74
  FXString msg;
75
75
protected:
78
78
  ErrorMessage(const FXString & t=FXString::null);
79
79
  };
80
80
 
81
 
class TimeUpdate : public Event {
 
81
class GMAPI TimeUpdate : public Event {
82
82
public:
83
83
  FXuint position;
84
84
  FXuint length;
88
88
  TimeUpdate(FXuint p,FXuint l);
89
89
  };
90
90
 
91
 
class MetaInfo : public Event {
 
91
class GMAPI MetaInfo : public Event {
92
92
public:
93
93
  FXString title;
94
94
  FXString artist;
99
99
  MetaInfo();
100
100
  };
101
101
 
102
 
class VolumeNotify : public Event{
 
102
class GMAPI VolumeNotify : public Event{
103
103
public:
104
104
  Volume volume;
105
105
protected: