16#ifndef LIEF_PE_RESOURCE_DIALOG_H
17#define LIEF_PE_RESOURCE_DIALOG_H
44 using dialogs_t = std::vector<std::unique_ptr<ResourceDialog>>;
54 return ordinal || !
string.empty();
57 operator bool()
const {
80 SETFOREGROUND = 0x0200,
83 NOFAILCREATE = 0x0010,
88 SHELLFONT = SETFONT | FIXEDSYS,
93 OVERLAPPED = 0x00000000,
96 MINIMIZE = 0x20000000,
98 DISABLED = 0x08000000,
99 CLIPSIBLINGS = 0x04000000,
100 CLIPCHILDREN = 0x02000000,
101 MAXIMIZE = 0x01000000,
102 CAPTION = 0x00C00000,
104 DLGFRAME = 0x00400000,
105 VSCROLL = 0x00200000,
106 HSCROLL = 0x00100000,
107 SYSMENU = 0x00080000,
108 THICKFRAME = 0x00040000,
110 TABSTOP = 0x00010000,
116 DLGMODALFRAME = 0x00000001,
117 NOPARENTNOTIFY = 0x00000004,
118 TOPMOST = 0x00000008,
119 ACCEPTFILES = 0x00000010,
120 TRANSPARENT_STY = 0x00000020,
121 MDICHILD = 0x00000040,
122 TOOLWINDOW = 0x00000080,
123 WINDOWEDGE = 0x00000100,
124 CLIENTEDGE = 0x00000200,
125 CONTEXTHELP = 0x00000400,
129 RTLREADING = 0x00002000,
130 LEFTSCROLLBAR = 0x00004000,
132 CONTROLPARENT = 0x00010000,
133 STATICEDGE = 0x00020000,
134 APPWINDOW = 0x00040000,
141 NOMOVEY = 0x00000002,
143 NORESIZE = 0x00000004,
144 NOPARENTALIGN = 0x00000008,
145 ADJUSTABLE = 0x00000020,
146 NODIVIDER = 0x00000040,
150 NOMOVEX = VERT | NOMOVEY,
189 return extended_style_;
199 return (style_ & (uint32_t)
style) != 0;
204 return (style_ & (uint32_t)
style) != 0;
243 extended_style_ = value;
275 class_.string = std::move(
title);
281 class_.ordinal = ord;
286 title_.string = std::move(value);
292 title_.ordinal = ord;
312 return creation_data_;
316 return creation_data_;
330 uint32_t extended_style_ = 0;
341 std::vector<uint8_t> creation_data_;
358 virtual std::unique_ptr<ResourceDialog>
clone()
const = 0;
375 return extended_style_;
406 extended_style_ = value;
428 menu_.string = std::move(
title);
439 window_class_.string = std::move(
title);
445 window_class_.ordinal = ord;
450 title_ = std::move(value);
458 return (style_ & (uint32_t)
style) != 0;
463 return (style_ & (uint32_t)
style) != 0;
468 return (extended_style_ & (uint32_t)
style) != 0;
481 const std::u16string&
title()
const {
496 return window_class_;
508 static_assert(std::is_base_of<ResourceDialog, T>::value,
509 "Require ResourceDialog inheritance");
510 if (T::classof(
this)) {
511 return static_cast<const T*
>(
this);
532 TYPE type_ = TYPE::UNKNOWN;
535 uint32_t extended_style_ = 0;
542 ordinal_or_str_t menu_;
543 ordinal_or_str_t window_class_;
545 std::u16string title_;
Class that is used to a read stream of data from different sources.
Definition BinaryStream.hpp:33
Class which represents a Data Node in the PE resources tree.
Definition ResourceData.hpp:33
This class represents an element of the dialog. It can be for instance, a button, or a caption.
Definition ResourceDialog.hpp:159
const ordinal_or_str_t & clazz() const
Window class of the control. This can be either: a string that specifies the name of a registered win...
Definition ResourceDialog.hpp:299
Item & cy(int16_t value)
Definition ResourceDialog.hpp:259
Item & y(int16_t value)
Definition ResourceDialog.hpp:251
friend std::ostream & operator<<(std::ostream &os, const Item &item)
Definition ResourceDialog.hpp:323
Item & cx(int16_t value)
Definition ResourceDialog.hpp:255
bool has(WINDOW_STYLES style) const
Check if this item has the given WINDOW_STYLES.
Definition ResourceDialog.hpp:198
WINDOW_CLASS
Definition ResourceDialog.hpp:168
const ordinal_or_str_t & title() const
Title of the item which can be either: a string that specifies the initial text or an ordinal value o...
Definition ResourceDialog.hpp:306
Item & extended_style(uint32_t value)
Definition ResourceDialog.hpp:242
span< uint8_t > creation_data()
Definition ResourceDialog.hpp:315
virtual std::string to_string() const =0
Item & title(uint16_t ord)
Definition ResourceDialog.hpp:291
Item & operator=(Item &&)=default
int32_t id() const
The control identifier.
Definition ResourceDialog.hpp:193
Item(const Item &)=default
span< const uint8_t > creation_data() const
Creation data that is passed to the control's window procedure.
Definition ResourceDialog.hpp:311
uint32_t style() const
The style of the control. This can be a combination of WINDOW_STYLES or CONTROL_STYLES.
Definition ResourceDialog.hpp:179
std::vector< WINDOW_STYLES > window_styles() const
List of WINDOW_STYLES used by this item.
Item & clazz(uint16_t ord)
Definition ResourceDialog.hpp:280
int16_t cx() const
The width, in dialog box units, of the control.
Definition ResourceDialog.hpp:228
bool has(CONTROL_STYLES style) const
Check if this item has the given CONTROL_STYLES.
Definition ResourceDialog.hpp:203
uint32_t extended_style() const
The extended styles for a window. This member is not used to create controls in dialog boxes,...
Definition ResourceDialog.hpp:188
Item & style(uint32_t value)
Definition ResourceDialog.hpp:237
int16_t cy() const
The height, in dialog box units, of the control.
Definition ResourceDialog.hpp:233
Item & operator=(const Item &)=default
Item & x(int16_t value)
Definition ResourceDialog.hpp:247
Item & data(std::vector< uint8_t > creation_data)
Definition ResourceDialog.hpp:269
std::vector< CONTROL_STYLES > control_styles() const
List of CONTROL_STYLES used by this item.
Item & id(int32_t value)
Definition ResourceDialog.hpp:264
int16_t y() const
The y-coordinate, in dialog box units, of the upper-left corner of the control. This coordinate is al...
Definition ResourceDialog.hpp:223
Item & title(std::u16string value)
Definition ResourceDialog.hpp:285
int16_t x() const
The x-coordinate, in dialog box units, of the upper-left corner of the control. This coordinate is al...
Definition ResourceDialog.hpp:216
Item & clazz(std::u16string title)
Definition ResourceDialog.hpp:274
This class is the base class for either a regular (legacy) Dialog or an extended Dialog....
Definition ResourceDialog.hpp:42
ResourceDialog & window_class(std::u16string title)
Definition ResourceDialog.hpp:438
virtual std::string to_string() const =0
std::vector< WINDOW_STYLES > windows_styles_list() const
List of WINDOW_STYLES used by this dialog.
CONTROL_STYLES
From: https://learn.microsoft.com/en-us/windows/win32/controls/common-control-styles.
Definition ResourceDialog.hpp:139
WINDOW_EXTENDED_STYLES
From https://docs.microsoft.com/en-us/windows/win32/winmsg/extended-window-styles.
Definition ResourceDialog.hpp:115
ResourceDialog(ResourceDialog &&)=default
static dialogs_t parse(const ResourceData &node)
Parse dialogs from the given resource data node.
ResourceDialog & window_class(uint16_t ord)
Definition ResourceDialog.hpp:444
ResourceDialog(const ResourceDialog &)=default
const T * as() const
Helper to downcast a ResourceDialog into a ResourceDialogRegular or a ResourceDialogExtended.
Definition ResourceDialog.hpp:507
ResourceDialog & title(std::u16string value)
Definition ResourceDialog.hpp:449
ResourceDialog & title(const std::string &title)
friend std::ostream & operator<<(std::ostream &os, const ResourceDialog &dialog)
Definition ResourceDialog.hpp:516
ResourceDialog & menu(std::u16string title)
Definition ResourceDialog.hpp:427
DIALOG_STYLES
From: https://learn.microsoft.com/en-us/windows/win32/dlgbox/dialog-box-styles.
Definition ResourceDialog.hpp:73
int16_t cx() const
The width, in dialog box units, of the dialog box.
Definition ResourceDialog.hpp:391
bool has(WINDOW_EXTENDED_STYLES style) const
Check if the dialog used to given extended window style.
Definition ResourceDialog.hpp:467
uint32_t style() const
The style of the dialog box. This member can be a combination of window style values (such as WINDOW_...
Definition ResourceDialog.hpp:367
virtual std::unique_ptr< ResourceDialog > clone() const =0
bool has(WINDOW_STYLES style) const
Check if the dialog used to given window style.
Definition ResourceDialog.hpp:462
ResourceDialog & menu(uint16_t ord)
Definition ResourceDialog.hpp:433
ResourceDialog & extended_style(uint32_t value)
Definition ResourceDialog.hpp:405
ResourceDialog & operator=(ResourceDialog &&)=default
ResourceDialog & y(int16_t value)
Definition ResourceDialog.hpp:414
ResourceDialog & cx(int16_t value)
Definition ResourceDialog.hpp:418
TYPE
Enum for discriminating the kind of the Dialog (regular vs extended).
Definition ResourceDialog.hpp:65
const ordinal_or_str_t & menu() const
ordinal or name value of a menu resource.
Definition ResourceDialog.hpp:489
ResourceDialog & style(uint32_t value)
Definition ResourceDialog.hpp:400
uint32_t extended_style() const
The extended styles for a window. This member is not used to create dialog boxes, but applications th...
Definition ResourceDialog.hpp:374
std::vector< std::unique_ptr< ResourceDialog > > dialogs_t
Definition ResourceDialog.hpp:44
bool has(DIALOG_STYLES style) const
Check if the dialog used to given dialog style.
Definition ResourceDialog.hpp:457
WINDOW_STYLES
From: https://docs.microsoft.com/en-us/windows/win32/winmsg/window-styles.
Definition ResourceDialog.hpp:92
int16_t x() const
The x-coordinate, in dialog box units, of the upper-left corner of the dialog box.
Definition ResourceDialog.hpp:380
ResourceDialog & x(int16_t value)
Definition ResourceDialog.hpp:410
ResourceDialog & operator=(const ResourceDialog &)=default
std::vector< WINDOW_EXTENDED_STYLES > windows_ext_styles_list() const
List of WINDOW_EXTENDED_STYLES used by this dialog.
std::string title_utf8() const
title of the dialog box
ResourceDialog & cy(int16_t value)
Definition ResourceDialog.hpp:422
virtual ~ResourceDialog()=default
int16_t y() const
The y-coordinate, in dialog box units, of the upper-left corner of the dialog box.
Definition ResourceDialog.hpp:386
int16_t cy() const
The height, in dialog box units, of the dialog box.
Definition ResourceDialog.hpp:396
static dialogs_t parse(const uint8_t *buffer, size_t size)
const ordinal_or_str_t & window_class() const
ordinal of a predefined system window class or name of a registered window class
Definition ResourceDialog.hpp:495
const std::u16string & title() const
title of the dialog box
Definition ResourceDialog.hpp:481
TYPE type() const
Definition ResourceDialog.hpp:360
std::vector< DIALOG_STYLES > styles_list() const
List of DIALOG_STYLES used by this dialog.
ResourceDialog(TYPE ty)
Definition ResourceDialog.hpp:355
Opaque structure that is used by LIEF to avoid writing result<void> f(...). Instead,...
Definition errors.hpp:114
Wrapper that contains an Object (T) or an error.
Definition errors.hpp:77
#define ENABLE_BITMASK_OPERATORS(X)
Definition enums.hpp:24
@ not_found
Definition errors.hpp:26
tl::unexpected< lief_errors > make_error_code(lief_errors e)
Create an standard error code from lief_errors.
Definition errors.hpp:53
Namespace related to the LIEF's PE module.
Definition Abstract/Header.hpp:32
const char * to_string(CODE_PAGES e)
@ RIGHT
Definition AcceleratorCodes.hpp:59
@ LEFT
Definition AcceleratorCodes.hpp:57
@ T
Definition AcceleratorCodes.hpp:97
@ CONTROL
Definition AcceleratorCodes.hpp:37
LIEF namespace.
Definition Abstract/Binary.hpp:40
tcb::span< ElementType, Extent > span
Definition span.hpp:22
This structure wraps either an ordinal value (uint16_t) or a string. The ordinal value should refer t...
Definition ResourceDialog.hpp:49
std::string to_string() const
bool is_defined() const
Definition ResourceDialog.hpp:53
std::u16string string
Definition ResourceDialog.hpp:51
result< uint16_t > ordinal
Definition ResourceDialog.hpp:50
#define LIEF_API
Definition visibility.h:43