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

ComboDialog.h « ComboDialog « Resource « FileManager « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 438b999896485bbab0341c8b65fe85355daf72ad (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
// ComboDialog.h

#ifndef __COMBODIALOG_H
#define __COMBODIALOG_H

#include "Windows/Control/Dialog.h"
#include "Windows/Control/ComboBox.h"
#include "resource.h"

class CComboDialog: public NWindows::NControl::CModalDialog
{
  NWindows::NControl::CComboBox _comboBox;
  virtual void OnOK();
  virtual bool OnInit();
public:
  // bool Sorted;
  UString Title;
  UString Static;
  UString Value;
  CSysStringVector Strings;
  // CComboDialog(): Sorted(false) {};
  INT_PTR Create(HWND parentWindow = 0)
    { return CModalDialog::Create(MAKEINTRESOURCE(IDD_DIALOG_COMBO), parentWindow); }
};

#endif