Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Last active January 17, 2016 19:54
Show Gist options
  • Select an option

  • Save jerstlouis/a67dbed633f07ff07d89 to your computer and use it in GitHub Desktop.

Select an option

Save jerstlouis/a67dbed633f07ff07d89 to your computer and use it in GitHub Desktop.
import "autoLayout"
AutoLayoutForm form1 { contents = Slide1 { }, clientSize = { 1600, 1200 } };
class CCol : Col { hAlignment = center, vAlignment = center; };
class MBar : Bar { maxSize = { 1.0, 30 }; };
class Bullet : Element { fgColor = white; }
class TealBullet : Element { fgColor = teal; }
class Slide1 : CCol
{
bgColor = black;
MBar { this };
Element title { this, maxSize = { 1220, 0 }, caption = "eC - A crash course", fgColor = white };
MBar { this };
// Extra Col until we add margins/borders:
CCol mT { this, maxSize = { 1220, 820 }, bgColor = Color { 40, 40, 40 } };
Col t { mT, maxSize = { 1200, 800 } };
TealBullet { t, caption = "eC Language" };
Bullet { t, caption = "- Classes" };
Bullet { t, caption = "- Instances" };
Bullet { t, caption = "- Methods" };
Bullet { t, caption = "- Flow Control" };
Bullet { t, caption = "- Variables" };
Bullet { t, caption = "- Style Guidelines" };
Bullet { t, caption = "- Member Instance" };
Bullet { t, caption = "- Instance method" };
Bullet { t, caption = "- Setting properties" };
Bullet { t, caption = "- Default properties" };
MBar { t };
TealBullet { t, caption = "Ecere GUI" };
Bullet { t, caption = "- Creating a Form" };
Bullet { t, caption = "- Positions and Anchors" };
Bullet { t, caption = "- Button: Responding to a click" };
Bullet { t, caption = "- MessageBox and Modal Loops" };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment