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

ComboBox.h « Control « Windows - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4ffd23ebecbf19b87b1cc73498c92fe7cb9570a (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
47
48
49
50
51
52
53
54
55
// Windows/Control/ComboBox.h

#ifndef __WINDOWS_CONTROL_COMBOBOX_H
#define __WINDOWS_CONTROL_COMBOBOX_H

#include "Windows/Window.h"
#include "Windows/Defs.h"

#include <commctrl.h>

namespace NWindows {
namespace NControl {

class CComboBox: public CWindow
{
public:
  void ResetContent()
    { SendMessage(CB_RESETCONTENT, 0, 0); }
  int AddString(LPCTSTR string)
    { return SendMessage(CB_ADDSTRING, 0, (LPARAM)string); }
  int SetCurSel(int index)
    { return SendMessage(CB_SETCURSEL, index, 0); }
  int GetCurSel()
    { return SendMessage(CB_GETCURSEL, 0, 0); }
  int GetCount()
    { return SendMessage(CB_GETCOUNT, 0, 0); }
  
  int GetLBTextLen(int index)
    { return SendMessage(CB_GETLBTEXTLEN, index, 0); }
  int GetLBText(int index, LPTSTR string)
    { return SendMessage(CB_GETLBTEXT, index, (LPARAM)string); }
  int GetLBText(int index, CSysString &string);

  int SetItemData(int index, LPARAM lParam)
    { return SendMessage(CB_SETITEMDATA, index, lParam); }
  int GetItemData(int index)
    { return SendMessage(CB_GETITEMDATA, index, 0); }
};

class CComboBoxEx: public CWindow
{
public:
  int DeleteItem(int index)
    { return SendMessage(CBEM_DELETEITEM, index, 0); }
  int InsertItem(COMBOBOXEXITEM *item)
    { return SendMessage(CBEM_INSERTITEM, 0, (LPARAM)item); }
  DWORD SetExtendedStyle(DWORD exMask, DWORD exStyle)
    { return SendMessage(CBEM_SETEXTENDEDSTYLE, exMask, exStyle); }
  HWND GetEditControl()
    { return (HWND)SendMessage(CBEM_GETEDITCONTROL, 0, 0); }
};

}}

#endif