ReactOS 0.4.15-dev-7924-g5949c20
CDowloadingAppsListView Class Reference
Inheritance diagram for CDowloadingAppsListView:
Collaboration diagram for CDowloadingAppsListView:

Public Member Functions

HWND Create (HWND hwndParent)
 
VOID LoadList (ATL::CSimpleArray< DownloadInfo > arrInfo)
 
VOID SetDownloadStatus (INT ItemIndex, DownloadStatus Status)
 
BOOL AddItem (INT ItemIndex, LPWSTR lpText)
 
VOID AddRow (INT RowIndex, LPCWSTR szAppName, const DownloadStatus Status)
 
BOOL AddColumn (INT Index, INT Width, INT Format)
 
- Public Member Functions inherited from CListView
HWND Create (HWND hWndParent, _U_RECT rect, LPCTSTR szWindowName=NULL, DWORD dwStyle=0, DWORD dwExStyle=0, _U_MENUorID MenuOrID=0U, LPVOID lpCreateParam=NULL)
 
void SetRedraw (BOOL redraw)
 
BOOL SetTextBkColor (COLORREF cr)
 
BOOL SetBkColor (COLORREF cr)
 
BOOL SetTextColor (COLORREF cr)
 
DWORD SetExtendedListViewStyle (DWORD dw, DWORD dwMask=0)
 
int InsertColumn (int iCol, LV_COLUMN *pcol)
 
int InsertColumn (int iCol, LPWSTR pszText, int fmt, int width=-1, int iSubItem=-1, int iImage=-1, int iOrder=-1)
 
int GetColumnWidth (int iCol)
 
HIMAGELIST SetImageList (HIMAGELIST himl, int iImageList)
 
int InsertItem (const LV_ITEM *pitem)
 
BOOL DeleteItem (int i)
 
BOOL GetItem (LV_ITEM *pitem)
 
BOOL SetItem (const LV_ITEM *pitem)
 
BOOL FindItem (int iStart, const LV_FINDINFO *plvfi)
 
int GetItemCount ()
 
BOOL DeleteAllItems ()
 
BOOL Update (int i)
 
UINT GetSelectedCount ()
 
BOOL SortItems (PFNLVCOMPARE pfnCompare, PVOID lParam)
 
BOOL EnsureVisible (int i, BOOL fPartialOK)
 
HWND EditLabel (int i)
 
int GetSelectionMark ()
 
int GetNextItem (int i, WORD flags)
 
void GetItemSpacing (SIZE &spacing, BOOL bSmallIconView=FALSE)
 
UINT GetItemState (int i, UINT mask)
 
void SetItemState (int i, UINT state, UINT mask)
 
BOOL SetItemText (int i, int subItem, LPCWSTR text)
 
void SetCheckState (int i, BOOL check)
 
int HitTest (LV_HITTESTINFO *phtInfo)
 
DWORD_PTR GetItemData (int i)
 
BOOL GetSelectedItem (LV_ITEM *pItem)
 
void GetItemText (int iItem, int iSubItem, LPTSTR pszText, int cchTextMax)
 
BOOL GetItemPosition (int nItem, POINT *pPoint)
 
BOOL SetItemPosition (int nItem, POINT *pPoint)
 
BOOL Arrange (UINT nCode)
 

Detailed Description

Definition at line 286 of file loaddlg.cpp.

Member Function Documentation

◆ AddColumn()

BOOL CDowloadingAppsListView::AddColumn ( INT  Index,
INT  Width,
INT  Format 
)
inline

Definition at line 348 of file loaddlg.cpp.

349 {
350 LVCOLUMNW Column;
351 ZeroMemory(&Column, sizeof(Column));
352
354 Column.iSubItem = Index;
355 Column.cx = Width;
356 Column.fmt = Format;
357
358 return (InsertColumn(Index, &Column) == -1) ? FALSE : TRUE;
359 }
int InsertColumn(int iCol, LV_COLUMN *pcol)
Definition: rosctrls.h:52
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define LVCF_WIDTH
Definition: commctrl.h:2587
#define LVCF_FMT
Definition: commctrl.h:2586
#define LVCF_SUBITEM
Definition: commctrl.h:2589
_In_ HFONT _Out_ PUINT _Out_ PUINT Width
Definition: font.h:89
_In_ WDFCOLLECTION _In_ ULONG Index
#define ZeroMemory
Definition: winbase.h:1712

Referenced by Create().

◆ AddItem()

BOOL CDowloadingAppsListView::AddItem ( INT  ItemIndex,
LPWSTR  lpText 
)
inline

Definition at line 326 of file loaddlg.cpp.

327 {
329
330 ZeroMemory(&Item, sizeof(Item));
331
332 Item.mask = LVIF_TEXT | LVIF_STATE;
333 Item.pszText = lpText;
334 Item.iItem = ItemIndex;
335
336 return InsertItem(&Item);
337 }
int InsertItem(const LV_ITEM *pitem)
Definition: rosctrls.h:96
#define LVIF_STATE
Definition: commctrl.h:2312
#define LVIF_TEXT
Definition: commctrl.h:2309
_In_ WDFCOLLECTION _In_ WDFOBJECT Item

