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

resource.rc « EditPage « Resource « FileManager « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4d8b9cdfe82f237d0dc697f5cc7aa21fc2e55ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "resource.h"
#include "../../../GuiCommon.rc"

#define xSize2 196
#define ySize2 140
#define xSize (xSize2 + marg + marg)
#define ySize (ySize2 + marg + marg)

IDD_EDIT  DIALOG  0, 0, xSize, ySize  MY_PAGE_STYLE
CAPTION "Editor"
MY_FONT
BEGIN
  LTEXT       "&Editor:", IDC_EDIT_STATIC_EDITOR, marg, marg, xSize2, 8
  EDITTEXT    IDC_EDIT_EDIT_EDITOR, marg, 20, xSize2 - 12 - bDotsSize, 14, ES_AUTOHSCROLL
  PUSHBUTTON  "...", IDC_EDIT_BUTTON_SET, (xSize - marg - bDotsSize), 20, bDotsSize, bYSize
END