gobject :: GFlags :: Class GFlags
[hide private]
[frames] | no frames]

Class GFlags

source code

object --+    
         |    
       int --+
             |
            GFlags
Known Subclasses:

Instance Methods [hide private]
 
__add__(x, y)
x+y
source code
 
__and__(x, y)
x&y
source code
 
__div__(x, y)
x/y
source code
 
__divmod__(x, y)
divmod(x, y)
source code
 
__eq__(x, y)
x==y
source code
 
__ge__(x, y)
x>=y
source code
 
__gt__(x, y)
x>y
source code
 
__le__(x, y)
x<=y
source code
 
__lt__(x, y)
x<y
source code
 
__mod__(x, y)
x%y
source code
 
__mul__(x, y)
x*y
source code
 
__ne__(x, y)
x!=y
source code
a new object with type S, a subtype of T
__new__(T, S, ...) source code
 
__or__(x, y)
x|y
source code
 
__pow__(x, y, z=...)
pow(x, y[, z])
source code
 
__radd__(x, y)
y+x
source code
 
__rand__(x, y)
y&x
source code
 
__rdiv__(x, y)
y/x
source code
 
__rdivmod__(x, y)
divmod(y, x)
source code
 
__repr__(x)
repr(x)
source code
 
__rmod__(x, y)
y%x
source code
 
__rmul__(x, y)
y*x
source code
 
__ror__(x, y)
y|x
source code
 
__rpow__(y, x, z=...)
pow(x, y[, z])
source code
 
__rsub__(x, y)
y-x
source code
 
__rxor__(x, y)
y^x
source code
 
__str__(x)
str(x)
source code
 
__sub__(x, y)
x-y
source code
 
__xor__(x, y)
x^y
source code

Inherited from int: __abs__, __cmp__, __coerce__, __float__, __floordiv__, __format__, __getattribute__, __getnewargs__, __hash__, __hex__, __index__, __int__, __invert__, __long__, __lshift__, __neg__, __nonzero__, __oct__, __pos__, __rfloordiv__, __rlshift__, __rrshift__, __rshift__, __rtruediv__, __truediv__, __trunc__, bit_length, conjugate

Inherited from object: __delattr__, __init__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Class Variables [hide private]
  __gtype__ = <GType GFlags (52)>
Properties [hide private]
  first_value_name
  first_value_nick
  value_names
  value_nicks

Inherited from int: denominator, imag, numerator, real

Inherited from object: __class__

Method Details [hide private]

__add__(x, y)
(Addition operator)

source code 

x+y

Overrides: int.__add__

__and__(x, y)
(And operator)

source code 

x&y

Overrides: int.__and__

__div__(x, y)

source code 

x/y

Overrides: int.__div__

__divmod__(x, y)

source code 

divmod(x, y)

Overrides: int.__divmod__

__mod__(x, y)

source code 

x%y

Overrides: int.__mod__

__mul__(x, y)

source code 

x*y

Overrides: int.__mul__

__new__(T, S, ...)

source code 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__

__or__(x, y)
(Or operator)

source code 

x|y

Overrides: int.__or__

__pow__(x, y, z=...)

source code 

pow(x, y[, z])

Overrides: int.__pow__

__radd__(x, y)
(Right-side addition operator)

source code 

y+x

Overrides: int.__radd__

__rand__(x, y)

source code 

y&x

Overrides: int.__rand__

__rdiv__(x, y)

source code 

y/x

Overrides: int.__rdiv__

__rdivmod__(x, y)

source code 

divmod(y, x)

Overrides: int.__rdivmod__

__repr__(x)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__

__rmod__(x, y)

source code 

y%x

Overrides: int.__rmod__

__rmul__(x, y)

source code 

y*x

Overrides: int.__rmul__

__ror__(x, y)

source code 

y|x

Overrides: int.__ror__

__rpow__(y, x, z=...)

source code 

pow(x, y[, z])

Overrides: int.__rpow__

__rsub__(x, y)

source code 

y-x

Overrides: int.__rsub__

__rxor__(x, y)

source code 

y^x

Overrides: int.__rxor__

__str__(x)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__

__sub__(x, y)
(Subtraction operator)

source code 

x-y

Overrides: int.__sub__

__xor__(x, y)
(Exclusive-Or operator)

source code 

x^y

Overrides: int.__xor__