| Revision 3,
677 bytes
checked in by lowjoel, 6 years ago
(diff) |
|
Added the source files from root (SVN migration commit 1)
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | // HotKeyListCtrl.cpp : implementation file |
|---|
| 2 | // |
|---|
| 3 | |
|---|
| 4 | #include "stdafx.h" |
|---|
| 5 | #include "Eraser.h" |
|---|
| 6 | #include "HotKeyListCtrl.h" |
|---|
| 7 | #include ".\hotkeylistctrl.h" |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | // CHotKeyListCtrl |
|---|
| 11 | |
|---|
| 12 | IMPLEMENT_DYNAMIC(CHotKeyListCtrl, CListCtrl) |
|---|
| 13 | CHotKeyListCtrl::CHotKeyListCtrl() |
|---|
| 14 | { |
|---|
| 15 | } |
|---|
| 16 | |
|---|
| 17 | CHotKeyListCtrl::~CHotKeyListCtrl() |
|---|
| 18 | { |
|---|
| 19 | } |
|---|
| 20 | |
|---|
| 21 | |
|---|
| 22 | BEGIN_MESSAGE_MAP(CHotKeyListCtrl, CListCtrl) |
|---|
| 23 | ON_NOTIFY_REFLECT(LVN_ITEMACTIVATE, OnLvnItemActivate) |
|---|
| 24 | END_MESSAGE_MAP() |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | |
|---|
| 28 | // CHotKeyListCtrl message handlers |
|---|
| 29 | |
|---|
| 30 | |
|---|
| 31 | void CHotKeyListCtrl::OnLvnItemActivate(NMHDR *pNMHDR, LRESULT *pResult) |
|---|
| 32 | { |
|---|
| 33 | LPNMITEMACTIVATE pNMIA = reinterpret_cast<LPNMITEMACTIVATE>(pNMHDR); |
|---|
| 34 | // TODO: Add your control notification handler code here |
|---|
| 35 | *pResult = 0; |
|---|
| 36 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.