aboutsummaryrefslogtreecommitdiff
path: root/CPP/7zip/UI/FileManager/EditDialog.cpp
blob: e97d9ea5c015c9f4e71a9ea14d70b0ec26ed9949 (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
56
57
// EditDialog.cpp

#include "StdAfx.h"

#include "EditDialog.h"

#ifdef Z7_LANG
#include "LangUtils.h"
#endif

bool CEditDialog::OnInit()
{
  #ifdef Z7_LANG
  LangSetDlgItems(*this, NULL, 0);
  #endif
  _edit.Attach(GetItem(IDE_EDIT));

  SetText(Title);
  _edit.SetText(Text);

  NormalizeSize();
  return CModalDialog::OnInit();
}

// #define MY_CLOSE_BUTTON_ID IDCANCEL
#define MY_CLOSE_BUTTON_ID IDCLOSE
 
bool CEditDialog::OnSize(WPARAM /* wParam */, int xSize, int ySize)
{
  int mx, my;
  GetMargins(8, mx, my);
  int bx1, by;
  GetItemSizes(MY_CLOSE_BUTTON_ID, bx1, by);

  // int bx2;
  // GetItemSizes(IDOK, bx2, by);

  const int y = ySize - my - by;
  const int x = xSize - mx - bx1;

  /*
  RECT rect;
  GetClientRect(&rect);
  rect.top = y - my;
  InvalidateRect(&rect);
  */
  InvalidateRect(NULL);

  MoveItem(MY_CLOSE_BUTTON_ID, x, y, bx1, by);
  // MoveItem(IDOK, x - mx - bx2, y, bx2, by);
  /*
  if (wParam == SIZE_MAXSHOW || wParam == SIZE_MAXIMIZED || wParam == SIZE_MAXHIDE)
    mx = 0;
  */
  _edit.Move(mx, my, xSize - mx * 2, y - my * 2);
  return false;
}