FXSize

class FXSize

Size

Public Methods

[more] FXSize()
Constructors
[more]FXSize& operator=(const FXSize& s)
Assignment
[more]FXSize& operator+=(const FXSize& s)
Assignment operators
[more]FXSize operator-()
Negation


Documentation

Size
o FXSize()
Constructors

oFXSize& operator=(const FXSize& s)
Assignment

oFXSize& operator+=(const FXSize& s)
Assignment operators

oFXSize operator-()
Negation


This class has no child classes.
Friends:
FXbool operator==(const FXSize& s,const FXSize& t){ return s.w==t.w && s.h==t.h
FXbool operator!=(const FXSize& s,const FXSize& t){ return s.w!=t.w || s.h!=t.h
FXSize operator+(const FXSize& s,const FXSize& t){ return FXSize(s.w+t.w,s.h+t.h)
FXSize operator-(const FXSize& s,const FXSize& t){ return FXSize(s.w-t.w,s.h-t.h)
FXSize operator*(const FXSize& s,FXshort c){ return FXSize(s.w*c,s.h*c)
FXSize operator*(FXshort c,const FXSize& s){ return FXSize(c*s.w,c*s.h)
FXSize operator/(const FXSize& s,FXshort c){ return FXSize(s.w/c,s.h/c)
FXSize operator/(FXshort c,const FXSize& s){ return FXSize(c/s.w,c/s.h)
FXStream& operator<<(FXStream& store,const FXSize& s)
FXStream& operator>>(FXStream& store,FXSize& s)

Alphabetic index HTML hierarchy of classes or Java



This page was generated with the help of DOC++.