• Main
  • About
  • Download
  • Contact
  • Docs
  • News
  • Develop
  • Contribute
  • Options
    • Show pagesource
    • Backlinks
    • Media Manager
    • Sitemap
  • Login / Register

Navigation

  • Installing EFL on XXXXX
  • Tutorial 3: Simple Graphical Text Editor with Buttons
  • PG: Basic application structure
  •  
  • Connectivity Programming
  • Container Programming Guide
  • customizing-ui.md
  • Edje Programming Guide
  • Creating Enlightenment Gadgets
  • Evas GL Programming Guide
  • Evas Programming Guide
  • Event and Effect Programming Guide
  • Focus Class Hierachy
  • Multilingual Programming Guide
  • Scalability Programming Guide
  • Widgets Programming Guide
  • Getting started with the EFL - the main loop

Page Contents

  • Description
  • Fields
  • Signature
  • C signature
  • Top of Page

Description

A 2D size in pixels.

Since 1.22

Fields

  • w - X position in pixels, from the top-left corner.
  • h - Y position in pixels, from the top-left corner.

Signature

struct @extern Eina.Size2D {
    w: int;
    h: int;
}

C signature

typedef struct _Eina_Size2D {
    int w;
    int h;
} Eina_Size2D;