//****************************************************************************** // MIDIシーケンサーソフト『世界樹』 // グラフの種類リストボックスクラス // (C)2002-2013 おーぷんMIDIぷろじぇくと/くず //****************************************************************************** /* This library is free software; you can redistribute it and/or */ /* modify it under the terms of the GNU Lesser General Public */ /* License as published by the Free Software Foundation; either */ /* version 2.1 of the License, or (at your option) any later version. */ /* This library is distributed in the hope that it will be useful, */ /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */ /* Lesser General Public License for more details. */ /* You should have received a copy of the GNU Lesser General Public */ /* License along with this library; if not, write to the Free Software */ /* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef _GRAPHKINDLISTBOX_H_ #define _GRAPHKINDLISTBOX_H_ class CGraphKindListBox : public CCheckListBox { DECLARE_DYNCREATE (CGraphKindListBox) //-------------------------------------------------------------------------- // アトリビュート //-------------------------------------------------------------------------- protected: CDocument* m_pDocument; // ドキュメントへのポインタ long m_lMenuID; // 右クリックしたときに現れるメニューのID long m_lLastRButtonDownIndex; // 最後に右クリックした項目番号(0〜) //-------------------------------------------------------------------------- // 構築と破壊 //-------------------------------------------------------------------------- public: CGraphKindListBox (); // コンストラクタ CGraphKindListBox (CDocument* pDocument, long lMenuID); // コンストラクタ virtual ~CGraphKindListBox (); // デストラクタ //-------------------------------------------------------------------------- // オペレーション //-------------------------------------------------------------------------- public: void CGraphKindListBox::SetDocument (CDocument* pDocument); CSekaijuDoc* GetDocument (); long GetLastRButtonDownIndex (); //-------------------------------------------------------------------------- // オーバーライド //-------------------------------------------------------------------------- protected: //-------------------------------------------------------------------------- // メッセージマップ //-------------------------------------------------------------------------- protected: afx_msg void OnRButtonDown (UINT nFlags, CPoint point); DECLARE_MESSAGE_MAP () }; #endif