Ignore:
Timestamp:
Apr 17, 2008, 2:01:48 AM (16 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/abdev/include/MainFrame.h

    r492 r493  
    4545    LRESULT OnNotify( int idCtrl, LPNMHDR pnmh );
    4646
     47    // 「新規作成」メニューがクリックされた
     48    void OnCmdNew( UINT uNotifyCode, int nID, CWindow wndCtl );
     49
     50    // 「開く」メニューがクリックされた
     51    void OnCmdOpen( UINT uNotifyCode, int nID, CWindow wndCtl );
     52
     53    // 「閉じる」メニューがクリックされた
     54    void OnCmdClose( UINT uNotifyCode, int nID, CWindow wndCtl );
     55
    4756private:
    4857    // メッセージマップ
     
    5968
    6069        MSG_WM_NOTIFY( OnNotify );
     70
     71        COMMAND_ID_HANDLER_EX( IDM_NEW, OnCmdNew )
     72        COMMAND_ID_HANDLER_EX( IDM_OPEN, OnCmdOpen )
     73        COMMAND_ID_HANDLER_EX( IDM_CLOSE, OnCmdClose )
    6174    END_MSG_MAP()
    6275};
Note: See TracChangeset for help on using the changeset viewer.