Mini Kabibi Habibi

Current Path : C:/Program Files/Adobe/Adobe Photoshop 2025/Required/layouts/Shapes/Dialogs/
Upload File :
Current File : C:/Program Files/Adobe/Adobe Photoshop 2025/Required/layouts/Shapes/Dialogs/createEllipse-4806.exv

// Copyright 2023 Adobe Systems Incorporated

vEditWidth = max_char_width() * 4 + gEditDoubleOutset;
zDialogTitle = '$$$/Dialog/CreateEllipse=Create Ellipse';
dialog(name: zDialogTitle, class_name: 'TPSDialog', target_id: 'widt', margin_width: gLargeSpace, margin_height: gLargeSpace, placement: place_column, child_horizontal: align_fill, child_vertical: align_center) {
// Note - this is a special case, regular #defines such as Macintosh or WIN_32 are not available here

#ifdef MacEve
    group(placement: place_row, reverse: true) {
#endif

#ifdef WinEve
    group(placement: place_row) {
#endif

        button(name: gOKString, horizontal: align_fill, view_id: 'ok  ', dismiss: true,
            default: true);
        button(name: gCancelString, horizontal: align_fill, view_id: 'cncl', dismiss: true, cancel: true);
    }
    group(placement: place_row) {
        check_box(class_name: 'TCheckBox', view_id: 'cntr', name: '$$$/Dialog/CreateEllipse/FromCenter=From Center', tooltip: '$$$/EllipseTool/ToolTips/FromCenter=Draw ellipse from center');
    }
    group(placement: place_row) {
        edit_text(view_id: 'widt', class_name: 'TUnitsFixedPoint', name: '$$$/Dialog/CreateEllipse/Width=Width:', width: vEditWidth, tooltip: '$$$/VectorLayerOptionsBar/ToolTips/ShapeWidth=Set shape width');
        edit_text(view_id: 'hite', class_name: 'TUnitsFixedPoint', name: '$$$/Dialog/CreateEllipse/Height=Height:', width: vEditWidth, tooltip: '$$$/VectorLayerOptionsBar/ToolTips/ShapeHeight=Set shape height');
    }
}
// Footer - Copyright 2023 Adobe Systems Incorporated