[RsWitch-cvs] CVS: rswitch MainFrm.h,1.1.1.1,1.2
Status: Alpha
Brought to you by:
bcrochet
From: Brad P. C. <bcr...@us...> - 2000-12-03 21:21:07
|
Update of /cvsroot/rswitch/rswitch In directory slayer.i.sourceforge.net:/tmp/cvs-serv13400 Modified Files: MainFrm.h Log Message: * Added HotKeyList vector typedef * Added ReadHotKeyListFromRegistry method prototype * Added WriteHotKeyListToRegistry method prototype * Added HotKeyList member variable. * Include inlines.h Index: MainFrm.h =================================================================== RCS file: /cvsroot/rswitch/rswitch/MainFrm.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** MainFrm.h 2000/11/01 15:10:18 1.1.1.1 --- MainFrm.h 2000/12/03 21:21:04 1.2 *************** *** 19,22 **** --- 19,29 ---- // $Log$ + // Revision 1.2 2000/12/03 21:21:04 bcrochet + // * Added HotKeyList vector typedef + // * Added ReadHotKeyListFromRegistry method prototype + // * Added WriteHotKeyListToRegistry method prototype + // * Added HotKeyList member variable. + // * Include inlines.h + // // Revision 1.1.1.1 2000/11/01 15:10:18 bcrochet // Initial revision and import *************** *** 34,37 **** --- 41,49 ---- #endif // _MSC_VER > 1000 + #include "inlines.h" + #include "HotKeyEntry.h" + + typedef std::vector<CHotKeyEntry> HotKeyList; + class CMainFrame : public CFrameWnd { *************** *** 42,45 **** --- 54,59 ---- DECLARE_DYNAMIC(CMainFrame) + HotKeyList m_hkList; + // Attributes public: *************** *** 53,56 **** --- 67,73 ---- bool JoinRogerWilcoChannel(CString& host_ip, CString& channel_name, CString& passwd); bool StartRogerWilco(); + inline HotKeyList& GetHotKeyList() { return m_hkList; } + boolean ReadHotKeyListFromRegistry( HotKeyList& hkList ); + boolean WriteHotKeyListToRegistry( HotKeyList& hkList ); // Overrides |