diff options
author | Oleg Sheikin <olg@tightvnc.com> | 2005-07-01 13:31:14 +0000 |
---|---|---|
committer | Oleg Sheikin <olg@tightvnc.com> | 2005-07-01 13:31:14 +0000 |
commit | 1475737b726299374df6edb40caa29e82363cb88 (patch) | |
tree | a0041ace9f76d0fd743d57e12e15d71d5a1aaaf1 /rfb_win32/ListViewControl.h | |
parent | f5049addf4de27ecad21e1c412fe653089078b8e (diff) | |
download | tigervnc-1475737b726299374df6edb40caa29e82363cb88.tar.gz tigervnc-1475737b726299374df6edb40caa29e82363cb88.zip |
Minor code improving.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@299 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'rfb_win32/ListViewControl.h')
-rw-r--r-- | rfb_win32/ListViewControl.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/rfb_win32/ListViewControl.h b/rfb_win32/ListViewControl.h index fa171998..aef916e0 100644 --- a/rfb_win32/ListViewControl.h +++ b/rfb_win32/ListViewControl.h @@ -9,26 +9,26 @@ #include "commctrl.h" namespace rfb { - + namespace win32 { - class ListViewControl - { - public: - ListViewControl(); - int IsSelectedLVItem(DWORD idListView, HWND hDlg, int numberItem); - void SelectLVItem(DWORD idListView, HWND hDlg, int numberItem); - BOOL InitLVColumns(DWORD idListView, HWND hDlg, int width, int columns, - TCHAR * title[], DWORD mask, DWORD style, DWORD format); - BOOL InsertLVItem(DWORD idListView, HWND hDlg, int number, TCHAR * texts[], - int columns); - void SetLVItemText(DWORD idListView, HWND hDlg, int numberItem, - int namberColumn, TCHAR * text); - void GetLVItemText(DWORD idListView, HWND hDlg, int numberItem, - int namberColumn, TCHAR * text); - void DeleteLVItem(DWORD idListView, HWND hDlg, int number); - void DeleteAllLVItem(DWORD idListView, HWND hDlg); - virtual ~ListViewControl(); - }; + class ListViewControl + { + public: + ListViewControl(); + int IsSelectedLVItem(DWORD idListView, HWND hDlg, int numberItem); + void SelectLVItem(DWORD idListView, HWND hDlg, int numberItem); + BOOL InitLVColumns(DWORD idListView, HWND hDlg, int width, int columns, + TCHAR * title[], DWORD mask, DWORD style, DWORD format); + BOOL InsertLVItem(DWORD idListView, HWND hDlg, int number, TCHAR * texts[], + int columns); + void SetLVItemText(DWORD idListView, HWND hDlg, int numberItem, + int namberColumn, TCHAR * text); + void GetLVItemText(DWORD idListView, HWND hDlg, int numberItem, + int namberColumn, TCHAR * text); + void DeleteLVItem(DWORD idListView, HWND hDlg, int number); + void DeleteAllLVItem(DWORD idListView, HWND hDlg); + virtual ~ListViewControl(); + }; }; }; |