Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ListViewDialog.h « FileManager « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00206afd2e21bac0f52982e3eb98a8282eb0c5fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// ListViewDialog.h

#ifndef __LISTVIEW_DIALOG_H
#define __LISTVIEW_DIALOG_H

#include "../../../Windows/Control/Dialog.h"
#include "../../../Windows/Control/ListView.h"

#include "ListViewDialogRes.h"

class CListViewDialog: public NWindows::NControl::CModalDialog
{
  NWindows::NControl::CListView _listView;
  virtual void OnOK();
  virtual bool OnInit();
  virtual bool OnSize(WPARAM wParam, int xSize, int ySize);
  virtual bool OnNotify(UINT controlID, LPNMHDR header);
  void CopyToClipboard();
  void DeleteItems();
  void ShowItemInfo();
  void OnEnter();
public:
  UString Title;
  
  bool SelectFirst;
  bool DeleteIsAllowed;
  bool StringsWereChanged;
  
  UStringVector Strings;
  UStringVector Values;
  
  int FocusedItemIndex;
  unsigned NumColumns;

  INT_PTR Create(HWND wndParent = 0) { return CModalDialog::Create(IDD_LISTVIEW, wndParent); }

  CListViewDialog():
    SelectFirst(false),
    DeleteIsAllowed(false),
    StringsWereChanged(false),
    FocusedItemIndex(-1),
    NumColumns(1)
    {}
};

#endif