16#ifndef LIEF_PE_RESOURCE_DIALOG_H
17#define LIEF_PE_RESOURCE_DIALOG_H
45 using dialogs_t = std::vector<std::unique_ptr<ResourceDialog>>;
55 return ordinal || !
string.empty();
58 operator bool()
const {
81 SETFOREGROUND = 0x0200,
84 NOFAILCREATE = 0x0010,
89 SHELLFONT = SETFONT | FIXEDSYS,
94 OVERLAPPED = 0x00000000,
97 MINIMIZE = 0x20000000,
99 DISABLED = 0x08000000,
100 CLIPSIBLINGS = 0x04000000,
101 CLIPCHILDREN = 0x02000000,
102 MAXIMIZE = 0x01000000,
103 CAPTION = 0x00C00000,
105 DLGFRAME = 0x00400000,
106 VSCROLL = 0x00200000,
107 HSCROLL = 0x00100000,
108 SYSMENU = 0x00080000,
109 THICKFRAME = 0x00040000,
111 TABSTOP = 0x00010000,
117 DLGMODALFRAME = 0x00000001,
118 NOPARENTNOTIFY = 0x00000004,
119 TOPMOST = 0x00000008,
120 ACCEPTFILES = 0x00000010,
121 TRANSPARENT_STY = 0x00000020,
122 MDICHILD = 0x00000040,
123 TOOLWINDOW = 0x00000080,
124 WINDOWEDGE = 0x00000100,
125 CLIENTEDGE = 0x00000200,
126 CONTEXTHELP = 0x00000400,
130 RTLREADING = 0x00002000,
131 LEFTSCROLLBAR = 0x00004000,
133 CONTROLPARENT = 0x00010000,
134 STATICEDGE = 0x00020000,
135 APPWINDOW = 0x00040000,
142 NOMOVEY = 0x00000002,
144 NORESIZE = 0x00000004,
145 NOPARENTALIGN = 0x00000008,
146 ADJUSTABLE = 0x00000020,
147 NODIVIDER = 0x00000040,
151 NOMOVEX = VERT | NOMOVEY,
190 return extended_style_;
200 return (style_ & (uint32_t)
style) != 0;
205 return (style_ & (uint32_t)
style) != 0;
244 extended_style_ = value;
276 class_.string = std::move(
title);
282 class_.ordinal = ord;
287 title_.string = std::move(value);
293 title_.ordinal = ord;
313 return creation_data_;
317 return creation_data_;
331 uint32_t extended_style_ = 0;
342 std::vector<uint8_t> creation_data_;
359 virtual std::unique_ptr<ResourceDialog>
clone()
const = 0;
376 return extended_style_;
407 extended_style_ = value;
429 menu_.string = std::move(
title);
440 window_class_.string = std::move(
title);
446 window_class_.ordinal = ord;
451 title_ = std::move(value);
459 return (style_ & (uint32_t)
style) != 0;
464 return (style_ & (uint32_t)
style) != 0;
469 return (extended_style_ & (uint32_t)
style) != 0;
497 return window_class_;
509 static_assert(std::is_base_of<ResourceDialog, T>::value,
510 "Require ResourceDialog inheritance");
511 if (T::classof(
this)) {
512 return static_cast<const T*
>(
this);
533 TYPE type_ = TYPE::UNKNOWN;
536 uint32_t extended_style_ = 0;
543 ordinal_or_str_t menu_;
544 ordinal_or_str_t window_class_;
546 std::u16string title_;
Class that is used to a read stream of data from different sources.
Definition BinaryStream.hpp:34
Class which represents a Data Node in the PE resources tree.
Definition ResourceData.hpp:34
This class represents an element of the dialog. It can be for instance, a button, or a caption.
Definition ResourceDialog.hpp:160
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:300
Item & cy(int16_t value)
Definition ResourceDialog.hpp:260
Item & y(int16_t value)
Definition ResourceDialog.hpp:252
friend std::ostream & operator<<(std::ostream &os, const Item &item)
Definition ResourceDialog.hpp:324
Item & cx(int16_t value)
Definition ResourceDialog.hpp:256
bool has(WINDOW_STYLES style) const
Check if this item has the given WINDOW_STYLES.
Definition ResourceDialog.hpp:199
WINDOW_CLASS
Definition ResourceDialog.hpp:169
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:307
Item & extended_style(uint32_t value)
Definition ResourceDialog.hpp:243
span< uint8_t > creation_data()
Definition ResourceDialog.hpp:316
virtual std::string to_string() const =0
Item & title(uint16_t ord)
Definition ResourceDialog.hpp:292
Item & operator=(Item &&)=default
int32_t id() const
The control identifier.
Definition ResourceDialog.hpp:194
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:312
uint32_t style() const
The style of the control. This can be a combination of WINDOW_STYLES or CONTROL_STYLES.
Definition ResourceDialog.hpp:180
std::vector< WINDOW_STYLES > window_styles() const
List of WINDOW_STYLES used by this item.
Item & clazz(uint16_t ord)
Definition ResourceDialog.hpp:281
int16_t cx() const
The width, in dialog box units, of the control.
Definition ResourceDialog.hpp:229
bool has(CONTROL_STYLES style) const
Check if this item has the given CONTROL_STYLES.
Definition ResourceDialog.hpp:204
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:189
Item & style(uint32_t value)
Definition ResourceDialog.hpp:238
int16_t cy() const
The height, in dialog box units, of the control.
Definition ResourceDialog.hpp:234
Item & operator=(const Item &)=default
Item & x(int16_t value)
Definition ResourceDialog.hpp:248
Item & data(std::vector< uint8_t > creation_data)
Definition ResourceDialog.hpp:270
std::vector< CONTROL_STYLES > control_styles() const
List of CONTROL_STYLES used by this item.
Item & id(int32_t value)
Definition ResourceDialog.hpp:265
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:224
Item & title(std::u16string value)
Definition ResourceDialog.hpp:286
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:217
Item & clazz(std::u16string title)
Definition ResourceDialog.hpp:275
This class is the base class for either a regular (legacy) Dialog or an extended Dialog....
Definition ResourceDialog.hpp:43
ResourceDialog & window_class(std::u16string title)
Definition ResourceDialog.hpp:439
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:140
WINDOW_EXTENDED_STYLES
From https://docs.microsoft.com/en-us/windows/win32/winmsg/extended-window-styles.
Definition ResourceDialog.hpp:116
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:445
ResourceDialog(const ResourceDialog &)=default
const T * as() const
Helper to downcast a ResourceDialog into a ResourceDialogRegular or a ResourceDialogExtended.
Definition ResourceDialog.hpp:508
ResourceDialog & title(std::u16string value)
Definition ResourceDialog.hpp:450
ResourceDialog & title(const std::string &title)
friend std::ostream & operator<<(std::ostream &os, const ResourceDialog &dialog)
Definition ResourceDialog.hpp:517
ResourceDialog & menu(std::u16string title)
Definition ResourceDialog.hpp:428
DIALOG_STYLES
From: https://learn.microsoft.com/en-us/windows/win32/dlgbox/dialog-box-styles.
Definition ResourceDialog.hpp:74
int16_t cx() const
The width, in dialog box units, of the dialog box.
Definition ResourceDialog.hpp:392
bool has(WINDOW_EXTENDED_STYLES style) const
Check if the dialog uses the given extended window style.
Definition ResourceDialog.hpp:468
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:368
virtual std::unique_ptr< ResourceDialog > clone() const =0
bool has(WINDOW_STYLES style) const
Check if the dialog uses the given window style.
Definition ResourceDialog.hpp:463
ResourceDialog & menu(uint16_t ord)
Definition ResourceDialog.hpp:434
ResourceDialog & extended_style(uint32_t value)
Definition ResourceDialog.hpp:406
ResourceDialog & operator=(ResourceDialog &&)=default
ResourceDialog & y(int16_t value)
Definition ResourceDialog.hpp:415
ResourceDialog & cx(int16_t value)
Definition ResourceDialog.hpp:419
TYPE
Enum for discriminating the kind of the Dialog (regular vs extended).
Definition ResourceDialog.hpp:66
const ordinal_or_str_t & menu() const
ordinal or name value of a menu resource.
Definition ResourceDialog.hpp:490
ResourceDialog & style(uint32_t value)
Definition ResourceDialog.hpp:401
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:375
std::vector< std::unique_ptr< ResourceDialog > > dialogs_t
Definition ResourceDialog.hpp:45
bool has(DIALOG_STYLES style) const
Check if the dialog uses the given dialog style.
Definition ResourceDialog.hpp:458
WINDOW_STYLES
From: https://docs.microsoft.com/en-us/windows/win32/winmsg/window-styles.
Definition ResourceDialog.hpp:93
int16_t x() const
The x-coordinate, in dialog box units, of the upper-left corner of the dialog box.
Definition ResourceDialog.hpp:381
ResourceDialog & x(int16_t value)
Definition ResourceDialog.hpp:411
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:423
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:387
int16_t cy() const
The height, in dialog box units, of the dialog box.
Definition ResourceDialog.hpp:397
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:496
const std::u16string & title() const
title of the dialog box
Definition ResourceDialog.hpp:482
TYPE type() const
Definition ResourceDialog.hpp:361
std::vector< DIALOG_STYLES > styles_list() const
List of DIALOG_STYLES used by this dialog.
ResourceDialog(TYPE ty)
Definition ResourceDialog.hpp:356
Opaque structure that is used by LIEF to avoid writing result<void> f(...). Instead,...
Definition errors.hpp:118
Wrapper that contains an Object (T) or an error.
Definition errors.hpp:78
#define LIEF_LIFETIMEBOUND
Definition compiler_attributes.hpp:72
#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 a standard error code from lief_errors.
Definition errors.hpp:54
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:41
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:50
std::string to_string() const
bool is_defined() const
Definition ResourceDialog.hpp:54
std::u16string string
Definition ResourceDialog.hpp:52
result< uint16_t > ordinal
Definition ResourceDialog.hpp:51
#define LIEF_API
Definition visibility.h:45