42 lines
1.3 KiB
C
42 lines
1.3 KiB
C
#ifndef PM_UI_RESOURCE_H
|
|
#define PM_UI_RESOURCE_H
|
|
|
|
#include "default_resource.h"
|
|
#include "RibbonUI.h"
|
|
|
|
// Menu fallback IDs (when ribbon is unavailable)
|
|
#define IDM_RESIZE 200
|
|
#define IDM_CLEAR_QUEUE 201
|
|
#define IDM_ADD_FILES 202
|
|
#define IDM_ADD_FOLDER 203
|
|
#define IDM_SETTINGS 204
|
|
#define IDM_EXIT 205
|
|
#define IDM_ABOUT 206
|
|
|
|
// Settings controls (for settings dock)
|
|
#define IDC_COMBO_PRESET_OUT 600
|
|
#define IDC_EDIT_OUT_DIR 601
|
|
#define IDC_BTN_BROWSE_OUT 602
|
|
#define IDC_EDIT_MAX_W 603
|
|
#define IDC_EDIT_MAX_H 604
|
|
#define IDC_COMBO_FIT 605
|
|
#define IDC_EDIT_QUALITY 606
|
|
#define IDC_CHK_ENLARGE 607
|
|
#define IDC_CHK_AUTOROT 608
|
|
#define IDC_CHK_STRIP 609
|
|
|
|
// AI Transform dialog controls
|
|
#define IDD_TRANSFORM_PROMPT 700
|
|
#define IDC_EDIT_PROMPT 701
|
|
#define IDC_STATIC_PROMPT_LABEL 702
|
|
|
|
// User messages
|
|
#define UWM_QUEUE_PROGRESS (WM_USER + 100)
|
|
#define UWM_QUEUE_DONE (WM_USER + 101)
|
|
#define UWM_IMAGELOADED (WM_USER + 102)
|
|
#define UWM_QUEUE_ITEM_CLICKED (WM_USER + 103)
|
|
#define UWM_TRANSFORM_PROGRESS (WM_USER + 104)
|
|
#define UWM_TRANSFORM_DONE (WM_USER + 105)
|
|
|
|
#endif // PM_UI_RESOURCE_H
|