diff options
Diffstat (limited to 'src/PropertyMarkerDlg.cpp')
-rw-r--r-- | src/PropertyMarkerDlg.cpp | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/src/PropertyMarkerDlg.cpp b/src/PropertyMarkerDlg.cpp new file mode 100644 index 0000000..3fa220d --- /dev/null +++ b/src/PropertyMarkerDlg.cpp @@ -0,0 +1,71 @@ +//******************************************************************************
+// 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 */
+
+#include "winver.h"
+#include <afxwin.h>
+#include <afxcmn.h>
+#include "resource.h"
+#include "PropertyMarkerDlg.h"
+
+#ifndef CLIP
+#define CLIP(A,B,C) ((B)<(A)?(A):((B)>(C)?(C):(B)))
+#endif
+
+//******************************************************************************
+// 構築と破壊
+//******************************************************************************
+
+// コンストラクタ
+CPropertyMarkerDlg::CPropertyMarkerDlg () : CDialog (CPropertyMarkerDlg::IDD) {
+ m_strTime = _T("");
+ m_strText = _T("");
+}
+
+//******************************************************************************
+// オペレーション
+//******************************************************************************
+
+
+//******************************************************************************
+// オーバーライド
+//******************************************************************************
+
+// データエクスチェンジ
+void CPropertyMarkerDlg::DoDataExchange (CDataExchange* pDX) {
+ CDialog::DoDataExchange (pDX);
+ DDX_Text (pDX, IDC_PROPERTYMARKER_TIME, m_strTime);
+ DDX_Text (pDX, IDC_PROPERTYMARKER_TEXT, m_strText);
+}
+
+// ダイアログ初期化
+BOOL CPropertyMarkerDlg::OnInitDialog () {
+ BOOL bRet = CDialog::OnInitDialog ();
+ return bRet;
+}
+
+
+//******************************************************************************
+// メッセージマップ
+//******************************************************************************
+
+BEGIN_MESSAGE_MAP (CPropertyMarkerDlg, CDialog)
+END_MESSAGE_MAP ()
+
+
|