Mercurial > otakunoraifu
comparison scn2k/scn2k.h @ 53:ddbcbd000206
* MuSys, AyuSysConfig, FileSearcher (former FILESEARCHER) and KeyHolder (former KEYHOLDER) are now singletons
* ParseMoji moved to TextStream
* Some cleaning (0 -> NULL when needed, removal of useless returns, ...)
author | thib |
---|---|
date | Sun, 19 Apr 2009 11:44:05 +0000 |
parents | 15a18fbe6f21 |
children | d7cde171a1de |
comparison
equal
deleted
inserted
replaced
52:15a18fbe6f21 | 53:ddbcbd000206 |
---|---|
225 private: | 225 private: |
226 class TextImpl* pimpl; | 226 class TextImpl* pimpl; |
227 public: | 227 public: |
228 std::vector<BacklogItem> backlog; | 228 std::vector<BacklogItem> backlog; |
229 BacklogItem backlog_item; | 229 BacklogItem backlog_item; |
230 Text(Event::Container& _event, PicContainer& _parent, AyuSysConfig& config); | 230 Text(Event::Container& _event, PicContainer& _parent); |
231 ~Text(); | 231 ~Text(); |
232 void InitWindow(void); | 232 void InitWindow(void); |
233 void Exec(Cmd& cmd); | 233 void Exec(Cmd& cmd); |
234 bool Wait(unsigned int current_time, Cmd& cmd); | 234 bool Wait(unsigned int current_time, Cmd& cmd); |
235 void SetSkipMode(SkipMode mode); | 235 void SetSkipMode(SkipMode mode); |
245 | 245 |
246 class Grp { | 246 class Grp { |
247 private: | 247 private: |
248 class GrpImpl* pimpl; | 248 class GrpImpl* pimpl; |
249 public: | 249 public: |
250 Grp(Event::Container& _event, PicContainer& _parent, const Flags& f, std::set<int>& _cgm_data, class MuSys& mu, AyuSysConfig& config); | 250 Grp(Event::Container& _event, PicContainer& _parent, const Flags& f, std::set<int>& _cgm_data); |
251 ~Grp(); | 251 ~Grp(); |
252 bool Wait(unsigned int current_time, Cmd& cmd); | 252 bool Wait(unsigned int current_time, Cmd& cmd); |
253 void Exec(Cmd& cmd); | 253 void Exec(Cmd& cmd); |
254 void SetSkipMode(SkipMode mode); | 254 void SetSkipMode(SkipMode mode); |
255 void InitSel(AyuSysConfig& config); | 255 void InitSel(void); |
256 void Save(std::string& str); | 256 void Save(std::string& str); |
257 void Load(const char* str); | 257 void Load(const char* str); |
258 void SaveSys(std::string& str); | 258 void SaveSys(std::string& str); |
259 void LoadSys(const char* str); | 259 void LoadSys(const char* str); |
260 }; | 260 }; |