◆ AddRow()

VOID CDowloadingAppsListView::AddRow ( INT  RowIndex,
LPCWSTR  szAppName,
const DownloadStatus  Status 
)
inline

Definition at line 340 of file loaddlg.cpp.

341 {
342 CStringW szStatus = LoadStatusString(Status);
343 AddItem(RowIndex, const_cast<LPWSTR>(szAppName));
344 SetDownloadStatus(RowIndex, Status);
345 }
VOID SetDownloadStatus(INT ItemIndex, DownloadStatus Status)
Definition: loaddlg.cpp:319
Status
Definition: gdiplustypes.h:25
CStringW LoadStatusString(DownloadStatus StatusParam)
Definition: loaddlg.cpp:77
TCHAR szAppName[128]
Definition: solitaire.cpp:18
#define AddItem
Definition: userenv.h:209
WCHAR * LPWSTR
Definition: xmlstorage.h:184

Referenced by LoadList().

◆ Create()

HWND CDowloadingAppsListView::Create ( HWND  hwndParent)
inline

Definition at line 290 of file loaddlg.cpp.

291 {
292 RECT r;
294 r.top = (2 * r.top + 1 * r.bottom) / 3; /* The vertical position at ratio 1 : 2 */
295#define MARGIN 10
297
300
302
303 AddColumn(0, 150, LVCFMT_LEFT);
304 AddColumn(1, 120, LVCFMT_LEFT);
305
306 return hwnd;
307 }
Arabic default style
Definition: afstyles.h:94
BOOL AddColumn(INT Index, INT Width, INT Format)
Definition: loaddlg.cpp:348
HWND Create(HWND hWndParent, _U_RECT rect, LPCTSTR szWindowName=NULL, DWORD dwStyle=0, DWORD dwExStyle=0, _U_MENUorID MenuOrID=0U, LPVOID lpCreateParam=NULL)
Definition: rosctrls.h:8
static HWND hwndParent
Definition: cryptui.c:300
#define NULL
Definition: types.h:112
unsigned long DWORD
Definition: ntddk_ex.h:95
GLdouble GLdouble GLdouble r
Definition: gl.h:2055
#define MARGIN
#define WS_CHILD
Definition: pedump.c:617
#define WS_VISIBLE
Definition: pedump.c:620
#define LVS_SINGLESEL
Definition: commctrl.h:2266
#define LVS_NOCOLUMNHEADER
Definition: commctrl.h:2284
#define LVS_SHOWSELALWAYS
Definition: commctrl.h:2267
#define LVS_REPORT
Definition: commctrl.h:2262
#define LVS_NOSORTHEADER
Definition: commctrl.h:2285
#define LVCFMT_LEFT
Definition: commctrl.h:2598
_In_ LONG _In_ HWND hwnd
Definition: winddi.h:4023
BOOL WINAPI GetClientRect(_In_ HWND, _Out_ LPRECT)
#define WS_EX_CLIENTEDGE
Definition: winuser.h:384
BOOL WINAPI InflateRect(_Inout_ LPRECT, _In_ int, _In_ int)

Referenced by CDownloadManager::DownloadDlgProc().

◆ LoadList()

VOID CDowloadingAppsListView::LoadList ( ATL::CSimpleArray< DownloadInfo arrInfo)
inline

Definition at line 310 of file loaddlg.cpp.

311 {
312 for (INT i = 0; i < arrInfo.GetSize(); ++i)
313 {
314 AddRow(i, arrInfo[i].szName.GetString(), DLSTATUS_WAITING);
315 }
316 }
int GetSize() const
Definition: atlsimpcoll.h:104
VOID AddRow(INT RowIndex, LPCWSTR szAppName, const DownloadStatus Status)
Definition: loaddlg.cpp:340
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
@ DLSTATUS_WAITING
Definition: loaddlg.cpp:68
static const WCHAR szName[]
Definition: powrprof.c:45
int32_t INT
Definition: typedefs.h:58

Referenced by CDownloadManager::DownloadDlgProc().

◆ SetDownloadStatus()

VOID CDowloadingAppsListView::SetDownloadStatus ( INT  ItemIndex,
DownloadStatus  Status 
)
inline

Definition at line 319 of file loaddlg.cpp.

320 {
321 CStringW szBuffer = LoadStatusString(Status);
322 SetItemText(ItemIndex, 1, szBuffer.GetString());
323 }
PXSTR GetString() noexcept
Definition: atlsimpstr.h:367
BOOL SetItemText(int i, int subItem, LPCWSTR text)
Definition: rosctrls.h:186

Referenced by AddRow(), and CDownloadManager::ThreadFunc().


The documentation for this class was generated from the following file: