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

LinkDialog.h « FileManager « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8417fac819e1b6ae997739a635db78ad31e757d0 (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
// LinkDialog.h

#ifndef __LINK_DIALOG_H
#define __LINK_DIALOG_H

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

#include "LinkDialogRes.h"

class CLinkDialog: public NWindows::NControl::CModalDialog
{
  NWindows::NControl::CComboBox _pathFromCombo;
  NWindows::NControl::CComboBox _pathToCombo;
  
  virtual bool OnInit();
  virtual bool OnSize(WPARAM wParam, int xSize, int ySize);
  virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
  void OnButton_SetPath(bool to);
  void OnButton_Link();

  void ShowLastErrorMessage();
  void ShowError(const wchar_t *s);
  void Set_LinkType_Radio(int idb);
public:
  UString FilePath;
  UString AnotherPath;
  
  INT_PTR Create(HWND parentWindow = 0)
    { return CModalDialog::Create(IDD_LINK, parentWindow); }
};

#endif